{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/qrQQZIRFKlNAeUzY3pJa/0U54rn3dQkJPLnzwtzRn/ivYYRKyFY.js", "ssg:https://framerusercontent.com/modules/i2H2cmWS1QiZQ0AZV7ia/BK0aF6yWq3ulgL56sZyI/VLQCZcVpG.js", "ssg:https://framerusercontent.com/modules/vHrxrRNblZxGsba00iM1/v1VTRtEUVcQXzCpNDFDU/bcUIOegNe.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.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 (e8e43ad)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/oGbanaDF20BsDDlBUWW0/UXlDgqSwGAToqqHtExiA/urlDCZwpF.js\";const cycleOrder=[\"QdaMq0Dkc\",\"uoyC3kaEV\",\"HXKXPQGUH\"];const serializationHash=\"framer-xSURy\";const variantClassNames={HXKXPQGUH:\"framer-v-17r5t02\",QdaMq0Dkc:\"framer-v-10ml71p\",uoyC3kaEV:\"framer-v-12zhzmo\"};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\":\"QdaMq0Dkc\",\"Variant 2\":\"uoyC3kaEV\",\"Variant 3\":\"HXKXPQGUH\"};const getProps=({height,id,label,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,NNWJ0Hne9:(_ref=label!==null&&label!==void 0?label:props.NNWJ0Hne9)!==null&&_ref!==void 0?_ref:\"Our Three Step Process\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"QdaMq0Dkc\"};};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,NNWJ0Hne9,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QdaMq0Dkc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10ml71p\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QdaMq0Dkc\",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:{backgroundColor:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\",borderBottomLeftRadius:39,borderBottomRightRadius:39,borderTopLeftRadius:39,borderTopRightRadius:39,...style},...addPropertyOverrides({HXKXPQGUH:{\"data-framer-name\":\"Variant 3\"},uoyC3kaEV:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(255, 122, 59)))\"},children:\"Our Three Step Process\"})}),className:\"framer-1453sob\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p9tJvn7J7\",style:{\"--extracted-r6o4lv\":\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(255, 122, 59))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NNWJ0Hne9,variants:{HXKXPQGUH:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},uoyC3kaEV:{\"--extracted-r6o4lv\":\"var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, rgb(10, 10, 10))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HXKXPQGUH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Our Three Step Process\"})})},uoyC3kaEV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, rgb(10, 10, 10)))\"},children:\"Our Three Step Process\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xSURy.framer-1tev78v, .framer-xSURy .framer-1tev78v { display: block; }\",\".framer-xSURy.framer-10ml71p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: visible; padding: 3px 12px 3px 12px; position: relative; width: min-content; }\",\".framer-xSURy .framer-1453sob { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xSURy.framer-10ml71p { gap: 0px; } .framer-xSURy.framer-10ml71p > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-xSURy.framer-10ml71p > :first-child { margin-left: 0px; } .framer-xSURy.framer-10ml71p > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 173\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"uoyC3kaEV\":{\"layout\":[\"auto\",\"auto\"]},\"HXKXPQGUH\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"NNWJ0Hne9\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVLQCZcVpG=withCSS(Component,css,\"framer-xSURy\");export default FramerVLQCZcVpG;FramerVLQCZcVpG.displayName=\"Tag\";FramerVLQCZcVpG.defaultProps={height:28,width:173};addPropertyControls(FramerVLQCZcVpG,{variant:{options:[\"QdaMq0Dkc\",\"uoyC3kaEV\",\"HXKXPQGUH\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},NNWJ0Hne9:{defaultValue:\"Our Three Step Process\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(FramerVLQCZcVpG,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVLQCZcVpG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uoyC3kaEV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HXKXPQGUH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"28\",\"framerIntrinsicWidth\":\"173\",\"framerVariables\":\"{\\\"NNWJ0Hne9\\\":\\\"label\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VLQCZcVpG.map", "// Generated by Framer (c747e62)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}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-e42fV\";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.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);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);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-e42fV`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-e42fV`);};},[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\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(JbUEZOz_8)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",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\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(kqpHQlGQ0)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",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\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(kl1Q1SL7s)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",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\",sizes:\"min(100vw - 24px, 1440px)\",...toResponsiveImage(al7JY9UOM)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",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\",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\",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\",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\",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,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children: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,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children: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-e42fV { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)); }`,\".framer-e42fV.framer-1plbcl9, .framer-e42fV .framer-1plbcl9 { display: block; }\",\".framer-e42fV.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-e42fV .framer-13jeeee-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-e42fV .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-e42fV .framer-1y2j6q1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-e42fV .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-e42fV .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-e42fV .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-e42fV .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-e42fV .framer-1sz6m68-container, .framer-e42fV .framer-1iuwp4-container, .framer-e42fV .framer-1cig1h6-container, .framer-e42fV .framer-q0qr72-container, .framer-e42fV .framer-1h3udpq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-e42fV .framer-1sx5r3h, .framer-e42fV .framer-1gwone9, .framer-e42fV .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-e42fV .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, 200px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e42fV .framer-1sx9orl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-e42fV .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, 114px); max-width: 1440px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-e42fV .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-e42fV .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-e42fV .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-e42fV .framer-qknbck { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-e42fV .framer-15pfw4e, .framer-e42fV .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-e42fV .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-e42fV .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-e42fV .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-e42fV .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-e42fV .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-e42fV .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-e42fV .framer-1h713k8, .framer-e42fV .framer-14lj0h8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 772px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e42fV .framer-1hytat8, .framer-e42fV .framer-nzwwuk, .framer-e42fV .framer-14tfhoz, .framer-e42fV .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-e42fV .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-e42fV .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-e42fV .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-e42fV .framer-s7x2v-container, .framer-e42fV .framer-1bsgibg-container, .framer-e42fV .framer-17o6nyy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-e42fV .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-e42fV .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-e42fV .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-e42fV .framer-1je7pfl-container, .framer-e42fV .framer-1bwwpnk-container, .framer-e42fV .framer-16ghpfq-container, .framer-e42fV .framer-17d89yp-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-e42fV .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-e42fV .framer-1euzn09 { 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; min-height: 772px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e42fV .framer-1c883pl, .framer-e42fV .framer-1luzeut, .framer-e42fV .framer-16d4boc, .framer-e42fV .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-e42fV .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-e42fV .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, 113px); justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-e42fV .framer-15xhdfc-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-e42fV .framer-9zbvp1, .framer-e42fV .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-e42fV .framer-k2nydy, .framer-e42fV .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-e42fV .framer-1mztof5, .framer-e42fV .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-e42fV .framer-esc5vj-container, .framer-e42fV .framer-1rvyp85-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",\".framer-e42fV .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-e42fV .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-e42fV .framer-b52oli-container { align-self: start; flex: none; height: 398px; justify-self: start; position: relative; width: 100%; }\",\".framer-e42fV .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-e42fV .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-e42fV.framer-v64xpx, .framer-e42fV .framer-18pk2w0, .framer-e42fV .framer-1y2j6q1, .framer-e42fV .framer-1fairq, .framer-e42fV .framer-1xo3r6g, .framer-e42fV .framer-1hxi2f3, .framer-e42fV .framer-1xfq9eh, .framer-e42fV .framer-1sx9orl, .framer-e42fV .framer-1yvrl72, .framer-e42fV .framer-1csf723, .framer-e42fV .framer-qknbck, .framer-e42fV .framer-15pfw4e, .framer-e42fV .framer-db3jv4, .framer-e42fV .framer-v1idjn, .framer-e42fV .framer-1oaqzo2, .framer-e42fV .framer-w93ggy, .framer-e42fV .framer-1h713k8, .framer-e42fV .framer-14lj0h8, .framer-e42fV .framer-tcc4mw, .framer-e42fV .framer-1c6betx, .framer-e42fV .framer-1kyhsic, .framer-e42fV .framer-ryoc45, .framer-e42fV .framer-smjmnm, .framer-e42fV .framer-1euzn09, .framer-e42fV .framer-q3eh0m, .framer-e42fV .framer-1bda809, .framer-e42fV .framer-9zbvp1, .framer-e42fV .framer-k2nydy, .framer-e42fV .framer-1mztof5, .framer-e42fV .framer-1m2ozln, .framer-e42fV .framer-q8b3ij, .framer-e42fV .framer-1q1iq9j, .framer-e42fV .framer-ioeaa6, .framer-e42fV .framer-nds95n { gap: 0px; } .framer-e42fV.framer-v64xpx > *, .framer-e42fV .framer-18pk2w0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-e42fV.framer-v64xpx > :first-child, .framer-e42fV .framer-18pk2w0 > :first-child, .framer-e42fV .framer-1hxi2f3 > :first-child, .framer-e42fV .framer-1sx9orl > :first-child, .framer-e42fV .framer-1yvrl72 > :first-child, .framer-e42fV .framer-qknbck > :first-child, .framer-e42fV .framer-15pfw4e > :first-child, .framer-e42fV .framer-db3jv4 > :first-child, .framer-e42fV .framer-v1idjn > :first-child, .framer-e42fV .framer-1oaqzo2 > :first-child, .framer-e42fV .framer-w93ggy > :first-child, .framer-e42fV .framer-tcc4mw > :first-child, .framer-e42fV .framer-1c6betx > :first-child, .framer-e42fV .framer-smjmnm > :first-child, .framer-e42fV .framer-1euzn09 > :first-child, .framer-e42fV .framer-q3eh0m > :first-child, .framer-e42fV .framer-k2nydy > :first-child, .framer-e42fV .framer-1mztof5 > :first-child, .framer-e42fV .framer-1m2ozln > :first-child, .framer-e42fV .framer-1q1iq9j > :first-child, .framer-e42fV .framer-ioeaa6 > :first-child, .framer-e42fV .framer-nds95n > :first-child { margin-top: 0px; } .framer-e42fV.framer-v64xpx > :last-child, .framer-e42fV .framer-18pk2w0 > :last-child, .framer-e42fV .framer-1hxi2f3 > :last-child, .framer-e42fV .framer-1sx9orl > :last-child, .framer-e42fV .framer-1yvrl72 > :last-child, .framer-e42fV .framer-qknbck > :last-child, .framer-e42fV .framer-15pfw4e > :last-child, .framer-e42fV .framer-db3jv4 > :last-child, .framer-e42fV .framer-v1idjn > :last-child, .framer-e42fV .framer-1oaqzo2 > :last-child, .framer-e42fV .framer-w93ggy > :last-child, .framer-e42fV .framer-tcc4mw > :last-child, .framer-e42fV .framer-1c6betx > :last-child, .framer-e42fV .framer-smjmnm > :last-child, .framer-e42fV .framer-1euzn09 > :last-child, .framer-e42fV .framer-q3eh0m > :last-child, .framer-e42fV .framer-k2nydy > :last-child, .framer-e42fV .framer-1mztof5 > :last-child, .framer-e42fV .framer-1m2ozln > :last-child, .framer-e42fV .framer-1q1iq9j > :last-child, .framer-e42fV .framer-ioeaa6 > :last-child, .framer-e42fV .framer-nds95n > :last-child { margin-bottom: 0px; } .framer-e42fV .framer-1y2j6q1 > * { margin: 0px; margin-left: calc(39px / 2); margin-right: calc(39px / 2); } .framer-e42fV .framer-1y2j6q1 > :first-child, .framer-e42fV .framer-1fairq > :first-child, .framer-e42fV .framer-1xo3r6g > :first-child, .framer-e42fV .framer-1xfq9eh > :first-child, .framer-e42fV .framer-1csf723 > :first-child, .framer-e42fV .framer-1h713k8 > :first-child, .framer-e42fV .framer-14lj0h8 > :first-child, .framer-e42fV .framer-1kyhsic > :first-child, .framer-e42fV .framer-ryoc45 > :first-child, .framer-e42fV .framer-1bda809 > :first-child, .framer-e42fV .framer-9zbvp1 > :first-child, .framer-e42fV .framer-q8b3ij > :first-child { margin-left: 0px; } .framer-e42fV .framer-1y2j6q1 > :last-child, .framer-e42fV .framer-1fairq > :last-child, .framer-e42fV .framer-1xo3r6g > :last-child, .framer-e42fV .framer-1xfq9eh > :last-child, .framer-e42fV .framer-1csf723 > :last-child, .framer-e42fV .framer-1h713k8 > :last-child, .framer-e42fV .framer-14lj0h8 > :last-child, .framer-e42fV .framer-1kyhsic > :last-child, .framer-e42fV .framer-ryoc45 > :last-child, .framer-e42fV .framer-1bda809 > :last-child, .framer-e42fV .framer-9zbvp1 > :last-child, .framer-e42fV .framer-q8b3ij > :last-child { margin-right: 0px; } .framer-e42fV .framer-1fairq > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-e42fV .framer-1xo3r6g > *, .framer-e42fV .framer-1xfq9eh > *, .framer-e42fV .framer-1csf723 > *, .framer-e42fV .framer-1h713k8 > *, .framer-e42fV .framer-14lj0h8 > *, .framer-e42fV .framer-1kyhsic > *, .framer-e42fV .framer-ryoc45 > *, .framer-e42fV .framer-1bda809 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-e42fV .framer-1hxi2f3 > *, .framer-e42fV .framer-1yvrl72 > *, .framer-e42fV .framer-w93ggy > *, .framer-e42fV .framer-1c6betx > *, .framer-e42fV .framer-smjmnm > *, .framer-e42fV .framer-1euzn09 > *, .framer-e42fV .framer-q3eh0m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-e42fV .framer-1sx9orl > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-e42fV .framer-qknbck > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-e42fV .framer-15pfw4e > *, .framer-e42fV .framer-db3jv4 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-e42fV .framer-v1idjn > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-e42fV .framer-1oaqzo2 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-e42fV .framer-tcc4mw > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-e42fV .framer-9zbvp1 > *, .framer-e42fV .framer-q8b3ij > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-e42fV .framer-k2nydy > *, .framer-e42fV .framer-1q1iq9j > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-e42fV .framer-1mztof5 > *, .framer-e42fV .framer-ioeaa6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e42fV .framer-1m2ozln > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-e42fV .framer-nds95n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@media (min-width: 1200px) { .framer-e42fV .hidden-v64xpx { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-e42fV .hidden-1rrkavb { display: none !important; } .${metadata.bodyClassName}-framer-e42fV { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)); } .framer-e42fV.framer-v64xpx { width: 810px; } .framer-e42fV .framer-qknbck { padding: 0px 40px 80px 40px; } .framer-e42fV .framer-v1idjn { gap: 60px; } .framer-e42fV .framer-1oaqzo2 { gap: 50px; } .framer-e42fV .framer-p6xs6g, .framer-e42fV .framer-tcc4mw { max-width: 590px; } .framer-e42fV .framer-1hytat8, .framer-e42fV .framer-nzwwuk, .framer-e42fV .framer-14tfhoz, .framer-e42fV .framer-1ajx6mv { height: 293px; } .framer-e42fV .framer-q3eh0m { height: 504px; } .framer-e42fV .framer-9zbvp1, .framer-e42fV .framer-q8b3ij { flex-direction: column; padding: 80px 40px 80px 40px; } .framer-e42fV .framer-k2nydy, .framer-e42fV .framer-1q1iq9j { flex: none; gap: 60px; width: 100%; } .framer-e42fV .framer-1mztof5, .framer-e42fV .framer-ioeaa6 { position: relative; top: unset; width: 100%; } .framer-e42fV .framer-nds95n { gap: 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e42fV .framer-v1idjn, .framer-e42fV .framer-1oaqzo2, .framer-e42fV .framer-9zbvp1, .framer-e42fV .framer-k2nydy, .framer-e42fV .framer-q8b3ij, .framer-e42fV .framer-1q1iq9j, .framer-e42fV .framer-nds95n { gap: 0px; } .framer-e42fV .framer-v1idjn > *, .framer-e42fV .framer-k2nydy > *, .framer-e42fV .framer-1q1iq9j > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-e42fV .framer-v1idjn > :first-child, .framer-e42fV .framer-1oaqzo2 > :first-child, .framer-e42fV .framer-9zbvp1 > :first-child, .framer-e42fV .framer-k2nydy > :first-child, .framer-e42fV .framer-q8b3ij > :first-child, .framer-e42fV .framer-1q1iq9j > :first-child, .framer-e42fV .framer-nds95n > :first-child { margin-top: 0px; } .framer-e42fV .framer-v1idjn > :last-child, .framer-e42fV .framer-1oaqzo2 > :last-child, .framer-e42fV .framer-9zbvp1 > :last-child, .framer-e42fV .framer-k2nydy > :last-child, .framer-e42fV .framer-q8b3ij > :last-child, .framer-e42fV .framer-1q1iq9j > :last-child, .framer-e42fV .framer-nds95n > :last-child { margin-bottom: 0px; } .framer-e42fV .framer-1oaqzo2 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-e42fV .framer-9zbvp1 > *, .framer-e42fV .framer-q8b3ij > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-e42fV .framer-nds95n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,`@media (max-width: 809px) { .framer-e42fV .hidden-5nmr76 { display: none !important; } .${metadata.bodyClassName}-framer-e42fV { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10)); } .framer-e42fV.framer-v64xpx { width: 390px; } .framer-e42fV .framer-1y2j6q1 { flex-direction: column; gap: 40px; padding: 110px 12px 12px 12px; } .framer-e42fV .framer-1fairq { flex: none; flex-direction: column; gap: 12px; width: 100%; } .framer-e42fV .framer-1xo3r6g { align-self: unset; flex: none; height: min-content; padding: 20px; width: 100%; } .framer-e42fV .framer-5m7vem, .framer-e42fV .framer-1hytat8, .framer-e42fV .framer-nzwwuk, .framer-e42fV .framer-14tfhoz, .framer-e42fV .framer-1ajx6mv, .framer-e42fV .framer-k2nydy, .framer-e42fV .framer-1q1iq9j { flex: none; width: 100%; } .framer-e42fV .framer-1sx9orl { gap: 40px; padding: 70px 12px 12px 12px; } .framer-e42fV .framer-9fwazn { aspect-ratio: unset; height: 60vh; } .framer-e42fV .framer-2s5b0p { height: 74%; } .framer-e42fV .framer-qknbck { gap: 40px; padding: 0px 12px 50px 12px; } .framer-e42fV .framer-15pfw4e, .framer-e42fV .framer-db3jv4 { max-width: unset; padding: 30px 20px 30px 20px; } .framer-e42fV .framer-v1idjn, .framer-e42fV .framer-nds95n { gap: 40px; } .framer-e42fV .framer-1oaqzo2 { gap: 60px; } .framer-e42fV .framer-p6xs6g { order: 0; } .framer-e42fV .framer-w93ggy { order: 1; } .framer-e42fV .framer-1h713k8, .framer-e42fV .framer-14lj0h8 { flex-direction: column; } .framer-e42fV .framer-tcc4mw { order: 2; } .framer-e42fV .framer-1kyhsic { padding: 0px; } .framer-e42fV .framer-1bda809 { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; } .framer-e42fV .framer-9zbvp1 { flex-direction: column; padding: 30px 12px 30px 12px; } .framer-e42fV .framer-1mztof5, .framer-e42fV .framer-ioeaa6 { position: relative; top: unset; width: 100%; } .framer-e42fV .framer-q8b3ij { flex-direction: column; padding: 50px 12px 50px 12px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-e42fV .framer-1y2j6q1, .framer-e42fV .framer-1fairq, .framer-e42fV .framer-1sx9orl, .framer-e42fV .framer-qknbck, .framer-e42fV .framer-v1idjn, .framer-e42fV .framer-1oaqzo2, .framer-e42fV .framer-1h713k8, .framer-e42fV .framer-14lj0h8, .framer-e42fV .framer-9zbvp1, .framer-e42fV .framer-q8b3ij, .framer-e42fV .framer-nds95n { gap: 0px; } .framer-e42fV .framer-1y2j6q1 > *, .framer-e42fV .framer-1sx9orl > *, .framer-e42fV .framer-qknbck > *, .framer-e42fV .framer-v1idjn > *, .framer-e42fV .framer-nds95n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-e42fV .framer-1y2j6q1 > :first-child, .framer-e42fV .framer-1fairq > :first-child, .framer-e42fV .framer-1sx9orl > :first-child, .framer-e42fV .framer-qknbck > :first-child, .framer-e42fV .framer-v1idjn > :first-child, .framer-e42fV .framer-1oaqzo2 > :first-child, .framer-e42fV .framer-1h713k8 > :first-child, .framer-e42fV .framer-14lj0h8 > :first-child, .framer-e42fV .framer-9zbvp1 > :first-child, .framer-e42fV .framer-q8b3ij > :first-child, .framer-e42fV .framer-nds95n > :first-child { margin-top: 0px; } .framer-e42fV .framer-1y2j6q1 > :last-child, .framer-e42fV .framer-1fairq > :last-child, .framer-e42fV .framer-1sx9orl > :last-child, .framer-e42fV .framer-qknbck > :last-child, .framer-e42fV .framer-v1idjn > :last-child, .framer-e42fV .framer-1oaqzo2 > :last-child, .framer-e42fV .framer-1h713k8 > :last-child, .framer-e42fV .framer-14lj0h8 > :last-child, .framer-e42fV .framer-9zbvp1 > :last-child, .framer-e42fV .framer-q8b3ij > :last-child, .framer-e42fV .framer-nds95n > :last-child { margin-bottom: 0px; } .framer-e42fV .framer-1fairq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-e42fV .framer-1oaqzo2 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-e42fV .framer-1h713k8 > *, .framer-e42fV .framer-14lj0h8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-e42fV .framer-9zbvp1 > *, .framer-e42fV .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-e42fV[data-border=\"true\"]::after, .framer-e42fV [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 5981\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-e42fV\");export default FramerbcUIOegNe;FramerbcUIOegNe.displayName=\"Blog\";FramerbcUIOegNe.defaultProps={height:5981,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://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:\"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\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"5981\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rAx44OxNG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yUefG4DCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "label", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NNWJ0Hne9", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerVLQCZcVpG", "withCSS", "VLQCZcVpG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "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", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks1", "fNLtYBHNV_default", "resolvedLinks2", "collection1", "paginationInfo1", "loadMore1", "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__"]
}
