{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js", "ssg:https://framerusercontent.com/modules/biHJkgSgC7PZtBsS45s8/vK5sxsics3pCDYg6wItl/ivYYRKyFY.js", "ssg:https://framerusercontent.com/modules/jeSHDSPSY05aczSslC9n/V7iTe0cPVGAhrqaLNQ9H/bcUIOegNe.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", "// Generated by Framer (c93245f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={lT1USayUe:{hover:true},Pg2WY4bWD:{hover:true}};const cycleOrder=[\"lT1USayUe\",\"Pg2WY4bWD\"];const serializationHash=\"framer-W7NAN\";const variantClassNames={lT1USayUe:\"framer-v-pw9kia\",Pg2WY4bWD:\"framer-v-snscu3\"};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\":\"lT1USayUe\",\"Variant 2\":\"Pg2WY4bWD\"};const getProps=({height,icon,id,link,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,QU6BTpsFF:link!==null&&link!==void 0?link:props.QU6BTpsFF,Ugj1FPLnE:(_ref=icon!==null&&icon!==void 0?icon:props.Ugj1FPLnE)!==null&&_ref!==void 0?_ref:\"FacebookLogo\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"lT1USayUe\"};};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,Ugj1FPLnE,QU6BTpsFF,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lT1USayUe\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:QU6BTpsFF,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-pw9kia\",className,classNames)} framer-1rrirgs`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lT1USayUe\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"lT1USayUe-hover\":{\"data-framer-name\":undefined},\"Pg2WY4bWD-hover\":{\"data-framer-name\":undefined},Pg2WY4bWD:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1scd10m-container\",layoutDependency:layoutDependency,layoutId:\"shPoc23_a-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:Ugj1FPLnE,id:\"shPoc23_a\",layoutId:\"shPoc23_a\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({\"lT1USayUe-hover\":{color:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\",weight:\"duotone\"},\"Pg2WY4bWD-hover\":{weight:\"duotone\"},Pg2WY4bWD:{color:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\"}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W7NAN.framer-1rrirgs, .framer-W7NAN .framer-1rrirgs { display: block; }\",\".framer-W7NAN.framer-pw9kia { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 25px; }\",\".framer-W7NAN .framer-1scd10m-container { flex: none; height: 25px; position: relative; width: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W7NAN.framer-pw9kia { gap: 0px; } .framer-W7NAN.framer-pw9kia > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-W7NAN.framer-pw9kia > :first-child { margin-left: 0px; } .framer-W7NAN.framer-pw9kia > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 25\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Pg2WY4bWD\":{\"layout\":[\"fixed\",\"fixed\"]},\"hZVAkzUto\":{\"layout\":[\"fixed\",\"fixed\"]},\"UaKfEx5iN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Ugj1FPLnE\":\"icon\",\"QU6BTpsFF\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerivYYRKyFY=withCSS(Component,css,\"framer-W7NAN\");export default FramerivYYRKyFY;FramerivYYRKyFY.displayName=\"Social Icon\";FramerivYYRKyFY.defaultProps={height:25,width:25};addPropertyControls(FramerivYYRKyFY,{variant:{options:[\"lT1USayUe\",\"Pg2WY4bWD\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},Ugj1FPLnE:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"FacebookLogo\",description:undefined,hidden:undefined,title:\"Icon\"},QU6BTpsFF:{title:\"Link\",type:ControlType.Link}});addFonts(FramerivYYRKyFY,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerivYYRKyFY\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Pg2WY4bWD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hZVAkzUto\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UaKfEx5iN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"25\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Ugj1FPLnE\\\":\\\"icon\\\",\\\"QU6BTpsFF\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"25\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ivYYRKyFY.map", "// Generated by Framer (a387266)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,NotFoundError,optimizeAppear,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Project from\"#framer/local/canvasComponent/B4CrjLIFA/B4CrjLIFA.js\";import Button from\"#framer/local/canvasComponent/cBQAwTefC/cBQAwTefC.js\";import BlogSingleCard from\"#framer/local/canvasComponent/fNLtYBHNV/fNLtYBHNV.js\";import SocialIcon from\"#framer/local/canvasComponent/ivYYRKyFY/ivYYRKyFY.js\";import NavigationBar from\"#framer/local/canvasComponent/Kg3jp8xZU/Kg3jp8xZU.js\";import Footer from\"#framer/local/canvasComponent/oGO_MGaZp/oGO_MGaZp.js\";import Heading from\"#framer/local/canvasComponent/QJ12gIOBS/QJ12gIOBS.js\";import Tag from\"#framer/local/canvasComponent/VLQCZcVpG/VLQCZcVpG.js\";import Articles,{enumToDisplayNameFunctions}from\"#framer/local/collection/nWZy3UnCE/nWZy3UnCE.js\";import*as sharedStyle2 from\"#framer/local/css/hwFxtQiSW/hwFxtQiSW.js\";import*as sharedStyle7 from\"#framer/local/css/iLvBdfOs8/iLvBdfOs8.js\";import*as sharedStyle5 from\"#framer/local/css/IsgMMPEHU/IsgMMPEHU.js\";import*as sharedStyle1 from\"#framer/local/css/Kk8d6B9MK/Kk8d6B9MK.js\";import*as sharedStyle4 from\"#framer/local/css/MjM7LH64L/MjM7LH64L.js\";import*as sharedStyle8 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle3 from\"#framer/local/css/rZemCCbaP/rZemCCbaP.js\";import*as sharedStyle from\"#framer/local/css/s2c1M16C7/s2c1M16C7.js\";import*as sharedStyle9 from\"#framer/local/css/urlDCZwpF/urlDCZwpF.js\";import*as sharedStyle6 from\"#framer/local/css/vFgiLTeGJ/vFgiLTeGJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/bcUIOegNe/bcUIOegNe.js\";const NavigationBarFonts=getFonts(NavigationBar);const TagFonts=getFonts(Tag);const MotionSectionWithFX=withFX(motion.section);const MotionDivWithFX=withFX(motion.div);const InputFonts=getFonts(Input);const SocialIconFonts=getFonts(SocialIcon);const YouTubeFonts=getFonts(YouTube);const HeadingFonts=getFonts(Heading);const ButtonFonts=getFonts(Button);const BlogSingleCardFonts=getFonts(BlogSingleCard);const ProjectFonts=getFonts(Project);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const cycleOrder=[\"mREZlQ_J6\",\"rAx44OxNG\",\"yUefG4DCi\"];const breakpoints={mREZlQ_J6:\"(min-width: 1200px)\",rAx44OxNG:\"(min-width: 810px) and (max-width: 1199px)\",yUefG4DCi:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-URLnP\";const variantClassNames={mREZlQ_J6:\"framer-v-v64xpx\",rAx44OxNG:\"framer-v-1rrkavb\",yUefG4DCi:\"framer-v-5nmr76\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"mFQHnNgJd\":return\"Y2NgVSzxp\";default:return\"AEo5PpUoG\";}};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:170};const transition1={damping:85,delay:.4,mass:1,stiffness:212,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:170};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:85,delay:.1,mass:1,stiffness:212,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:170};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-100};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const dateStyle=options.dateStyle;const timeZone=\"UTC\";try{return date.toLocaleDateString(locale,{dateStyle,timeZone});}catch{return date.toLocaleDateString(fallbackLocale,{dateStyle,timeZone});}};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"mFQHnNgJd\":return'var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1)) /* {\"name\":\"White 10%\"} */';case\"uKBRLmciu\":return'var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66)) /* {\"name\":\"Light Green\"} */';default:return'var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)) /* {\"name\":\"Dark Green\"} */';}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const transition3={damping:60,delay:0,mass:1,stiffness:258,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:60,delay:.1,mass:1,stiffness:258,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:60,delay:.2,mass:1,stiffness:258,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={damping:60,delay:.3,mass:1,stiffness:258,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition7={damping:80,delay:.1,mass:1,stiffness:300,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:100};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"mREZlQ_J6\",Phone:\"yUefG4DCi\",Tablet:\"rAx44OxNG\"};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:\"mREZlQ_J6\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _enumToDisplayNameFunctions_TA3EDeQ5w,_enumToDisplayNameFunctions_TA3EDeQ5w1;const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Articles,type:\"Collection\"},select:[{name:\"TA3EDeQ5w\",type:\"Identifier\"},{name:\"YSKHrdVc1\",type:\"Identifier\"},{name:\"ivFLyaMNq\",type:\"Identifier\"},{name:\"kBAWMceDj\",type:\"Identifier\"},{name:\"EZue1CzWP\",type:\"Identifier\"},{name:\"t7b0AvdZM\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"JbUEZOz_8\",type:\"Identifier\"},{name:\"kqpHQlGQ0\",type:\"Identifier\"},{name:\"kl1Q1SL7s\",type:\"Identifier\"},{name:\"al7JY9UOM\",type:\"Identifier\"},{name:\"digy2gtYy\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Articles\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,TA3EDeQ5w=getFromCurrentRouteData(\"TA3EDeQ5w\"),YSKHrdVc1=getFromCurrentRouteData(\"YSKHrdVc1\"),kBAWMceDj=getFromCurrentRouteData(\"kBAWMceDj\"),EZue1CzWP=getFromCurrentRouteData(\"EZue1CzWP\"),ivFLyaMNq=getFromCurrentRouteData(\"ivFLyaMNq\"),t7b0AvdZM=getFromCurrentRouteData(\"t7b0AvdZM\"),JbUEZOz_8=getFromCurrentRouteData(\"JbUEZOz_8\"),kqpHQlGQ0=getFromCurrentRouteData(\"kqpHQlGQ0\"),kl1Q1SL7s=getFromCurrentRouteData(\"kl1Q1SL7s\"),al7JY9UOM=getFromCurrentRouteData(\"al7JY9UOM\"),digy2gtYy=getFromCurrentRouteData(\"digy2gtYy\"),EZue1CzWPTyFApSrWZ,TA3EDeQ5wTyFApSrWZ,kBAWMceDjTyFApSrWZ,YSKHrdVc1TyFApSrWZ,Tu_Pd0zTZTyFApSrWZ,XahuzEJZyTyFApSrWZ,idTyFApSrWZ,Tu_Pd0zTZ=getFromCurrentRouteData(\"Tu_Pd0zTZ\"),kBAWMceDjKqwVs7zEQ,YSKHrdVc1KqwVs7zEQ,r9QMyoDHsKqwVs7zEQ,jYgOCvKuFKqwVs7zEQ,DjzsZgoLUKqwVs7zEQ,luaJ1PV3vKqwVs7zEQ,FRxJrVbabKqwVs7zEQ,Tu_Pd0zTZKqwVs7zEQ,idKqwVs7zEQ,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-URLnP`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-URLnP`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const visible=equals(TA3EDeQ5w,\"mFQHnNgJd\");const visible1=equals(TA3EDeQ5w,\"uKBRLmciu\");const activeLocaleCode=useLocaleCode();const fillColor=toString(convertFromEnum1(TA3EDeQ5w,activeLocale));const visible2=isSet(JbUEZOz_8);const visible3=isSet(kqpHQlGQ0);const visible4=isSet(kl1Q1SL7s);const visible5=isSet(al7JY9UOM);const visible6=isSet(digy2gtYy);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"mREZlQ_J6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-v64xpx\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13jeeee-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{variant:\"qckzdw_18\"},yUefG4DCi:{variant:\"qckzdw_18\"}},children:/*#__PURE__*/_jsx(NavigationBar,{gGSU0bs4G:convertFromEnum(TA3EDeQ5w,activeLocale),height:\"100%\",id:\"tSGLzh5kB\",layoutId:\"tSGLzh5kB\",style:{width:\"100%\"},variant:\"lzTpoNZtf\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-18pk2w0\",\"data-framer-name\":\"Main\",name:\"Main\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y2j6q1\",\"data-framer-name\":\"Hero - Case Study\",name:\"Hero - Case Study\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fairq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xo3r6g\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hxi2f3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xfq9eh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sz6m68-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"pCUrxuOL9\",layoutId:\"pCUrxuOL9\",NNWJ0Hne9:(_enumToDisplayNameFunctions_TA3EDeQ5w=enumToDisplayNameFunctions[\"TA3EDeQ5w\"])===null||_enumToDisplayNameFunctions_TA3EDeQ5w===void 0?void 0:_enumToDisplayNameFunctions_TA3EDeQ5w.call(enumToDisplayNameFunctions,TA3EDeQ5w,activeLocale),variant:\"QdaMq0Dkc\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-a0nroh\",\"data-styles-preset\":\"s2c1M16C7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Content Writing For Video Grapher\"})}),className:\"framer-1sx5r3h\",fonts:[\"Inter\"],text:YSKHrdVc1,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{background:{alt:\"\",fit:\"fill\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(kBAWMceDj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"max((min(max(100vw - 80px, 1px), 1440px) - 20px) / 2, 1px)\",...toResponsiveImage(kBAWMceDj)},className:\"framer-5m7vem\"})})]})})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sx9orl\",\"data-framer-name\":\"Hero - Blog\",name:\"Hero - Blog\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{background:{alt:\"\",fit:\"fill\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(kBAWMceDj)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"min(100vw - 80px, 1440px)\",...toResponsiveImage(kBAWMceDj)},className:\"framer-9fwazn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2s5b0p\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yvrl72\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csf723\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iuwp4-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"SMmPRarSb\",layoutId:\"SMmPRarSb\",NNWJ0Hne9:(_enumToDisplayNameFunctions_TA3EDeQ5w1=enumToDisplayNameFunctions[\"TA3EDeQ5w\"])===null||_enumToDisplayNameFunctions_TA3EDeQ5w1===void 0?void 0:_enumToDisplayNameFunctions_TA3EDeQ5w1.call(enumToDisplayNameFunctions,TA3EDeQ5w,activeLocale),variant:\"HXKXPQGUH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cig1h6-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"GLInZxvm7\",layoutId:\"GLInZxvm7\",NNWJ0Hne9:toDateString(EZue1CzWP,{dateStyle:\"long\",locale:\"\"},activeLocaleCode),variant:\"HXKXPQGUH\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-a0nroh\",\"data-styles-preset\":\"s2c1M16C7\",children:\"Unlocking the Power of SEO Keyword Research: A Guide to Choosing the Right Tools\"})}),className:\"framer-1gwone9\",fonts:[\"Inter\"],text:YSKHrdVc1,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qknbck\",\"data-framer-name\":\"Section - Content\",name:\"Section - Content\",style:{transformPerspective:1200},children:[visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15pfw4e\",\"data-framer-name\":\"Overview Wrapper\",name:\"Overview Wrapper\",style:{\"--13gyznc\":fillColor},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-czlv7g\",\"data-styles-preset\":\"Kk8d6B9MK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\"},children:\"Keyword research is the cornerstone of any successful SEO strategy, helping businesses identify the terms and phrases their target audience is searching for and optimize their content accordingly. With a plethora of keyword research tools available in the market, choosing the right tool can be a daunting task.\"})}),className:\"framer-83zh67\",fonts:[\"Inter\"],text:ivFLyaMNq,verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-db3jv4\",\"data-framer-name\":\"Overview Wrapper\",name:\"Overview Wrapper\",style:{\"--13gyznc\":fillColor},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-czlv7g\",\"data-styles-preset\":\"Kk8d6B9MK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Keyword research is the cornerstone of any successful SEO strategy, helping businesses identify the terms and phrases their target audience is searching for and optimize their content accordingly. With a plethora of keyword research tools available in the market, choosing the right tool can be a daunting task.\"})}),className:\"framer-1gtykcl\",fonts:[\"Inter\"],text:ivFLyaMNq,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v1idjn\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oaqzo2\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",h1:\"framer-styles-preset-m5rh52\",h2:\"framer-styles-preset-4znnbj\",h3:\"framer-styles-preset-ravud2\",h4:\"framer-styles-preset-1s7lw2h\",h5:\"framer-styles-preset-14lxxbv\",p:\"framer-styles-preset-g6micz\"}},yUefG4DCi:{stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",h1:\"framer-styles-preset-m5rh52\",h2:\"framer-styles-preset-4znnbj\",h3:\"framer-styles-preset-ravud2\",h4:\"framer-styles-preset-1s7lw2h\",h5:\"framer-styles-preset-14lxxbv\",p:\"framer-styles-preset-g6micz\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:t7b0AvdZM,className:\"framer-p6xs6g\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",h1:\"framer-styles-preset-m5rh52\",h2:\"framer-styles-preset-4znnbj\",h3:\"framer-styles-preset-ravud2\",h4:\"framer-styles-preset-usmfc9\",h5:\"framer-styles-preset-xz2g08\",p:\"framer-styles-preset-g6micz\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w93ggy\",\"data-framer-name\":\"Additional Image\",name:\"Additional Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h713k8\",children:[visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(JbUEZOz_8)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max((min(100vw - 80px, 1440px) + 10px) / 0, 1px)\",...toResponsiveImage(JbUEZOz_8)},className:\"framer-1hytat8\",\"data-framer-name\":\"1\",name:\"1\"})}),visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(kqpHQlGQ0)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max((min(100vw - 80px, 1440px) + 10px) / 0, 1px)\",...toResponsiveImage(kqpHQlGQ0)},className:\"framer-nzwwuk\",\"data-framer-name\":\"2\",name:\"2\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14lj0h8\",children:[visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(kl1Q1SL7s)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max((min(100vw - 80px, 1440px) + 10px) / 0, 1px)\",...toResponsiveImage(kl1Q1SL7s)},className:\"framer-14tfhoz\",\"data-framer-name\":\"3\",name:\"3\"})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(al7JY9UOM)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"max((min(100vw - 80px, 1440px) + 10px) / 0, 1px)\",...toResponsiveImage(al7JY9UOM)},className:\"framer-1ajx6mv\",\"data-framer-name\":\"4\",name:\"4\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tcc4mw\",\"data-border\":true,\"data-framer-name\":\"Newsletter\",name:\"Newsletter\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c6betx\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ravud2\",\"data-styles-preset\":\"MjM7LH64L\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Join our newsletter list\"})}),className:\"framer-kgq8tm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Sign up to get the most recent blog articles in your email every week.\"})}),className:\"framer-1482o6j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s7x2v-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{layout:\"vertical\"}},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",fill:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(232, 84, 66))\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},convertkitAPI:\"\",convertkitFormID:\"\",font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"\",gap:10,getwaitlistAPI:\"\",height:\"100%\",id:\"Dq0qXIzM7\",input:{borderRadius:30,color:\"rgb(0, 0, 0)\",fill:\"rgb(235, 235, 235)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"Dq0qXIzM7\",loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",redirectAs:\"link\",service:\"mailchimp\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kyhsic\",\"data-border\":true,\"data-framer-name\":\"Social Media Wrapper\",name:\"Social Media Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Share this post to the social medias\"})}),className:\"framer-dy3hne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ryoc45\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"25px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{\"data-framer-appear-id\":\"15yn1hs\",animate:optimizeAppear(\"animate\",\"15yn1hs\",animation5,\"1rrkavb\"),initial:optimizeAppear(\"initial\",\"15yn1hs\",animation6,\"1rrkavb\")},yUefG4DCi:{\"data-framer-appear-id\":\"x6uv3p\",animate:optimizeAppear(\"animate\",\"x6uv3p\",animation5,\"5nmr76\"),initial:optimizeAppear(\"initial\",\"x6uv3p\",animation6,\"5nmr76\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"1je7pfl\",animation5,\"v64xpx\"),className:\"framer-1je7pfl-container\",\"data-framer-appear-id\":\"1je7pfl\",initial:optimizeAppear(\"initial\",\"1je7pfl\",animation6,\"v64xpx\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"ApX3UbPGR\",layoutId:\"ApX3UbPGR\",QU6BTpsFF:\"facebook.com\",style:{height:\"100%\",width:\"100%\"},Ugj1FPLnE:\"FacebookLogo\",variant:\"lT1USayUe\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"25px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{\"data-framer-appear-id\":\"10hnn2n\",animate:optimizeAppear(\"animate\",\"10hnn2n\",animation7,\"1rrkavb\"),initial:optimizeAppear(\"initial\",\"10hnn2n\",animation6,\"1rrkavb\")},yUefG4DCi:{\"data-framer-appear-id\":\"104l6i9\",animate:optimizeAppear(\"animate\",\"104l6i9\",animation7,\"5nmr76\"),initial:optimizeAppear(\"initial\",\"104l6i9\",animation6,\"5nmr76\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"1bwwpnk\",animation7,\"v64xpx\"),className:\"framer-1bwwpnk-container\",\"data-framer-appear-id\":\"1bwwpnk\",initial:optimizeAppear(\"initial\",\"1bwwpnk\",animation6,\"v64xpx\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"QhDb3LaCK\",layoutId:\"QhDb3LaCK\",QU6BTpsFF:\"instagram.com\",style:{height:\"100%\",width:\"100%\"},Ugj1FPLnE:\"InstagramLogo\",variant:\"lT1USayUe\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"25px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{\"data-framer-appear-id\":\"h80v1g\",animate:optimizeAppear(\"animate\",\"h80v1g\",animation8,\"1rrkavb\"),initial:optimizeAppear(\"initial\",\"h80v1g\",animation6,\"1rrkavb\")},yUefG4DCi:{\"data-framer-appear-id\":\"hnivld\",animate:optimizeAppear(\"animate\",\"hnivld\",animation8,\"5nmr76\"),initial:optimizeAppear(\"initial\",\"hnivld\",animation6,\"5nmr76\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"16ghpfq\",animation8,\"v64xpx\"),className:\"framer-16ghpfq-container\",\"data-framer-appear-id\":\"16ghpfq\",initial:optimizeAppear(\"initial\",\"16ghpfq\",animation6,\"v64xpx\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"LeKk87C8s\",layoutId:\"LeKk87C8s\",QU6BTpsFF:\"linkedin.com\",style:{height:\"100%\",width:\"100%\"},Ugj1FPLnE:\"LinkedinLogo\",variant:\"lT1USayUe\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"25px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{\"data-framer-appear-id\":\"z9we8s\",animate:optimizeAppear(\"animate\",\"z9we8s\",animation9,\"1rrkavb\"),initial:optimizeAppear(\"initial\",\"z9we8s\",animation6,\"1rrkavb\")},yUefG4DCi:{\"data-framer-appear-id\":\"g53piy\",animate:optimizeAppear(\"animate\",\"g53piy\",animation9,\"5nmr76\"),initial:optimizeAppear(\"initial\",\"g53piy\",animation6,\"5nmr76\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"17d89yp\",animation9,\"v64xpx\"),className:\"framer-17d89yp-container\",\"data-framer-appear-id\":\"17d89yp\",initial:optimizeAppear(\"initial\",\"17d89yp\",animation6,\"v64xpx\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"C0Ehli53s\",layoutId:\"C0Ehli53s\",QU6BTpsFF:\"twitter.com\",style:{height:\"100%\",width:\"100%\"},Ugj1FPLnE:\"TwitterLogo\",variant:\"lT1USayUe\",width:\"100%\"})})})})]})]})]})]})})]})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-smjmnm\",\"data-framer-name\":\"Additional Image - Case Study\",name:\"Additional Image - Case Study\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1euzn09\",children:[visible2&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(min(100vw, 1440px) - 20px, 1440px)\",...toResponsiveImage(JbUEZOz_8)},className:\"framer-1c883pl\",\"data-framer-name\":\"1\",name:\"1\"}),visible3&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(min(100vw, 1440px) - 20px, 1440px)\",...toResponsiveImage(kqpHQlGQ0)},className:\"framer-1luzeut\",\"data-framer-name\":\"2\",name:\"2\"}),visible4&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(min(100vw, 1440px) - 20px, 1440px)\",...toResponsiveImage(kl1Q1SL7s)},className:\"framer-16d4boc\",\"data-framer-name\":\"3\",name:\"3\"}),visible5&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"min(min(100vw, 1440px) - 20px, 1440px)\",...toResponsiveImage(al7JY9UOM)},className:\"framer-1z02gn2\",\"data-framer-name\":\"4\",name:\"4\"})]})})}),visible6&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-q3eh0m\",\"data-framer-name\":\"Video\",name:\"Video\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bda809\",\"data-framer-name\":\"Youtube-Player\",name:\"Youtube-Player\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15xhdfc-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,height:\"100%\",id:\"MjGP7TQsC\",isMixedBorderRadius:false,isRed:true,layoutId:\"MjGP7TQsC\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:30,topRightRadius:30,url:digy2gtYy,width:\"100%\"})})})})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9zbvp1\",\"data-framer-name\":\"Other Blogs\",name:\"Other Blogs\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k2nydy\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mztof5\",\"data-framer-name\":\"Heading Content Wrapper\",name:\"Heading Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{width:\"min(100vw - 80px, 1440px)\"},yUefG4DCi:{width:\"min(100vw - 24px, 1440px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(min(max(100vw - 80px, 1px), 1440px) * 0.7, 1440px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-esc5vj-container\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Other Blogs\",GqTmcaQLx:\"Other Blogs\",height:\"100%\",id:\"fBZqnjLgR\",kAHPdHlCh:\"Check our other project Blogs with useful insight and information for your businesses\",layoutId:\"fBZqnjLgR\",NlGfzfEF2:true,p1KubWiKz:true,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"q3Pzxazm0\"},implicitPathVariables:undefined},{href:{webPageId:\"q3Pzxazm0\"},implicitPathVariables:undefined},{href:{webPageId:\"q3Pzxazm0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q0qr72-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{DEX53qIxg:resolvedLinks[1]},yUefG4DCi:{DEX53qIxg:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"All Blogs\",DEX53qIxg:resolvedLinks[0],height:\"100%\",id:\"OTmhnMxGr\",layoutId:\"OTmhnMxGr\",variant:\"VYn33lVMS\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m2ozln\",\"data-framer-name\":\"Blog - All With Filter\",name:\"Blog - All With Filter\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v7hc17\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"EZue1CzWP\",type:\"Identifier\"},{name:\"TA3EDeQ5w\",type:\"Identifier\"},{name:\"kBAWMceDj\",type:\"Identifier\"},{name:\"YSKHrdVc1\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"XahuzEJZy\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{left:{name:\"TA3EDeQ5w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uKBRLmciu\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Tu_Pd0zTZ},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:collection=>collection.map(({EZue1CzWP:EZue1CzWPTyFApSrWZ,TA3EDeQ5w:TA3EDeQ5wTyFApSrWZ,kBAWMceDj:kBAWMceDjTyFApSrWZ,YSKHrdVc1:YSKHrdVc1TyFApSrWZ,Tu_Pd0zTZ:Tu_Pd0zTZTyFApSrWZ,XahuzEJZy:XahuzEJZyTyFApSrWZ,id:idTyFApSrWZ},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`TyFApSrWZ-${idTyFApSrWZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZTyFApSrWZ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZTyFApSrWZ},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZTyFApSrWZ},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZTyFApSrWZ},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined}],children:resolvedLinks1=>{var _enumToDisplayNameFunctions_TA3EDeQ5w;return /*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b52oli-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{dYlp1mnOp:resolvedLinks1[1],variant:\"lb1rPr9_d\"},yUefG4DCi:{dYlp1mnOp:resolvedLinks1[2],variant:\"lb1rPr9_d\"}},children:/*#__PURE__*/_jsx(BlogSingleCard,{bDx0AY1ti:YSKHrdVc1TyFApSrWZ,dfGShofDn:XahuzEJZyTyFApSrWZ,dl6hFZ0zO:toResponsiveImage(kBAWMceDjTyFApSrWZ),DVl5QgbQh:(_enumToDisplayNameFunctions_TA3EDeQ5w=enumToDisplayNameFunctions[\"TA3EDeQ5w\"])===null||_enumToDisplayNameFunctions_TA3EDeQ5w===void 0?void 0:_enumToDisplayNameFunctions_TA3EDeQ5w.call(enumToDisplayNameFunctions,TA3EDeQ5wTyFApSrWZ,activeLocale),dYlp1mnOp:resolvedLinks1[0],height:\"100%\",id:\"IFIIsE_cN\",layoutId:\"IFIIsE_cN\",style:{height:\"100%\",width:\"100%\"},variant:\"zIEUcqrDu\",width:\"100%\",YoxdJjrJJ:toDateString(EZue1CzWPTyFApSrWZ,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode)})})})});}})})},idTyFApSrWZ);})})})})]})})})}),visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q8b3ij\",\"data-framer-name\":\"Other Case Studies\",name:\"Other Case Studies\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yUefG4DCi:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q1iq9j\",\"data-framer-name\":\"Container\",name:\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ioeaa6\",\"data-framer-name\":\"Heading Content Wrapper\",name:\"Heading Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{width:\"min(100vw - 80px, 1440px)\"},yUefG4DCi:{width:\"min(100vw - 24px, 1440px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(min(max(100vw - 80px, 1px), 1440px) * 0.7, 1440px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rvyp85-container\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Other Case Studies\",GqTmcaQLx:\"Other Projects\",height:\"100%\",id:\"Sj1oQhetp\",kAHPdHlCh:\"Check our other project case studies with detailed explanations\",layoutId:\"Sj1oQhetp\",NlGfzfEF2:true,p1KubWiKz:true,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined},{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined},{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h3udpq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{DEX53qIxg:resolvedLinks2[1]},yUefG4DCi:{DEX53qIxg:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"All Projects\",DEX53qIxg:resolvedLinks2[0],height:\"100%\",id:\"ZUFeYyERx\",layoutId:\"ZUFeYyERx\",variant:\"VYn33lVMS\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nds95n\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"kBAWMceDj\",type:\"Identifier\"},{name:\"YSKHrdVc1\",type:\"Identifier\"},{name:\"r9QMyoDHs\",type:\"Identifier\"},{name:\"jYgOCvKuF\",type:\"Identifier\"},{name:\"DjzsZgoLU\",type:\"Identifier\"},{name:\"luaJ1PV3v\",type:\"Identifier\"},{name:\"FRxJrVbab\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{left:{name:\"TA3EDeQ5w\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"mFQHnNgJd\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Tu_Pd0zTZ},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:collection1=>collection1.map(({kBAWMceDj:kBAWMceDjKqwVs7zEQ,YSKHrdVc1:YSKHrdVc1KqwVs7zEQ,r9QMyoDHs:r9QMyoDHsKqwVs7zEQ,jYgOCvKuF:jYgOCvKuFKqwVs7zEQ,DjzsZgoLU:DjzsZgoLUKqwVs7zEQ,luaJ1PV3v:luaJ1PV3vKqwVs7zEQ,FRxJrVbab:FRxJrVbabKqwVs7zEQ,Tu_Pd0zTZ:Tu_Pd0zTZKqwVs7zEQ,id:idKqwVs7zEQ},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`KqwVs7zEQ-${idKqwVs7zEQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZKqwVs7zEQ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZKqwVs7zEQ},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZKqwVs7zEQ},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined},{href:{pathVariables:{Tu_Pd0zTZ:Tu_Pd0zTZKqwVs7zEQ},webPageId:\"bcUIOegNe\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{width:\"min(100vw - 80px, 1440px)\"},yUefG4DCi:{width:\"min(100vw - 24px, 1440px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(max(100vw - 80px, 1px), 1440px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bsgibg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{uB3Li49Uz:resolvedLinks3[1],variant:\"U9QyqU4vh\"},yUefG4DCi:{uB3Li49Uz:resolvedLinks3[2],variant:\"JfRnu8SSW\"}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"CEwXPVXwa\",layoutId:\"CEwXPVXwa\",M_pfzYt58:toResponsiveImage(kBAWMceDjKqwVs7zEQ),NYeeHdoQZ:jYgOCvKuFKqwVs7zEQ,oqirxxS_G:r9QMyoDHsKqwVs7zEQ,pvyu50sb9:luaJ1PV3vKqwVs7zEQ,RhNFJqKE_:true,style:{width:\"100%\"},uB3Li49Uz:resolvedLinks3[0],variant:\"tUOa221_M\",vjce4Tqa7:YSKHrdVc1KqwVs7zEQ,width:\"100%\",xxslYkG4G:DjzsZgoLUKqwVs7zEQ,ZZxw1qd09:FRxJrVbabKqwVs7zEQ})})})})})})})},idKqwVs7zEQ);})})})]})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17o6nyy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rAx44OxNG:{variant:\"mKXCPqfUG\"},yUefG4DCi:{variant:\"BsZlXwif2\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"v90X8HxqL\",layoutId:\"v90X8HxqL\",style:{width:\"100%\"},variant:\"zQXPtCkn3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jg23xs-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"I5PjxuIo8\",intensity:12,layoutId:\"I5PjxuIo8\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-URLnP { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)); }`,\".framer-URLnP.framer-1plbcl9, .framer-URLnP .framer-1plbcl9 { display: block; }\",\".framer-URLnP.framer-v64xpx { align-content: center; align-items: center; background-color: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, #0a0a0a); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-URLnP .framer-13jeeee-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-URLnP .framer-18pk2w0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1y2j6q1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: auto; justify-content: center; overflow: visible; padding: 100px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1fairq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-URLnP .framer-1xo3r6g { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1)); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-URLnP .framer-1hxi2f3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-URLnP .framer-1xfq9eh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-URLnP .framer-1sz6m68-container, .framer-URLnP .framer-1iuwp4-container, .framer-URLnP .framer-1cig1h6-container, .framer-URLnP .framer-q0qr72-container, .framer-URLnP .framer-1h3udpq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-URLnP .framer-1sx5r3h, .framer-URLnP .framer-1gwone9, .framer-URLnP .framer-kgq8tm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-URLnP .framer-5m7vem { aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 520px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-URLnP .framer-1sx9orl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: auto; justify-content: center; overflow: visible; padding: 80px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-URLnP .framer-9fwazn { aspect-ratio: 1.75 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 640px); max-width: 1440px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-URLnP .framer-2s5b0p { background: linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, rgb(0, 0, 0) 100%); bottom: 0px; flex: none; height: 79%; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",\".framer-URLnP .framer-1yvrl72 { align-content: center; align-items: center; bottom: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 20px; overflow: visible; padding: 0px; position: absolute; right: 20px; }\",\".framer-URLnP .framer-1csf723 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-qknbck { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: auto; justify-content: center; overflow: visible; padding: 0px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-URLnP .framer-15pfw4e, .framer-URLnP .framer-db3jv4 { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: var(--13gyznc); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 65px 40px 65px 40px; position: relative; width: 100%; }\",\".framer-URLnP .framer-83zh67 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-URLnP .framer-1gtykcl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-URLnP .framer-v1idjn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1oaqzo2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-p6xs6g { --framer-paragraph-spacing: 20px; flex: none; height: auto; max-width: 800px; opacity: 0.7; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-URLnP .framer-w93ggy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1h713k8, .framer-URLnP .framer-14lj0h8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1hytat8, .framer-URLnP .framer-nzwwuk, .framer-URLnP .framer-14tfhoz, .framer-URLnP .framer-1ajx6mv { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 381px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-URLnP .framer-tcc4mw { --border-bottom-width: 1px; --border-color: var(--token-31d2d8ec-6073-495b-98cd-5e142f56bc63, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-affa1b72-7c43-4531-b217-6ad9a97be289, rgba(255, 255, 255, 0.05)); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-URLnP .framer-1c6betx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1482o6j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.9; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-URLnP .framer-s7x2v-container, .framer-URLnP .framer-1bsgibg-container, .framer-URLnP .framer-17o6nyy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-URLnP .framer-1kyhsic { --border-bottom-width: 0px; --border-color: var(--token-122cea26-357d-4aa9-9285-cd7ff9c161b1, rgba(51, 66, 50, 0.05)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 33px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-dy3hne { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; opacity: 0.9; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-URLnP .framer-ryoc45 { align-content: center; align-items: center; background-color: var(--token-affa1b72-7c43-4531-b217-6ad9a97be289, rgba(255, 255, 255, 0.05)); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-URLnP .framer-1je7pfl-container, .framer-URLnP .framer-1bwwpnk-container, .framer-URLnP .framer-16ghpfq-container, .framer-URLnP .framer-17d89yp-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-URLnP .framer-smjmnm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1euzn09 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1c883pl, .framer-URLnP .framer-1luzeut, .framer-URLnP .framer-1z02gn2 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-URLnP .framer-16d4boc { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 885px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-URLnP .framer-q3eh0m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1bda809 { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 664px); justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-URLnP .framer-15xhdfc-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-URLnP .framer-9zbvp1, .framer-URLnP .framer-q8b3ij { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-URLnP .framer-k2nydy, .framer-URLnP .framer-1q1iq9j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-URLnP .framer-1mztof5, .framer-URLnP .framer-ioeaa6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 100px; width: 70%; will-change: transform; z-index: 1; }\",\".framer-URLnP .framer-esc5vj-container, .framer-URLnP .framer-1rvyp85-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",\".framer-URLnP .framer-1m2ozln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-URLnP .framer-v7hc17 { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-b52oli-container { align-self: start; flex: none; height: 398px; justify-self: start; position: relative; width: 100%; }\",\".framer-URLnP .framer-nds95n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-URLnP .framer-1jg23xs-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-URLnP.framer-v64xpx, .framer-URLnP .framer-18pk2w0, .framer-URLnP .framer-1y2j6q1, .framer-URLnP .framer-1fairq, .framer-URLnP .framer-1xo3r6g, .framer-URLnP .framer-1hxi2f3, .framer-URLnP .framer-1xfq9eh, .framer-URLnP .framer-1sx9orl, .framer-URLnP .framer-1yvrl72, .framer-URLnP .framer-1csf723, .framer-URLnP .framer-qknbck, .framer-URLnP .framer-15pfw4e, .framer-URLnP .framer-db3jv4, .framer-URLnP .framer-v1idjn, .framer-URLnP .framer-1oaqzo2, .framer-URLnP .framer-w93ggy, .framer-URLnP .framer-1h713k8, .framer-URLnP .framer-14lj0h8, .framer-URLnP .framer-tcc4mw, .framer-URLnP .framer-1c6betx, .framer-URLnP .framer-1kyhsic, .framer-URLnP .framer-ryoc45, .framer-URLnP .framer-smjmnm, .framer-URLnP .framer-1euzn09, .framer-URLnP .framer-q3eh0m, .framer-URLnP .framer-1bda809, .framer-URLnP .framer-9zbvp1, .framer-URLnP .framer-k2nydy, .framer-URLnP .framer-1mztof5, .framer-URLnP .framer-1m2ozln, .framer-URLnP .framer-q8b3ij, .framer-URLnP .framer-1q1iq9j, .framer-URLnP .framer-ioeaa6, .framer-URLnP .framer-nds95n { gap: 0px; } .framer-URLnP.framer-v64xpx > *, .framer-URLnP .framer-18pk2w0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-URLnP.framer-v64xpx > :first-child, .framer-URLnP .framer-18pk2w0 > :first-child, .framer-URLnP .framer-1hxi2f3 > :first-child, .framer-URLnP .framer-1sx9orl > :first-child, .framer-URLnP .framer-1yvrl72 > :first-child, .framer-URLnP .framer-qknbck > :first-child, .framer-URLnP .framer-15pfw4e > :first-child, .framer-URLnP .framer-db3jv4 > :first-child, .framer-URLnP .framer-v1idjn > :first-child, .framer-URLnP .framer-1oaqzo2 > :first-child, .framer-URLnP .framer-w93ggy > :first-child, .framer-URLnP .framer-tcc4mw > :first-child, .framer-URLnP .framer-1c6betx > :first-child, .framer-URLnP .framer-smjmnm > :first-child, .framer-URLnP .framer-1euzn09 > :first-child, .framer-URLnP .framer-q3eh0m > :first-child, .framer-URLnP .framer-k2nydy > :first-child, .framer-URLnP .framer-1mztof5 > :first-child, .framer-URLnP .framer-1m2ozln > :first-child, .framer-URLnP .framer-1q1iq9j > :first-child, .framer-URLnP .framer-ioeaa6 > :first-child, .framer-URLnP .framer-nds95n > :first-child { margin-top: 0px; } .framer-URLnP.framer-v64xpx > :last-child, .framer-URLnP .framer-18pk2w0 > :last-child, .framer-URLnP .framer-1hxi2f3 > :last-child, .framer-URLnP .framer-1sx9orl > :last-child, .framer-URLnP .framer-1yvrl72 > :last-child, .framer-URLnP .framer-qknbck > :last-child, .framer-URLnP .framer-15pfw4e > :last-child, .framer-URLnP .framer-db3jv4 > :last-child, .framer-URLnP .framer-v1idjn > :last-child, .framer-URLnP .framer-1oaqzo2 > :last-child, .framer-URLnP .framer-w93ggy > :last-child, .framer-URLnP .framer-tcc4mw > :last-child, .framer-URLnP .framer-1c6betx > :last-child, .framer-URLnP .framer-smjmnm > :last-child, .framer-URLnP .framer-1euzn09 > :last-child, .framer-URLnP .framer-q3eh0m > :last-child, .framer-URLnP .framer-k2nydy > :last-child, .framer-URLnP .framer-1mztof5 > :last-child, .framer-URLnP .framer-1m2ozln > :last-child, .framer-URLnP .framer-1q1iq9j > :last-child, .framer-URLnP .framer-ioeaa6 > :last-child, .framer-URLnP .framer-nds95n > :last-child { margin-bottom: 0px; } .framer-URLnP .framer-1y2j6q1 > * { margin: 0px; margin-left: calc(39px / 2); margin-right: calc(39px / 2); } .framer-URLnP .framer-1y2j6q1 > :first-child, .framer-URLnP .framer-1fairq > :first-child, .framer-URLnP .framer-1xo3r6g > :first-child, .framer-URLnP .framer-1xfq9eh > :first-child, .framer-URLnP .framer-1csf723 > :first-child, .framer-URLnP .framer-1h713k8 > :first-child, .framer-URLnP .framer-14lj0h8 > :first-child, .framer-URLnP .framer-1kyhsic > :first-child, .framer-URLnP .framer-ryoc45 > :first-child, .framer-URLnP .framer-1bda809 > :first-child, .framer-URLnP .framer-9zbvp1 > :first-child, .framer-URLnP .framer-q8b3ij > :first-child { margin-left: 0px; } .framer-URLnP .framer-1y2j6q1 > :last-child, .framer-URLnP .framer-1fairq > :last-child, .framer-URLnP .framer-1xo3r6g > :last-child, .framer-URLnP .framer-1xfq9eh > :last-child, .framer-URLnP .framer-1csf723 > :last-child, .framer-URLnP .framer-1h713k8 > :last-child, .framer-URLnP .framer-14lj0h8 > :last-child, .framer-URLnP .framer-1kyhsic > :last-child, .framer-URLnP .framer-ryoc45 > :last-child, .framer-URLnP .framer-1bda809 > :last-child, .framer-URLnP .framer-9zbvp1 > :last-child, .framer-URLnP .framer-q8b3ij > :last-child { margin-right: 0px; } .framer-URLnP .framer-1fairq > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-URLnP .framer-1xo3r6g > *, .framer-URLnP .framer-1xfq9eh > *, .framer-URLnP .framer-1csf723 > *, .framer-URLnP .framer-1h713k8 > *, .framer-URLnP .framer-14lj0h8 > *, .framer-URLnP .framer-1kyhsic > *, .framer-URLnP .framer-ryoc45 > *, .framer-URLnP .framer-1bda809 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-URLnP .framer-1hxi2f3 > *, .framer-URLnP .framer-1yvrl72 > *, .framer-URLnP .framer-w93ggy > *, .framer-URLnP .framer-1c6betx > *, .framer-URLnP .framer-smjmnm > *, .framer-URLnP .framer-1euzn09 > *, .framer-URLnP .framer-q3eh0m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-URLnP .framer-1sx9orl > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-URLnP .framer-qknbck > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-URLnP .framer-15pfw4e > *, .framer-URLnP .framer-db3jv4 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-URLnP .framer-v1idjn > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-URLnP .framer-1oaqzo2 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-URLnP .framer-tcc4mw > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-URLnP .framer-9zbvp1 > *, .framer-URLnP .framer-q8b3ij > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-URLnP .framer-k2nydy > *, .framer-URLnP .framer-1q1iq9j > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-URLnP .framer-1mztof5 > *, .framer-URLnP .framer-ioeaa6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-URLnP .framer-1m2ozln > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-URLnP .framer-nds95n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@media (min-width: 1200px) { .framer-URLnP .hidden-v64xpx { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-URLnP .hidden-1rrkavb { display: none !important; } .${metadata.bodyClassName}-framer-URLnP { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)); } .framer-URLnP.framer-v64xpx { width: 810px; } .framer-URLnP .framer-5m7vem { height: var(--framer-aspect-ratio-supported, 325px); } .framer-URLnP .framer-9fwazn { height: var(--framer-aspect-ratio-supported, 417px); } .framer-URLnP .framer-qknbck { padding: 0px 40px 80px 40px; } .framer-URLnP .framer-v1idjn { gap: 60px; } .framer-URLnP .framer-1oaqzo2 { gap: 50px; } .framer-URLnP .framer-p6xs6g, .framer-URLnP .framer-tcc4mw { max-width: 590px; } .framer-URLnP .framer-1hytat8, .framer-URLnP .framer-nzwwuk, .framer-URLnP .framer-14tfhoz, .framer-URLnP .framer-1ajx6mv { height: 293px; } .framer-URLnP .framer-16d4boc { height: var(--framer-aspect-ratio-supported, 593px); } .framer-URLnP .framer-q3eh0m { height: 504px; } .framer-URLnP .framer-1bda809 { height: var(--framer-aspect-ratio-supported, 444px); } .framer-URLnP .framer-9zbvp1, .framer-URLnP .framer-q8b3ij { flex-direction: column; padding: 80px 40px 80px 40px; } .framer-URLnP .framer-k2nydy, .framer-URLnP .framer-1q1iq9j { flex: none; gap: 60px; width: 100%; } .framer-URLnP .framer-1mztof5, .framer-URLnP .framer-ioeaa6 { position: relative; top: unset; width: 100%; } .framer-URLnP .framer-nds95n { gap: 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-URLnP .framer-v1idjn, .framer-URLnP .framer-1oaqzo2, .framer-URLnP .framer-9zbvp1, .framer-URLnP .framer-k2nydy, .framer-URLnP .framer-q8b3ij, .framer-URLnP .framer-1q1iq9j, .framer-URLnP .framer-nds95n { gap: 0px; } .framer-URLnP .framer-v1idjn > *, .framer-URLnP .framer-k2nydy > *, .framer-URLnP .framer-1q1iq9j > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-URLnP .framer-v1idjn > :first-child, .framer-URLnP .framer-1oaqzo2 > :first-child, .framer-URLnP .framer-9zbvp1 > :first-child, .framer-URLnP .framer-k2nydy > :first-child, .framer-URLnP .framer-q8b3ij > :first-child, .framer-URLnP .framer-1q1iq9j > :first-child, .framer-URLnP .framer-nds95n > :first-child { margin-top: 0px; } .framer-URLnP .framer-v1idjn > :last-child, .framer-URLnP .framer-1oaqzo2 > :last-child, .framer-URLnP .framer-9zbvp1 > :last-child, .framer-URLnP .framer-k2nydy > :last-child, .framer-URLnP .framer-q8b3ij > :last-child, .framer-URLnP .framer-1q1iq9j > :last-child, .framer-URLnP .framer-nds95n > :last-child { margin-bottom: 0px; } .framer-URLnP .framer-1oaqzo2 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-URLnP .framer-9zbvp1 > *, .framer-URLnP .framer-q8b3ij > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-URLnP .framer-nds95n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,`@media (max-width: 809px) { .framer-URLnP .hidden-5nmr76 { display: none !important; } .${metadata.bodyClassName}-framer-URLnP { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)); } .framer-URLnP.framer-v64xpx { width: 390px; } .framer-URLnP .framer-1y2j6q1 { flex-direction: column; gap: 40px; padding: 110px 12px 12px 12px; } .framer-URLnP .framer-1fairq { flex: none; flex-direction: column; gap: 12px; width: 100%; } .framer-URLnP .framer-1xo3r6g { align-self: unset; flex: none; height: min-content; padding: 20px; width: 100%; } .framer-URLnP .framer-5m7vem { flex: none; height: var(--framer-aspect-ratio-supported, 366px); width: 100%; } .framer-URLnP .framer-1sx9orl { gap: 40px; padding: 70px 12px 12px 12px; } .framer-URLnP .framer-9fwazn { aspect-ratio: unset; height: 60vh; } .framer-URLnP .framer-2s5b0p { height: 74%; } .framer-URLnP .framer-qknbck { gap: 40px; padding: 0px 12px 50px 12px; } .framer-URLnP .framer-15pfw4e, .framer-URLnP .framer-db3jv4 { max-width: unset; padding: 30px 20px 30px 20px; } .framer-URLnP .framer-v1idjn, .framer-URLnP .framer-nds95n { gap: 40px; } .framer-URLnP .framer-1oaqzo2 { gap: 60px; } .framer-URLnP .framer-p6xs6g { order: 0; } .framer-URLnP .framer-w93ggy { order: 1; } .framer-URLnP .framer-1h713k8, .framer-URLnP .framer-14lj0h8 { flex-direction: column; } .framer-URLnP .framer-1hytat8, .framer-URLnP .framer-nzwwuk, .framer-URLnP .framer-14tfhoz, .framer-URLnP .framer-1ajx6mv, .framer-URLnP .framer-k2nydy, .framer-URLnP .framer-1q1iq9j { flex: none; width: 100%; } .framer-URLnP .framer-tcc4mw { order: 2; } .framer-URLnP .framer-1kyhsic { padding: 0px; } .framer-URLnP .framer-16d4boc { height: var(--framer-aspect-ratio-supported, 277px); } .framer-URLnP .framer-1bda809 { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; height: var(--framer-aspect-ratio-supported, 208px); } .framer-URLnP .framer-9zbvp1 { flex-direction: column; padding: 30px 12px 30px 12px; } .framer-URLnP .framer-1mztof5, .framer-URLnP .framer-ioeaa6 { position: relative; top: unset; width: 100%; } .framer-URLnP .framer-q8b3ij { flex-direction: column; padding: 50px 12px 50px 12px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-URLnP .framer-1y2j6q1, .framer-URLnP .framer-1fairq, .framer-URLnP .framer-1sx9orl, .framer-URLnP .framer-qknbck, .framer-URLnP .framer-v1idjn, .framer-URLnP .framer-1oaqzo2, .framer-URLnP .framer-1h713k8, .framer-URLnP .framer-14lj0h8, .framer-URLnP .framer-9zbvp1, .framer-URLnP .framer-q8b3ij, .framer-URLnP .framer-nds95n { gap: 0px; } .framer-URLnP .framer-1y2j6q1 > *, .framer-URLnP .framer-1sx9orl > *, .framer-URLnP .framer-qknbck > *, .framer-URLnP .framer-v1idjn > *, .framer-URLnP .framer-nds95n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-URLnP .framer-1y2j6q1 > :first-child, .framer-URLnP .framer-1fairq > :first-child, .framer-URLnP .framer-1sx9orl > :first-child, .framer-URLnP .framer-qknbck > :first-child, .framer-URLnP .framer-v1idjn > :first-child, .framer-URLnP .framer-1oaqzo2 > :first-child, .framer-URLnP .framer-1h713k8 > :first-child, .framer-URLnP .framer-14lj0h8 > :first-child, .framer-URLnP .framer-9zbvp1 > :first-child, .framer-URLnP .framer-q8b3ij > :first-child, .framer-URLnP .framer-nds95n > :first-child { margin-top: 0px; } .framer-URLnP .framer-1y2j6q1 > :last-child, .framer-URLnP .framer-1fairq > :last-child, .framer-URLnP .framer-1sx9orl > :last-child, .framer-URLnP .framer-qknbck > :last-child, .framer-URLnP .framer-v1idjn > :last-child, .framer-URLnP .framer-1oaqzo2 > :last-child, .framer-URLnP .framer-1h713k8 > :last-child, .framer-URLnP .framer-14lj0h8 > :last-child, .framer-URLnP .framer-9zbvp1 > :last-child, .framer-URLnP .framer-q8b3ij > :last-child, .framer-URLnP .framer-nds95n > :last-child { margin-bottom: 0px; } .framer-URLnP .framer-1fairq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-URLnP .framer-1oaqzo2 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-URLnP .framer-1h713k8 > *, .framer-URLnP .framer-14lj0h8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-URLnP .framer-9zbvp1 > *, .framer-URLnP .framer-q8b3ij > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-URLnP[data-border=\"true\"]::after, .framer-URLnP [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 5713\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rAx44OxNG\":{\"layout\":[\"fixed\",\"auto\"]},\"yUefG4DCi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerbcUIOegNe=withCSS(Component,css,\"framer-URLnP\");export default FramerbcUIOegNe;FramerbcUIOegNe.displayName=\"Blog\";FramerbcUIOegNe.defaultProps={height:5713,width:1200};addFonts(FramerbcUIOegNe,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx04jHgP6LR0Y.woff2\",weight:\"400\"}]},...NavigationBarFonts,...TagFonts,...InputFonts,...SocialIconFonts,...YouTubeFonts,...HeadingFonts,...ButtonFonts,...BlogSingleCardFonts,...ProjectFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbcUIOegNe\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rAx44OxNG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yUefG4DCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5713\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"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", "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", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Ugj1FPLnE", "QU6BTpsFF", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "ComponentViewportProvider", "css", "FramerivYYRKyFY", "withCSS", "ivYYRKyFY_default", "addPropertyControls", "ControlType", "addFonts", "NavigationBarFonts", "getFonts", "Kg3jp8xZU_default", "TagFonts", "VLQCZcVpG_default", "MotionSectionWithFX", "withFX", "motion", "MotionDivWithFX", "InputFonts", "Input_default", "SocialIconFonts", "ivYYRKyFY_default", "YouTubeFonts", "Youtube", "HeadingFonts", "QJ12gIOBS_default", "ButtonFonts", "cBQAwTefC_default", "BlogSingleCardFonts", "fNLtYBHNV_default", "ProjectFonts", "B4CrjLIFA_default", "FooterFonts", "oGO_MGaZp_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "equals", "a", "b", "animation", "transition1", "animation1", "toResponsiveImage", "transition2", "animation2", "animation3", "animation4", "toDateString", "options", "date", "fallbackLocale", "locale", "dateStyle", "timeZone", "convertFromEnum1", "toString", "isSet", "transition3", "animation5", "animation6", "transition4", "animation7", "transition5", "animation8", "transition6", "animation9", "animation10", "transition7", "animation11", "QueryData", "query", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "_enumToDisplayNameFunctions_TA3EDeQ5w", "_enumToDisplayNameFunctions_TA3EDeQ5w1", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "nWZy3UnCE_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "TA3EDeQ5w", "YSKHrdVc1", "kBAWMceDj", "EZue1CzWP", "ivFLyaMNq", "t7b0AvdZM", "JbUEZOz_8", "kqpHQlGQ0", "kl1Q1SL7s", "al7JY9UOM", "digy2gtYy", "EZue1CzWPTyFApSrWZ", "TA3EDeQ5wTyFApSrWZ", "kBAWMceDjTyFApSrWZ", "YSKHrdVc1TyFApSrWZ", "Tu_Pd0zTZTyFApSrWZ", "XahuzEJZyTyFApSrWZ", "idTyFApSrWZ", "Tu_Pd0zTZ", "kBAWMceDjKqwVs7zEQ", "YSKHrdVc1KqwVs7zEQ", "r9QMyoDHsKqwVs7zEQ", "jYgOCvKuFKqwVs7zEQ", "DjzsZgoLUKqwVs7zEQ", "luaJ1PV3vKqwVs7zEQ", "FRxJrVbabKqwVs7zEQ", "Tu_Pd0zTZKqwVs7zEQ", "idKqwVs7zEQ", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "visible", "visible1", "activeLocaleCode", "useLocaleCode", "fillColor", "visible2", "visible3", "visible4", "visible5", "visible6", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Kg3jp8xZU_default", "MotionSectionWithFX", "VLQCZcVpG_default", "enumToDisplayNameFunctions", "RichText2", "x", "Image2", "MotionDivWithFX", "Input_default", "optimizeAppear", "ivYYRKyFY_default", "Youtube", "QJ12gIOBS_default", "ResolveLinks", "resolvedLinks", "cBQAwTefC_default", "collection", "i", "PathVariablesContext", "resolvedLinks1", "fNLtYBHNV_default", "resolvedLinks2", "collection1", "resolvedLinks3", "B4CrjLIFA_default", "oGO_MGaZp_default", "SmoothScroll", "css", "FramerbcUIOegNe", "withCSS", "bcUIOegNe_default", "addFonts", "NavigationBarFonts", "TagFonts", "InputFonts", "SocialIconFonts", "YouTubeFonts", "HeadingFonts", "ButtonFonts", "BlogSingleCardFonts", "ProjectFonts", "FooterFonts", "SmoothScrollFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
