{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/pOuVtz0hGT9hm8h48RcG/MJX9q8Mw72gHcCkq0aie/dOwxhpPUd.js", "ssg:https://framerusercontent.com/modules/kyOSadTV83DduaiQVXvo/E5p95bbhtF8vnVNN7ytX/LR_EVOsEt.js", "ssg:https://framerusercontent.com/modules/tbldZcsM3fmvF0dGc8PV/smgEBOEZBFJ7CgPSqajA/ePFtYeR5M.js", "ssg:https://framerusercontent.com/modules/jf1eoKTEdF9KCFAmdIHx/qRkMLjCbw88ne84k31uH/v75Tpw1Yr.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={}));/**\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,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"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://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(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,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\"},role:\"presentation\",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(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__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===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",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 embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// 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\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"uszeBvmxb\",\"FPun_WWd4\"];const serializationHash=\"framer-bkSdy\";const variantClassNames={FPun_WWd4:\"framer-v-1vgwepy\",uszeBvmxb:\"framer-v-13e45of\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"uszeBvmxb\",Phone:\"FPun_WWd4\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CBxle7Hty:(_ref=title!==null&&title!==void 0?title:props.CBxle7Hty)!==null&&_ref!==void 0?_ref:\"Branding\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"uszeBvmxb\",WIf5MEY74:link!==null&&link!==void 0?link:props.WIf5MEY74};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WIf5MEY74,CBxle7Hty,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uszeBvmxb\",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:WIf5MEY74,nodeId:\"uszeBvmxb\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-13e45of\",className,classNames)} framer-1q3zkdf`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"uszeBvmxb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0.4)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},...addPropertyOverrides({FPun_WWd4:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Branding\"})}),className:\"framer-2s7eg2\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"V6BwDOWej\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:CBxle7Hty,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FPun_WWd4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Branding\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bkSdy.framer-1q3zkdf, .framer-bkSdy .framer-1q3zkdf { display: block; }\",\".framer-bkSdy.framer-13e45of { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 7px 14px 7px 14px; position: relative; text-decoration: none; width: min-content; }\",\".framer-bkSdy .framer-2s7eg2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bkSdy.framer-13e45of { gap: 0px; } .framer-bkSdy.framer-13e45of > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bkSdy.framer-13e45of > :first-child { margin-left: 0px; } .framer-bkSdy.framer-13e45of > :last-child { margin-right: 0px; } }\",\".framer-bkSdy.framer-v-1vgwepy.framer-13e45of { padding: 6px 10px 6px 10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 83\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FPun_WWd4\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"WIf5MEY74\":\"link\",\"CBxle7Hty\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdOwxhpPUd=withCSS(Component,css,\"framer-bkSdy\");export default FramerdOwxhpPUd;FramerdOwxhpPUd.displayName=\"UI / Category tag\";FramerdOwxhpPUd.defaultProps={height:28,width:83};addPropertyControls(FramerdOwxhpPUd,{variant:{options:[\"uszeBvmxb\",\"FPun_WWd4\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},WIf5MEY74:{title:\"Link\",type:ControlType.Link},CBxle7Hty:{defaultValue:\"Branding\",title:\"Title\",type:ControlType.String}});addFonts(FramerdOwxhpPUd,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdOwxhpPUd\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"WIf5MEY74\\\":\\\"link\\\",\\\"CBxle7Hty\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"83\",\"framerIntrinsicHeight\":\"28\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FPun_WWd4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dOwxhpPUd.map", "// Generated by Framer (0847096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,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/z2QesBsilUbFqVBVwG9G/f2YkHMTEx8Vd3fcHzhFA/q35quwzCc.js\";const enabledGestures={hl4DUHJiz:{hover:true}};const cycleOrder=[\"hl4DUHJiz\",\"AILpDROUQ\"];const serializationHash=\"framer-VfEnE\";const variantClassNames={AILpDROUQ:\"framer-v-1sjyisx\",hl4DUHJiz:\"framer-v-105cwrn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.68,0,.16,.97],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"hl4DUHJiz\",Phone:\"AILpDROUQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hl4DUHJiz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hl4DUHJiz\",enabledGestures,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??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JsWSQcZ5w\"},nodeId:\"hl4DUHJiz\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-105cwrn\",className,classNames)} framer-ehp6pw`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"hl4DUHJiz\",ref:ref??ref1,style:{backgroundColor:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",...style},variants:{\"hl4DUHJiz-hover\":{backgroundColor:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"}},...addPropertyOverrides({\"hl4DUHJiz-hover\":{\"data-framer-name\":undefined},AILpDROUQ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mv61t0\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"d3IDQMV5t\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90},variants:{\"hl4DUHJiz-hover\":{\"--border-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",rotate:-133}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"More projects\"})}),className:\"framer-14pvhce\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sJTiLisXT\",style:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",\"--framer-paragraph-spacing\":\"0px\",rotate:-90},variants:{\"hl4DUHJiz-hover\":{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},AILpDROUQ:{rotate:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hl4DUHJiz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"More projects\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VfEnE.framer-ehp6pw, .framer-VfEnE .framer-ehp6pw { display: block; }\",\".framer-VfEnE.framer-105cwrn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 600px; justify-content: space-between; overflow: hidden; padding: 30px 30px 86px 30px; position: relative; text-decoration: none; width: 90px; }\",\".framer-VfEnE .framer-1mv61t0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: relative; width: 9px; z-index: 1; }\",\".framer-VfEnE .framer-14pvhce { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VfEnE.framer-v-1sjyisx.framer-105cwrn { cursor: unset; flex-direction: row; height: 74px; padding: 30px; width: 390px; }\",\".framer-VfEnE.framer-v-1sjyisx .framer-1mv61t0 { order: 1; }\",\".framer-VfEnE.framer-v-1sjyisx .framer-14pvhce { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VfEnE.framer-v-1sjyisx.framer-105cwrn { gap: 0px; } .framer-VfEnE.framer-v-1sjyisx.framer-105cwrn > *, .framer-VfEnE.framer-v-1sjyisx.framer-105cwrn > :first-child, .framer-VfEnE.framer-v-1sjyisx.framer-105cwrn > :last-child { margin: 0px; } }\",...sharedStyle.css,'.framer-VfEnE[data-border=\"true\"]::after, .framer-VfEnE [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 600\n * @framerIntrinsicWidth 90\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"AILpDROUQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"lm3RyHT0g\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLR_EVOsEt=withCSS(Component,css,\"framer-VfEnE\");export default FramerLR_EVOsEt;FramerLR_EVOsEt.displayName=\"Projetcs / More projects button\";FramerLR_EVOsEt.defaultProps={height:600,width:90};addPropertyControls(FramerLR_EVOsEt,{variant:{options:[\"hl4DUHJiz\",\"AILpDROUQ\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLR_EVOsEt,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLR_EVOsEt\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"90\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AILpDROUQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lm3RyHT0g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"600\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Roboto-500\",\"GF;Roboto-700\",\"GF;Roboto-700italic\",\"GF;Roboto-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmWggvWl0Qn.woff2\",weight:\"500\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXiAr0klQnx24.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQiAr0klQnx24.woff2\",weight:\"500\"}]}];export const css=['.framer-QYNZW .framer-styles-preset-8c98yj:not(.rich-text-wrapper), .framer-QYNZW .framer-styles-preset-8c98yj.rich-text-wrapper p { --framer-font-family: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 2px; --framer-text-alignment: left; --framer-text-color: rgba(12, 12, 12, 0.6); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-QYNZW .framer-styles-preset-8c98yj:not(.rich-text-wrapper), .framer-QYNZW .framer-styles-preset-8c98yj.rich-text-wrapper p { --framer-font-family: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 2px; --framer-text-alignment: left; --framer-text-color: rgba(12, 12, 12, 0.6); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-QYNZW .framer-styles-preset-8c98yj:not(.rich-text-wrapper), .framer-QYNZW .framer-styles-preset-8c98yj.rich-text-wrapper p { --framer-font-family: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-family-italic: \"Roboto\", \"Roboto Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 2px; --framer-text-alignment: left; --framer-text-color: rgba(12, 12, 12, 0.6); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-QYNZW\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import UICategoryTag from\"#framer/local/canvasComponent/dOwxhpPUd/dOwxhpPUd.js\";import ProjetcsProjectItem from\"#framer/local/canvasComponent/KYMveFRib/KYMveFRib.js\";import ProjetcsMoreProjectsButton from\"#framer/local/canvasComponent/LR_EVOsEt/LR_EVOsEt.js\";import UIArrowButton from\"#framer/local/canvasComponent/ozPjcS5mp/ozPjcS5mp.js\";import Projects from\"#framer/local/collection/LxLZ1qH0s/LxLZ1qH0s.js\";import Category from\"#framer/local/collection/rXPb48_DN/rXPb48_DN.js\";import*as sharedStyle7 from\"#framer/local/css/AGSjTRpPP/AGSjTRpPP.js\";import*as sharedStyle6 from\"#framer/local/css/bmQXgKerm/bmQXgKerm.js\";import*as sharedStyle13 from\"#framer/local/css/ePFtYeR5M/ePFtYeR5M.js\";import*as sharedStyle3 from\"#framer/local/css/hOrfMQMhw/hOrfMQMhw.js\";import*as sharedStyle11 from\"#framer/local/css/KXd_p0mAV/KXd_p0mAV.js\";import*as sharedStyle8 from\"#framer/local/css/nNPY4Q0_F/nNPY4Q0_F.js\";import*as sharedStyle14 from\"#framer/local/css/pLJGEDyQM/pLJGEDyQM.js\";import*as sharedStyle1 from\"#framer/local/css/q35quwzCc/q35quwzCc.js\";import*as sharedStyle2 from\"#framer/local/css/sw01V2bJD/sw01V2bJD.js\";import*as sharedStyle5 from\"#framer/local/css/tbrk_XFMt/tbrk_XFMt.js\";import*as sharedStyle9 from\"#framer/local/css/xNIXLfFSf/xNIXLfFSf.js\";import*as sharedStyle12 from\"#framer/local/css/yzgpMcORk/yzgpMcORk.js\";import*as sharedStyle10 from\"#framer/local/css/Z43DfkPk9/Z43DfkPk9.js\";import*as sharedStyle from\"#framer/local/css/zPBE4sevH/zPBE4sevH.js\";import*as sharedStyle4 from\"#framer/local/css/zSSdVVb1R/zSSdVVb1R.js\";import metadataProvider from\"#framer/local/webPageMetadata/v75Tpw1Yr/v75Tpw1Yr.js\";const UICategoryTagFonts=getFonts(UICategoryTag);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const UIArrowButtonFonts=getFonts(UIArrowButton);const MotionSectionWithFX=withFX(motion.section);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const ProjetcsMoreProjectsButtonFonts=getFonts(ProjetcsMoreProjectsButton);const ProjetcsProjectItemFonts=getFonts(ProjetcsProjectItem);const ContainerWithFX=withFX(Container);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={DaPOBwsYe:\"(min-width: 810px) and (max-width: 1199px)\",dyXyT7X6A:\"(max-width: 809px)\",R9_z_0eUE:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RsBMX\";const variantClassNames={DaPOBwsYe:\"framer-v-1lx3tw7\",dyXyT7X6A:\"framer-v-b51o30\",R9_z_0eUE:\"framer-v-181vzam\"};const transition1={damping:27,delay:.1,mass:.3,stiffness:121,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={delay:.15,duration:1,ease:[.68,0,.16,.97],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50};const transition3={damping:27,delay:.2,mass:.3,stiffness:121,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,y:-3};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition5={damping:27,delay:.4,mass:.3,stiffness:121,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:27,delay:.3,mass:.3,stiffness:121,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:0};const transition7={delay:.25,duration:1,ease:[.68,0,.16,.97],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition8={damping:27,delay:0,mass:.3,stiffness:121,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition9={delay:.2,duration:1.2,ease:[.22,1,.36,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition10={delay:0,duration:1.2,ease:[.22,1,.36,1],type:\"tween\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:30};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition11={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"R9_z_0eUE\",Phone:\"dyXyT7X6A\",Tablet:\"DaPOBwsYe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"R9_z_0eUE\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"v75Tpw1Yr\",data:Projects,type:\"Collection\"},select:[{collection:\"v75Tpw1Yr\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"Il41kImZa\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"J_GjaJJyi\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"y1ETKBX6F\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"hqJkcWkuA\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"oHSr4kavw\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"XrcNleIqL\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"KZUBKiMyD\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"ZhlGekPwe\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"Fqi4MP1Vw\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"FlMaAbGLz\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"YIQtP6qHV\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"YHJ5VqqxQ\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"nV_2WlZZV\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"hLoDL9h0m\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"ZC_BwZ36t\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"g6O2MMvxJ\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"dvovi8BlL\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"l3Mg2XB04\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"wVCU66VeS\",type:\"Identifier\"},{collection:\"v75Tpw1Yr\",name:\"jlnWMEitI\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"v75Tpw1Yr\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,E9FnOb4niBtCZLpwIm,JRY3_qGYVBtCZLpwIm,idBtCZLpwIm,iVpBlOYOJ=getFromCurrentRouteData(\"iVpBlOYOJ\")??\"\",J_GjaJJyi=getFromCurrentRouteData(\"J_GjaJJyi\")??\"\",gIGNVNgIC=getFromCurrentRouteData(\"gIGNVNgIC\"),TbVrcwbtn=getFromCurrentRouteData(\"TbVrcwbtn\"),Il41kImZa=getFromCurrentRouteData(\"Il41kImZa\"),Mq20_y6f9,y1ETKBX6F=getFromCurrentRouteData(\"y1ETKBX6F\")??\"\",hqJkcWkuA=getFromCurrentRouteData(\"hqJkcWkuA\")??\"\",VAUyv1nvH=getFromCurrentRouteData(\"VAUyv1nvH\")??\"\",YIQtP6qHV=getFromCurrentRouteData(\"YIQtP6qHV\")??\"\",oHSr4kavw=getFromCurrentRouteData(\"oHSr4kavw\")??\"\",XrcNleIqL=getFromCurrentRouteData(\"XrcNleIqL\")??\"\",ZhlGekPwe=getFromCurrentRouteData(\"ZhlGekPwe\")??\"\",FlMaAbGLz=getFromCurrentRouteData(\"FlMaAbGLz\")??\"\",KZUBKiMyD=getFromCurrentRouteData(\"KZUBKiMyD\")??\"\",Fqi4MP1Vw=getFromCurrentRouteData(\"Fqi4MP1Vw\")??\"\",YHJ5VqqxQ=getFromCurrentRouteData(\"YHJ5VqqxQ\")??\"\",hLoDL9h0m=getFromCurrentRouteData(\"hLoDL9h0m\"),nV_2WlZZV=getFromCurrentRouteData(\"nV_2WlZZV\"),ZC_BwZ36t=getFromCurrentRouteData(\"ZC_BwZ36t\")??\"\",g6O2MMvxJ=getFromCurrentRouteData(\"g6O2MMvxJ\"),dvovi8BlL=getFromCurrentRouteData(\"dvovi8BlL\"),l3Mg2XB04=getFromCurrentRouteData(\"l3Mg2XB04\")??\"\",wVCU66VeS=getFromCurrentRouteData(\"wVCU66VeS\"),jlnWMEitI=getFromCurrentRouteData(\"jlnWMEitI\"),kcCxzSQHuoCs4NlQCM,iVpBlOYOJoCs4NlQCM,J_GjaJJyioCs4NlQCM,TbVrcwbtnoCs4NlQCM,idoCs4NlQCM,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=toDateString(Il41kImZa,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible=isSet(Mq20_y6f9);const visible1=isSet(gIGNVNgIC);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"dyXyT7X6A\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"R9_z_0eUE\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-181vzam\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1gycri2\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b49js2\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation,initial:animation1,optimized:true}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{className:\"framer-1hanbzf\",\"data-framer-appear-id\":\"1hanbzf\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m7y80k\",\"data-border\":true,\"data-framer-name\":\"Corner\",style:{rotate:-90}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-58nyqt\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1l2vkl1\",\"data-framer-appear-id\":\"1l2vkl1\",\"data-framer-name\":\"Container\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-726i10\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation4,initial:animation5,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{className:\"framer-bdwtqr\",\"data-framer-appear-id\":\"bdwtqr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BtCZLpwIm\",data:Category,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"BtCZLpwIm\",name:\"E9FnOb4ni\",type:\"Identifier\"},{collection:\"BtCZLpwIm\",name:\"JRY3_qGYV\",type:\"Identifier\"},{collection:\"BtCZLpwIm\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({E9FnOb4ni:E9FnOb4niBtCZLpwIm,id:idBtCZLpwIm,JRY3_qGYV:JRY3_qGYVBtCZLpwIm},index)=>{E9FnOb4niBtCZLpwIm??=\"\";JRY3_qGYVBtCZLpwIm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BtCZLpwIm-${idBtCZLpwIm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{E9FnOb4ni:E9FnOb4niBtCZLpwIm},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{E9FnOb4ni:E9FnOb4niBtCZLpwIm},webPageId:\"gvjcG8Zgq\"},implicitPathVariables:undefined},{href:{pathVariables:{E9FnOb4ni:E9FnOb4niBtCZLpwIm},webPageId:\"gvjcG8Zgq\"},implicitPathVariables:undefined},{href:{pathVariables:{E9FnOb4ni:E9FnOb4niBtCZLpwIm},webPageId:\"gvjcG8Zgq\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{y:(componentViewport?.y||0)+0+0+0+0+76+0+0+165.64+0+0+0+0+0+0+0},dyXyT7X6A:{y:(componentViewport?.y||0)+0+0+0+0+80+0+0+0+220+0+0+0+0+308.36+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+0+76+0+0+205.64+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{whileHover:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-tb387f-container\",nodeId:\"qXGjK9gLK\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",whileHover:animation6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{WIf5MEY74:resolvedLinks[1]},dyXyT7X6A:{variant:\"FPun_WWd4\",WIf5MEY74:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(UICategoryTag,{CBxle7Hty:JRY3_qGYVBtCZLpwIm,height:\"100%\",id:\"qXGjK9gLK\",layoutId:\"qXGjK9gLK\",variant:\"uszeBvmxb\",width:\"100%\",WIf5MEY74:resolvedLinks[0]})})})})})})})})},idBtCZLpwIm);})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18nsq28\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation7,initial:animation5,optimized:true}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-lzby6w\",\"data-styles-preset\":\"zPBE4sevH\",style:{\"--framer-text-alignment\":\"left\"},children:\"fifa-performance-marketing\"})}),className:\"framer-1yhaelc\",\"data-framer-appear-id\":\"1yhaelc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:iVpBlOYOJ,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation8,initial:animation5,optimized:true}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.7)\"},children:\"fifa-performance-marketing\"})}),className:\"framer-rsqti5\",\"data-framer-appear-id\":\"rsqti5\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],text:J_GjaJJyi,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+76+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(gIGNVNgIC)}},dyXyT7X6A:{animate:animation10,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 12px)`,...toResponsiveImage(gIGNVNgIC)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+76+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,...toResponsiveImage(gIGNVNgIC)},className:\"framer-h9dhly\",\"data-framer-appear-id\":\"h9dhly\",\"data-framer-name\":\"BG image\",initial:animation9,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+76+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(TbVrcwbtn)}},dyXyT7X6A:{animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+80+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 12px)`,...toResponsiveImage(TbVrcwbtn)},initial:animation1}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+76+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 72px)`,...toResponsiveImage(TbVrcwbtn)},className:\"framer-1h46962\",\"data-framer-appear-id\":\"1h46962\",\"data-framer-name\":\"Gradient\",initial:animation11,optimized:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{animate:animation13,initial:animation5}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-19hydm8\",\"data-framer-appear-id\":\"19hydm8\",\"data-framer-name\":\"Details\",initial:animation12,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ls40ga\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JsWSQcZ5w\"},implicitPathVariables:undefined},{href:{webPageId:\"JsWSQcZ5w\"},implicitPathVariables:undefined},{href:{webPageId:\"JsWSQcZ5w\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{y:(componentViewport?.y||0)+0+0+0+0+76+568+64+0+0},dyXyT7X6A:{y:(componentViewport?.y||0)+0+0+0+0+80+592.36+34+521+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+0+76+636+70+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i77evq-container\",nodeId:\"v20KFIK7d\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{DmH_FL2P8:resolvedLinks1[1]},dyXyT7X6A:{DmH_FL2P8:resolvedLinks1[2],variant:\"zf2fmntWl\"}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks1[0],height:\"100%\",id:\"v20KFIK7d\",layoutId:\"v20KFIK7d\",NeQkVIvJM:\"Back to projects\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-up-left\",zvTGbXZx3:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqqtwt\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10yab97\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Client\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Client\"})}),className:\"framer-1wf5jpd\",\"data-framer-name\":\"Client\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"fifa-performance-marketing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"fifa-performance-marketing\"})}),className:\"framer-qfm4ej\",\"data-framer-name\":\"Vero Labs Inc.\",fonts:[\"Inter\"],text:J_GjaJJyi,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s5xgno\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g9oy3l\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Date\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Date\"})}),className:\"framer-1s0dprb\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Content\"})}),className:\"framer-h40ibq\",\"data-framer-name\":\"Oct 10, 2024\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]})}),/*#__PURE__*/_jsx(\"article\",{className:\"framer-138xpy3\",\"data-framer-name\":\"Article\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-firfui\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14fjk8y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ioebf2\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ey6jb8\",\"data-framer-name\":\"Quote\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-udthnw\",\"data-framer-name\":\"Manager\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+0+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}},dyXyT7X6A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+0+0+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+0+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)},className:\"framer-11dn6el\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f04bs1\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"fifa-performance-marketing\"})}),className:\"framer-1om5evb\",\"data-framer-name\":\"John Taylor\",fonts:[\"Inter\"],text:y1ETKBX6F,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:hqJkcWkuA,className:\"framer-1o8n3g9\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nr60og\",code:\"framer-styles-preset-1d46r6e\",h1:\"framer-styles-preset-lzby6w\",h2:\"framer-styles-preset-1usw2w6\",h3:\"framer-styles-preset-1vseq11\",h4:\"framer-styles-preset-6dx1hv\",h5:\"framer-styles-preset-1gcp1ax\",h6:\"framer-styles-preset-s8n1kd\",p:\"framer-styles-preset-jnye1g\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__exit:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yyrrt\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-2tyqn8\",\"data-styles-preset\":\"yzgpMcORk\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"},children:\"Xero's global business is a leader in cloud accounting across New Zealand, Australia and the United Kingdom.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"},children:\"We kicked off Xero Beautiful Moments & Sheroes pre-tournament with the use of archive footage to build interest/awareness for the new activation in FIFA Women\u2019s digital community and implement Xero as a meaningful partner towards the shared values. Leveraged global interest and hype during the tournament to boost engagement for all three activations.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1quziho\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],text:VAUyv1nvH,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12rmnbe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cULuz4lgb\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"cULuz4lgb\",isMixedBorderRadius:false,isRed:true,layoutId:\"cULuz4lgb\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:YIQtP6qHV,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlffia\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-51xe3v\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gxpza\",\"data-framer-name\":\"Manager\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+916+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}},dyXyT7X6A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+762+0+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+1096+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)},className:\"framer-pwyliy\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2n73qy\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8c98yj\",\"data-styles-preset\":\"ePFtYeR5M\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.7)\"},children:\"Challange\"})}),className:\"framer-3u7ih4\",\"data-framer-name\":\"John Taylor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__exit:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hygetz\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-2tyqn8\",\"data-styles-preset\":\"yzgpMcORk\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"},children:\"Xero's global business is a leader in cloud accounting across New Zealand, Australia and the United Kingdom.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"},children:\"We kicked off Xero Beautiful Moments & Sheroes pre-tournament with the use of archive footage to build interest/awareness for the new activation in FIFA Women\u2019s digital community and implement Xero as a meaningful partner towards the shared values. Leveraged global interest and hype during the tournament to boost engagement for all three activations.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1k9ec3f\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],text:oHSr4kavw,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zc3u9t\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q7qgtn\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jw58wu\",\"data-framer-name\":\"Manager\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+1231+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}},dyXyT7X6A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+1163+0+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+1431+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)},className:\"framer-q76qym\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mjy13z\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Results\"})}),className:\"framer-1s0eq0m\",\"data-framer-name\":\"John Taylor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__exit:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8uro1i\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:XrcNleIqL,className:\"framer-13u5uns\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nr60og\",code:\"framer-styles-preset-1d46r6e\",h1:\"framer-styles-preset-lzby6w\",h2:\"framer-styles-preset-1usw2w6\",h3:\"framer-styles-preset-1vseq11\",h4:\"framer-styles-preset-6dx1hv\",h5:\"framer-styles-preset-1gcp1ax\",h6:\"framer-styles-preset-s8n1kd\",p:\"framer-styles-preset-2tyqn8\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ZhlGekPwe,className:\"framer-hi2qld\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nr60og\",code:\"framer-styles-preset-1d46r6e\",h1:\"framer-styles-preset-lzby6w\",h2:\"framer-styles-preset-1usw2w6\",h3:\"framer-styles-preset-1vseq11\",h4:\"framer-styles-preset-6dx1hv\",h5:\"framer-styles-preset-1gcp1ax\",h6:\"framer-styles-preset-s8n1kd\",p:\"framer-styles-preset-2tyqn8\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:FlMaAbGLz,className:\"framer-2vsjdr\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nr60og\",code:\"framer-styles-preset-1d46r6e\",h1:\"framer-styles-preset-lzby6w\",h2:\"framer-styles-preset-1usw2w6\",h3:\"framer-styles-preset-1vseq11\",h4:\"framer-styles-preset-6dx1hv\",h5:\"framer-styles-preset-1gcp1ax\",h6:\"framer-styles-preset-s8n1kd\",p:\"framer-styles-preset-2tyqn8\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7igz32\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:KZUBKiMyD,className:\"framer-1fnco34\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nr60og\",code:\"framer-styles-preset-1d46r6e\",h1:\"framer-styles-preset-g4ympu\",h2:\"framer-styles-preset-1usw2w6\",h3:\"framer-styles-preset-1vseq11\",h4:\"framer-styles-preset-6dx1hv\",h5:\"framer-styles-preset-1gcp1ax\",h6:\"framer-styles-preset-s8n1kd\",p:\"framer-styles-preset-jnye1g\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Fqi4MP1Vw,className:\"framer-1n9077r\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],stylesPresetsClassNames:{h1:\"framer-styles-preset-g4ympu\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uimbdr\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l061uv\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12j3zsm\",\"data-framer-name\":\"Manager\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+1795+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}},dyXyT7X6A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+1813+0+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+2015+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)},className:\"framer-1p5q7wk\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1of4kp7\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Solution 1\"})}),className:\"framer-emivwp\",\"data-framer-name\":\"John Taylor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__exit:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1eusd7u\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:YHJ5VqqxQ,className:\"framer-1q8k49m\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nr60og\",code:\"framer-styles-preset-1d46r6e\",h1:\"framer-styles-preset-lzby6w\",h2:\"framer-styles-preset-1usw2w6\",h3:\"framer-styles-preset-1vseq11\",h4:\"framer-styles-preset-6dx1hv\",h5:\"framer-styles-preset-1gcp1ax\",h6:\"framer-styles-preset-s8n1kd\",p:\"framer-styles-preset-2tyqn8\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ocycf8\",\"data-framer-name\":\"Images\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nxxknu\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+2041+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(hLoDL9h0m)}},dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+2115+0+0+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(hLoDL9h0m)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+2281+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(hLoDL9h0m)},className:\"framer-1gnelzo\"})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+2041+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(nV_2WlZZV),...{positionX:\"center\",positionY:\"center\"}}},dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+2115+0+0+0+716),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(nV_2WlZZV),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+2281+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(nV_2WlZZV),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1j2moae\"})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o5o0zf\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xeyikb\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8jm33x\",\"data-framer-name\":\"Manager\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+2857+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}},dyXyT7X6A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+3567+0+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+3117+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)},className:\"framer-b4zbug\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8eikxl\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Solution 2\"})}),className:\"framer-119f01p\",\"data-framer-name\":\"John Taylor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__exit:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f1xu4l\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ZC_BwZ36t,className:\"framer-125k1ie\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nr60og\",code:\"framer-styles-preset-1d46r6e\",h1:\"framer-styles-preset-lzby6w\",h2:\"framer-styles-preset-1usw2w6\",h3:\"framer-styles-preset-1vseq11\",h4:\"framer-styles-preset-6dx1hv\",h5:\"framer-styles-preset-1gcp1ax\",h6:\"framer-styles-preset-s8n1kd\",p:\"framer-styles-preset-2tyqn8\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10gwa8u\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+3103+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(g6O2MMvxJ)}},dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+3869+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(g6O2MMvxJ)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+3383+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(g6O2MMvxJ)},className:\"framer-1sl52al\"})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+3103+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(dvovi8BlL),...{positionX:\"center\",positionY:\"center\"}}},dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+3869+0+716),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(dvovi8BlL),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+3383+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(dvovi8BlL),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1dvp625\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wvgysc\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nna5hq\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rabovs\",\"data-framer-name\":\"Manager\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+3919+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}},dyXyT7X6A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+5321+0+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+4219+0+0+0+38),sizes:\"50px\",...toResponsiveImage(Mq20_y6f9)},className:\"framer-1umklis\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yq9hl\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Solution 3\"})}),className:\"framer-189pqty\",\"data-framer-name\":\"John Taylor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__enter:animation15,__framer__exit:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ycrnrq\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:l3Mg2XB04,className:\"framer-mhis08\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nr60og\",code:\"framer-styles-preset-1d46r6e\",h1:\"framer-styles-preset-lzby6w\",h2:\"framer-styles-preset-1usw2w6\",h3:\"framer-styles-preset-1vseq11\",h4:\"framer-styles-preset-6dx1hv\",h5:\"framer-styles-preset-1gcp1ax\",h6:\"framer-styles-preset-s8n1kd\",p:\"framer-styles-preset-2tyqn8\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8wmhn4\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+4165+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(wVCU66VeS)}},dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+5623+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(wVCU66VeS)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+4485+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(wVCU66VeS)},className:\"framer-loaqr3\"})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+120+0+0+0+0+4165+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(jlnWMEitI)}},dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+0+0+5623+0+716),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,...toResponsiveImage(jlnWMEitI)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1080+150+0+0+0+0+4485+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) + 20px) / 0, 1px)`,...toResponsiveImage(jlnWMEitI)},className:\"framer-1xllib5\"})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j430sy\",\"data-framer-name\":\"Latest\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\"},children:\"Latest projects\"})}),className:\"framer-1d01nxp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1vi1d\",\"data-framer-name\":\"Next\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{height:1210,width:\"80px\",y:(componentViewport?.y||0)+0+0+0+1e3+120+0+0+4981+0+187.51999999999998+0},dyXyT7X6A:{height:70,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+7085+0+147.51999999999998+0+350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1220,width:\"90px\",y:(componentViewport?.y||0)+0+0+0+1080+150+0+0+5341+0+187.51999999999998+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ly5lv-container\",nodeId:\"vIVoVAEoq\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{variant:\"AILpDROUQ\"}},children:/*#__PURE__*/_jsx(ProjetcsMoreProjectsButton,{height:\"100%\",id:\"vIVoVAEoq\",layoutId:\"vIVoVAEoq\",style:{height:\"100%\",width:\"100%\"},variant:\"hl4DUHJiz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xrrwnd\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"oCs4NlQCM\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"oCs4NlQCM\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"oCs4NlQCM\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"oCs4NlQCM\",name:\"J_GjaJJyi\",type:\"Identifier\"},{collection:\"oCs4NlQCM\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"oCs4NlQCM\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idoCs4NlQCM,iVpBlOYOJ:iVpBlOYOJoCs4NlQCM,J_GjaJJyi:J_GjaJJyioCs4NlQCM,kcCxzSQHu:kcCxzSQHuoCs4NlQCM,TbVrcwbtn:TbVrcwbtnoCs4NlQCM},index1)=>{kcCxzSQHuoCs4NlQCM??=\"\";iVpBlOYOJoCs4NlQCM??=\"\";J_GjaJJyioCs4NlQCM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`oCs4NlQCM-${idoCs4NlQCM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHuoCs4NlQCM},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:kcCxzSQHuoCs4NlQCM},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"IlguaHpaq\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1osnhu4 framer-hh0uzk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{width:`max(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 90px, 1px) - 10px) / 2, 50px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1e3+120+0+0+4981+0+187.51999999999998+0+0+0+0},dyXyT7X6A:{height:330,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1285.3600000000001+50+0+0+7085+0+147.51999999999998+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 110px, 1px) - 20px) / 2, 50px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1080+150+0+0+5341+0+187.51999999999998+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dyXyT7X6A:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1ksrka3-container\",nodeId:\"XQys7CBNY\",rendersWithMotion:true,scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DaPOBwsYe:{variant:\"IYoM4m0Ii\"},dyXyT7X6A:{variant:\"oFWgC4z7f\"}},children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{height:\"100%\",id:\"XQys7CBNY\",layoutId:\"XQys7CBNY\",m4363AwRQ:iVpBlOYOJoCs4NlQCM,QAad4Lrvr:J_GjaJJyioCs4NlQCM,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnoCs4NlQCM)})})})})})})})})})},idoCs4NlQCM);})})})})})]})]})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yec3ql-container hidden-b51o30\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OIFWQh3f_\",scopeId:\"v75Tpw1Yr\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"OIFWQh3f_\",intensity:10,layoutId:\"OIFWQh3f_\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RsBMX.framer-hh0uzk, .framer-RsBMX .framer-hh0uzk { display: block; }\",\".framer-RsBMX.framer-181vzam { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-RsBMX .framer-1gycri2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-b49js2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-end; min-height: 1080px; overflow: hidden; padding: 76px 36px 0px 36px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-RsBMX .framer-1hanbzf { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-RsBMX .framer-m7y80k { --border-bottom-width: 2px; --border-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 30px; top: 30px; width: 9px; z-index: 1; }\",\".framer-RsBMX .framer-58nyqt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 70px 0px 70px; position: relative; width: 1px; }\",\".framer-RsBMX .framer-1l2vkl1 { 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-end; max-width: 1848px; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-RsBMX .framer-726i10 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-RsBMX .framer-bdwtqr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-RsBMX .framer-tb387f-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RsBMX .framer-18nsq28 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-1yhaelc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RsBMX .framer-rsqti5 { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 700px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-h9dhly { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-RsBMX .framer-1h46962 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-RsBMX .framer-19hydm8 { background-color: #ffffff; display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1848px; overflow: hidden; padding: 70px 0px 70px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-RsBMX .framer-ls40ga { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-i77evq-container, .framer-RsBMX .framer-yec3ql-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-RsBMX .framer-1qqqtwt { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; grid-column: auto / span 2; height: min-content; justify-content: flex-start; justify-self: start; max-width: 690px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-10yab97, .framer-RsBMX .framer-1g9oy3l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RsBMX .framer-1wf5jpd, .framer-RsBMX .framer-qfm4ej, .framer-RsBMX .framer-1s0dprb, .framer-RsBMX .framer-h40ibq, .framer-RsBMX .framer-1om5evb, .framer-RsBMX .framer-3u7ih4, .framer-RsBMX .framer-1s0eq0m, .framer-RsBMX .framer-emivwp, .framer-RsBMX .framer-119f01p, .framer-RsBMX .framer-189pqty, .framer-RsBMX .framer-1d01nxp { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RsBMX .framer-1s5xgno { align-self: stretch; background-color: #e8e8e8; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-RsBMX .framer-138xpy3 { align-content: center; align-items: center; background-color: var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 150px 36px 160px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-RsBMX .framer-firfui { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; max-width: 1848px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-RsBMX .framer-14fjk8y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-1ioebf2, .framer-RsBMX .framer-1tlffia, .framer-RsBMX .framer-zc3u9t, .framer-RsBMX .framer-uimbdr, .framer-RsBMX .framer-1o5o0zf, .framer-RsBMX .framer-1wvgysc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-ey6jb8, .framer-RsBMX .framer-51xe3v, .framer-RsBMX .framer-q7qgtn, .framer-RsBMX .framer-l061uv, .framer-RsBMX .framer-xeyikb, .framer-RsBMX .framer-nna5hq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RsBMX .framer-udthnw, .framer-RsBMX .framer-3gxpza, .framer-RsBMX .framer-jw58wu, .framer-RsBMX .framer-12j3zsm, .framer-RsBMX .framer-8jm33x, .framer-RsBMX .framer-rabovs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-11dn6el, .framer-RsBMX .framer-pwyliy, .framer-RsBMX .framer-q76qym, .framer-RsBMX .framer-1p5q7wk, .framer-RsBMX .framer-b4zbug, .framer-RsBMX .framer-1umklis { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-RsBMX .framer-1f04bs1, .framer-RsBMX .framer-2n73qy, .framer-RsBMX .framer-mjy13z, .framer-RsBMX .framer-1of4kp7, .framer-RsBMX .framer-8eikxl, .framer-RsBMX .framer-yq9hl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-RsBMX .framer-1o8n3g9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 440px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RsBMX .framer-yyrrt, .framer-RsBMX .framer-hygetz, .framer-RsBMX .framer-8uro1i, .framer-RsBMX .framer-1eusd7u, .framer-RsBMX .framer-1f1xu4l, .framer-RsBMX .framer-ycrnrq { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RsBMX .framer-1quziho, .framer-RsBMX .framer-1k9ec3f, .framer-RsBMX .framer-13u5uns, .framer-RsBMX .framer-hi2qld, .framer-RsBMX .framer-2vsjdr, .framer-RsBMX .framer-1q8k49m, .framer-RsBMX .framer-125k1ie, .framer-RsBMX .framer-mhis08 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 910px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RsBMX .framer-12rmnbe-container { flex: none; height: 560px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-7igz32 { 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-RsBMX .framer-1fnco34, .framer-RsBMX .framer-1n9077r { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 440px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-RsBMX .framer-1ocycf8 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-nxxknu, .framer-RsBMX .framer-10gwa8u, .framer-RsBMX .framer-8wmhn4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-1gnelzo, .framer-RsBMX .framer-1j2moae, .framer-RsBMX .framer-1sl52al, .framer-RsBMX .framer-1dvp625, .framer-RsBMX .framer-loaqr3, .framer-RsBMX .framer-1xllib5 { aspect-ratio: 1.3132183908045978 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 422px); overflow: hidden; position: relative; width: 1px; }\",\".framer-RsBMX .framer-1j430sy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-e1vi1d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RsBMX .framer-1ly5lv-container { align-self: stretch; flex: none; height: auto; position: relative; width: 90px; }\",\".framer-RsBMX .framer-1xrrwnd { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-RsBMX .framer-1osnhu4 { align-content: center; align-items: center; align-self: start; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-RsBMX .framer-1ksrka3-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RsBMX.framer-181vzam, .framer-RsBMX .framer-1gycri2, .framer-RsBMX .framer-b49js2, .framer-RsBMX .framer-1hanbzf, .framer-RsBMX .framer-58nyqt, .framer-RsBMX .framer-1l2vkl1, .framer-RsBMX .framer-726i10, .framer-RsBMX .framer-bdwtqr, .framer-RsBMX .framer-18nsq28, .framer-RsBMX .framer-ls40ga, .framer-RsBMX .framer-1qqqtwt, .framer-RsBMX .framer-10yab97, .framer-RsBMX .framer-1g9oy3l, .framer-RsBMX .framer-138xpy3, .framer-RsBMX .framer-firfui, .framer-RsBMX .framer-14fjk8y, .framer-RsBMX .framer-1ioebf2, .framer-RsBMX .framer-ey6jb8, .framer-RsBMX .framer-udthnw, .framer-RsBMX .framer-1f04bs1, .framer-RsBMX .framer-yyrrt, .framer-RsBMX .framer-1tlffia, .framer-RsBMX .framer-51xe3v, .framer-RsBMX .framer-3gxpza, .framer-RsBMX .framer-2n73qy, .framer-RsBMX .framer-hygetz, .framer-RsBMX .framer-zc3u9t, .framer-RsBMX .framer-q7qgtn, .framer-RsBMX .framer-jw58wu, .framer-RsBMX .framer-mjy13z, .framer-RsBMX .framer-8uro1i, .framer-RsBMX .framer-7igz32, .framer-RsBMX .framer-uimbdr, .framer-RsBMX .framer-l061uv, .framer-RsBMX .framer-12j3zsm, .framer-RsBMX .framer-1of4kp7, .framer-RsBMX .framer-1eusd7u, .framer-RsBMX .framer-1ocycf8, .framer-RsBMX .framer-nxxknu, .framer-RsBMX .framer-1o5o0zf, .framer-RsBMX .framer-xeyikb, .framer-RsBMX .framer-8jm33x, .framer-RsBMX .framer-8eikxl, .framer-RsBMX .framer-1f1xu4l, .framer-RsBMX .framer-10gwa8u, .framer-RsBMX .framer-1wvgysc, .framer-RsBMX .framer-nna5hq, .framer-RsBMX .framer-rabovs, .framer-RsBMX .framer-yq9hl, .framer-RsBMX .framer-ycrnrq, .framer-RsBMX .framer-8wmhn4, .framer-RsBMX .framer-1j430sy, .framer-RsBMX .framer-e1vi1d, .framer-RsBMX .framer-1osnhu4 { gap: 0px; } .framer-RsBMX.framer-181vzam > *, .framer-RsBMX .framer-1gycri2 > *, .framer-RsBMX .framer-b49js2 > *, .framer-RsBMX .framer-58nyqt > *, .framer-RsBMX .framer-138xpy3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-RsBMX.framer-181vzam > :first-child, .framer-RsBMX .framer-1gycri2 > :first-child, .framer-RsBMX .framer-b49js2 > :first-child, .framer-RsBMX .framer-58nyqt > :first-child, .framer-RsBMX .framer-1l2vkl1 > :first-child, .framer-RsBMX .framer-726i10 > :first-child, .framer-RsBMX .framer-18nsq28 > :first-child, .framer-RsBMX .framer-10yab97 > :first-child, .framer-RsBMX .framer-1g9oy3l > :first-child, .framer-RsBMX .framer-138xpy3 > :first-child, .framer-RsBMX .framer-firfui > :first-child, .framer-RsBMX .framer-14fjk8y > :first-child, .framer-RsBMX .framer-ey6jb8 > :first-child, .framer-RsBMX .framer-1f04bs1 > :first-child, .framer-RsBMX .framer-yyrrt > :first-child, .framer-RsBMX .framer-51xe3v > :first-child, .framer-RsBMX .framer-2n73qy > :first-child, .framer-RsBMX .framer-hygetz > :first-child, .framer-RsBMX .framer-q7qgtn > :first-child, .framer-RsBMX .framer-mjy13z > :first-child, .framer-RsBMX .framer-8uro1i > :first-child, .framer-RsBMX .framer-l061uv > :first-child, .framer-RsBMX .framer-1of4kp7 > :first-child, .framer-RsBMX .framer-1eusd7u > :first-child, .framer-RsBMX .framer-1ocycf8 > :first-child, .framer-RsBMX .framer-xeyikb > :first-child, .framer-RsBMX .framer-8eikxl > :first-child, .framer-RsBMX .framer-1f1xu4l > :first-child, .framer-RsBMX .framer-nna5hq > :first-child, .framer-RsBMX .framer-yq9hl > :first-child, .framer-RsBMX .framer-ycrnrq > :first-child, .framer-RsBMX .framer-1j430sy > :first-child { margin-top: 0px; } .framer-RsBMX.framer-181vzam > :last-child, .framer-RsBMX .framer-1gycri2 > :last-child, .framer-RsBMX .framer-b49js2 > :last-child, .framer-RsBMX .framer-58nyqt > :last-child, .framer-RsBMX .framer-1l2vkl1 > :last-child, .framer-RsBMX .framer-726i10 > :last-child, .framer-RsBMX .framer-18nsq28 > :last-child, .framer-RsBMX .framer-10yab97 > :last-child, .framer-RsBMX .framer-1g9oy3l > :last-child, .framer-RsBMX .framer-138xpy3 > :last-child, .framer-RsBMX .framer-firfui > :last-child, .framer-RsBMX .framer-14fjk8y > :last-child, .framer-RsBMX .framer-ey6jb8 > :last-child, .framer-RsBMX .framer-1f04bs1 > :last-child, .framer-RsBMX .framer-yyrrt > :last-child, .framer-RsBMX .framer-51xe3v > :last-child, .framer-RsBMX .framer-2n73qy > :last-child, .framer-RsBMX .framer-hygetz > :last-child, .framer-RsBMX .framer-q7qgtn > :last-child, .framer-RsBMX .framer-mjy13z > :last-child, .framer-RsBMX .framer-8uro1i > :last-child, .framer-RsBMX .framer-l061uv > :last-child, .framer-RsBMX .framer-1of4kp7 > :last-child, .framer-RsBMX .framer-1eusd7u > :last-child, .framer-RsBMX .framer-1ocycf8 > :last-child, .framer-RsBMX .framer-xeyikb > :last-child, .framer-RsBMX .framer-8eikxl > :last-child, .framer-RsBMX .framer-1f1xu4l > :last-child, .framer-RsBMX .framer-nna5hq > :last-child, .framer-RsBMX .framer-yq9hl > :last-child, .framer-RsBMX .framer-ycrnrq > :last-child, .framer-RsBMX .framer-1j430sy > :last-child { margin-bottom: 0px; } .framer-RsBMX .framer-1hanbzf > *, .framer-RsBMX .framer-ls40ga > *, .framer-RsBMX .framer-1ioebf2 > *, .framer-RsBMX .framer-1tlffia > *, .framer-RsBMX .framer-zc3u9t > *, .framer-RsBMX .framer-uimbdr > *, .framer-RsBMX .framer-nxxknu > *, .framer-RsBMX .framer-1o5o0zf > *, .framer-RsBMX .framer-10gwa8u > *, .framer-RsBMX .framer-1wvgysc > *, .framer-RsBMX .framer-8wmhn4 > *, .framer-RsBMX .framer-e1vi1d > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-RsBMX .framer-1hanbzf > :first-child, .framer-RsBMX .framer-bdwtqr > :first-child, .framer-RsBMX .framer-ls40ga > :first-child, .framer-RsBMX .framer-1qqqtwt > :first-child, .framer-RsBMX .framer-1ioebf2 > :first-child, .framer-RsBMX .framer-udthnw > :first-child, .framer-RsBMX .framer-1tlffia > :first-child, .framer-RsBMX .framer-3gxpza > :first-child, .framer-RsBMX .framer-zc3u9t > :first-child, .framer-RsBMX .framer-jw58wu > :first-child, .framer-RsBMX .framer-7igz32 > :first-child, .framer-RsBMX .framer-uimbdr > :first-child, .framer-RsBMX .framer-12j3zsm > :first-child, .framer-RsBMX .framer-nxxknu > :first-child, .framer-RsBMX .framer-1o5o0zf > :first-child, .framer-RsBMX .framer-8jm33x > :first-child, .framer-RsBMX .framer-10gwa8u > :first-child, .framer-RsBMX .framer-1wvgysc > :first-child, .framer-RsBMX .framer-rabovs > :first-child, .framer-RsBMX .framer-8wmhn4 > :first-child, .framer-RsBMX .framer-e1vi1d > :first-child, .framer-RsBMX .framer-1osnhu4 > :first-child { margin-left: 0px; } .framer-RsBMX .framer-1hanbzf > :last-child, .framer-RsBMX .framer-bdwtqr > :last-child, .framer-RsBMX .framer-ls40ga > :last-child, .framer-RsBMX .framer-1qqqtwt > :last-child, .framer-RsBMX .framer-1ioebf2 > :last-child, .framer-RsBMX .framer-udthnw > :last-child, .framer-RsBMX .framer-1tlffia > :last-child, .framer-RsBMX .framer-3gxpza > :last-child, .framer-RsBMX .framer-zc3u9t > :last-child, .framer-RsBMX .framer-jw58wu > :last-child, .framer-RsBMX .framer-7igz32 > :last-child, .framer-RsBMX .framer-uimbdr > :last-child, .framer-RsBMX .framer-12j3zsm > :last-child, .framer-RsBMX .framer-nxxknu > :last-child, .framer-RsBMX .framer-1o5o0zf > :last-child, .framer-RsBMX .framer-8jm33x > :last-child, .framer-RsBMX .framer-10gwa8u > :last-child, .framer-RsBMX .framer-1wvgysc > :last-child, .framer-RsBMX .framer-rabovs > :last-child, .framer-RsBMX .framer-8wmhn4 > :last-child, .framer-RsBMX .framer-e1vi1d > :last-child, .framer-RsBMX .framer-1osnhu4 > :last-child { margin-right: 0px; } .framer-RsBMX .framer-1l2vkl1 > *, .framer-RsBMX .framer-yyrrt > *, .framer-RsBMX .framer-hygetz > *, .framer-RsBMX .framer-8uro1i > *, .framer-RsBMX .framer-1eusd7u > *, .framer-RsBMX .framer-1ocycf8 > *, .framer-RsBMX .framer-1f1xu4l > *, .framer-RsBMX .framer-ycrnrq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-RsBMX .framer-726i10 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-RsBMX .framer-bdwtqr > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-RsBMX .framer-18nsq28 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-RsBMX .framer-1qqqtwt > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-RsBMX .framer-10yab97 > *, .framer-RsBMX .framer-1g9oy3l > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-RsBMX .framer-firfui > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-RsBMX .framer-14fjk8y > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-RsBMX .framer-ey6jb8 > *, .framer-RsBMX .framer-51xe3v > *, .framer-RsBMX .framer-q7qgtn > *, .framer-RsBMX .framer-l061uv > *, .framer-RsBMX .framer-xeyikb > *, .framer-RsBMX .framer-nna5hq > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-RsBMX .framer-udthnw > *, .framer-RsBMX .framer-3gxpza > *, .framer-RsBMX .framer-jw58wu > *, .framer-RsBMX .framer-12j3zsm > *, .framer-RsBMX .framer-8jm33x > *, .framer-RsBMX .framer-rabovs > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-RsBMX .framer-1f04bs1 > *, .framer-RsBMX .framer-2n73qy > *, .framer-RsBMX .framer-mjy13z > *, .framer-RsBMX .framer-1of4kp7 > *, .framer-RsBMX .framer-8eikxl > *, .framer-RsBMX .framer-yq9hl > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-RsBMX .framer-7igz32 > *, .framer-RsBMX .framer-1osnhu4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RsBMX .framer-1j430sy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,'.framer-RsBMX[data-border=\"true\"]::after, .framer-RsBMX [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-RsBMX.framer-181vzam { width: 810px; } .framer-RsBMX .framer-b49js2 { min-height: 960px; padding: 76px 32px 0px 32px; } .framer-RsBMX .framer-58nyqt { padding: 0px 60px 0px 60px; } .framer-RsBMX .framer-1l2vkl1 { padding: 0px 0px 60px 0px; } .framer-RsBMX .framer-726i10 { gap: 24px; } .framer-RsBMX .framer-18nsq28 { gap: 36px; } .framer-RsBMX .framer-19hydm8 { padding: 64px 0px 64px 0px; } .framer-RsBMX .framer-138xpy3 { padding: 120px 32px 120px 32px; } .framer-RsBMX .framer-firfui, .framer-RsBMX .framer-14fjk8y { gap: 120px; } .framer-RsBMX .framer-12rmnbe-container { height: 420px; } .framer-RsBMX .framer-1gnelzo, .framer-RsBMX .framer-1j2moae, .framer-RsBMX .framer-1sl52al, .framer-RsBMX .framer-1dvp625, .framer-RsBMX .framer-loaqr3, .framer-RsBMX .framer-1xllib5 { height: var(--framer-aspect-ratio-supported, 277px); } .framer-RsBMX .framer-e1vi1d, .framer-RsBMX .framer-1xrrwnd { gap: 10px; } .framer-RsBMX .framer-1ly5lv-container { width: 80px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RsBMX .framer-726i10, .framer-RsBMX .framer-18nsq28, .framer-RsBMX .framer-firfui, .framer-RsBMX .framer-14fjk8y, .framer-RsBMX .framer-e1vi1d, .framer-RsBMX .framer-1xrrwnd { gap: 0px; } .framer-RsBMX .framer-726i10 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-RsBMX .framer-726i10 > :first-child, .framer-RsBMX .framer-18nsq28 > :first-child, .framer-RsBMX .framer-firfui > :first-child, .framer-RsBMX .framer-14fjk8y > :first-child { margin-top: 0px; } .framer-RsBMX .framer-726i10 > :last-child, .framer-RsBMX .framer-18nsq28 > :last-child, .framer-RsBMX .framer-firfui > :last-child, .framer-RsBMX .framer-14fjk8y > :last-child { margin-bottom: 0px; } .framer-RsBMX .framer-18nsq28 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-RsBMX .framer-firfui > *, .framer-RsBMX .framer-14fjk8y > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-RsBMX .framer-e1vi1d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RsBMX .framer-e1vi1d > :first-child { margin-left: 0px; } .framer-RsBMX .framer-e1vi1d > :last-child { margin-right: 0px; } .framer-RsBMX .framer-1xrrwnd > *, .framer-RsBMX .framer-1xrrwnd > :first-child, .framer-RsBMX .framer-1xrrwnd > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-RsBMX.framer-181vzam { width: 390px; } .framer-RsBMX .framer-b49js2 { height: min-content; min-height: unset; padding: 80px 6px 0px 6px; position: relative; top: unset; } .framer-RsBMX .framer-1hanbzf { background-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); flex: none; height: min-content; will-change: var(--framer-will-change-effect-override, transform); } .framer-RsBMX .framer-m7y80k { right: 24px; top: 24px; } .framer-RsBMX .framer-58nyqt { padding: 220px 30px 0px 30px; } .framer-RsBMX .framer-1l2vkl1 { padding: 0px 0px 36px 0px; will-change: unset; } .framer-RsBMX .framer-726i10 { gap: 30px; } .framer-RsBMX .framer-bdwtqr { justify-content: flex-start; order: 1; will-change: var(--framer-will-change-effect-override, transform); } .framer-RsBMX .framer-tb387f-container { will-change: unset; } .framer-RsBMX .framer-18nsq28 { gap: 24px; order: 0; } .framer-RsBMX .framer-1yhaelc, .framer-RsBMX .framer-rsqti5 { will-change: var(--framer-will-change-effect-override, transform); } .framer-RsBMX .framer-19hydm8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; justify-content: flex-start; padding: 34px 18px 30px 18px; } .framer-RsBMX .framer-ls40ga { align-self: unset; order: 1; } .framer-RsBMX .framer-1qqqtwt { align-content: center; align-items: center; align-self: unset; flex-direction: column; gap: 16px; order: 0; } .framer-RsBMX .framer-10yab97, .framer-RsBMX .framer-1g9oy3l { align-content: center; align-items: center; flex: none; gap: 2px; width: 100%; } .framer-RsBMX .framer-1s5xgno { align-self: unset; height: 1px; width: 100%; } .framer-RsBMX .framer-138xpy3 { padding: 50px 24px 50px 24px; } .framer-RsBMX .framer-firfui { gap: 50px; } .framer-RsBMX .framer-14fjk8y, .framer-RsBMX .framer-1j430sy { gap: 40px; } .framer-RsBMX .framer-1ioebf2, .framer-RsBMX .framer-1tlffia, .framer-RsBMX .framer-zc3u9t, .framer-RsBMX .framer-uimbdr, .framer-RsBMX .framer-1o5o0zf, .framer-RsBMX .framer-1wvgysc { flex-direction: column; gap: 40px; } .framer-RsBMX .framer-ey6jb8, .framer-RsBMX .framer-yyrrt, .framer-RsBMX .framer-51xe3v, .framer-RsBMX .framer-hygetz, .framer-RsBMX .framer-q7qgtn, .framer-RsBMX .framer-8uro1i, .framer-RsBMX .framer-l061uv, .framer-RsBMX .framer-1eusd7u, .framer-RsBMX .framer-xeyikb, .framer-RsBMX .framer-1f1xu4l, .framer-RsBMX .framer-nna5hq, .framer-RsBMX .framer-ycrnrq { flex: none; width: 100%; } .framer-RsBMX .framer-12rmnbe-container { height: 191px; } .framer-RsBMX .framer-nxxknu, .framer-RsBMX .framer-10gwa8u, .framer-RsBMX .framer-8wmhn4, .framer-RsBMX .framer-e1vi1d { flex-direction: column; } .framer-RsBMX .framer-1gnelzo, .framer-RsBMX .framer-1j2moae, .framer-RsBMX .framer-1sl52al, .framer-RsBMX .framer-1dvp625, .framer-RsBMX .framer-loaqr3, .framer-RsBMX .framer-1xllib5 { flex: none; height: var(--framer-aspect-ratio-supported, 152px); width: 100%; } .framer-RsBMX .framer-1d01nxp { max-width: 270px; } .framer-RsBMX .framer-1ly5lv-container { align-self: unset; height: 70px; order: 1; width: 100%; } .framer-RsBMX .framer-1xrrwnd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; order: 0; width: 100%; } .framer-RsBMX .framer-1osnhu4 { align-self: unset; height: 330px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-RsBMX .framer-726i10, .framer-RsBMX .framer-18nsq28, .framer-RsBMX .framer-19hydm8, .framer-RsBMX .framer-1qqqtwt, .framer-RsBMX .framer-10yab97, .framer-RsBMX .framer-1g9oy3l, .framer-RsBMX .framer-firfui, .framer-RsBMX .framer-14fjk8y, .framer-RsBMX .framer-1ioebf2, .framer-RsBMX .framer-1tlffia, .framer-RsBMX .framer-zc3u9t, .framer-RsBMX .framer-uimbdr, .framer-RsBMX .framer-nxxknu, .framer-RsBMX .framer-1o5o0zf, .framer-RsBMX .framer-10gwa8u, .framer-RsBMX .framer-1wvgysc, .framer-RsBMX .framer-8wmhn4, .framer-RsBMX .framer-1j430sy, .framer-RsBMX .framer-e1vi1d, .framer-RsBMX .framer-1xrrwnd { gap: 0px; } .framer-RsBMX .framer-726i10 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-RsBMX .framer-726i10 > :first-child, .framer-RsBMX .framer-18nsq28 > :first-child, .framer-RsBMX .framer-19hydm8 > :first-child, .framer-RsBMX .framer-1qqqtwt > :first-child, .framer-RsBMX .framer-10yab97 > :first-child, .framer-RsBMX .framer-1g9oy3l > :first-child, .framer-RsBMX .framer-firfui > :first-child, .framer-RsBMX .framer-14fjk8y > :first-child, .framer-RsBMX .framer-1ioebf2 > :first-child, .framer-RsBMX .framer-1tlffia > :first-child, .framer-RsBMX .framer-zc3u9t > :first-child, .framer-RsBMX .framer-uimbdr > :first-child, .framer-RsBMX .framer-nxxknu > :first-child, .framer-RsBMX .framer-1o5o0zf > :first-child, .framer-RsBMX .framer-10gwa8u > :first-child, .framer-RsBMX .framer-1wvgysc > :first-child, .framer-RsBMX .framer-8wmhn4 > :first-child, .framer-RsBMX .framer-1j430sy > :first-child, .framer-RsBMX .framer-e1vi1d > :first-child, .framer-RsBMX .framer-1xrrwnd > :first-child { margin-top: 0px; } .framer-RsBMX .framer-726i10 > :last-child, .framer-RsBMX .framer-18nsq28 > :last-child, .framer-RsBMX .framer-19hydm8 > :last-child, .framer-RsBMX .framer-1qqqtwt > :last-child, .framer-RsBMX .framer-10yab97 > :last-child, .framer-RsBMX .framer-1g9oy3l > :last-child, .framer-RsBMX .framer-firfui > :last-child, .framer-RsBMX .framer-14fjk8y > :last-child, .framer-RsBMX .framer-1ioebf2 > :last-child, .framer-RsBMX .framer-1tlffia > :last-child, .framer-RsBMX .framer-zc3u9t > :last-child, .framer-RsBMX .framer-uimbdr > :last-child, .framer-RsBMX .framer-nxxknu > :last-child, .framer-RsBMX .framer-1o5o0zf > :last-child, .framer-RsBMX .framer-10gwa8u > :last-child, .framer-RsBMX .framer-1wvgysc > :last-child, .framer-RsBMX .framer-8wmhn4 > :last-child, .framer-RsBMX .framer-1j430sy > :last-child, .framer-RsBMX .framer-e1vi1d > :last-child, .framer-RsBMX .framer-1xrrwnd > :last-child { margin-bottom: 0px; } .framer-RsBMX .framer-18nsq28 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-RsBMX .framer-19hydm8 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-RsBMX .framer-1qqqtwt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-RsBMX .framer-10yab97 > *, .framer-RsBMX .framer-1g9oy3l > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-RsBMX .framer-firfui > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-RsBMX .framer-14fjk8y > *, .framer-RsBMX .framer-1ioebf2 > *, .framer-RsBMX .framer-1tlffia > *, .framer-RsBMX .framer-zc3u9t > *, .framer-RsBMX .framer-uimbdr > *, .framer-RsBMX .framer-1o5o0zf > *, .framer-RsBMX .framer-1wvgysc > *, .framer-RsBMX .framer-1j430sy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-RsBMX .framer-nxxknu > *, .framer-RsBMX .framer-10gwa8u > *, .framer-RsBMX .framer-8wmhn4 > *, .framer-RsBMX .framer-e1vi1d > *, .framer-RsBMX .framer-1xrrwnd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8076\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DaPOBwsYe\":{\"layout\":[\"fixed\",\"auto\"]},\"dyXyT7X6A\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerv75Tpw1Yr=withCSS(Component,css,\"framer-RsBMX\");export default Framerv75Tpw1Yr;Framerv75Tpw1Yr.displayName=\"Page\";Framerv75Tpw1Yr.defaultProps={height:8076,width:1200};addFonts(Framerv75Tpw1Yr,[{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\"}]},...UICategoryTagFonts,...UIArrowButtonFonts,...YouTubeFonts,...ProjetcsMoreProjectsButtonFonts,...ProjetcsProjectItemFonts,...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),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv75Tpw1Yr\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DaPOBwsYe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dyXyT7X6A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"8076\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "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", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WIf5MEY74", "CBxle7Hty", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerdOwxhpPUd", "withCSS", "dOwxhpPUd_default", "addPropertyControls", "ControlType", "addFonts", "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", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerLR_EVOsEt", "withCSS", "LR_EVOsEt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "UICategoryTagFonts", "getFonts", "dOwxhpPUd_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ImageWithOptimizedAppearEffect", "Image2", "UIArrowButtonFonts", "ozPjcS5mp_default", "MotionSectionWithFX", "withFX", "MotionDivWithFX", "YouTubeFonts", "Youtube", "ImageWithFX", "RichTextWithFX", "ProjetcsMoreProjectsButtonFonts", "LR_EVOsEt_default", "ProjetcsProjectItemFonts", "KYMveFRib_default", "ContainerWithFX", "Container", "SmoothScrollFonts", "SmoothScroll_Prod_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition5", "animation7", "transition6", "animation8", "toResponsiveImage", "value", "animation9", "transition7", "animation10", "animation11", "animation12", "transition8", "animation13", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "animation14", "transition9", "animation15", "isSet", "transition10", "animation16", "animation17", "transition11", "animation18", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "LxLZ1qH0s_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "E9FnOb4niBtCZLpwIm", "JRY3_qGYVBtCZLpwIm", "idBtCZLpwIm", "iVpBlOYOJ", "J_GjaJJyi", "gIGNVNgIC", "TbVrcwbtn", "Il41kImZa", "Mq20_y6f9", "y1ETKBX6F", "hqJkcWkuA", "VAUyv1nvH", "YIQtP6qHV", "oHSr4kavw", "XrcNleIqL", "ZhlGekPwe", "FlMaAbGLz", "KZUBKiMyD", "Fqi4MP1Vw", "YHJ5VqqxQ", "hLoDL9h0m", "nV_2WlZZV", "ZC_BwZ36t", "g6O2MMvxJ", "dvovi8BlL", "l3Mg2XB04", "wVCU66VeS", "jlnWMEitI", "kcCxzSQHuoCs4NlQCM", "iVpBlOYOJoCs4NlQCM", "J_GjaJJyioCs4NlQCM", "TbVrcwbtnoCs4NlQCM", "idoCs4NlQCM", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "visible", "visible1", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ChildrenCanSuspend", "rXPb48_DN_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "x", "getLoadingLazyAtYPosition", "resolvedLinks1", "collection1", "paginationInfo1", "loadMore1", "index1", "Link", "css", "Framerv75Tpw1Yr", "withCSS", "v75Tpw1Yr_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
