{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js", "ssg:https://framerusercontent.com/modules/2nuEkn5MibVkujWlf4RF/JScyRjzgxmRhSJ0V8hDc/RY2yo_c55.js", "ssg:https://framerusercontent.com/modules/miQuUdXW0pWogFRmOIhD/bJ728lw1AhzdmG3kzn3b/fel9OfnEZ.js", "ssg:https://framerusercontent.com/modules/zK2hODpbpmRY2Crty5hg/8E2r1syauDgk1v8GSYse/vzQ5vgPTA.js", "ssg:https://framerusercontent.com/modules/6x6vWY7NKbMx0yzi2y66/VR2RtsQK13RMYG8ZfbF9/t2ZxfHS24.js", "ssg:https://framerusercontent.com/modules/AitI3eO9zVqfNHf8oQfq/BAYOKNInh63O0SCciuaL/bfDnB_CUh.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";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 mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},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\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-cxmx9 .framer-styles-preset-1h29h1i:not(.rich-text-wrapper), .framer-cxmx9 .framer-styles-preset-1h29h1i.rich-text-wrapper a { --framer-link-current-text-color: #1465ff; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #1465ff; --framer-link-hover-text-decoration: none; --framer-link-text-color: #000000; --framer-link-text-decoration: none; transition: color 0.3s cubic-bezier(0, 0, 1, 1) 0s; }\"];export const className=\"framer-cxmx9\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6124c77)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"z0DESltsu\",\"fahYh1XW9\"];const serializationHash=\"framer-0oDYw\";const variantClassNames={fahYh1XW9:\"framer-v-2knta5\",z0DESltsu:\"framer-v-12peo88\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"z0DESltsu\",\"Variant 2\":\"fahYh1XW9\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"z0DESltsu\",yDOxuHH0s:tap!==null&&tap!==void 0?tap:props.yDOxuHH0s};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,yDOxuHH0s,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z0DESltsu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1rto8gg=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(yDOxuHH0s){const res=await yDOxuHH0s(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"fahYh1XW9\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"fahYh1XW9\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12peo88\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"z0DESltsu\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1rto8gg,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({fahYh1XW9:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p6mfzk\",\"data-framer-name\":\"menu_svgrepo.com\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"xjuNAtR62\",svg:'<svg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10 15H50M10 30H50M10 45H50\" stroke=\"black\" stroke-width=\"5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1cl761a\",\"data-framer-name\":\"close_svgrepo.com\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:61,layoutDependency:layoutDependency,layoutId:\"g02SqjYru\",svg:'<svg width=\"61\" height=\"61\" viewBox=\"0 0 61 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.9545 15.6225C49.4099 15.151 49.6619 14.5195 49.6562 13.864C49.6505 13.2085 49.3875 12.5815 48.924 12.118C48.4605 11.6545 47.8335 11.3915 47.178 11.3858C46.5225 11.3801 45.891 11.6321 45.4195 12.0875L30.937 26.57L16.4545 12.0875C15.983 11.6321 15.3515 11.3801 14.696 11.3858C14.0405 11.3915 13.4134 11.6545 12.9499 12.118C12.4864 12.5815 12.2235 13.2085 12.2178 13.864C12.2121 14.5195 12.4641 15.151 12.9195 15.6225L27.402 30.105L12.9195 44.5875C12.6807 44.8181 12.4902 45.094 12.3592 45.399C12.2282 45.704 12.1592 46.0321 12.1563 46.364C12.1535 46.696 12.2167 47.0252 12.3424 47.3324C12.4681 47.6396 12.6538 47.9188 12.8885 48.1535C13.1232 48.3882 13.4023 48.5739 13.7096 48.6996C14.0168 48.8253 14.346 48.8885 14.678 48.8856C15.0099 48.8828 15.338 48.8138 15.643 48.6828C15.948 48.5518 16.2239 48.3613 16.4545 48.1225L30.937 33.64L45.4195 48.1225C45.891 48.5779 46.5225 48.8299 47.178 48.8242C47.8335 48.8185 48.4605 48.5556 48.924 48.0921C49.3875 47.6285 49.6505 47.0015 49.6562 46.346C49.6619 45.6905 49.4099 45.059 48.9545 44.5875L34.472 30.105L48.9545 15.6225Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0oDYw.framer-1ig7zrn, .framer-0oDYw .framer-1ig7zrn { display: block; }\",\".framer-0oDYw.framer-12peo88 { cursor: pointer; height: 60px; overflow: visible; position: relative; width: 60px; }\",\".framer-0oDYw .framer-p6mfzk, .framer-0oDYw .framer-1cl761a { flex: none; height: 30px; left: 0px; position: absolute; top: 0px; width: 30px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"fahYh1XW9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yDOxuHH0s\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerfel9OfnEZ=withCSS(Component,css,\"framer-0oDYw\");export default Framerfel9OfnEZ;Framerfel9OfnEZ.displayName=\"Header Menu\";Framerfel9OfnEZ.defaultProps={height:60,width:60};addPropertyControls(Framerfel9OfnEZ,{variant:{options:[\"z0DESltsu\",\"fahYh1XW9\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},yDOxuHH0s:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(Framerfel9OfnEZ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfel9OfnEZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fahYh1XW9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"60\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"yDOxuHH0s\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"60\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fel9OfnEZ.map", "// Generated by Framer (1e08357)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"znAZsDwdU\",\"LciQta5b0\"];const serializationHash=\"framer-cHqgB\";const variantClassNames={LciQta5b0:\"framer-v-11nuxg7\",znAZsDwdU:\"framer-v-4dw0sx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"znAZsDwdU\",Phone:\"LciQta5b0\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"znAZsDwdU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"znAZsDwdU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LciQta5b0\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"LciQta5b0\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4dw0sx\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"znAZsDwdU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...style},variants:{LciQta5b0:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({LciQta5b0:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"MENU\"})}),className:\"framer-f90kh9\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"I2xin9FuF\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({LciQta5b0:{href:{webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1txtfv5 framer-ra6l22\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"nFX8gdgk9\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{LciQta5b0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({LciQta5b0:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-t95yq9\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HsyLWacf5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 2 4 C 2 2.895 2.895 2 4 2 L 16 2 C 17.105 2 18 2.895 18 4 L 18 16 C 18 17.105 17.105 18 16 18 L 4 18 C 2.895 18 2 17.105 2 16 Z\" id=\"a1070z\"></path><clipPath id=\"a1071z\"><use xlink:href=\"#a1070z\"></use></clipPath></defs><use xlink:href=\"#a1070z\" fill=\"#eee\" clip-path=\"url(#a1071z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:9244735573,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Design\"})}),className:\"framer-11ry1eo\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Q0H8IDO1F\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LciQta5b0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Strona g\u0142\\xf3wna\"})}),fonts:[\"GF;Inter Tight-500\"]}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({LciQta5b0:{href:{hash:\":I7XMW5BGy\",webPageId:\"augiA20Il\"},openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-4os243 framer-ra6l22\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Jrrhykr2C\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{LciQta5b0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({LciQta5b0:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pjtwx1\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Q3P5IcRJ6\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 1 9.975 C 1 5.004 5.029 0.975 10 0.975 L 10 0.975 C 14.971 0.975 19 5.004 19 9.975 L 19 10.025 C 19 14.996 14.971 19.025 10 19.025 L 10 19.025 C 5.029 19.025 1 14.996 1 10.025 Z\" id=\"a1072z\"></path><clipPath id=\"a1073z\"><use xlink:href=\"#a1072z\"></use></clipPath></defs><use xlink:href=\"#a1072z\" fill=\"#eee\" clip-path=\"url(#a1073z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:12810902438,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Content\"})}),className:\"framer-1gf31a1\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"o1ByGmoEd\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LciQta5b0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Oferta\"})}),fonts:[\"GF;Inter Tight-500\"]}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({LciQta5b0:{href:{webPageId:\"xPjCjbc0q\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-qv183a framer-ra6l22\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"fPrNyILnR\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{LciQta5b0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({LciQta5b0:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15xqr4e\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"X1zTu9B6X\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 8.293 2.293 C 9.073 1.016 10.927 1.016 11.707 2.293 L 19.14 14.457 C 19.955 15.79 18.996 17.5 17.434 17.5 L 2.566 17.5 C 1.004 17.5 0.045 15.79 0.86 14.457 Z\" id=\"a1074z\"></path><clipPath id=\"a1075z\"><use xlink:href=\"#a1074z\"></use></clipPath></defs><use xlink:href=\"#a1074z\" fill=\"#eee\" clip-path=\"url(#a1075z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:9486151537,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Publish\"})}),className:\"framer-10vf9rm\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"uGgJjRnGn\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LciQta5b0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Projekty\"})}),fonts:[\"GF;Inter Tight-500\"]}},baseVariant,gestureVariant)})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WvN7TVR8T\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1q927ot framer-ra6l22\",\"data-border\":true,\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"mmvT0KL8f\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"O nas\"})}),className:\"framer-14xnp2l\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"X_8mN8FBa\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cHqgB.framer-ra6l22, .framer-cHqgB .framer-ra6l22 { display: block; }\",\".framer-cHqgB.framer-4dw0sx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px; position: relative; width: 150px; }\",\".framer-cHqgB .framer-f90kh9 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cHqgB .framer-1txtfv5, .framer-cHqgB .framer-4os243, .framer-cHqgB .framer-qv183a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cHqgB .framer-t95yq9, .framer-cHqgB .framer-pjtwx1, .framer-cHqgB .framer-15xqr4e { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-cHqgB .framer-11ry1eo, .framer-cHqgB .framer-1gf31a1, .framer-cHqgB .framer-10vf9rm, .framer-cHqgB .framer-14xnp2l { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cHqgB .framer-1q927ot { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 56px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cHqgB.framer-4dw0sx, .framer-cHqgB .framer-1txtfv5, .framer-cHqgB .framer-4os243, .framer-cHqgB .framer-qv183a, .framer-cHqgB .framer-1q927ot { gap: 0px; } .framer-cHqgB.framer-4dw0sx > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-cHqgB.framer-4dw0sx > :first-child { margin-top: 0px; } .framer-cHqgB.framer-4dw0sx > :last-child { margin-bottom: 0px; } .framer-cHqgB .framer-1txtfv5 > *, .framer-cHqgB .framer-4os243 > *, .framer-cHqgB .framer-qv183a > *, .framer-cHqgB .framer-1q927ot > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-cHqgB .framer-1txtfv5 > :first-child, .framer-cHqgB .framer-4os243 > :first-child, .framer-cHqgB .framer-qv183a > :first-child, .framer-cHqgB .framer-1q927ot > :first-child { margin-left: 0px; } .framer-cHqgB .framer-1txtfv5 > :last-child, .framer-cHqgB .framer-4os243 > :last-child, .framer-cHqgB .framer-qv183a > :last-child, .framer-cHqgB .framer-1q927ot > :last-child { margin-right: 0px; } }\",\".framer-cHqgB.framer-v-11nuxg7.framer-4dw0sx { gap: 0px; padding: 32px 0px 0px 0px; }\",\".framer-cHqgB.framer-v-11nuxg7 .framer-f90kh9 { order: 0; }\",\".framer-cHqgB.framer-v-11nuxg7 .framer-1txtfv5 { height: 56px; order: 1; text-decoration: none; }\",\".framer-cHqgB.framer-v-11nuxg7 .framer-4os243 { height: 56px; order: 3; text-decoration: none; }\",\".framer-cHqgB.framer-v-11nuxg7 .framer-qv183a { height: 56px; order: 4; text-decoration: none; }\",\".framer-cHqgB.framer-v-11nuxg7 .framer-1q927ot { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cHqgB.framer-v-11nuxg7.framer-4dw0sx { gap: 0px; } .framer-cHqgB.framer-v-11nuxg7.framer-4dw0sx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cHqgB.framer-v-11nuxg7.framer-4dw0sx > :first-child { margin-top: 0px; } .framer-cHqgB.framer-v-11nuxg7.framer-4dw0sx > :last-child { margin-bottom: 0px; } }\",'.framer-cHqgB[data-border=\"true\"]::after, .framer-cHqgB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 107.5\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LciQta5b0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervzQ5vgPTA=withCSS(Component,css,\"framer-cHqgB\");export default FramervzQ5vgPTA;FramervzQ5vgPTA.displayName=\"Links: Product\";FramervzQ5vgPTA.defaultProps={height:107.5,width:150};addPropertyControls(FramervzQ5vgPTA,{variant:{options:[\"znAZsDwdU\",\"LciQta5b0\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervzQ5vgPTA,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervzQ5vgPTA\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LciQta5b0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"107.5\",\"framerIntrinsicWidth\":\"150\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vzQ5vgPTA.map", "// Generated by Framer (92f3d02)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2nuEkn5MibVkujWlf4RF/JScyRjzgxmRhSJ0V8hDc/RY2yo_c55.js\";import HeaderMenu from\"https://framerusercontent.com/modules/miQuUdXW0pWogFRmOIhD/bJ728lw1AhzdmG3kzn3b/fel9OfnEZ.js\";import LinksProduct from\"https://framerusercontent.com/modules/zK2hODpbpmRY2Crty5hg/8E2r1syauDgk1v8GSYse/vzQ5vgPTA.js\";const HeaderMenuFonts=getFonts(HeaderMenu);const LinksProductFonts=getFonts(LinksProduct);const cycleOrder=[\"QkwIbmVfR\",\"fx7fQ2wow\",\"K7mt58iqy\"];const serializationHash=\"framer-vMRLF\";const variantClassNames={fx7fQ2wow:\"framer-v-15kc6rk\",K7mt58iqy:\"framer-v-10905zz\",QkwIbmVfR:\"framer-v-fnia89\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"QkwIbmVfR\",\"Variant 2\":\"fx7fQ2wow\",\"Variant 3\":\"K7mt58iqy\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"QkwIbmVfR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QkwIbmVfR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const yDOxuHH0s1ncxzug=activeVariantCallback(async(...args)=>{setVariant(\"K7mt58iqy\");});const yDOxuHH0s14g3ts8=activeVariantCallback(async(...args)=>{setVariant(\"fx7fQ2wow\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"fx7fQ2wow\",\"K7mt58iqy\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"K7mt58iqy\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"fx7fQ2wow\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"fx7fQ2wow\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fnia89\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QkwIbmVfR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(244, 244, 244)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({fx7fQ2wow:{\"data-framer-name\":\"Variant 2\",tabIndex:5},K7mt58iqy:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ibjaow\",\"data-framer-name\":\"Frame 70\",layoutDependency:layoutDependency,layoutId:\"RGwAL6hX2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m2xnxz\",layoutDependency:layoutDependency,layoutId:\"qZ_wOSyOO\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},...addPropertyOverrides({fx7fQ2wow:{href:undefined,openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1mgdi5w framer-1wx296k\",\"data-framer-name\":\"Frame 25\",layoutDependency:layoutDependency,layoutId:\"eKrnreY5Q\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wfi7kv\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BW3axcQoQ\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 40\"><path d=\"M 0 20.043 C 0 17.261 0 14.48 0 11.698 C 0 11.437 0.007 11.177 0.011 10.916 C 0.012 10.834 0.026 10.756 0.061 10.679 C 0.105 10.583 0.129 10.478 0.173 10.382 C 0.363 9.972 0.673 9.678 1.058 9.458 C 1.283 9.33 1.506 9.199 1.73 9.069 C 1.943 8.945 2.156 8.821 2.368 8.697 C 2.556 8.587 2.744 8.476 2.932 8.365 C 3.124 8.253 3.314 8.139 3.507 8.028 C 3.909 7.795 4.313 7.566 4.714 7.33 C 5.188 7.052 5.658 6.766 6.132 6.488 C 6.526 6.257 6.925 6.035 7.32 5.807 C 7.516 5.694 7.707 5.572 7.903 5.458 C 8.193 5.29 8.487 5.127 8.776 4.958 C 8.964 4.848 9.148 4.729 9.336 4.619 C 9.674 4.42 10.014 4.225 10.352 4.028 C 10.566 3.905 10.779 3.783 10.993 3.659 C 11.398 3.423 11.804 3.188 12.208 2.949 C 12.538 2.754 12.864 2.551 13.195 2.358 C 13.477 2.193 13.766 2.038 14.05 1.876 C 14.222 1.778 14.39 1.672 14.56 1.572 C 14.86 1.396 15.16 1.22 15.461 1.047 C 15.741 0.886 16.022 0.724 16.306 0.571 C 16.62 0.403 16.961 0.363 17.304 0.433 C 17.485 0.471 17.661 0.559 17.827 0.649 C 18.119 0.806 18.399 0.983 18.685 1.15 C 19.118 1.403 19.553 1.653 19.986 1.906 C 20.446 2.175 20.905 2.447 21.365 2.717 C 21.696 2.912 22.027 3.106 22.358 3.301 C 22.665 3.481 22.972 3.66 23.28 3.84 C 23.489 3.962 23.699 4.083 23.908 4.205 C 24.124 4.332 24.339 4.461 24.556 4.587 C 24.979 4.832 25.404 5.074 25.826 5.319 C 26.071 5.461 26.314 5.608 26.558 5.75 C 26.841 5.915 27.126 6.077 27.408 6.242 C 27.81 6.476 28.21 6.712 28.612 6.945 C 29.004 7.171 29.4 7.393 29.791 7.62 C 30.001 7.742 30.204 7.874 30.413 7.996 C 30.755 8.196 31.099 8.392 31.442 8.59 C 31.634 8.701 31.826 8.814 32.018 8.926 C 32.36 9.127 32.701 9.328 33.043 9.527 C 33.487 9.786 33.778 10.161 33.923 10.661 C 33.965 10.805 33.983 10.946 33.983 11.093 C 33.984 12.61 33.985 14.127 33.985 15.644 C 33.985 19.143 33.985 22.642 33.985 26.141 C 33.985 27.072 33.992 28.002 33.974 28.931 C 33.966 29.33 33.851 29.71 33.594 30.03 C 33.473 30.18 33.326 30.302 33.165 30.403 C 32.885 30.58 32.599 30.748 32.313 30.915 C 32.073 31.056 31.828 31.189 31.587 31.33 C 31.235 31.536 30.885 31.747 30.532 31.953 C 30.341 32.066 30.144 32.17 29.952 32.282 C 29.67 32.448 29.391 32.62 29.109 32.786 C 28.8 32.969 28.488 33.148 28.177 33.328 C 27.999 33.432 27.818 33.531 27.641 33.635 C 27.411 33.771 27.185 33.913 26.955 34.048 C 26.672 34.213 26.387 34.373 26.104 34.539 C 25.647 34.805 25.191 35.074 24.733 35.34 C 24.264 35.612 23.794 35.88 23.326 36.151 C 23.011 36.333 22.698 36.518 22.384 36.703 C 22.112 36.863 21.842 37.024 21.57 37.184 C 21.261 37.367 20.95 37.548 20.64 37.73 C 19.971 38.123 19.302 38.517 18.633 38.91 C 18.393 39.051 18.154 39.195 17.913 39.335 C 17.441 39.611 16.942 39.67 16.42 39.519 C 16.32 39.489 16.225 39.439 16.133 39.39 C 15.958 39.297 15.784 39.202 15.614 39.1 C 15.222 38.867 14.832 38.627 14.44 38.394 C 14.201 38.251 13.957 38.116 13.716 37.974 C 13.368 37.769 13.023 37.56 12.674 37.355 C 12.389 37.187 12.1 37.023 11.814 36.857 C 11.426 36.632 11.039 36.406 10.651 36.18 C 10.382 36.023 10.114 35.866 9.845 35.71 C 9.447 35.478 9.049 35.247 8.65 35.015 C 8.245 34.78 7.84 34.546 7.435 34.309 C 7.12 34.126 6.808 33.941 6.493 33.757 C 6.339 33.667 6.185 33.58 6.031 33.49 C 5.682 33.286 5.333 33.082 4.985 32.877 C 4.532 32.612 4.079 32.346 3.626 32.081 C 3.189 31.825 2.753 31.57 2.317 31.316 C 2.097 31.187 1.875 31.063 1.657 30.933 C 1.351 30.751 1.038 30.58 0.743 30.381 C 0.446 30.18 0.231 29.903 0.102 29.559 C 0.027 29.356 0.004 29.15 0.004 28.936 C 0.004 27.742 0.001 26.547 0.001 25.352 C 0 23.582 0.001 21.812 0.001 20.042 Z M 11.241 19.982 L 11.245 19.982 C 11.245 22.393 11.245 24.803 11.245 27.213 C 11.245 27.271 11.245 27.328 11.237 27.384 C 11.208 27.607 11.12 27.657 10.928 27.551 C 10.645 27.394 10.367 27.228 10.089 27.063 C 9.787 26.883 9.488 26.697 9.186 26.517 C 8.859 26.324 8.528 26.137 8.201 25.945 C 8.061 25.864 7.922 25.782 7.786 25.694 C 7.659 25.611 7.593 25.49 7.586 25.336 C 7.58 25.177 7.569 25.018 7.568 24.86 C 7.565 24.044 7.565 23.228 7.565 22.412 C 7.565 21.532 7.567 20.651 7.566 19.77 C 7.566 19.668 7.56 19.565 7.54 19.466 C 7.49 19.202 7.318 19.097 7.06 19.165 C 7.036 19.171 7.013 19.178 6.991 19.188 C 6.903 19.228 6.812 19.265 6.729 19.313 C 6.342 19.532 5.956 19.752 5.571 19.976 C 5.051 20.279 4.532 20.585 4.012 20.889 C 3.98 20.907 3.951 20.929 3.92 20.947 C 3.733 21.054 3.647 21.218 3.647 21.431 C 3.647 21.713 3.649 21.994 3.648 22.275 C 3.648 23.952 3.647 25.628 3.647 27.305 C 3.647 27.394 3.654 27.484 3.666 27.573 C 3.689 27.755 3.769 27.908 3.923 28.011 C 4.078 28.114 4.234 28.215 4.395 28.308 C 4.604 28.43 4.821 28.539 5.031 28.661 C 5.436 28.897 5.839 29.138 6.243 29.376 C 6.64 29.609 7.038 29.842 7.435 30.076 C 7.738 30.254 8.039 30.437 8.342 30.614 C 8.615 30.772 8.891 30.925 9.164 31.084 C 9.597 31.335 10.031 31.587 10.462 31.842 C 10.803 32.043 11.14 32.253 11.482 32.453 C 11.911 32.703 12.345 32.945 12.776 33.193 C 13.025 33.336 13.272 33.482 13.52 33.626 C 13.761 33.767 14.003 33.905 14.245 34.045 C 14.357 34.11 14.463 34.188 14.581 34.237 C 14.854 34.351 15.103 34.215 15.121 33.918 C 15.129 33.788 15.139 33.657 15.139 33.527 C 15.137 32.915 15.13 32.304 15.127 31.692 C 15.124 31.048 15.122 30.403 15.122 29.759 C 15.122 26.166 15.122 22.573 15.122 18.98 C 15.122 17.765 15.119 16.549 15.115 15.334 C 15.112 14.47 15.104 13.605 15.101 12.741 C 15.101 12.501 15.114 12.26 15.114 12.02 C 15.114 11.788 15.101 11.556 15.103 11.324 C 15.105 11.063 15.125 10.802 15.12 10.542 C 15.115 10.266 15.25 10.091 15.471 9.961 C 15.739 9.802 16.006 9.641 16.272 9.481 C 16.446 9.377 16.619 9.273 16.794 9.173 C 16.928 9.097 17.064 9.1 17.199 9.173 C 17.246 9.198 17.293 9.22 17.339 9.247 C 17.729 9.475 18.117 9.709 18.512 9.93 C 18.682 10.025 18.772 10.152 18.776 10.347 C 18.782 10.665 18.795 10.983 18.801 11.301 C 18.807 11.602 18.803 11.904 18.81 12.206 C 18.818 12.544 18.845 12.882 18.845 13.22 C 18.845 14.194 18.835 15.169 18.832 16.144 C 18.832 16.266 18.845 16.388 18.845 16.51 C 18.849 16.897 18.85 17.285 18.849 17.673 C 18.849 17.929 18.843 18.186 18.842 18.444 C 18.842 18.606 18.842 18.769 18.849 18.931 C 18.857 19.151 18.98 19.302 19.153 19.417 C 19.237 19.473 19.324 19.525 19.411 19.577 C 19.861 19.848 20.31 20.121 20.764 20.387 C 21.077 20.57 21.401 20.736 21.716 20.918 C 22.126 21.155 22.529 21.403 22.937 21.642 C 23.338 21.878 23.741 22.109 24.142 22.345 C 24.364 22.476 24.583 22.613 24.804 22.746 C 25.044 22.889 25.284 23.03 25.524 23.172 C 25.729 23.294 25.935 23.415 26.139 23.539 C 26.293 23.633 26.385 23.771 26.408 23.952 C 26.415 24.005 26.423 24.057 26.423 24.11 C 26.425 24.461 26.427 24.812 26.426 25.162 C 26.426 25.231 26.415 25.3 26.408 25.369 C 26.396 25.477 26.341 25.56 26.261 25.627 C 26.211 25.668 26.157 25.705 26.102 25.737 C 25.794 25.915 25.484 26.09 25.176 26.269 C 24.942 26.405 24.711 26.546 24.477 26.682 C 24.069 26.92 23.66 27.158 23.251 27.395 C 23.153 27.452 23.058 27.516 22.957 27.565 C 22.844 27.619 22.78 27.586 22.747 27.466 C 22.733 27.416 22.727 27.362 22.725 27.31 C 22.722 27.171 22.722 27.033 22.722 26.894 C 22.724 26.295 22.723 25.695 22.73 25.095 C 22.732 24.83 22.634 24.63 22.408 24.494 C 22.387 24.482 22.367 24.468 22.347 24.456 C 22.215 24.377 22.083 24.298 21.951 24.22 C 21.365 23.877 20.779 23.533 20.193 23.19 C 19.966 23.057 19.74 22.923 19.511 22.794 C 19.438 22.753 19.357 22.719 19.276 22.701 C 19.14 22.67 19.01 22.683 18.917 22.81 C 18.864 22.882 18.852 22.965 18.852 23.053 C 18.853 23.469 18.856 23.884 18.856 24.3 C 18.854 26.127 18.852 27.955 18.85 29.782 C 18.849 30.585 18.85 31.389 18.846 32.192 C 18.844 32.649 18.831 33.106 18.831 33.562 C 18.831 33.716 18.848 33.872 18.876 34.023 C 18.907 34.187 19.042 34.279 19.206 34.264 C 19.278 34.257 19.353 34.246 19.418 34.217 C 19.572 34.147 19.725 34.072 19.871 33.986 C 20.135 33.831 20.393 33.663 20.657 33.506 C 20.995 33.307 21.337 33.116 21.675 32.916 C 22.062 32.688 22.444 32.453 22.83 32.223 C 23.142 32.036 23.455 31.85 23.768 31.666 C 24.235 31.391 24.702 31.117 25.17 30.844 C 25.463 30.672 25.758 30.503 26.051 30.331 C 26.284 30.194 26.514 30.05 26.749 29.916 C 27.058 29.739 27.372 29.572 27.681 29.396 C 28.021 29.201 28.359 29.003 28.697 28.804 C 29.112 28.559 29.526 28.315 29.937 28.065 C 30.115 27.956 30.253 27.808 30.274 27.585 C 30.286 27.463 30.298 27.341 30.298 27.219 C 30.295 26.803 30.282 26.387 30.281 25.972 C 30.279 24.764 30.281 23.557 30.281 22.35 C 30.281 22.15 30.285 21.95 30.28 21.751 C 30.274 21.54 30.202 21.36 30.017 21.242 C 29.939 21.192 29.864 21.136 29.784 21.089 C 29.204 20.743 28.623 20.399 28.043 20.053 C 27.675 19.834 27.309 19.612 26.939 19.395 C 26.576 19.183 26.21 18.977 25.845 18.767 C 25.369 18.493 24.893 18.217 24.417 17.942 C 24.298 17.874 24.171 17.816 24.061 17.734 C 23.83 17.561 23.573 17.434 23.328 17.286 C 23.203 17.211 23.077 17.137 22.951 17.066 C 22.819 16.991 22.758 16.874 22.75 16.725 C 22.743 16.595 22.731 16.465 22.73 16.335 C 22.727 15.69 22.728 15.046 22.724 14.402 C 22.721 14.014 22.712 13.627 22.705 13.24 C 22.702 13.049 22.699 12.857 22.697 12.665 C 22.697 12.633 22.697 12.599 22.703 12.567 C 22.721 12.462 22.793 12.423 22.887 12.472 C 22.961 12.512 23.031 12.561 23.103 12.605 C 23.472 12.831 23.838 13.062 24.21 13.283 C 24.746 13.601 25.285 13.911 25.823 14.226 C 25.938 14.293 26.055 14.357 26.166 14.431 C 26.3 14.52 26.393 14.644 26.401 14.811 C 26.412 15.015 26.415 15.218 26.411 15.422 C 26.406 15.634 26.398 15.845 26.434 16.056 C 26.464 16.228 26.55 16.359 26.696 16.448 C 26.893 16.568 27.092 16.684 27.29 16.801 C 27.593 16.98 27.894 17.162 28.198 17.338 C 28.421 17.468 28.64 17.604 28.855 17.748 C 29.124 17.927 29.416 18.071 29.699 18.228 C 29.741 18.251 29.787 18.271 29.834 18.281 C 30.047 18.329 30.213 18.27 30.258 18.027 C 30.266 17.983 30.276 17.939 30.277 17.894 C 30.281 17.744 30.281 17.593 30.284 17.443 C 30.287 17.292 30.295 17.141 30.297 16.991 C 30.298 16.877 30.293 16.763 30.293 16.649 C 30.292 16.314 30.293 15.98 30.292 15.646 C 30.292 15.414 30.292 15.181 30.29 14.949 C 30.289 14.643 30.287 14.338 30.287 14.032 C 30.287 13.783 30.289 13.535 30.287 13.286 C 30.286 13.038 30.287 12.789 30.273 12.542 C 30.263 12.351 30.165 12.198 30.005 12.099 C 29.692 11.905 29.376 11.718 29.059 11.531 C 28.825 11.394 28.587 11.264 28.353 11.128 C 28.165 11.019 27.979 10.902 27.791 10.792 C 27.387 10.555 26.98 10.322 26.576 10.084 C 26.332 9.94 26.093 9.787 25.849 9.646 C 25.426 9.4 24.999 9.161 24.575 8.917 C 24.302 8.76 24.032 8.598 23.759 8.439 C 23.545 8.316 23.329 8.196 23.117 8.071 C 22.786 7.876 22.458 7.675 22.127 7.481 C 21.775 7.274 21.42 7.073 21.067 6.868 C 20.808 6.718 20.551 6.565 20.292 6.416 C 20.092 6.301 19.889 6.192 19.691 6.075 C 19.367 5.883 19.05 5.681 18.725 5.492 C 18.264 5.223 17.798 4.963 17.336 4.697 C 17.214 4.627 17.088 4.605 16.951 4.619 C 16.779 4.636 16.623 4.702 16.473 4.783 C 16.235 4.912 15.998 5.044 15.764 5.179 C 15.372 5.405 14.981 5.633 14.59 5.862 C 14.36 5.997 14.131 6.135 13.901 6.268 C 13.768 6.344 13.629 6.412 13.497 6.49 C 13.152 6.692 12.81 6.9 12.464 7.101 C 12.286 7.204 12.101 7.296 11.923 7.401 C 11.767 7.493 11.618 7.599 11.462 7.693 C 11.13 7.893 10.796 8.091 10.461 8.287 C 9.998 8.559 9.533 8.829 9.067 9.098 C 8.728 9.294 8.386 9.487 8.048 9.686 C 7.738 9.868 7.433 10.059 7.122 10.241 C 6.654 10.515 6.184 10.782 5.716 11.055 C 5.255 11.324 4.796 11.597 4.337 11.869 C 4.198 11.951 4.058 12.033 3.922 12.12 C 3.745 12.233 3.658 12.394 3.662 12.612 C 3.668 12.918 3.664 13.223 3.662 13.529 C 3.661 13.672 3.655 13.815 3.654 13.957 C 3.652 14.141 3.652 14.323 3.653 14.507 C 3.653 14.678 3.655 14.849 3.656 15.02 C 3.658 15.172 3.659 15.322 3.658 15.473 C 3.655 15.673 3.646 15.872 3.648 16.072 C 3.65 16.152 3.666 16.235 3.69 16.311 C 3.747 16.495 3.889 16.578 4.075 16.54 C 4.145 16.526 4.218 16.506 4.281 16.473 C 4.595 16.306 4.911 16.142 5.218 15.962 C 5.594 15.742 5.962 15.506 6.336 15.281 C 6.582 15.133 6.832 14.994 7.08 14.849 C 7.272 14.738 7.464 14.625 7.656 14.514 C 7.877 14.387 8.099 14.262 8.318 14.134 C 8.831 13.833 9.344 13.534 9.854 13.228 C 10.173 13.037 10.486 12.836 10.802 12.639 C 10.864 12.601 10.923 12.556 10.989 12.526 C 11.17 12.445 11.246 12.497 11.247 12.694 C 11.247 12.738 11.245 12.783 11.244 12.828 C 11.239 13.052 11.228 13.276 11.228 13.5 C 11.231 14.972 11.237 16.444 11.24 17.916 C 11.242 18.605 11.24 19.294 11.24 19.984 Z\" fill=\"rgb(20,101,255)\"></path></svg>',svgContentId:9655866382,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24.35px\",\"--framer-font-weight\":\"700\"},children:[\"Designs\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(20, 101, 255))\"},children:\".\"})]})}),className:\"framer-1t0dga3\",\"data-framer-name\":\"Design.\",fonts:[\"GF;Inter Tight-700\"],layoutDependency:layoutDependency,layoutId:\"eMG_CXBIh\",style:{\"--extracted-1w3ko1f\":\"rgb(20, 101, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},...addPropertyOverrides({fx7fQ2wow:{href:undefined},K7mt58iqy:{href:undefined,openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1c1bkrq framer-1wx296k\",\"data-framer-name\":\"Frame 25\",layoutDependency:layoutDependency,layoutId:\"apqOj1hYg\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fx7fQ2wow:{width:\"29px\"},K7mt58iqy:{width:\"30px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vl56g1-container\",layoutDependency:layoutDependency,layoutId:\"sKrlxpFSY-container\",children:/*#__PURE__*/_jsx(HeaderMenu,{height:\"100%\",id:\"sKrlxpFSY\",layoutId:\"sKrlxpFSY\",style:{height:\"100%\",width:\"100%\"},variant:\"z0DESltsu\",width:\"100%\",...addPropertyOverrides({fx7fQ2wow:{variant:\"fahYh1XW9\",yDOxuHH0s:yDOxuHH0s1ncxzug},K7mt58iqy:{yDOxuHH0s:yDOxuHH0s14g3ts8}},baseVariant,gestureVariant)})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sy3cds\",layoutDependency:layoutDependency,layoutId:\"b4xO8dJxV\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qs0p0a\",\"data-framer-name\":\"Frame 26\",layoutDependency:layoutDependency,layoutId:\"ge24_Ctz5\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fx7fQ2wow:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.9103)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9syugb-container\",layoutDependency:layoutDependency,layoutId:\"q34nr0Boi-container\",children:/*#__PURE__*/_jsx(LinksProduct,{height:\"100%\",id:\"q34nr0Boi\",layoutId:\"q34nr0Boi\",style:{height:\"100%\",width:\"100%\"},variant:\"LciQta5b0\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ewua7\",layoutDependency:layoutDependency,layoutId:\"ndIiRUhqf\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(Link,{href:\"tel:515-772-252\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1migs8w framer-1wx296k\",\"data-framer-name\":\"Frame 1\",layoutDependency:layoutDependency,layoutId:\"M7dyyIege\",style:{backgroundColor:\"rgb(20, 101, 255)\",borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Zadzwo\u0144\"})}),className:\"framer-1cbrkqi\",\"data-framer-name\":\"Let\u2019s Talk\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"UsE2nIQcM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kfocec\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PBL4IJXmd\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 19.091 14.473 L 19.091 17.2 C 19.092 17.453 19.04 17.704 18.939 17.936 C 18.837 18.168 18.688 18.376 18.502 18.547 C 18.315 18.718 18.095 18.849 17.855 18.93 C 17.615 19.011 17.361 19.041 17.109 19.018 C 14.312 18.714 11.625 17.758 9.264 16.227 C 7.067 14.831 5.205 12.969 3.809 10.773 C 2.273 8.401 1.317 5.701 1.018 2.891 C 0.995 2.639 1.025 2.386 1.106 2.147 C 1.186 1.908 1.316 1.688 1.486 1.501 C 1.656 1.315 1.863 1.166 2.094 1.064 C 2.325 0.962 2.575 0.909 2.827 0.909 L 5.555 0.909 C 5.996 0.905 6.423 1.061 6.758 1.349 C 7.092 1.636 7.311 2.036 7.373 2.473 C 7.488 3.345 7.701 4.202 8.009 5.027 C 8.131 5.353 8.158 5.706 8.085 6.046 C 8.013 6.386 7.844 6.698 7.6 6.945 L 6.445 8.1 C 7.74 10.376 9.624 12.26 11.9 13.555 L 13.055 12.4 C 13.302 12.156 13.614 11.987 13.954 11.915 C 14.294 11.842 14.647 11.869 14.973 11.991 C 15.798 12.299 16.654 12.512 17.527 12.627 C 17.969 12.69 18.372 12.912 18.66 13.252 C 18.949 13.593 19.102 14.027 19.091 14.473 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9013665118,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"njoS3GMBL\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18zxpv3 framer-1wx296k\",\"data-border\":true,\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"PpKoIb6Vd\",style:{\"--border-bottom-width\":\"1.399999976158142px\",\"--border-color\":\"rgb(213, 213, 213)\",\"--border-left-width\":\"1.399999976158142px\",\"--border-right-width\":\"1.399999976158142px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.399999976158142px\",borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 6, 6))\"},children:\"Zapytaj o wycen\u0119\"})}),className:\"framer-1d28kwf\",\"data-framer-name\":\"Learn More\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"vf8ZBCEOg\",style:{\"--extracted-r6o4lv\":\"rgb(6, 6, 6)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fyvftm\",layoutDependency:layoutDependency,layoutId:\"pwYqS_gnH\",children:isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WvN7TVR8T\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h29h1i\",\"data-styles-preset\":\"RY2yo_c55\",children:\"O nas\"})})})}),className:\"framer-1mh8b1i\",\"data-framer-name\":\"Oferta\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"qBImF90ha\",style:{\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-guk0qe\",layoutDependency:layoutDependency,layoutId:\"FRBXjY1w8\",children:isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":V_qTc9DIz\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h29h1i\",\"data-styles-preset\":\"RY2yo_c55\",children:\"Oferta\"})})})}),className:\"framer-1xmjixc\",\"data-framer-name\":\"Oferta\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"pb4Nlp6RK\",style:{\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7piyj\",layoutDependency:layoutDependency,layoutId:\"kOzx0jCnG\",children:isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xPjCjbc0q\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h29h1i\",\"data-styles-preset\":\"RY2yo_c55\",children:\"Projekty\"})})})}),className:\"framer-jq1hfw\",\"data-framer-name\":\"Projekty\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"XvD2lPaKj\",style:{\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jndkir\",\"data-framer-name\":\"Frame 69\",layoutDependency:layoutDependency,layoutId:\"RRPNul0mJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"njoS3GMBL\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h29h1i\",\"data-styles-preset\":\"RY2yo_c55\",children:\"Zapytaj o wycen\u0119\"})})})}),className:\"framer-1wlukkv\",\"data-framer-name\":\"Zapytaj o wycen\u0119\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"nwh0kYJoZ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":kYXHTSNrS\",webPageId:\"njoS3GMBL\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-kakcnk framer-1wx296k\",\"data-framer-name\":\"Frame 27\",layoutDependency:layoutDependency,layoutId:\"ciqKkbOzg\",style:{backgroundColor:\"rgb(20, 101, 255)\",borderBottomLeftRadius:275,borderBottomRightRadius:275,borderTopLeftRadius:275,borderTopRightRadius:275},whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Kontakt\"})}),className:\"framer-o73te\",\"data-framer-name\":\"Kontakt\",fonts:[\"GF;Inter Tight-500\"],layoutDependency:layoutDependency,layoutId:\"MKshRgAOv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-laifpg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"qImYWcAcI\",svg:'<svg width=\"23\" height=\"22\" viewBox=\"-1 -1 23 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.75212 15.4441L15.6403 4.55592M15.6403 4.55592L6.64931 4.63841M15.6403 4.55592L15.5578 13.5469\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vMRLF.framer-1wx296k, .framer-vMRLF .framer-1wx296k { display: block; }\",\".framer-vMRLF.framer-fnia89 { height: 88px; position: relative; width: 1440px; }\",\".framer-vMRLF .framer-ibjaow { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 52px; justify-content: space-between; left: calc(49.72222222222224% - 1233px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(48.86363636363639% - 52px / 2); width: 1233px; }\",\".framer-vMRLF .framer-m2xnxz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 52px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 163px; }\",\".framer-vMRLF .framer-1mgdi5w { align-content: center; align-items: center; 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; text-decoration: none; width: min-content; }\",\".framer-vMRLF .framer-wfi7kv { flex: none; height: 40px; position: relative; width: 34px; }\",\".framer-vMRLF .framer-1t0dga3, .framer-vMRLF .framer-1cbrkqi, .framer-vMRLF .framer-1d28kwf, .framer-vMRLF .framer-1wlukkv, .framer-vMRLF .framer-o73te { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vMRLF .framer-1c1bkrq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 29px; min-width: 40px; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-vMRLF .framer-vl56g1-container { flex: none; height: 29px; position: relative; width: 29px; }\",\".framer-vMRLF .framer-1sy3cds { flex: none; height: 163%; overflow: hidden; position: relative; width: 1054px; }\",\".framer-vMRLF .framer-qs0p0a { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; left: 10px; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-vMRLF .framer-9syugb-container { flex: none; height: 32%; position: relative; width: 100%; }\",\".framer-vMRLF .framer-14ewua7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 124px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 355px; }\",\".framer-vMRLF .framer-1migs8w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 25px 16px 25px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vMRLF .framer-1kfocec { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-vMRLF .framer-18zxpv3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 18px 16px 18px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vMRLF .framer-1fyvftm, .framer-vMRLF .framer-guk0qe { flex: none; height: 22px; overflow: visible; position: relative; width: 51px; }\",\".framer-vMRLF .framer-1mh8b1i, .framer-vMRLF .framer-1xmjixc { flex: none; height: auto; left: 0px; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-vMRLF .framer-u7piyj { flex: none; height: 22px; overflow: visible; position: relative; width: 65px; }\",\".framer-vMRLF .framer-jq1hfw { flex: none; height: auto; left: 49%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-vMRLF .framer-jndkir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 176%; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 0px; top: calc(52.00000000000002% - 176% / 2); width: 31%; }\",\".framer-vMRLF .framer-kakcnk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 14px 26px 14px 26px; position: relative; text-decoration: none; width: 47%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vMRLF .framer-laifpg { flex: none; height: 22px; position: relative; width: 23px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMRLF .framer-1mgdi5w, .framer-vMRLF .framer-1c1bkrq, .framer-vMRLF .framer-qs0p0a, .framer-vMRLF .framer-14ewua7, .framer-vMRLF .framer-1migs8w, .framer-vMRLF .framer-18zxpv3, .framer-vMRLF .framer-jndkir, .framer-vMRLF .framer-kakcnk { gap: 0px; } .framer-vMRLF .framer-1mgdi5w > *, .framer-vMRLF .framer-1c1bkrq > * { margin: 0px; margin-left: calc(10.315790176391602px / 2); margin-right: calc(10.315790176391602px / 2); } .framer-vMRLF .framer-1mgdi5w > :first-child, .framer-vMRLF .framer-1c1bkrq > :first-child, .framer-vMRLF .framer-qs0p0a > :first-child, .framer-vMRLF .framer-1migs8w > :first-child, .framer-vMRLF .framer-18zxpv3 > :first-child, .framer-vMRLF .framer-jndkir > :first-child, .framer-vMRLF .framer-kakcnk > :first-child { margin-left: 0px; } .framer-vMRLF .framer-1mgdi5w > :last-child, .framer-vMRLF .framer-1c1bkrq > :last-child, .framer-vMRLF .framer-qs0p0a > :last-child, .framer-vMRLF .framer-1migs8w > :last-child, .framer-vMRLF .framer-18zxpv3 > :last-child, .framer-vMRLF .framer-jndkir > :last-child, .framer-vMRLF .framer-kakcnk > :last-child { margin-right: 0px; } .framer-vMRLF .framer-qs0p0a > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-vMRLF .framer-14ewua7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vMRLF .framer-14ewua7 > :first-child { margin-top: 0px; } .framer-vMRLF .framer-14ewua7 > :last-child { margin-bottom: 0px; } .framer-vMRLF .framer-1migs8w > *, .framer-vMRLF .framer-18zxpv3 > *, .framer-vMRLF .framer-kakcnk > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-vMRLF .framer-jndkir > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",\".framer-vMRLF.framer-v-15kc6rk.framer-fnia89 { height: 786px; width: 390px; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-ibjaow { flex-direction: column; height: 282px; left: calc(50.00000000000002% - 100% / 2); top: 0px; width: 100%; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-m2xnxz, .framer-vMRLF.framer-v-10905zz .framer-m2xnxz { height: 88px; width: 91%; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-1c1bkrq, .framer-vMRLF.framer-v-10905zz .framer-1c1bkrq { min-height: unset; min-width: unset; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-1sy3cds { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 309%; justify-content: flex-start; padding: 0px 0px 177px 0px; width: 100%; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-qs0p0a { align-content: flex-start; align-items: flex-start; bottom: unset; flex-direction: column; gap: 20px; height: 125%; left: unset; order: 0; position: relative; width: 91%; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-9syugb-container, .framer-vMRLF.framer-v-15kc6rk .framer-1kfocec, .framer-vMRLF.framer-v-15kc6rk .framer-1d28kwf { order: 0; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-14ewua7, .framer-vMRLF.framer-v-15kc6rk .framer-1cbrkqi { order: 1; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-1fyvftm { order: 2; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-guk0qe { order: 3; }\",\".framer-vMRLF.framer-v-15kc6rk .framer-u7piyj { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMRLF.framer-v-15kc6rk .framer-ibjaow, .framer-vMRLF.framer-v-15kc6rk .framer-1sy3cds, .framer-vMRLF.framer-v-15kc6rk .framer-qs0p0a { gap: 0px; } .framer-vMRLF.framer-v-15kc6rk .framer-ibjaow > *, .framer-vMRLF.framer-v-15kc6rk .framer-ibjaow > :first-child, .framer-vMRLF.framer-v-15kc6rk .framer-ibjaow > :last-child { margin: 0px; } .framer-vMRLF.framer-v-15kc6rk .framer-1sy3cds > *, .framer-vMRLF.framer-v-15kc6rk .framer-qs0p0a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vMRLF.framer-v-15kc6rk .framer-1sy3cds > :first-child, .framer-vMRLF.framer-v-15kc6rk .framer-qs0p0a > :first-child { margin-top: 0px; } .framer-vMRLF.framer-v-15kc6rk .framer-1sy3cds > :last-child, .framer-vMRLF.framer-v-15kc6rk .framer-qs0p0a > :last-child { margin-bottom: 0px; } }\",\".framer-vMRLF.framer-v-10905zz.framer-fnia89 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 390px; }\",\".framer-vMRLF.framer-v-10905zz .framer-ibjaow { flex-direction: column; gap: 0px; height: min-content; justify-content: center; left: unset; position: relative; top: unset; width: 100%; }\",\".framer-vMRLF.framer-v-10905zz .framer-vl56g1-container { height: 30px; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMRLF.framer-v-10905zz.framer-fnia89, .framer-vMRLF.framer-v-10905zz .framer-ibjaow { gap: 0px; } .framer-vMRLF.framer-v-10905zz.framer-fnia89 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vMRLF.framer-v-10905zz.framer-fnia89 > :first-child, .framer-vMRLF.framer-v-10905zz .framer-ibjaow > :first-child { margin-top: 0px; } .framer-vMRLF.framer-v-10905zz.framer-fnia89 > :last-child, .framer-vMRLF.framer-v-10905zz .framer-ibjaow > :last-child { margin-bottom: 0px; } .framer-vMRLF.framer-v-10905zz .framer-ibjaow > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,'.framer-vMRLF[data-border=\"true\"]::after, .framer-vMRLF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"fx7fQ2wow\":{\"layout\":[\"fixed\",\"fixed\"]},\"K7mt58iqy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framert2ZxfHS24=withCSS(Component,css,\"framer-vMRLF\");export default Framert2ZxfHS24;Framert2ZxfHS24.displayName=\"Header\";Framert2ZxfHS24.defaultProps={height:88,width:1440};addPropertyControls(Framert2ZxfHS24,{variant:{options:[\"QkwIbmVfR\",\"fx7fQ2wow\",\"K7mt58iqy\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framert2ZxfHS24,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"}]},...HeaderMenuFonts,...LinksProductFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert2ZxfHS24\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fx7fQ2wow\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"K7mt58iqy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"88\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./t2ZxfHS24.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-vCRJm .framer-styles-preset-ahql2x:not(.rich-text-wrapper), .framer-vCRJm .framer-styles-preset-ahql2x.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-vCRJm\";\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\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "yDOxuHH0s", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1rto8gg", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "Framerfel9OfnEZ", "withCSS", "fel9OfnEZ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "SVG", "css", "FramervzQ5vgPTA", "withCSS", "vzQ5vgPTA_default", "addPropertyControls", "ControlType", "addFonts", "HeaderMenuFonts", "getFonts", "fel9OfnEZ_default", "LinksProductFonts", "vzQ5vgPTA_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "yDOxuHH0s1ncxzug", "args", "yDOxuHH0s14g3ts8", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "SVG", "RichText2", "ComponentViewportProvider", "css", "Framert2ZxfHS24", "withCSS", "t2ZxfHS24_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
