{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/IwIsVNuj6KgdLuSQ1yN8/FT82k3If3xxG9bsrk9RH/aFQp_M2Dy.js", "ssg:https://framerusercontent.com/modules/eKoXbCCff43wU2tj4Bw3/T4iZK1LusQwYzYnen0PD/p0aeyeNJp.js", "ssg:https://framerusercontent.com/modules/ZTrKczCGnBbfbSNHmmBk/jiZgdmHnOeHk6H1yecU1/shG005HRK.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (f2fcf75)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={a13Jg7iEX:{hover:true},z2CW5tGz3:{hover:true}};const cycleOrder=[\"z2CW5tGz3\",\"a13Jg7iEX\"];const serializationHash=\"framer-nyhcO\";const variantClassNames={a13Jg7iEX:\"framer-v-1xvpjcf\",z2CW5tGz3:\"framer-v-10n9uc6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Large:\"z2CW5tGz3\",Small:\"a13Jg7iEX\"};const getProps=({heading,height,id,image,link,width,...props})=>{return{...props,PDhkZ6jhr:image??props.PDhkZ6jhr,RPJxbNw8C:link??props.RPJxbNw8C,tVzlc8qdV:heading??props.tVzlc8qdV??\"Heading\",variant:humanReadableVariantMap[props.variant]??props.variant??\"z2CW5tGz3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RPJxbNw8C,PDhkZ6jhr,tVzlc8qdV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z2CW5tGz3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:RPJxbNw8C,nodeId:\"z2CW5tGz3\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-10n9uc6\",className,classNames)} framer-1vw7862`,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"z2CW5tGz3\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"a13Jg7iEX-hover\":{\"data-framer-name\":undefined},\"z2CW5tGz3-hover\":{\"data-framer-name\":undefined},a13Jg7iEX:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||416.5)-0-147)/2+0+0)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(PDhkZ6jhr),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-jstia4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"P97x5oNum\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({a13Jg7iEX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 16px) / 2, 1px)`,...toResponsiveImage(PDhkZ6jhr),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rbqac1\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"OxVrig0V_\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojlm6x\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"ySc_K0ewN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255)))\"},children:\"Heading\"})}),className:\"framer-ly1ntp\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-600\"],layoutDependency:layoutDependency,layoutId:\"RJ8wUVgs0\",style:{\"--extracted-r6o4lv\":\"var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:tVzlc8qdV,verticalAlignment:\"top\",withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nyhcO.framer-1vw7862, .framer-nyhcO .framer-1vw7862 { display: block; }\",\".framer-nyhcO.framer-10n9uc6 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 500px; }\",\".framer-nyhcO .framer-jstia4 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 375px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-nyhcO .framer-rbqac1 { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nyhcO .framer-1ojlm6x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nyhcO .framer-ly1ntp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nyhcO.framer-10n9uc6, .framer-nyhcO .framer-rbqac1, .framer-nyhcO .framer-1ojlm6x { gap: 0px; } .framer-nyhcO.framer-10n9uc6 > *, .framer-nyhcO .framer-rbqac1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-nyhcO.framer-10n9uc6 > :first-child, .framer-nyhcO .framer-rbqac1 > :first-child, .framer-nyhcO .framer-1ojlm6x > :first-child { margin-top: 0px; } .framer-nyhcO.framer-10n9uc6 > :last-child, .framer-nyhcO .framer-rbqac1 > :last-child, .framer-nyhcO .framer-1ojlm6x > :last-child { margin-bottom: 0px; } .framer-nyhcO .framer-1ojlm6x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-nyhcO.framer-v-1xvpjcf.framer-10n9uc6 { flex-direction: row; }\",\".framer-nyhcO.framer-v-1xvpjcf .framer-jstia4 { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 182px); width: 1px; }\",\".framer-nyhcO.framer-v-1xvpjcf .framer-rbqac1 { align-self: stretch; flex: 1 0 0px; gap: unset; height: auto; justify-content: space-between; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nyhcO.framer-v-1xvpjcf.framer-10n9uc6, .framer-nyhcO.framer-v-1xvpjcf .framer-rbqac1 { gap: 0px; } .framer-nyhcO.framer-v-1xvpjcf.framer-10n9uc6 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-nyhcO.framer-v-1xvpjcf.framer-10n9uc6 > :first-child { margin-left: 0px; } .framer-nyhcO.framer-v-1xvpjcf.framer-10n9uc6 > :last-child { margin-right: 0px; } .framer-nyhcO.framer-v-1xvpjcf .framer-rbqac1 > *, .framer-nyhcO.framer-v-1xvpjcf .framer-rbqac1 > :first-child, .framer-nyhcO.framer-v-1xvpjcf .framer-rbqac1 > :last-child { margin: 0px; } }\",\".framer-nyhcO.framer-v-1xvpjcf.hover .framer-rbqac1 { gap: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nyhcO.framer-v-1xvpjcf.hover .framer-rbqac1 { gap: 0px; } .framer-nyhcO.framer-v-1xvpjcf.hover .framer-rbqac1 > *, .framer-nyhcO.framer-v-1xvpjcf.hover .framer-rbqac1 > :first-child, .framer-nyhcO.framer-v-1xvpjcf.hover .framer-rbqac1 > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 416.5\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"a13Jg7iEX\":{\"layout\":[\"fixed\",\"auto\"]},\"p93gCeiGS\":{\"layout\":[\"fixed\",\"auto\"]},\"bIphMuMcw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RPJxbNw8C\":\"link\",\"PDhkZ6jhr\":\"image\",\"tVzlc8qdV\":\"heading\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraFQp_M2Dy=withCSS(Component,css,\"framer-nyhcO\");export default FrameraFQp_M2Dy;FrameraFQp_M2Dy.displayName=\"Blog Card 2\";FrameraFQp_M2Dy.defaultProps={height:416.5,width:500};addPropertyControls(FrameraFQp_M2Dy,{variant:{options:[\"z2CW5tGz3\",\"a13Jg7iEX\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},RPJxbNw8C:{title:\"Link\",type:ControlType.Link},PDhkZ6jhr:{title:\"Image\",type:ControlType.ResponsiveImage},tVzlc8qdV:{defaultValue:\"Heading\",displayTextArea:false,title:\"Heading\",type:ControlType.String}});addFonts(FrameraFQp_M2Dy,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45Dmqkr9WCEvmma-aua4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraFQp_M2Dy\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"416.5\",\"framerIntrinsicWidth\":\"500\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"RPJxbNw8C\\\":\\\"link\\\",\\\"PDhkZ6jhr\\\":\\\"image\\\",\\\"tVzlc8qdV\\\":\\\"heading\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a13Jg7iEX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p93gCeiGS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bIphMuMcw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aFQp_M2Dy.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,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/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Button from\"https://framerusercontent.com/modules/XeUbOGGgdFVvxopUhB4R/dWfkuzBexVb4GIBJW1GB/SMTKsJSm5.js\";const ButtonFonts=getFonts(Button);const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-nXWtj\";const variantClassNames={UELYuVkqz:\"framer-v-ic1hsq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({body,height,id,width,...props})=>{var _ref;return{...props,gahe4syJP:(_ref=body!==null&&body!==void 0?body:props.gahe4syJP)!==null&&_ref!==void 0?_ref:\"Body\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gahe4syJP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"UELYuVkqz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ic1hsq\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UELYuVkqz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nTsS1kzie\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||25)-0-41)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q80u0h-container\",layoutDependency:layoutDependency,layoutId:\"SN0pirmrD-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",hmZi5Hxh8:false,HS3qJ9_Yu:\"Home\",id:\"SN0pirmrD\",layoutId:\"SN0pirmrD\",R5ROUwrFd:\"arrow-up-right\",u8x1nnGS2:false,variant:\"sPYrbBEj7\",width:\"100%\",xHnHTyVTY:resolvedLinks[0]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xwqc58-container\",layoutDependency:layoutDependency,layoutId:\"RpcuMrEL2-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"caret-right\",iconSelection:\"House\",id:\"RpcuMrEL2\",layoutId:\"RpcuMrEL2\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Kkht4F6En\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||25)-0-41)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sdfjy-container\",layoutDependency:layoutDependency,layoutId:\"oFqeVwFLh-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",hmZi5Hxh8:false,HS3qJ9_Yu:\"Our Work\",id:\"oFqeVwFLh\",layoutId:\"oFqeVwFLh\",R5ROUwrFd:\"arrow-up-right\",u8x1nnGS2:false,variant:\"sPYrbBEj7\",width:\"100%\",xHnHTyVTY:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18moab9-container\",layoutDependency:layoutDependency,layoutId:\"G_MHGe5nQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"caret-right\",iconSelection:\"House\",id:\"G_MHGe5nQ\",layoutId:\"G_MHGe5nQ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b97f0dd-92e8-4720-a18a-4ff8270d2a20, rgb(158, 161, 255)))\"},children:\"Body 3\"})}),className:\"framer-jecylk\",\"data-framer-name\":\"Body\",fonts:[\"GF;Rethink Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"A8u1147KE\",style:{\"--extracted-r6o4lv\":\"var(--token-3b97f0dd-92e8-4720-a18a-4ff8270d2a20, rgb(158, 161, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gahe4syJP,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nXWtj.framer-8uib81, .framer-nXWtj .framer-8uib81 { display: block; }\",\".framer-nXWtj.framer-ic1hsq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nXWtj .framer-q80u0h-container, .framer-nXWtj .framer-1sdfjy-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-nXWtj .framer-1xwqc58-container, .framer-nXWtj .framer-18moab9-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-nXWtj .framer-jecylk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXWtj.framer-ic1hsq { gap: 0px; } .framer-nXWtj.framer-ic1hsq > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-nXWtj.framer-ic1hsq > :first-child { margin-left: 0px; } .framer-nXWtj.framer-ic1hsq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 196.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"gahe4syJP\":\"body\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp0aeyeNJp=withCSS(Component,css,\"framer-nXWtj\");export default Framerp0aeyeNJp;Framerp0aeyeNJp.displayName=\"Breadcrumb\";Framerp0aeyeNJp.defaultProps={height:25,width:196.5};addPropertyControls(Framerp0aeyeNJp,{gahe4syJP:{defaultValue:\"Body\",displayTextArea:false,title:\"Body\",type:ControlType.String}});addFonts(Framerp0aeyeNJp,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkmFRCEvmma-aua4.woff2\",weight:\"400\"}]},...ButtonFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp0aeyeNJp\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"196.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"gahe4syJP\\\":\\\"body\\\"}\",\"framerIntrinsicHeight\":\"25\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p0aeyeNJp.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ShareButton from\"https://framerusercontent.com/modules/GEfwAAJktkoA9SucAvJX/OROGF69UaBZVCL4d7pjG/ShareButton.js\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import BlogCard2 from\"#framer/local/canvasComponent/aFQp_M2Dy/aFQp_M2Dy.js\";import AIKitNav3 from\"#framer/local/canvasComponent/eoqoJvf5h/eoqoJvf5h.js\";import Breadcrumb from\"#framer/local/canvasComponent/p0aeyeNJp/p0aeyeNJp.js\";import Footer from\"#framer/local/canvasComponent/SL5cc_tSR/SL5cc_tSR.js\";import OurWork,{enumToDisplayNameFunctions}from\"#framer/local/collection/dzOzeEQhB/dzOzeEQhB.js\";import*as sharedStyle6 from\"#framer/local/css/bNWIfpA4K/bNWIfpA4K.js\";import*as sharedStyle5 from\"#framer/local/css/FI9NIgdSc/FI9NIgdSc.js\";import*as sharedStyle2 from\"#framer/local/css/g94j1NQXp/g94j1NQXp.js\";import*as sharedStyle from\"#framer/local/css/GgzepgGuj/GgzepgGuj.js\";import*as sharedStyle9 from\"#framer/local/css/HcNIRUCzq/HcNIRUCzq.js\";import*as sharedStyle1 from\"#framer/local/css/nmhD1gwBv/nmhD1gwBv.js\";import*as sharedStyle4 from\"#framer/local/css/pxyaDqgen/pxyaDqgen.js\";import*as sharedStyle8 from\"#framer/local/css/unqrsitnn/unqrsitnn.js\";import*as sharedStyle7 from\"#framer/local/css/Vh8sOD5QM/Vh8sOD5QM.js\";import*as sharedStyle3 from\"#framer/local/css/zLSRjRJdP/zLSRjRJdP.js\";import metadataProvider from\"#framer/local/webPageMetadata/shG005HRK/shG005HRK.js\";const AIKitNav3Fonts=getFonts(AIKitNav3);const BreadcrumbFonts=getFonts(Breadcrumb);const DownloadFonts=getFonts(Download);const ShareButtonFonts=getFonts(ShareButton);const MotionArticleWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.article);const BlogCard2Fonts=getFonts(BlogCard2);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={PUTSewp_o:\"(min-width: 1200px)\",uWP5URFpK:\"(min-width: 810px) and (max-width: 1199px)\",Zt4w3owSr:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dHsDe\";const variantClassNames={PUTSewp_o:\"framer-v-1sdqnz1\",uWP5URFpK:\"framer-v-13s945t\",Zt4w3owSr:\"framer-v-188f7nf\"};const transition1={delay:.2,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:48};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"Upload\";}else{return\"Upload\";}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"PUTSewp_o\",Phone:\"Zt4w3owSr\",Tablet:\"uWP5URFpK\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PUTSewp_o\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"shG005HRK\",data:OurWork,type:\"Collection\"},select:[{collection:\"shG005HRK\",name:\"gh_nPOE7v\",type:\"Identifier\"},{collection:\"shG005HRK\",name:\"Pc7UkayJU\",type:\"Identifier\"},{collection:\"shG005HRK\",name:\"fm_3itB4E\",type:\"Identifier\"},{collection:\"shG005HRK\",name:\"DN9Ne_3ov\",type:\"Identifier\"},{collection:\"shG005HRK\",name:\"bhwKQ_nH7\",type:\"Identifier\"},{collection:\"shG005HRK\",name:\"DGeexttRg\",type:\"Identifier\"},{collection:\"shG005HRK\",name:\"paqZN1KmN\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"shG005HRK\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,gh_nPOE7v=getFromCurrentRouteData(\"gh_nPOE7v\")??\"\",Pc7UkayJU=getFromCurrentRouteData(\"Pc7UkayJU\")??\"\",DGeexttRg=getFromCurrentRouteData(\"DGeexttRg\"),DN9Ne_3ov=getFromCurrentRouteData(\"DN9Ne_3ov\"),fm_3itB4E=getFromCurrentRouteData(\"fm_3itB4E\")??\"\",bhwKQ_nH7=getFromCurrentRouteData(\"bhwKQ_nH7\"),paqZN1KmN=getFromCurrentRouteData(\"paqZN1KmN\")??\"\",E42AJE21ovACAFg7kT,SnBOZ9wxbvACAFg7kT,gh_nPOE7vvACAFg7kT,idvACAFg7kT,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Zt4w3owSr\")return false;return true;};const textContent=enumToDisplayNameFunctions[\"DGeexttRg\"]?.(DGeexttRg,activeLocale);const activeLocaleCode=useLocaleCode();const textContent1=toDateString(DN9Ne_3ov,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"PUTSewp_o\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(1, 2, 15); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1sdqnz1\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:75,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18pitba-container\",nodeId:\"VnIzIcjVA\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zt4w3owSr:{variant:\"DpStQ8qMS\"}},children:/*#__PURE__*/_jsx(AIKitNav3,{height:\"100%\",id:\"VnIzIcjVA\",layoutId:\"VnIzIcjVA\",style:{width:\"100%\"},variant:\"tF6VbONJA\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1k2vbat\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zt4w3owSr:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+75+-.6286328460875836),pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+75+-1.529148753224149),pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"},className:\"framer-15aw2v\",\"data-framer-name\":\"Stars\"})}),/*#__PURE__*/_jsxs(MotionArticleWithOptimizedAppearEffect,{animate:animation,className:\"framer-n4r2tw\",\"data-framer-appear-id\":\"n4r2tw\",\"data-framer-name\":\"Content Wrapper\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jx7020\",\"data-framer-name\":\"Text Wrapper\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+0+75+100+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1crjx01-container hidden-188f7nf\",nodeId:\"Oje_OOxoS\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(Breadcrumb,{gahe4syJP:gh_nPOE7v,height:\"100%\",id:\"Oje_OOxoS\",layoutId:\"Oje_OOxoS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nk4eyw\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4mvlb7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjdqz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zt4w3owSr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-b5a6b25f-75f2-4dc1-bae6-c5825c25c81e, rgb(194, 198, 255)) 0%, var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255)) 100%)\"},children:\"The Role of Music in Storytelling in Life\"})})}),fonts:[\"GF;Rethink Sans-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-b5a6b25f-75f2-4dc1-bae6-c5825c25c81e, rgb(194, 198, 255)) 0%, var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255)) 100%)\"},children:\"Elyxor Cruise Control: Intelligent Cloud Cost Optimization\"})})}),className:\"framer-1xiiv6m\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-Medium\"],text:gh_nPOE7v,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57a5745f-6ff6-4e09-ae7b-aceff6d196fe, rgba(255, 255, 255, 0.5))\"},children:\"Elyxor Cruise Control is an advanced cloud cost management tool that helps businesses optimize resource utilization and reduce expenses by up to 30%. \"})}),className:\"framer-1oixxp7\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],text:Pc7UkayJU,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1llyquo\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mkhvqw\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"White Paper\"})}),className:\"framer-2jpk0n\",\"data-framer-name\":\"Body\",fonts:[\"Inter-SemiBold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wtb9ro\",\"data-framer-name\":\"Circle\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57a5745f-6ff6-4e09-ae7b-aceff6d196fe, rgba(255, 255, 255, 0.5))\"},children:\"Feb 10, 2025\"})}),className:\"framer-2a5o4f\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d36406 hidden-188f7nf\",\"data-framer-name\":\"Circle\"}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57a5745f-6ff6-4e09-ae7b-aceff6d196fe, rgba(255, 255, 255, 0.5))\"},children:\"4 Min Read\"})}),className:\"framer-wdd1sw hidden-188f7nf\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],text:fm_3itB4E,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z1b5y9\",\"data-framer-name\":\"Wrapper\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1we2rvl hidden-188f7nf\",\"data-framer-name\":\"Link Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wikc04\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tjj9pi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UNXIT2wEH\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(Download,{fontControl:{},height:\"100%\",iconOptions:{alignment:\"start\",color:\"rgb(255, 255, 255)\",size:16,type:\"Default\"},id:\"UNXIT2wEH\",layoutId:\"UNXIT2wEH\",srcFile:bhwKQ_nH7,srcType:convertFromBoolean(isSet(bhwKQ_nH7),activeLocale),srcURL:\"\",styleOptions:{backgroundColor:\"rgb(14, 15, 28)\",borderRadius:50,color:\"rgb(255, 255, 255)\",gap:5,padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12},text:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqkwt0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e8Qny2t1L\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(ShareButton,{backgroundType:\"Solid\",borderColor:\"rgb(34, 36, 38)\",borderWidth:1,bottomLeftRadius:50,bottomPadding:10,bottomRightRadius:50,font:{color:\"rgb(255, 255, 255)\",fontFace:\"Inter\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"rgb(255, 255, 255)\",gap:10,size:20},id:\"e8Qny2t1L\",isMixedPadding:false,isMixedRadius:false,layoutId:\"e8Qny2t1L\",leftPadding:10,linear:{degree:90,fromColor:\"rgb(50, 50, 50)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:50,rightPadding:10,shareCurrentUrl:true,shareText:\"Check out this work from the team at @elyxor \",socialMedia:\"Twitter\",stylePadding:10,tint:\"rgb(14, 15, 28)\",title:\"\",topLeftRadius:50,topPadding:10,topRightRadius:50,urlToShare:\"https://framer.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wioo99-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Jqv_jh2Lw\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(ShareButton,{backgroundType:\"Solid\",borderColor:\"rgb(34, 36, 38)\",borderWidth:1,bottomLeftRadius:50,bottomPadding:10,bottomRightRadius:50,font:{color:\"rgb(255, 255, 255)\",fontFace:\"Inter\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"rgb(255, 255, 255)\",gap:10,size:20},id:\"Jqv_jh2Lw\",isMixedPadding:false,isMixedRadius:false,layoutId:\"Jqv_jh2Lw\",leftPadding:10,linear:{degree:90,fromColor:\"rgb(50, 50, 50)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:50,rightPadding:10,shareCurrentUrl:true,shareText:\"Share on Twitter: \",socialMedia:\"Facebook\",stylePadding:10,tint:\"rgb(14, 15, 28)\",title:\"\",topLeftRadius:50,topPadding:10,topRightRadius:50,urlToShare:\"https://framer.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w5hvcz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VmSDbWl62\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(ShareButton,{backgroundType:\"Solid\",borderColor:\"rgb(34, 36, 38)\",borderWidth:1,bottomLeftRadius:50,bottomPadding:10,bottomRightRadius:50,font:{color:\"rgb(255, 255, 255)\",fontFace:\"Inter\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"rgb(255, 255, 255)\",gap:10,size:20},id:\"VmSDbWl62\",isMixedPadding:false,isMixedRadius:false,layoutId:\"VmSDbWl62\",leftPadding:10,linear:{degree:90,fromColor:\"rgb(50, 50, 50)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:50,rightPadding:10,shareCurrentUrl:true,shareText:\"Share on Twitter: \",socialMedia:\"LinkedIn\",stylePadding:10,tint:\"rgb(14, 15, 28)\",title:\"\",topLeftRadius:50,topPadding:10,topRightRadius:50,urlToShare:\"https://framer.com\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:paqZN1KmN,className:\"framer-kv2xy\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-kcabgq\",code:\"framer-styles-preset-azsmk6\",h1:\"framer-styles-preset-ylt9gk\",h2:\"framer-styles-preset-1oj3tnu\",h3:\"framer-styles-preset-1bgdkwt\",h4:\"framer-styles-preset-dzfww1\",h5:\"framer-styles-preset-6rr0x7\",h6:\"framer-styles-preset-g7h3f1\",img:\"framer-styles-preset-1eyr7dh\",p:\"framer-styles-preset-1udj698\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1p5aild\",\"data-framer-name\":\"Read More\",children:/*#__PURE__*/_jsxs(\"article\",{className:\"framer-1s3s1m6\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1alh3l5\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-59714255-6ec9-4337-bf5d-479ebe96bbb4, rgb(255, 255, 255))\"},children:\"Read More Case Studies\"})}),className:\"framer-lu5fja\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ddsx2b\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uWP5URFpK:{query:{from:{alias:\"vACAFg7kT\",data:OurWork,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"vACAFg7kT\",name:\"E42AJE21o\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"SnBOZ9wxb\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"gh_nPOE7v\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"id\",type:\"Identifier\"}]}},Zt4w3owSr:{query:{from:{alias:\"vACAFg7kT\",data:OurWork,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"vACAFg7kT\",name:\"E42AJE21o\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"SnBOZ9wxb\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"gh_nPOE7v\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vACAFg7kT\",data:OurWork,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"vACAFg7kT\",name:\"E42AJE21o\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"SnBOZ9wxb\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"gh_nPOE7v\",type:\"Identifier\"},{collection:\"vACAFg7kT\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({E42AJE21o:E42AJE21ovACAFg7kT,gh_nPOE7v:gh_nPOE7vvACAFg7kT,id:idvACAFg7kT,SnBOZ9wxb:SnBOZ9wxbvACAFg7kT},index)=>{E42AJE21ovACAFg7kT??=\"\";gh_nPOE7vvACAFg7kT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vACAFg7kT-${idvACAFg7kT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{E42AJE21o:E42AJE21ovACAFg7kT},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{E42AJE21o:E42AJE21ovACAFg7kT},webPageId:\"shG005HRK\"},implicitPathVariables:undefined},{href:{pathVariables:{E42AJE21o:E42AJE21ovACAFg7kT},webPageId:\"shG005HRK\"},implicitPathVariables:undefined},{href:{pathVariables:{E42AJE21o:E42AJE21ovACAFg7kT},webPageId:\"shG005HRK\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uWP5URFpK:{width:`max(min((${componentViewport?.width||\"100vw\"} - 80px) * 0.8, 1100px), 1px)`},Zt4w3owSr:{width:`min(${componentViewport?.width||\"100vw\"} * 0.8, 1100px)`,y:(componentViewport?.y||0)+0+562.4+100+0+72+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:416,width:`max(min(${componentViewport?.width||\"100vw\"} * 0.8, 1100px), 1px)`,y:(componentViewport?.y||0)+0+1260.6+100+0+72+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14jsspj-container\",nodeId:\"zxfLNU2Il\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uWP5URFpK:{RPJxbNw8C:resolvedLinks[1]},Zt4w3owSr:{RPJxbNw8C:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(BlogCard2,{height:\"100%\",id:\"zxfLNU2Il\",layoutId:\"zxfLNU2Il\",PDhkZ6jhr:toResponsiveImage(SnBOZ9wxbvACAFg7kT),RPJxbNw8C:resolvedLinks[0],style:{width:\"100%\"},tVzlc8qdV:gh_nPOE7vvACAFg7kT,variant:\"z2CW5tGz3\",width:\"100%\"})})})})})})})},idvACAFg7kT);})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zt4w3owSr:{y:(componentViewport?.y||0)+0+1250.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:369,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1948.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kmdiiw-container\",nodeId:\"t2oarz0Hs\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uWP5URFpK:{variant:\"N1gNqOuoX\"},Zt4w3owSr:{variant:\"Ggen4v7Kk\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"t2oarz0Hs\",layoutId:\"t2oarz0Hs\",style:{width:\"100%\"},variant:\"Zt9GBYhJR\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1am37y8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"l54R2tfKN\",scopeId:\"shG005HRK\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"l54R2tfKN\",intensity:10,layoutId:\"l54R2tfKN\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dHsDe.framer-5nl3ji, .framer-dHsDe .framer-5nl3ji { display: block; }\",\".framer-dHsDe.framer-1sdqnz1 { align-content: center; align-items: center; background-color: #01020f; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-dHsDe .framer-18pitba-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-dHsDe .framer-1k2vbat { align-content: center; align-items: center; background: radial-gradient(50% 50% at 95.39999999999999% 24.5%, rgba(66, 92, 187, 0.1) 0%, rgba(1, 2, 15, 0.5) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 40px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-dHsDe .framer-15aw2v { flex: none; height: 100%; left: calc(50.08333333333336% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: calc(49.871023215821175% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-dHsDe .framer-n4r2tw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 80%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-dHsDe .framer-1jx7020 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dHsDe .framer-1crjx01-container, .framer-dHsDe .framer-aqkwt0-container, .framer-dHsDe .framer-1wioo99-container, .framer-dHsDe .framer-w5hvcz-container, .framer-dHsDe .framer-1am37y8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dHsDe .framer-1nk4eyw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dHsDe .framer-4mvlb7 { 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-dHsDe .framer-yjdqz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dHsDe .framer-1xiiv6m, .framer-dHsDe .framer-1oixxp7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dHsDe .framer-1llyquo { background-color: var(--token-eb6d3f06-fd66-44f0-8563-550f8376b80c, rgba(255, 255, 255, 0.1)); border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-dHsDe .framer-mkhvqw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dHsDe .framer-2jpk0n, .framer-dHsDe .framer-2a5o4f, .framer-dHsDe .framer-wdd1sw { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-dHsDe .framer-wtb9ro, .framer-dHsDe .framer-1d36406 { aspect-ratio: 1 / 1; background-color: var(--token-57a5745f-6ff6-4e09-ae7b-aceff6d196fe, rgba(255, 255, 255, 0.5)); border-bottom-left-radius: 300px; border-bottom-right-radius: 300px; border-top-left-radius: 300px; border-top-right-radius: 300px; flex: none; height: var(--framer-aspect-ratio-supported, 2px); overflow: hidden; position: relative; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dHsDe .framer-z1b5y9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dHsDe .framer-1we2rvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 128px; width: min-content; z-index: 1; }\",\".framer-dHsDe .framer-wikc04 { --border-bottom-width: 1px; --border-color: #272833; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dHsDe .framer-tjj9pi-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-dHsDe .framer-kv2xy { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-dHsDe .framer-1p5aild { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-dHsDe .framer-1s3s1m6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-dHsDe .framer-1alh3l5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-dHsDe .framer-lu5fja { --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-dHsDe .framer-1ddsx2b { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-dHsDe .framer-14jsspj-container { cursor: pointer; flex: 1 0 0px; height: auto; pointer-events: auto; position: relative; width: 1px; }\",\".framer-dHsDe .framer-1kmdiiw-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dHsDe.framer-1sdqnz1, .framer-dHsDe .framer-1k2vbat, .framer-dHsDe .framer-n4r2tw, .framer-dHsDe .framer-1jx7020, .framer-dHsDe .framer-1nk4eyw, .framer-dHsDe .framer-4mvlb7, .framer-dHsDe .framer-yjdqz, .framer-dHsDe .framer-mkhvqw, .framer-dHsDe .framer-z1b5y9, .framer-dHsDe .framer-1we2rvl, .framer-dHsDe .framer-1p5aild, .framer-dHsDe .framer-1s3s1m6, .framer-dHsDe .framer-1alh3l5, .framer-dHsDe .framer-1ddsx2b { gap: 0px; } .framer-dHsDe.framer-1sdqnz1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dHsDe.framer-1sdqnz1 > :first-child, .framer-dHsDe .framer-n4r2tw > :first-child, .framer-dHsDe .framer-1jx7020 > :first-child, .framer-dHsDe .framer-1nk4eyw > :first-child, .framer-dHsDe .framer-yjdqz > :first-child, .framer-dHsDe .framer-1we2rvl > :first-child, .framer-dHsDe .framer-1s3s1m6 > :first-child, .framer-dHsDe .framer-1alh3l5 > :first-child { margin-top: 0px; } .framer-dHsDe.framer-1sdqnz1 > :last-child, .framer-dHsDe .framer-n4r2tw > :last-child, .framer-dHsDe .framer-1jx7020 > :last-child, .framer-dHsDe .framer-1nk4eyw > :last-child, .framer-dHsDe .framer-yjdqz > :last-child, .framer-dHsDe .framer-1we2rvl > :last-child, .framer-dHsDe .framer-1s3s1m6 > :last-child, .framer-dHsDe .framer-1alh3l5 > :last-child { margin-bottom: 0px; } .framer-dHsDe .framer-1k2vbat > *, .framer-dHsDe .framer-1p5aild > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-dHsDe .framer-1k2vbat > :first-child, .framer-dHsDe .framer-4mvlb7 > :first-child, .framer-dHsDe .framer-mkhvqw > :first-child, .framer-dHsDe .framer-z1b5y9 > :first-child, .framer-dHsDe .framer-1p5aild > :first-child, .framer-dHsDe .framer-1ddsx2b > :first-child { margin-left: 0px; } .framer-dHsDe .framer-1k2vbat > :last-child, .framer-dHsDe .framer-4mvlb7 > :last-child, .framer-dHsDe .framer-mkhvqw > :last-child, .framer-dHsDe .framer-z1b5y9 > :last-child, .framer-dHsDe .framer-1p5aild > :last-child, .framer-dHsDe .framer-1ddsx2b > :last-child { margin-right: 0px; } .framer-dHsDe .framer-n4r2tw > *, .framer-dHsDe .framer-1s3s1m6 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-dHsDe .framer-1jx7020 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-dHsDe .framer-1nk4eyw > *, .framer-dHsDe .framer-1alh3l5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-dHsDe .framer-4mvlb7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dHsDe .framer-yjdqz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dHsDe .framer-mkhvqw > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-dHsDe .framer-z1b5y9 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-dHsDe .framer-1we2rvl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-dHsDe .framer-1ddsx2b > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-dHsDe[data-border=\"true\"]::after, .framer-dHsDe [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-dHsDe.framer-1sdqnz1 { width: 810px; } .framer-dHsDe .framer-kv2xy { width: 85%; } .framer-dHsDe .framer-1p5aild { padding: 100px 40px 100px 40px; }}\",\"@media (max-width: 809px) { .framer-dHsDe.framer-1sdqnz1 { width: 390px; } .framer-dHsDe .framer-1k2vbat { padding: 50px 0px 40px 0px; } .framer-dHsDe .framer-kv2xy { width: 100%; } .framer-dHsDe .framer-1ddsx2b { flex-direction: column; } .framer-dHsDe .framer-14jsspj-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-dHsDe .framer-1ddsx2b { gap: 0px; } .framer-dHsDe .framer-1ddsx2b > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-dHsDe .framer-1ddsx2b > :first-child { margin-top: 0px; } .framer-dHsDe .framer-1ddsx2b > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2467\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uWP5URFpK\":{\"layout\":[\"fixed\",\"auto\"]},\"Zt4w3owSr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramershG005HRK=withCSS(Component,css,\"framer-dHsDe\");export default FramershG005HRK;FramershG005HRK.displayName=\"Page\";FramershG005HRK.defaultProps={height:2467,width:1200};addFonts(FramershG005HRK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...AIKitNav3Fonts,...BreadcrumbFonts,...DownloadFonts,...ShareButtonFonts,...BlogCard2Fonts,...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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramershG005HRK\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"2467\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uWP5URFpK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zt4w3owSr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "heading", "height", "id", "image", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RPJxbNw8C", "PDhkZ6jhr", "tVzlc8qdV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FrameraFQp_M2Dy", "withCSS", "aFQp_M2Dy_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "SMTKsJSm5_default", "PhosphorFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "body", "height", "id", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gahe4syJP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SMTKsJSm5_default", "Icon", "resolvedLinks1", "RichText2", "css", "Framerp0aeyeNJp", "withCSS", "p0aeyeNJp_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "PhosphorFonts", "AIKitNav3Fonts", "getFonts", "eoqoJvf5h_default", "BreadcrumbFonts", "p0aeyeNJp_default", "DownloadFonts", "Download", "ShareButtonFonts", "ShareButton", "MotionArticleWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "BlogCard2Fonts", "aFQp_M2Dy_default", "FooterFonts", "SL5cc_tSR_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "isSet", "convertFromBoolean", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "dzOzeEQhB_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "gh_nPOE7v", "Pc7UkayJU", "DGeexttRg", "DN9Ne_3ov", "fm_3itB4E", "bhwKQ_nH7", "paqZN1KmN", "E42AJE21ovACAFg7kT", "SnBOZ9wxbvACAFg7kT", "gh_nPOE7vvACAFg7kT", "idvACAFg7kT", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "textContent", "enumToDisplayNameFunctions", "activeLocaleCode", "useLocaleCode", "textContent1", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FramershG005HRK", "withCSS", "shG005HRK_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
