{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/ePWnPil9wmbsNbuWmpJD/P2j2Br2c5ZYr7TpZBLOC/c_FiJKcq6.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,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,getWebPSupported()?\"webp\":\"jpg\")}) 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://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,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";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}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (ab6b6d5)\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,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SectionHeader from\"#framer/local/canvasComponent/KtQ4S_tUV/KtQ4S_tUV.js\";import CardProject from\"#framer/local/canvasComponent/lILbQ9YuN/lILbQ9YuN.js\";import MiscDivider from\"#framer/local/canvasComponent/oPCZs1RaW/oPCZs1RaW.js\";import SectionFooter from\"#framer/local/canvasComponent/p2SFYpaND/p2SFYpaND.js\";import Project from\"#framer/local/collection/wkggjeDez/wkggjeDez.js\";import*as sharedStyle6 from\"#framer/local/css/D0E3giwT3/D0E3giwT3.js\";import*as sharedStyle5 from\"#framer/local/css/HpIORxGoC/HpIORxGoC.js\";import*as sharedStyle1 from\"#framer/local/css/kWufuXvdb/kWufuXvdb.js\";import*as sharedStyle4 from\"#framer/local/css/nW0iE657y/nW0iE657y.js\";import*as sharedStyle7 from\"#framer/local/css/p6LxfHdvW/p6LxfHdvW.js\";import*as sharedStyle9 from\"#framer/local/css/RovqKUO3R/RovqKUO3R.js\";import*as sharedStyle3 from\"#framer/local/css/sIHNtFLWX/sIHNtFLWX.js\";import*as sharedStyle2 from\"#framer/local/css/SKmwDWvHP/SKmwDWvHP.js\";import*as sharedStyle from\"#framer/local/css/vRUPy1pDP/vRUPy1pDP.js\";import*as sharedStyle8 from\"#framer/local/css/yky8lXWxn/yky8lXWxn.js\";import metadataProvider from\"#framer/local/webPageMetadata/c_FiJKcq6/c_FiJKcq6.js\";const SectionHeaderFonts=getFonts(SectionHeader);const PhosphorFonts=getFonts(Phosphor);const YouTubeFonts=getFonts(YouTube);const MiscDividerFonts=getFonts(MiscDivider);const CardProjectFonts=getFonts(CardProject);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={dH5kaJQT2:\"(max-width: 809px)\",LYEm7Ehfm:\"(min-width: 1200px)\",NUwjCLA6z:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sQbUy\";const variantClassNames={dH5kaJQT2:\"framer-v-9omz08\",LYEm7Ehfm:\"framer-v-8spvhk\",NUwjCLA6z:\"framer-v-vt8lpl\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1};const getContainer=()=>{var _document_querySelector,_ref;return(_ref=(_document_querySelector=document.querySelector(\"#template-overlay\"))!==null&&_document_querySelector!==void 0?_document_querySelector:document.querySelector(\"#overlay\"))!==null&&_ref!==void 0?_ref:document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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 QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"LYEm7Ehfm\",Phone:\"dH5kaJQT2\",Tablet:\"NUwjCLA6z\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"LYEm7Ehfm\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"c_FiJKcq6\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"c_FiJKcq6\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"c_FiJKcq6\",data:Project,type:\"Collection\"},right:{alias:\"previousItemId\",data:Project,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:Project,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"c_FiJKcq6\",name:\"AzJ1czyI1\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"ZSIIENHmH\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"RG_YCSkGI\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"csc3IXokV\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"hKGPXUQQM\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"kMCXvStnn\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"VbLWBJveY\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"u2v6BiTA9\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"rTJqnWwRR\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"JyzZv4pAO\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"C8Wg1Ebux\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"mLZkC2mhn\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"BaeZjQRW3\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"k6yZp2nMa\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"wBePad0JO\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"N4l7XfcVm\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"joQtQngjW\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"nNByibtjt\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"zvSIMDNdT\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"sCZmfrmtc\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"V51suKOZs\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"WgxyIYmza\",type:\"Identifier\"},{collection:\"c_FiJKcq6\",name:\"Fh_AiafU0\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"c_FiJKcq6\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6,_getFromCurrentRouteData7,_getFromCurrentRouteData8,_getFromCurrentRouteData9,_getFromCurrentRouteData10,_getFromCurrentRouteData11,_getFromCurrentRouteData12,_getFromCurrentRouteData13,_getFromCurrentRouteData14,_getFromCurrentRouteData15;const{style,className,layoutId,variant,ZSIIENHmH=(_getFromCurrentRouteData=getFromCurrentRouteData(\"ZSIIENHmH\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",AzJ1czyI1=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"AzJ1czyI1\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",RG_YCSkGI=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"RG_YCSkGI\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",csc3IXokV=getFromCurrentRouteData(\"csc3IXokV\"),kMCXvStnn=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"kMCXvStnn\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",hKGPXUQQM=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"hKGPXUQQM\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",VbLWBJveY=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"VbLWBJveY\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:true,u2v6BiTA9=getFromCurrentRouteData(\"u2v6BiTA9\"),rTJqnWwRR=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"rTJqnWwRR\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:true,JyzZv4pAO=getFromCurrentRouteData(\"JyzZv4pAO\"),C8Wg1Ebux=(_getFromCurrentRouteData7=getFromCurrentRouteData(\"C8Wg1Ebux\"))!==null&&_getFromCurrentRouteData7!==void 0?_getFromCurrentRouteData7:true,mLZkC2mhn=getFromCurrentRouteData(\"mLZkC2mhn\"),BaeZjQRW3=(_getFromCurrentRouteData8=getFromCurrentRouteData(\"BaeZjQRW3\"))!==null&&_getFromCurrentRouteData8!==void 0?_getFromCurrentRouteData8:\"\",N4l7XfcVm=(_getFromCurrentRouteData9=getFromCurrentRouteData(\"N4l7XfcVm\"))!==null&&_getFromCurrentRouteData9!==void 0?_getFromCurrentRouteData9:true,nNByibtjt=getFromCurrentRouteData(\"nNByibtjt\"),joQtQngjW=(_getFromCurrentRouteData10=getFromCurrentRouteData(\"joQtQngjW\"))!==null&&_getFromCurrentRouteData10!==void 0?_getFromCurrentRouteData10:\"\",k6yZp2nMa=(_getFromCurrentRouteData11=getFromCurrentRouteData(\"k6yZp2nMa\"))!==null&&_getFromCurrentRouteData11!==void 0?_getFromCurrentRouteData11:\"\",wBePad0JO=(_getFromCurrentRouteData12=getFromCurrentRouteData(\"wBePad0JO\"))!==null&&_getFromCurrentRouteData12!==void 0?_getFromCurrentRouteData12:\"\",zvSIMDNdT=(_getFromCurrentRouteData13=getFromCurrentRouteData(\"zvSIMDNdT\"))!==null&&_getFromCurrentRouteData13!==void 0?_getFromCurrentRouteData13:true,sCZmfrmtc=getFromCurrentRouteData(\"sCZmfrmtc\"),V51suKOZs=(_getFromCurrentRouteData14=getFromCurrentRouteData(\"V51suKOZs\"))!==null&&_getFromCurrentRouteData14!==void 0?_getFromCurrentRouteData14:\"\",WgxyIYmza=(_getFromCurrentRouteData15=getFromCurrentRouteData(\"WgxyIYmza\"))!==null&&_getFromCurrentRouteData15!==void 0?_getFromCurrentRouteData15:true,Fh_AiafU0=getFromCurrentRouteData(\"Fh_AiafU0\"),previousItemId=getFromCurrentRouteData(\"previousItemId\"),AzJ1czyI1FYjczoZJc,RG_YCSkGIFYjczoZJc,ecZIrBC9BFYjczoZJc,csc3IXokVFYjczoZJc,hKGPXUQQMFYjczoZJc,ZSIIENHmHFYjczoZJc,idFYjczoZJc,nextItemId=getFromCurrentRouteData(\"nextItemId\"),AzJ1czyI1UoBeSsaJ5,RG_YCSkGIUoBeSsaJ5,ecZIrBC9BUoBeSsaJ5,csc3IXokVUoBeSsaJ5,hKGPXUQQMUoBeSsaJ5,ZSIIENHmHUoBeSsaJ5,idUoBeSsaJ5,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-sQbUy`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-sQbUy`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=isSet(previousItemId);const activeLocaleCode=useLocaleCode();const router=useRouter();const visible1=isSet(nextItemId);const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"LYEm7Ehfm\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-8spvhk\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p7edve\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:101,width:\"max(100vw, 1px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i13equ-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{variant:\"klBdNo7CL\"},NUwjCLA6z:{variant:\"pCIf6_JFQ\"}},children:/*#__PURE__*/_jsx(SectionHeader,{height:\"100%\",id:\"hsGEAT8k8\",layoutId:\"hsGEAT8k8\",style:{width:\"100%\"},variant:\"h4gaPxN3P\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ynnbvd\",\"data-framer-name\":\"Project Title\",name:\"Project Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k9b8dm\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n5y4dz\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f8fedn\",\"data-framer-name\":\"Breadcrumbs\",name:\"Breadcrumbs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"py_u5oqU0\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1pp7rpd\",\"data-styles-preset\":\"kWufuXvdb\",children:\"Home\"})})})}),className:\"framer-1ple38r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",children:\"/\"})}),className:\"framer-1o4ibc4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XM38k80QH\"},nodeId:\"XMFEf_a5H\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1pp7rpd\",\"data-styles-preset\":\"kWufuXvdb\",children:\"Projects\"})})})}),className:\"framer-1l4eva6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",children:\"/\"})}),className:\"framer-bozg5n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ZSIIENHmH},webPageId:\"c_FiJKcq6\"},nodeId:\"EuMkeKAy_\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1pp7rpd\",\"data-styles-preset\":\"kWufuXvdb\",children:\"Portfolio Title\"})})})}),className:\"framer-1ce0jah\",fonts:[\"Inter\"],text:AzJ1czyI1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xv33xp\",\"data-styles-preset\":\"SKmwDWvHP\",children:\"Bright Path\"})}),className:\"framer-kyipwa\",fonts:[\"Inter\"],text:AzJ1czyI1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-w1urrs\",\"data-styles-preset\":\"sIHNtFLWX\",style:{\"--framer-text-color\":\"var(--token-a53ccce3-e056-4148-b806-c4d7825c77b7, rgba(27, 29, 31, 0.8))\"},children:\"Explore our portfolio of successful projects that showcase our expertise, creativity, and dedication to delivering results.\"})}),className:\"framer-12evef8\",fonts:[\"Inter\"],text:RG_YCSkGI,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(357.2),sizes:\"min(max(100vw - 40px, 1px), 1200px)\",...toResponsiveImage(csc3IXokV)}},NUwjCLA6z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(404.2),sizes:\"min(max(100vw - 60px, 1px), 1200px)\",...toResponsiveImage(csc3IXokV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(414.2),sizes:\"min(max(100vw - 100px, 1px), 1200px)\",...toResponsiveImage(csc3IXokV)},className:\"framer-1mz36lj\"})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1l0c0j2\",\"data-framer-name\":\"Content Section\",name:\"Content Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l205a0\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t56gic\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",children:\"Project Background\"})}),className:\"framer-69dcdr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:kMCXvStnn,className:\"framer-1dbcktq\",\"data-framer-name\":\"Project Background\",fonts:[\"Inter\"],name:\"Project Background\",stylesPresetsClassNames:{h1:\"framer-styles-preset-1xv33xp\",h2:\"framer-styles-preset-md178d\",h3:\"framer-styles-preset-1gpob6a\",h4:\"framer-styles-preset-1g3m8fd\",h5:\"framer-styles-preset-zzg2tu\",h6:\"framer-styles-preset-173za0e\",p:\"framer-styles-preset-98p1p7\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-173za0e\",\"data-styles-preset\":\"yky8lXWxn\",children:\"We revamped BrightPath Consulting's outdated website with a sleek, modern design that improved user experience and reflected their brand values. The project included responsive design, SEO optimization, and enhanced service showcase features.\"})}),className:\"framer-101il90\",\"data-framer-name\":\"Short Description\",fonts:[\"Inter\"],name:\"Short Description\",text:hKGPXUQQM,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-10qvr1d\",\"data-framer-name\":\"Image Section\",name:\"Image Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4m5ied\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[VbLWBJveY&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1417.6),sizes:\"max(min(max(100vw - 40px, 1px), 1200px), 50px)\",...toResponsiveImage(u2v6BiTA9)}},NUwjCLA6z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1330.6000000000001),sizes:\"calc(max((min(max(100vw - 60px, 1px), 1200px) - 30px) / 2, 50px) * 2 + 30px)\",...toResponsiveImage(u2v6BiTA9)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1380.6),sizes:\"calc(max((min(max(100vw - 100px, 1px), 1200px) - 30px) / 2, 50px) * 2 + 30px)\",...toResponsiveImage(u2v6BiTA9)},className:\"framer-hw526d\",\"data-framer-name\":\"Detail Image 1\",name:\"Detail Image 1\"})}),rTJqnWwRR&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2122.6),sizes:\"max(min(max(100vw - 40px, 1px), 1200px), 50px)\",...toResponsiveImage(JyzZv4pAO)}},NUwjCLA6z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2035.6000000000001),sizes:\"max((min(max(100vw - 60px, 1px), 1200px) - 30px) / 2, 50px)\",...toResponsiveImage(JyzZv4pAO)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2085.6),sizes:\"max((min(max(100vw - 100px, 1px), 1200px) - 30px) / 2, 50px)\",...toResponsiveImage(JyzZv4pAO)},className:\"framer-cpaphs\",\"data-framer-name\":\"Detail Image 2\",name:\"Detail Image 2\"})}),C8Wg1Ebux&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2786.6),sizes:\"max(min(max(100vw - 40px, 1px), 1200px), 50px)\",...toResponsiveImage(mLZkC2mhn)}},NUwjCLA6z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2035.6000000000001),sizes:\"max((min(max(100vw - 60px, 1px), 1200px) - 30px) / 2, 50px)\",...toResponsiveImage(mLZkC2mhn)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2085.6),sizes:\"max((min(max(100vw - 100px, 1px), 1200px) - 30px) / 2, 50px)\",...toResponsiveImage(mLZkC2mhn)},className:\"framer-qm7yqr\",\"data-framer-name\":\"Detail Image 3\",name:\"Detail Image 3\"})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-2s2rhw\",\"data-framer-name\":\"Content Section\",name:\"Content Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16s3tx6\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",children:\"Objectives\"})}),className:\"framer-5nz01b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:BaeZjQRW3,className:\"framer-5rtwn6\",\"data-framer-name\":\"Objectives\",fonts:[\"Inter\"],name:\"Objectives\",stylesPresetsClassNames:{h1:\"framer-styles-preset-1xv33xp\",h2:\"framer-styles-preset-md178d\",h3:\"framer-styles-preset-1gpob6a\",h4:\"framer-styles-preset-1g3m8fd\",h5:\"framer-styles-preset-zzg2tu\",h6:\"framer-styles-preset-173za0e\",p:\"framer-styles-preset-98p1p7\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),N4l7XfcVm&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-axnjwd\",\"data-framer-name\":\"Video Section\",name:\"Video Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3717),sizes:\"max(100vw, 1px)\",...toResponsiveImage(nNByibtjt)}},NUwjCLA6z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2925.6000000000004),sizes:\"max(100vw, 1px)\",...toResponsiveImage(nNByibtjt)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3015.6),sizes:\"max(100vw, 1px)\",...toResponsiveImage(nNByibtjt)},className:\"framer-e7m39g\",\"data-framer-name\":\"Video\",name:\"Video\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o03xpx\",\"data-framer-name\":\"Cover\",name:\"Cover\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pfl86e\",\"data-border\":true,\"data-framer-name\":\"Play\",id:\"1pfl86e\",name:\"Play\",onTap:onTap3bnx0g({overlay}),whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o2pxwm-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Play\",id:\"MAaAejvhq\",layoutId:\"MAaAejvhq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-19tknmj\"),\"data-framer-portal-id\":\"1pfl86e\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"mvEsI3FBJ\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-1j9eko7\"),\"data-framer-name\":\"Video\",\"data-framer-portal-id\":\"1pfl86e\",name:\"Video\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nxanru\",\"data-framer-name\":\"Close\",name:\"Close\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-149ap5d-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"qnKaPhOqk\",layoutId:\"qnKaPhOqk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yxsdbt-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"prYSswwsp\",isMixedBorderRadius:false,isRed:true,layoutId:\"prYSswwsp\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:joQtQngjW,width:\"100%\"})})})]})]}),getContainer())})})]})})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-yirhw8\",\"data-framer-name\":\"Content Section\",name:\"Content Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12bgmpm\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ji4r9\",\"data-framer-name\":\"Key Features\",name:\"Key Features\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",children:\"Key Features Delivered\"})}),className:\"framer-1oll6tb\",\"data-framer-name\":\"Key Features\",fonts:[\"Inter\"],name:\"Key Features\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:k6yZp2nMa,className:\"framer-1u18ada\",\"data-framer-name\":\"Key Features\",fonts:[\"Inter\"],name:\"Key Features\",stylesPresetsClassNames:{a:\"framer-styles-preset-1pp7rpd\",h1:\"framer-styles-preset-1xv33xp\",h2:\"framer-styles-preset-md178d\",h3:\"framer-styles-preset-1gpob6a\",h4:\"framer-styles-preset-1g3m8fd\",h5:\"framer-styles-preset-zzg2tu\",h6:\"framer-styles-preset-173za0e\",p:\"framer-styles-preset-98p1p7\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uqt6c0\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b9gupg\",\"data-framer-name\":\"Approach\",name:\"Approach\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9gephs\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",children:\"Our Approach\"})}),className:\"framer-1uaul4l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wBePad0JO,className:\"framer-70dadn\",\"data-framer-name\":\"Approach\",fonts:[\"Inter\"],name:\"Approach\",stylesPresetsClassNames:{h1:\"framer-styles-preset-1xv33xp\",h2:\"framer-styles-preset-md178d\",h3:\"framer-styles-preset-1gpob6a\",h4:\"framer-styles-preset-1g3m8fd\",h5:\"framer-styles-preset-zzg2tu\",h6:\"framer-styles-preset-173za0e\",p:\"framer-styles-preset-98p1p7\"},verticalAlignment:\"top\",withExternalLayout:true})]}),zvSIMDNdT&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4640.799999999999),sizes:\"min(max(100vw - 40px, 1px), 1200px)\",...toResponsiveImage(sCZmfrmtc)}},NUwjCLA6z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3642.6000000000004),sizes:\"max(min(max(100vw - 60px, 1px), 1200px), 1px)\",...toResponsiveImage(sCZmfrmtc)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3922.6),sizes:\"max(min(max(100vw - 100px, 1px), 1200px), 1px)\",...toResponsiveImage(sCZmfrmtc)},className:\"framer-19nagy8\",\"data-framer-name\":\"Process Image\",name:\"Process Image\"})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{y:5120.8},NUwjCLA6z:{y:3839.0000000000005}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"100vw\",y:4129,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eqdopr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{variant:\"p1OjAL595\"},NUwjCLA6z:{variant:\"fVo83iBvY\"}},children:/*#__PURE__*/_jsx(MiscDivider,{height:\"100%\",id:\"gOQeOje5i\",layoutId:\"gOQeOje5i\",style:{width:\"100%\"},variant:\"h2ZIYNzt9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-5vomlk\",\"data-framer-name\":\"Content Section\",name:\"Content Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-191ldeo\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14c7n7b\",\"data-framer-name\":\"Result\",name:\"Result\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gpob6a\",\"data-styles-preset\":\"nW0iE657y\",children:\"Results\"})}),className:\"framer-1idofvx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:V51suKOZs,className:\"framer-2b5eg8\",\"data-framer-name\":\"Results\",fonts:[\"Inter\"],name:\"Results\",stylesPresetsClassNames:{a:\"framer-styles-preset-1pp7rpd\",h1:\"framer-styles-preset-1xv33xp\",h2:\"framer-styles-preset-md178d\",h3:\"framer-styles-preset-1gpob6a\",h4:\"framer-styles-preset-1g3m8fd\",h5:\"framer-styles-preset-zzg2tu\",h6:\"framer-styles-preset-173za0e\",p:\"framer-styles-preset-98p1p7\"},verticalAlignment:\"top\",withExternalLayout:true})]}),WgxyIYmza&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5577.2),sizes:\"min(max(100vw - 40px, 1px), 1200px)\",...toResponsiveImage(Fh_AiafU0)}},NUwjCLA6z:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4225),sizes:\"min(max(100vw - 60px, 1px), 1200px)\",...toResponsiveImage(Fh_AiafU0)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4525),sizes:\"min(max(100vw - 100px, 1px), 1200px)\",...toResponsiveImage(Fh_AiafU0)},className:\"framer-3bu6py\",\"data-framer-name\":\"Result Image\",name:\"Result Image\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{y:6282.2},NUwjCLA6z:{y:4940}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"100vw\",y:5250,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ih4y3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{variant:\"p1OjAL595\"},NUwjCLA6z:{variant:\"fVo83iBvY\"}},children:/*#__PURE__*/_jsx(MiscDivider,{height:\"100%\",id:\"ITpzFN6tB\",layoutId:\"ITpzFN6tB\",style:{width:\"100%\"},variant:\"h2ZIYNzt9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1giyru8\",\"data-framer-name\":\"More Project\",name:\"More Project\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18o8iti\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l0fcwi\",\"data-framer-name\":\"Prev\",name:\"Prev\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",children:\"Prev Project\"})}),className:\"framer-a6a1r7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1319jar\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FYjczoZJc\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"FYjczoZJc\",name:\"AzJ1czyI1\",type:\"Identifier\"},{collection:\"FYjczoZJc\",name:\"RG_YCSkGI\",type:\"Identifier\"},{collection:\"FYjczoZJc\",name:\"ecZIrBC9B\",type:\"Identifier\"},{collection:\"FYjczoZJc\",name:\"csc3IXokV\",type:\"Identifier\"},{collection:\"FYjczoZJc\",name:\"hKGPXUQQM\",type:\"Identifier\"},{collection:\"FYjczoZJc\",name:\"ZSIIENHmH\",type:\"Identifier\"},{collection:\"FYjczoZJc\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FYjczoZJc\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:previousItemId},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection===null||collection===void 0?void 0:collection.map(({AzJ1czyI1:AzJ1czyI1FYjczoZJc,csc3IXokV:csc3IXokVFYjczoZJc,ecZIrBC9B:ecZIrBC9BFYjczoZJc,hKGPXUQQM:hKGPXUQQMFYjczoZJc,id:idFYjczoZJc,RG_YCSkGI:RG_YCSkGIFYjczoZJc,ZSIIENHmH:ZSIIENHmHFYjczoZJc},i)=>{AzJ1czyI1FYjczoZJc!==null&&AzJ1czyI1FYjczoZJc!==void 0?AzJ1czyI1FYjczoZJc:AzJ1czyI1FYjczoZJc=\"\";RG_YCSkGIFYjczoZJc!==null&&RG_YCSkGIFYjczoZJc!==void 0?RG_YCSkGIFYjczoZJc:RG_YCSkGIFYjczoZJc=\"\";hKGPXUQQMFYjczoZJc!==null&&hKGPXUQQMFYjczoZJc!==void 0?hKGPXUQQMFYjczoZJc:hKGPXUQQMFYjczoZJc=\"\";ZSIIENHmHFYjczoZJc!==null&&ZSIIENHmHFYjczoZJc!==void 0?ZSIIENHmHFYjczoZJc:ZSIIENHmHFYjczoZJc=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FYjczoZJc-${idFYjczoZJc}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZSIIENHmH:ZSIIENHmHFYjczoZJc},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ZSIIENHmH:ZSIIENHmHFYjczoZJc},webPageId:\"c_FiJKcq6\"},implicitPathVariables:undefined},{href:{pathVariables:{ZSIIENHmH:ZSIIENHmHFYjczoZJc},webPageId:\"c_FiJKcq6\"},implicitPathVariables:undefined},{href:{pathVariables:{ZSIIENHmH:ZSIIENHmHFYjczoZJc},webPageId:\"c_FiJKcq6\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{width:\"min(max(100vw - 40px, 1px), 1200px)\",y:6219.1},NUwjCLA6z:{y:5266.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:643,width:\"300px\",y:5596.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-km2pzy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{AiUQqwb7z:resolvedLinks[2]},NUwjCLA6z:{AiUQqwb7z:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CardProject,{AiUQqwb7z:resolvedLinks[0],Aq5Exxmyz:toResponsiveImage(csc3IXokVFYjczoZJc),height:\"100%\",id:\"BR3QUTP52\",layoutId:\"BR3QUTP52\",ogmRclBGU:AzJ1czyI1FYjczoZJc,Qd8wLlS3_:RG_YCSkGIFYjczoZJc,style:{width:\"100%\"},UzD88Latw:hKGPXUQQMFYjczoZJc,variant:\"KSJEBTeWI\",width:\"100%\",XA3A2gq21:false,Ymr0Z6Q5W:toDateString(ecZIrBC9BFYjczoZJc,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode)})})})})})})})},idFYjczoZJc);})})})})})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fxalng\",\"data-framer-name\":\"Next\",name:\"Next\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h654rk\",\"data-styles-preset\":\"vRUPy1pDP\",children:\"Next Project\"})}),className:\"framer-1zdnvi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tes908\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UoBeSsaJ5\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"UoBeSsaJ5\",name:\"AzJ1czyI1\",type:\"Identifier\"},{collection:\"UoBeSsaJ5\",name:\"RG_YCSkGI\",type:\"Identifier\"},{collection:\"UoBeSsaJ5\",name:\"ecZIrBC9B\",type:\"Identifier\"},{collection:\"UoBeSsaJ5\",name:\"csc3IXokV\",type:\"Identifier\"},{collection:\"UoBeSsaJ5\",name:\"hKGPXUQQM\",type:\"Identifier\"},{collection:\"UoBeSsaJ5\",name:\"ZSIIENHmH\",type:\"Identifier\"},{collection:\"UoBeSsaJ5\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"UoBeSsaJ5\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:nextItemId},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1===null||collection1===void 0?void 0:collection1.map(({AzJ1czyI1:AzJ1czyI1UoBeSsaJ5,csc3IXokV:csc3IXokVUoBeSsaJ5,ecZIrBC9B:ecZIrBC9BUoBeSsaJ5,hKGPXUQQM:hKGPXUQQMUoBeSsaJ5,id:idUoBeSsaJ5,RG_YCSkGI:RG_YCSkGIUoBeSsaJ5,ZSIIENHmH:ZSIIENHmHUoBeSsaJ5},i1)=>{AzJ1czyI1UoBeSsaJ5!==null&&AzJ1czyI1UoBeSsaJ5!==void 0?AzJ1czyI1UoBeSsaJ5:AzJ1czyI1UoBeSsaJ5=\"\";RG_YCSkGIUoBeSsaJ5!==null&&RG_YCSkGIUoBeSsaJ5!==void 0?RG_YCSkGIUoBeSsaJ5:RG_YCSkGIUoBeSsaJ5=\"\";hKGPXUQQMUoBeSsaJ5!==null&&hKGPXUQQMUoBeSsaJ5!==void 0?hKGPXUQQMUoBeSsaJ5:hKGPXUQQMUoBeSsaJ5=\"\";ZSIIENHmHUoBeSsaJ5!==null&&ZSIIENHmHUoBeSsaJ5!==void 0?ZSIIENHmHUoBeSsaJ5:ZSIIENHmHUoBeSsaJ5=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UoBeSsaJ5-${idUoBeSsaJ5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZSIIENHmH:ZSIIENHmHUoBeSsaJ5},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ZSIIENHmH:ZSIIENHmHUoBeSsaJ5},webPageId:\"c_FiJKcq6\"},implicitPathVariables:undefined},{href:{pathVariables:{ZSIIENHmH:ZSIIENHmHUoBeSsaJ5},webPageId:\"c_FiJKcq6\"},implicitPathVariables:undefined},{href:{pathVariables:{ZSIIENHmH:ZSIIENHmHUoBeSsaJ5},webPageId:\"c_FiJKcq6\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{width:\"min(max(100vw - 40px, 1px), 1200px)\",y:6958.9},NUwjCLA6z:{y:5266.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:643,width:\"300px\",y:5596.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x5r9ah-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{AiUQqwb7z:resolvedLinks1[2]},NUwjCLA6z:{AiUQqwb7z:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(CardProject,{AiUQqwb7z:resolvedLinks1[0],Aq5Exxmyz:toResponsiveImage(csc3IXokVUoBeSsaJ5),height:\"100%\",id:\"LN4EDYEgv\",layoutId:\"LN4EDYEgv\",ogmRclBGU:AzJ1czyI1UoBeSsaJ5,Qd8wLlS3_:RG_YCSkGIUoBeSsaJ5,style:{width:\"100%\"},UzD88Latw:hKGPXUQQMUoBeSsaJ5,variant:\"KSJEBTeWI\",width:\"100%\",XA3A2gq21:false,Ymr0Z6Q5W:toDateString(ecZIrBC9BUoBeSsaJ5,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode)})})})})})})})},idUoBeSsaJ5);})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{y:7292},NUwjCLA6z:{y:5989.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:878,width:\"100vw\",y:6339.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jbi5nk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dH5kaJQT2:{variant:\"epfQUQB9F\"},NUwjCLA6z:{variant:\"XNo1T8EJq\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"fSwReWvAB\",layoutId:\"fSwReWvAB\",style:{width:\"100%\"},variant:\"Uq4og_yu8\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-sQbUy { background: var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)); }`,\".framer-sQbUy.framer-15o7qwd, .framer-sQbUy .framer-15o7qwd { display: block; }\",\".framer-sQbUy.framer-8spvhk { align-content: center; align-items: center; background-color: var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, #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-sQbUy .framer-1p7edve { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 8; }\",\".framer-sQbUy .framer-i13equ-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sQbUy .framer-ynnbvd, .framer-sQbUy .framer-1l0c0j2, .framer-sQbUy .framer-10qvr1d, .framer-sQbUy .framer-2s2rhw, .framer-sQbUy .framer-yirhw8, .framer-sQbUy .framer-5vomlk { 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: 50px; position: relative; width: 100%; }\",\".framer-sQbUy .framer-k9b8dm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-n5y4dz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sQbUy .framer-f8fedn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sQbUy .framer-1ple38r, .framer-sQbUy .framer-1o4ibc4, .framer-sQbUy .framer-1l4eva6, .framer-sQbUy .framer-bozg5n, .framer-sQbUy .framer-1ce0jah { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sQbUy .framer-kyipwa, .framer-sQbUy .framer-12evef8, .framer-sQbUy .framer-69dcdr, .framer-sQbUy .framer-1uaul4l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sQbUy .framer-1mz36lj { aspect-ratio: 1.8333333333333333 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 600px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sQbUy .framer-l205a0, .framer-sQbUy .framer-16s3tx6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-1t56gic { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-1dbcktq { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sQbUy .framer-101il90 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sQbUy .framer-4m5ied { display: grid; flex: 1 0 0px; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-hw526d { align-self: start; aspect-ratio: 1.7783857729138166 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; grid-column: auto / span 2; height: var(--framer-aspect-ratio-supported, 619px); justify-self: start; position: relative; width: 100%; }\",\".framer-sQbUy .framer-cpaphs, .framer-sQbUy .framer-qm7yqr { align-self: start; aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 535px); justify-self: start; position: relative; width: 100%; }\",\".framer-sQbUy .framer-5nz01b, .framer-sQbUy .framer-1oll6tb, .framer-sQbUy .framer-1idofvx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-sQbUy .framer-5rtwn6, .framer-sQbUy .framer-1u18ada, .framer-sQbUy .framer-2b5eg8 { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sQbUy .framer-axnjwd { 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: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-sQbUy .framer-e7m39g { align-content: center; align-items: center; aspect-ratio: 2.1818181818181817 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 550px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-o03xpx { align-content: center; align-items: center; background-color: var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(27, 29, 31, 0.2)); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-1pfl86e { --border-bottom-width: 1px; --border-color: var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(8px); align-content: center; align-items: center; backdrop-filter: blur(8px); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sQbUy .framer-1o2pxwm-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-sQbUy.framer-19tknmj { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-sQbUy.framer-1j9eko7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 75px; transform: translateX(-50%); width: 80%; z-index: 10; }\",\".framer-sQbUy .framer-nxanru { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: var(--token-c725b8af-d513-43e2-9a2f-b49322c9d723, rgba(255, 255, 255, 0.2)); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-sQbUy .framer-149ap5d-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-sQbUy .framer-yxsdbt-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-sQbUy .framer-12bgmpm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-14ji4r9, .framer-sQbUy .framer-b9gupg, .framer-sQbUy .framer-14c7n7b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sQbUy .framer-uqt6c0 { background-color: var(--token-1c767e42-5580-474f-b164-df72be147d42, rgba(27, 29, 31, 0.2)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-sQbUy .framer-9gephs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-70dadn { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sQbUy .framer-19nagy8 { align-self: stretch; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sQbUy .framer-eqdopr-container, .framer-sQbUy .framer-6ih4y3-container, .framer-sQbUy .framer-jbi5nk-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sQbUy .framer-191ldeo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-3bu6py { aspect-ratio: 1.7783857729138166 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 619px); position: relative; width: 100%; }\",\".framer-sQbUy .framer-1giyru8 { 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: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-sQbUy .framer-18o8iti { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-1l0fcwi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sQbUy .framer-a6a1r7, .framer-sQbUy .framer-1zdnvi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sQbUy .framer-1319jar, .framer-sQbUy .framer-tes908 { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-sQbUy .framer-km2pzy-container, .framer-sQbUy .framer-x5r9ah-container { flex: none; height: auto; position: relative; width: 300px; }\",\".framer-sQbUy .framer-1fxalng { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sQbUy.framer-8spvhk, .framer-sQbUy .framer-1p7edve, .framer-sQbUy .framer-ynnbvd, .framer-sQbUy .framer-k9b8dm, .framer-sQbUy .framer-n5y4dz, .framer-sQbUy .framer-f8fedn, .framer-sQbUy .framer-1l0c0j2, .framer-sQbUy .framer-l205a0, .framer-sQbUy .framer-1t56gic, .framer-sQbUy .framer-10qvr1d, .framer-sQbUy .framer-2s2rhw, .framer-sQbUy .framer-16s3tx6, .framer-sQbUy .framer-axnjwd, .framer-sQbUy .framer-e7m39g, .framer-sQbUy .framer-o03xpx, .framer-sQbUy .framer-1pfl86e, .framer-sQbUy.framer-1j9eko7, .framer-sQbUy .framer-nxanru, .framer-sQbUy .framer-yirhw8, .framer-sQbUy .framer-12bgmpm, .framer-sQbUy .framer-14ji4r9, .framer-sQbUy .framer-b9gupg, .framer-sQbUy .framer-9gephs, .framer-sQbUy .framer-5vomlk, .framer-sQbUy .framer-191ldeo, .framer-sQbUy .framer-14c7n7b, .framer-sQbUy .framer-1giyru8, .framer-sQbUy .framer-18o8iti, .framer-sQbUy .framer-1l0fcwi, .framer-sQbUy .framer-1319jar, .framer-sQbUy .framer-1fxalng, .framer-sQbUy .framer-tes908 { gap: 0px; } .framer-sQbUy.framer-8spvhk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sQbUy.framer-8spvhk > :first-child, .framer-sQbUy .framer-k9b8dm > :first-child, .framer-sQbUy .framer-n5y4dz > :first-child, .framer-sQbUy .framer-1t56gic > :first-child, .framer-sQbUy.framer-1j9eko7 > :first-child, .framer-sQbUy .framer-12bgmpm > :first-child, .framer-sQbUy .framer-9gephs > :first-child, .framer-sQbUy .framer-191ldeo > :first-child, .framer-sQbUy .framer-1l0fcwi > :first-child, .framer-sQbUy .framer-1319jar > :first-child, .framer-sQbUy .framer-1fxalng > :first-child, .framer-sQbUy .framer-tes908 > :first-child { margin-top: 0px; } .framer-sQbUy.framer-8spvhk > :last-child, .framer-sQbUy .framer-k9b8dm > :last-child, .framer-sQbUy .framer-n5y4dz > :last-child, .framer-sQbUy .framer-1t56gic > :last-child, .framer-sQbUy.framer-1j9eko7 > :last-child, .framer-sQbUy .framer-12bgmpm > :last-child, .framer-sQbUy .framer-9gephs > :last-child, .framer-sQbUy .framer-191ldeo > :last-child, .framer-sQbUy .framer-1l0fcwi > :last-child, .framer-sQbUy .framer-1319jar > :last-child, .framer-sQbUy .framer-1fxalng > :last-child, .framer-sQbUy .framer-tes908 > :last-child { margin-bottom: 0px; } .framer-sQbUy .framer-1p7edve > *, .framer-sQbUy .framer-ynnbvd > *, .framer-sQbUy .framer-1l0c0j2 > *, .framer-sQbUy .framer-10qvr1d > *, .framer-sQbUy .framer-2s2rhw > *, .framer-sQbUy .framer-axnjwd > *, .framer-sQbUy .framer-e7m39g > *, .framer-sQbUy .framer-1pfl86e > *, .framer-sQbUy .framer-yirhw8 > *, .framer-sQbUy .framer-5vomlk > *, .framer-sQbUy .framer-1giyru8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sQbUy .framer-1p7edve > :first-child, .framer-sQbUy .framer-ynnbvd > :first-child, .framer-sQbUy .framer-f8fedn > :first-child, .framer-sQbUy .framer-1l0c0j2 > :first-child, .framer-sQbUy .framer-l205a0 > :first-child, .framer-sQbUy .framer-10qvr1d > :first-child, .framer-sQbUy .framer-2s2rhw > :first-child, .framer-sQbUy .framer-16s3tx6 > :first-child, .framer-sQbUy .framer-axnjwd > :first-child, .framer-sQbUy .framer-e7m39g > :first-child, .framer-sQbUy .framer-o03xpx > :first-child, .framer-sQbUy .framer-1pfl86e > :first-child, .framer-sQbUy .framer-nxanru > :first-child, .framer-sQbUy .framer-yirhw8 > :first-child, .framer-sQbUy .framer-14ji4r9 > :first-child, .framer-sQbUy .framer-b9gupg > :first-child, .framer-sQbUy .framer-5vomlk > :first-child, .framer-sQbUy .framer-14c7n7b > :first-child, .framer-sQbUy .framer-1giyru8 > :first-child, .framer-sQbUy .framer-18o8iti > :first-child { margin-left: 0px; } .framer-sQbUy .framer-1p7edve > :last-child, .framer-sQbUy .framer-ynnbvd > :last-child, .framer-sQbUy .framer-f8fedn > :last-child, .framer-sQbUy .framer-1l0c0j2 > :last-child, .framer-sQbUy .framer-l205a0 > :last-child, .framer-sQbUy .framer-10qvr1d > :last-child, .framer-sQbUy .framer-2s2rhw > :last-child, .framer-sQbUy .framer-16s3tx6 > :last-child, .framer-sQbUy .framer-axnjwd > :last-child, .framer-sQbUy .framer-e7m39g > :last-child, .framer-sQbUy .framer-o03xpx > :last-child, .framer-sQbUy .framer-1pfl86e > :last-child, .framer-sQbUy .framer-nxanru > :last-child, .framer-sQbUy .framer-yirhw8 > :last-child, .framer-sQbUy .framer-14ji4r9 > :last-child, .framer-sQbUy .framer-b9gupg > :last-child, .framer-sQbUy .framer-5vomlk > :last-child, .framer-sQbUy .framer-14c7n7b > :last-child, .framer-sQbUy .framer-1giyru8 > :last-child, .framer-sQbUy .framer-18o8iti > :last-child { margin-right: 0px; } .framer-sQbUy .framer-k9b8dm > *, .framer-sQbUy .framer-1l0fcwi > *, .framer-sQbUy .framer-1fxalng > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-sQbUy .framer-n5y4dz > *, .framer-sQbUy .framer-9gephs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sQbUy .framer-f8fedn > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-sQbUy .framer-l205a0 > *, .framer-sQbUy .framer-16s3tx6 > *, .framer-sQbUy .framer-14ji4r9 > *, .framer-sQbUy .framer-b9gupg > *, .framer-sQbUy .framer-14c7n7b > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-sQbUy .framer-1t56gic > *, .framer-sQbUy.framer-1j9eko7 > *, .framer-sQbUy .framer-1319jar > *, .framer-sQbUy .framer-tes908 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-sQbUy .framer-o03xpx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sQbUy .framer-nxanru > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-sQbUy .framer-12bgmpm > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-sQbUy .framer-191ldeo > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-sQbUy .framer-18o8iti > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-sQbUy[data-border=\"true\"]::after, .framer-sQbUy [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) { .${metadata.bodyClassName}-framer-sQbUy { background: var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)); } .framer-sQbUy.framer-8spvhk { width: 810px; } .framer-sQbUy .framer-ynnbvd, .framer-sQbUy .framer-1l0c0j2, .framer-sQbUy .framer-10qvr1d, .framer-sQbUy .framer-2s2rhw, .framer-sQbUy .framer-yirhw8, .framer-sQbUy .framer-5vomlk { padding: 40px 30px 40px 30px; } .framer-sQbUy .framer-1mz36lj { height: var(--framer-aspect-ratio-supported, 409px); } .framer-sQbUy .framer-l205a0, .framer-sQbUy .framer-16s3tx6, .framer-sQbUy .framer-14ji4r9, .framer-sQbUy .framer-b9gupg, .framer-sQbUy .framer-14c7n7b { gap: 50px; } .framer-sQbUy .framer-hw526d { height: var(--framer-aspect-ratio-supported, 421px); } .framer-sQbUy .framer-cpaphs, .framer-sQbUy .framer-qm7yqr { height: var(--framer-aspect-ratio-supported, 360px); } .framer-sQbUy .framer-5nz01b, .framer-sQbUy .framer-1oll6tb, .framer-sQbUy .framer-1idofvx { width: 250px; } .framer-sQbUy .framer-axnjwd { padding: 40px 0px 40px 0px; } .framer-sQbUy .framer-e7m39g { aspect-ratio: 1.9285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 420px); } .framer-sQbUy .framer-12bgmpm { gap: 60px; } .framer-sQbUy .framer-3bu6py { height: var(--framer-aspect-ratio-supported, 422px); } .framer-sQbUy .framer-1giyru8 { padding: 80px 30px 80px 30px; } .framer-sQbUy .framer-18o8iti { gap: 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sQbUy .framer-l205a0, .framer-sQbUy .framer-16s3tx6, .framer-sQbUy .framer-12bgmpm, .framer-sQbUy .framer-14ji4r9, .framer-sQbUy .framer-b9gupg, .framer-sQbUy .framer-14c7n7b, .framer-sQbUy .framer-18o8iti { gap: 0px; } .framer-sQbUy .framer-l205a0 > *, .framer-sQbUy .framer-16s3tx6 > *, .framer-sQbUy .framer-14ji4r9 > *, .framer-sQbUy .framer-b9gupg > *, .framer-sQbUy .framer-14c7n7b > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-sQbUy .framer-l205a0 > :first-child, .framer-sQbUy .framer-16s3tx6 > :first-child, .framer-sQbUy .framer-14ji4r9 > :first-child, .framer-sQbUy .framer-b9gupg > :first-child, .framer-sQbUy .framer-14c7n7b > :first-child, .framer-sQbUy .framer-18o8iti > :first-child { margin-left: 0px; } .framer-sQbUy .framer-l205a0 > :last-child, .framer-sQbUy .framer-16s3tx6 > :last-child, .framer-sQbUy .framer-14ji4r9 > :last-child, .framer-sQbUy .framer-b9gupg > :last-child, .framer-sQbUy .framer-14c7n7b > :last-child, .framer-sQbUy .framer-18o8iti > :last-child { margin-right: 0px; } .framer-sQbUy .framer-12bgmpm > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-sQbUy .framer-12bgmpm > :first-child { margin-top: 0px; } .framer-sQbUy .framer-12bgmpm > :last-child { margin-bottom: 0px; } .framer-sQbUy .framer-18o8iti > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-sQbUy { background: var(--token-c4f2f54f-1c6f-4179-a809-ce2dec1385cc, rgb(255, 255, 255)); } .framer-sQbUy.framer-8spvhk { width: 390px; } .framer-sQbUy .framer-1p7edve { height: 64px; } .framer-sQbUy .framer-ynnbvd, .framer-sQbUy .framer-1l0c0j2, .framer-sQbUy .framer-10qvr1d, .framer-sQbUy .framer-2s2rhw, .framer-sQbUy .framer-yirhw8, .framer-sQbUy .framer-5vomlk { padding: 30px 20px 30px 20px; } .framer-sQbUy .framer-1mz36lj { height: var(--framer-aspect-ratio-supported, 191px); } .framer-sQbUy .framer-l205a0, .framer-sQbUy .framer-16s3tx6, .framer-sQbUy .framer-14ji4r9, .framer-sQbUy .framer-b9gupg, .framer-sQbUy .framer-14c7n7b { flex-direction: column; gap: 30px; } .framer-sQbUy .framer-1t56gic, .framer-sQbUy .framer-101il90, .framer-sQbUy .framer-5rtwn6, .framer-sQbUy .framer-1u18ada, .framer-sQbUy .framer-9gephs, .framer-sQbUy .framer-2b5eg8, .framer-sQbUy .framer-1l0fcwi { flex: none; width: 100%; } .framer-sQbUy .framer-4m5ied { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-sQbUy .framer-hw526d { grid-column: auto / span 1; height: var(--framer-aspect-ratio-supported, 197px); } .framer-sQbUy .framer-cpaphs, .framer-sQbUy .framer-qm7yqr { height: var(--framer-aspect-ratio-supported, 350px); } .framer-sQbUy .framer-5nz01b, .framer-sQbUy .framer-1oll6tb, .framer-sQbUy .framer-1idofvx, .framer-sQbUy .framer-1319jar, .framer-sQbUy .framer-km2pzy-container, .framer-sQbUy .framer-tes908, .framer-sQbUy .framer-x5r9ah-container { width: 100%; } .framer-sQbUy .framer-axnjwd { padding: 30px 0px 30px 0px; } .framer-sQbUy .framer-e7m39g { aspect-ratio: 0.975 / 1; height: var(--framer-aspect-ratio-supported, 400px); } .framer-sQbUy .framer-12bgmpm { gap: 50px; } .framer-sQbUy .framer-19nagy8 { align-self: unset; flex: none; height: 450px; width: 100%; } .framer-sQbUy .framer-3bu6py { height: var(--framer-aspect-ratio-supported, 197px); } .framer-sQbUy .framer-1giyru8 { padding: 60px 20px 60px 20px; } .framer-sQbUy .framer-18o8iti { flex-direction: column; } .framer-sQbUy .framer-1fxalng { align-content: flex-start; align-items: flex-start; flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sQbUy .framer-l205a0, .framer-sQbUy .framer-16s3tx6, .framer-sQbUy .framer-12bgmpm, .framer-sQbUy .framer-14ji4r9, .framer-sQbUy .framer-b9gupg, .framer-sQbUy .framer-14c7n7b, .framer-sQbUy .framer-18o8iti { gap: 0px; } .framer-sQbUy .framer-l205a0 > *, .framer-sQbUy .framer-16s3tx6 > *, .framer-sQbUy .framer-14ji4r9 > *, .framer-sQbUy .framer-b9gupg > *, .framer-sQbUy .framer-14c7n7b > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-sQbUy .framer-l205a0 > :first-child, .framer-sQbUy .framer-16s3tx6 > :first-child, .framer-sQbUy .framer-12bgmpm > :first-child, .framer-sQbUy .framer-14ji4r9 > :first-child, .framer-sQbUy .framer-b9gupg > :first-child, .framer-sQbUy .framer-14c7n7b > :first-child, .framer-sQbUy .framer-18o8iti > :first-child { margin-top: 0px; } .framer-sQbUy .framer-l205a0 > :last-child, .framer-sQbUy .framer-16s3tx6 > :last-child, .framer-sQbUy .framer-12bgmpm > :last-child, .framer-sQbUy .framer-14ji4r9 > :last-child, .framer-sQbUy .framer-b9gupg > :last-child, .framer-sQbUy .framer-14c7n7b > :last-child, .framer-sQbUy .framer-18o8iti > :last-child { margin-bottom: 0px; } .framer-sQbUy .framer-12bgmpm > *, .framer-sQbUy .framer-18o8iti > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7057\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NUwjCLA6z\":{\"layout\":[\"fixed\",\"auto\"]},\"dH5kaJQT2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerc_FiJKcq6=withCSS(Component,css,\"framer-sQbUy\");export default Framerc_FiJKcq6;Framerc_FiJKcq6.displayName=\"Project\";Framerc_FiJKcq6.defaultProps={height:7057,width:1200};addFonts(Framerc_FiJKcq6,[{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\"}]},...SectionHeaderFonts,...PhosphorFonts,...YouTubeFonts,...MiscDividerFonts,...CardProjectFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc_FiJKcq6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NUwjCLA6z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dH5kaJQT2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7057\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "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", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "SectionHeaderFonts", "getFonts", "KtQ4S_tUV_default", "PhosphorFonts", "Icon", "YouTubeFonts", "Youtube", "MiscDividerFonts", "oPCZs1RaW_default", "CardProjectFonts", "lILbQ9YuN_default", "SectionFooterFonts", "p2SFYpaND_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "getContainer", "_document_querySelector", "_ref", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "isSet", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "wkggjeDez_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "_getFromCurrentRouteData7", "_getFromCurrentRouteData8", "_getFromCurrentRouteData9", "_getFromCurrentRouteData10", "_getFromCurrentRouteData11", "_getFromCurrentRouteData12", "_getFromCurrentRouteData13", "_getFromCurrentRouteData14", "_getFromCurrentRouteData15", "style", "className", "layoutId", "variant", "ZSIIENHmH", "AzJ1czyI1", "RG_YCSkGI", "csc3IXokV", "kMCXvStnn", "hKGPXUQQM", "VbLWBJveY", "u2v6BiTA9", "rTJqnWwRR", "JyzZv4pAO", "C8Wg1Ebux", "mLZkC2mhn", "BaeZjQRW3", "N4l7XfcVm", "nNByibtjt", "joQtQngjW", "k6yZp2nMa", "wBePad0JO", "zvSIMDNdT", "sCZmfrmtc", "V51suKOZs", "WgxyIYmza", "Fh_AiafU0", "previousItemId", "AzJ1czyI1FYjczoZJc", "RG_YCSkGIFYjczoZJc", "ecZIrBC9BFYjczoZJc", "csc3IXokVFYjczoZJc", "hKGPXUQQMFYjczoZJc", "ZSIIENHmHFYjczoZJc", "idFYjczoZJc", "nextItemId", "AzJ1czyI1UoBeSsaJ5", "RG_YCSkGIUoBeSsaJ5", "ecZIrBC9BUoBeSsaJ5", "csc3IXokVUoBeSsaJ5", "hKGPXUQQMUoBeSsaJ5", "ZSIIENHmHUoBeSsaJ5", "idUoBeSsaJ5", "restProps", "ue", "metadata1", "robotsTag", "ie", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "router", "useRouter", "visible1", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "KtQ4S_tUV_default", "RichText2", "x", "Link", "getLoadingLazyAtYPosition", "Image2", "l", "Icon", "AnimatePresence", "Ga", "Youtube", "oPCZs1RaW_default", "ChildrenCanSuspend", "collection", "paginationInfo", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "lILbQ9YuN_default", "collection1", "paginationInfo1", "loadMore1", "i1", "resolvedLinks1", "p2SFYpaND_default", "css", "Framerc_FiJKcq6", "withCSS", "c_FiJKcq6_default", "addFonts", "SectionHeaderFonts", "PhosphorFonts", "YouTubeFonts", "MiscDividerFonts", "CardProjectFonts", "SectionFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
