{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js", "ssg:https://framerusercontent.com/modules/z9e8tWtm12ERhHyoFqaW/h49k16BVTT3LIldjNFiV/d9i7cGfAQ.js", "ssg:https://framerusercontent.com/modules/K2r4HcGlaZgARVsLqi5p/CCyEC9IeqDHpbqAoOrcU/M4SeJqP5v.js", "ssg:https://framerusercontent.com/modules/tqZhH4BlbrbP5xfygS6I/KMSvE5IbopL4kefpwHo0/qqo9IrD6_.js", "ssg:https://framerusercontent.com/modules/vESiSOMSM89JBh2t23q0/ZI3U8ydeTIKxZHt5JBJB/SoZV28lMC.js", "ssg:https://framerusercontent.com/modules/fBHEYf6u4L6QOhH6vRrd/UaTkD6m3NWO84IwHcgzp/or4QffhoO.js", "ssg:https://framerusercontent.com/modules/eEV2w6Qgq3VcCu4CBpK4/5PFvIOgRqtBqCXTI8kBR/or4QffhoO.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://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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (03f754e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-JHCDA .framer-styles-preset-17i877b { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-JHCDA\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d21961)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Neulis Sans Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Neulis Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/4NKFXtzFtANc7u4bRwcjgIayM3E.woff2\"}]}];export const css=[\".framer-Py1k2 .framer-styles-preset-kfsdsy:not(.rich-text-wrapper), .framer-Py1k2 .framer-styles-preset-kfsdsy.rich-text-wrapper h1 { --framer-font-family: \\\"Neulis Sans Medium\\\", \\\"Neulis Sans Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-Py1k2\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab6b6d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Mona Sans-variable-regular\",\"GF;Mona Sans-variable-regularVF=IndkdGgiIDg1LCAid2dodCIgNzM4\",\"GF;Mona Sans-variable-regularVF=IndkdGgiIDg1LCAid2dodCIgNzM4\",\"GF;Mona Sans-variable-regularVF=IndkdGgiIDg1LCAid2dodCIgNzM4\"]);const variationAxes=[{defaultValue:100,maxValue:125,minValue:75,name:\"Width\",tag:\"wdth\"},{defaultValue:200,maxValue:900,minValue:200,name:\"Weight\",tag:\"wght\"}];export const fonts=[{explicitInter:true,fonts:[{family:\"Mona Sans\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/monasans/v3/o-0IIpQmx24alC5A4PNb5z5Ba_2c7A.woff2\",variationAxes,weight:\"400\"}]}];export const css=['.framer-ZeSBW .framer-styles-preset-3xfrcs:not(.rich-text-wrapper), .framer-ZeSBW .framer-styles-preset-3xfrcs.rich-text-wrapper h4 { --framer-font-family: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-bold: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-bold-italic: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-italic: \"wdth\" 85, \"wght\" 738; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-ZeSBW .framer-styles-preset-3xfrcs:not(.rich-text-wrapper), .framer-ZeSBW .framer-styles-preset-3xfrcs.rich-text-wrapper h4 { --framer-font-family: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-bold: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-bold-italic: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-italic: \"wdth\" 85, \"wght\" 738; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ZeSBW .framer-styles-preset-3xfrcs:not(.rich-text-wrapper), .framer-ZeSBW .framer-styles-preset-3xfrcs.rich-text-wrapper h4 { --framer-font-family: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Mona Sans Variable\", \"Mona Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-bold: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-bold-italic: \"wdth\" 85, \"wght\" 738; --framer-font-variation-axes-italic: \"wdth\" 85, \"wght\" 738; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-ZeSBW\";\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 (4d21961)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Neulis Sans Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Neulis Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/4NKFXtzFtANc7u4bRwcjgIayM3E.woff2\"}]}];export const css=[\".framer-bk5TU .framer-styles-preset-1kidst:not(.rich-text-wrapper), .framer-bk5TU .framer-styles-preset-1kidst.rich-text-wrapper h3 { --framer-font-family: \\\"Neulis Sans Medium\\\", \\\"Neulis Sans Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 80px; --framer-text-alignment: start; --framer-text-color: var(--token-0c0e88b7-ba15-44cb-a08c-0bce099908bd, #ffffff); --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-bk5TU .framer-styles-preset-1kidst:not(.rich-text-wrapper), .framer-bk5TU .framer-styles-preset-1kidst.rich-text-wrapper h3 { --framer-font-family: \\\"Neulis Sans Medium\\\", \\\"Neulis Sans Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 80px; --framer-text-alignment: start; --framer-text-color: var(--token-0c0e88b7-ba15-44cb-a08c-0bce099908bd, #ffffff); --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-bk5TU .framer-styles-preset-1kidst:not(.rich-text-wrapper), .framer-bk5TU .framer-styles-preset-1kidst.rich-text-wrapper h3 { --framer-font-family: \\\"Neulis Sans Medium\\\", \\\"Neulis Sans Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1em; --framer-paragraph-spacing: 80px; --framer-text-alignment: start; --framer-text-color: var(--token-0c0e88b7-ba15-44cb-a08c-0bce099908bd, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-bk5TU\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={Kjj5HxTdE:new LazyValue(()=>import(\"./or4QffhoO-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}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/VTIRgCtWbPApsTjNtLlL/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import Footer from\"#framer/local/canvasComponent/FN_7uAkrO/FN_7uAkrO.js\";import Button from\"#framer/local/canvasComponent/k8WOTXbOu/k8WOTXbOu.js\";import ProjectCard from\"#framer/local/canvasComponent/OGygyA6nd/OGygyA6nd.js\";import NavigationBar from\"#framer/local/canvasComponent/x1wqzCE33/x1wqzCE33.js\";import Projects from\"#framer/local/collection/TtBRYIpy2/TtBRYIpy2.js\";import ScopeOfWork from\"#framer/local/collection/wak_KVlmQ/wak_KVlmQ.js\";import*as sharedStyle7 from\"#framer/local/css/AYlIFDlQa/AYlIFDlQa.js\";import*as sharedStyle8 from\"#framer/local/css/d9i7cGfAQ/d9i7cGfAQ.js\";import*as sharedStyle5 from\"#framer/local/css/ewEcAzFEE/ewEcAzFEE.js\";import*as sharedStyle9 from\"#framer/local/css/Gjim6gwBQ/Gjim6gwBQ.js\";import*as sharedStyle1 from\"#framer/local/css/JkZNnN8LG/JkZNnN8LG.js\";import*as sharedStyle10 from\"#framer/local/css/M4SeJqP5v/M4SeJqP5v.js\";import*as sharedStyle4 from\"#framer/local/css/QIbLf0kTB/QIbLf0kTB.js\";import*as sharedStyle3 from\"#framer/local/css/qqo9IrD6_/qqo9IrD6_.js\";import*as sharedStyle from\"#framer/local/css/rh61Jjroc/rh61Jjroc.js\";import*as sharedStyle2 from\"#framer/local/css/SoZV28lMC/SoZV28lMC.js\";import*as sharedStyle6 from\"#framer/local/css/Xb0JwNDiQ/Xb0JwNDiQ.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/or4QffhoO/or4QffhoO.js\";import metadataProvider from\"#framer/local/webPageMetadata/or4QffhoO/or4QffhoO.js\";const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const ImageWithFX=withFX(Image);const ButtonFonts=getFonts(Button);const ProjectCardFonts=getFonts(ProjectCard);const FooterFonts=getFonts(Footer);const NavigationBarFonts=getFonts(NavigationBar);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={DYrpHL7wq:\"(max-width: 809px)\",iqm8ZayIZ:\"(min-width: 1200px)\",ZgNcT73Ii:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-0TOa3\";const variantClassNames={DYrpHL7wq:\"framer-v-ipn2z\",iqm8ZayIZ:\"framer-v-opgwo5\",ZgNcT73Ii:\"framer-v-nvm7q1\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition1={delay:.05,duration:1,ease:[.44,0,.05,1],type:\"tween\"};const textEffect={effect:animation,startDelay:0,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const getTextEffect=ref=>({effect:animation,startDelay:.2,target:{ref},threshold:.5,tokenization:\"line\",transition:transition1,trigger:\"onScrollTarget\",type:\"appear\"});const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={delay:0,duration:.8,ease:[.44,0,.05,1],type:\"tween\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition3={delay:.2,duration:.8,ease:[.44,0,.05,1],type:\"tween\"};const transition4={delay:.4,duration:.8,ease:[.44,0,.05,1],type:\"tween\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:300};const transition5={delay:0,duration:1,ease:[.44,0,.05,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:250};const transition6={delay:.2,duration:1,ease:[.44,0,.05,1],type:\"tween\"};const textEffect1={effect:animation,repeat:false,startDelay:0,threshold:0,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"iqm8ZayIZ\",Phone:\"DYrpHL7wq\",Tablet:\"ZgNcT73Ii\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"iqm8ZayIZ\"};};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:{constraint:{left:{collection:\"or4QffhoO\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"or4QffhoO\",data:Projects,type:\"Collection\"},right:{alias:\"nextItemId\",data:Projects,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"or4QffhoO\",name:\"uUQWrHoY5\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"N5Rw3P49t\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"BFiwxmUpL\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"bduyH7xsI\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"YJcedqTKV\",type:\"Identifier\"},{alias:\"zoJLwoTlk\",arguments:[{from:{alias:\"zoJLwoTlk\",data:ScopeOfWork,type:\"Collection\"},orderBy:[{arguments:[{collection:\"or4QffhoO\",name:\"zoJLwoTlk\",type:\"Identifier\"},{collection:\"zoJLwoTlk\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"zoJLwoTlk\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"zoJLwoTlk\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"or4QffhoO\",name:\"zoJLwoTlk\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"or4QffhoO\",name:\"qUPCKc7Ii\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"KCaDSknRb\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"AYwPd3Lg3\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"mjrtCo81B\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"fTWD3sQ6E\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"oiGIC_Yr9\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"wnebXa3vP\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"rM900goFV\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"wiX46HEK5\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"WT9i0MpkF\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"vwSsiqZ6E\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"J3oUnwPI1\",type:\"Identifier\"},{collection:\"or4QffhoO\",name:\"Zy3TvJ8vP\",type:\"Identifier\"},{alias:\"nextItemId\",collection:\"nextItemId\",name:\"id\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"or4QffhoO\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,BFiwxmUpL=getFromCurrentRouteData(\"BFiwxmUpL\")??\"\",bduyH7xsI=getFromCurrentRouteData(\"bduyH7xsI\"),N5Rw3P49t=getFromCurrentRouteData(\"N5Rw3P49t\")??\"\",YJcedqTKV=getFromCurrentRouteData(\"YJcedqTKV\")??\"\",jwV4bQcljFOaNPp34s,Jr6Y7yjCCFOaNPp34s,idFOaNPp34s,zoJLwoTlk=getFromCurrentRouteData(\"zoJLwoTlk\"),KCaDSknRb=getFromCurrentRouteData(\"KCaDSknRb\")??\"\",qUPCKc7Ii=getFromCurrentRouteData(\"qUPCKc7Ii\")??\"\",AYwPd3Lg3=getFromCurrentRouteData(\"AYwPd3Lg3\")??\"\",mjrtCo81B=getFromCurrentRouteData(\"mjrtCo81B\"),fTWD3sQ6E=getFromCurrentRouteData(\"fTWD3sQ6E\"),oiGIC_Yr9=getFromCurrentRouteData(\"oiGIC_Yr9\"),wnebXa3vP=getFromCurrentRouteData(\"wnebXa3vP\"),rM900goFV=getFromCurrentRouteData(\"rM900goFV\"),wiX46HEK5=getFromCurrentRouteData(\"wiX46HEK5\")??\"\",WT9i0MpkF=getFromCurrentRouteData(\"WT9i0MpkF\"),vwSsiqZ6E=getFromCurrentRouteData(\"vwSsiqZ6E\"),J3oUnwPI1=getFromCurrentRouteData(\"J3oUnwPI1\")??\"\",Zy3TvJ8vP=getFromCurrentRouteData(\"Zy3TvJ8vP\"),nextItemId=getFromCurrentRouteData(\"nextItemId\"),OVilC7kuvNvfEwXa04,bduyH7xsINvfEwXa04,zoJLwoTlkNvfEwXa04,N5Rw3P49tNvfEwXa04,BFiwxmUpLNvfEwXa04,idNvfEwXa04,uUQWrHoY5=getFromCurrentRouteData(\"uUQWrHoY5\")??0,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Exfpb5dZf\");const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const visible=isSet(AYwPd3Lg3);const visible1=isSet(mjrtCo81B);const visible2=isSet(fTWD3sQ6E);const visible3=isSet(wnebXa3vP);const visible4=isSet(rM900goFV);const visible5=isSet(wiX46HEK5);const visible6=isSet(WT9i0MpkF);const visible7=isSet(J3oUnwPI1);const visible8=isSet(Zy3TvJ8vP);const visible9=negate(equals(nextItemId,undefined));const elementId1=useRouteElementId(\"tLw7eL0KF\");const ref2=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"z1gK3WJbV\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"iqm8ZayIZ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-opgwo5\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-kf0rjz\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWxpcyBTYW5zIEJvbGQ=\",\"--framer-font-family\":'\"Neulis Sans Bold\", \"Neulis Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0c0e88b7-ba15-44cb-a08c-0bce099908bd, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Epic Nutrition.\"})}),className:\"framer-4bm3nx\",effect:textEffect,fonts:[\"CUSTOM;Neulis Sans Bold\"],text:BFiwxmUpL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:3600,pixelWidth:4800,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(bduyH7xsI),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1nx0hj7\",\"data-framer-name\":\"Hero Background\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-a38uui\",\"data-framer-name\":\"Overview\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxdaoj\",\"data-framer-name\":\"Left Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWxpcyBTYW5zIEJvbGQ=\",\"--framer-font-family\":'\"Neulis Sans Bold\", \"Neulis Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Loru\"})})},ZgNcT73Ii:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWxpcyBTYW5zIEJvbGQ=\",\"--framer-font-family\":'\"Neulis Sans Bold\", \"Neulis Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Loru\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWxpcyBTYW5zIEJvbGQ=\",\"--framer-font-family\":'\"Neulis Sans Bold\", \"Neulis Sans Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Loru\"})}),className:\"framer-vkvd5r\",effect:textEffect,fonts:[\"CUSTOM;Neulis Sans Bold\"],text:N5Rw3P49t,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:YJcedqTKV,className:\"framer-1igsvmy\",effect:getTextEffect(ref1),fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-atrlzm\",code:\"framer-styles-preset-17i877b\",h1:\"framer-styles-preset-6zs3n4\",h2:\"framer-styles-preset-17jn1do\",h3:\"framer-styles-preset-1kidst\",h4:\"framer-styles-preset-3xfrcs\",h5:\"framer-styles-preset-uvvoju\",h6:\"framer-styles-preset-su09ni\",p:\"framer-styles-preset-eyct9r\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p4ne6w\",\"data-framer-name\":\"Right Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v4bqd4\",\"data-framer-name\":\"Scope Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mqfsko\",\"data-styles-preset\":\"Gjim6gwBQ\",style:{\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\"},children:\"Scope of Work\"})}),className:\"framer-xncfpz\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ugvpl4\",\"data-framer-name\":\"Scope List\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aiawc7\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FOaNPp34s\",data:ScopeOfWork,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},orderBy:[{arguments:[{type:\"LiteralValue\",value:zoJLwoTlk},{collection:\"FOaNPp34s\",name:\"id\",type:\"Identifier\"}],direction:\"asc\",functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"FOaNPp34s\",name:\"jwV4bQclj\",type:\"Identifier\"},{collection:\"FOaNPp34s\",name:\"Jr6Y7yjCC\",type:\"Identifier\"},{collection:\"FOaNPp34s\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FOaNPp34s\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{type:\"LiteralValue\",value:zoJLwoTlk},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idFOaNPp34s,Jr6Y7yjCC:Jr6Y7yjCCFOaNPp34s,jwV4bQclj:jwV4bQcljFOaNPp34s},index)=>{jwV4bQcljFOaNPp34s??=\"\";Jr6Y7yjCCFOaNPp34s??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FOaNPp34s-${idFOaNPp34s}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Jr6Y7yjCC:Jr6Y7yjCCFOaNPp34s},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sx6agf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eyct9r\",\"data-styles-preset\":\"Xb0JwNDiQ\",style:{\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-5ubovc\",\"data-framer-name\":\"Project Type\",fonts:[\"Inter\"],text:jwV4bQcljFOaNPp34s,verticalAlignment:\"top\",withExternalLayout:true})})})},idFOaNPp34s);})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f2zrpa\",\"data-framer-name\":\"Client Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mqfsko\",\"data-styles-preset\":\"Gjim6gwBQ\",style:{\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\"},children:\"Client\"})}),className:\"framer-8kqcym\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ewn091\",\"data-framer-name\":\"Client Name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eyct9r\",\"data-styles-preset\":\"Xb0JwNDiQ\",style:{\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\"},children:\"Activo\"})}),className:\"framer-du8m3g\",fonts:[\"Inter\"],text:KCaDSknRb,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15br1ex\",\"data-framer-name\":\"Year Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mqfsko\",\"data-styles-preset\":\"Gjim6gwBQ\",style:{\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\"},children:\"Year\"})}),className:\"framer-1pkgsp8\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cozy8y\",\"data-framer-name\":\"Year\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eyct9r\",\"data-styles-preset\":\"Xb0JwNDiQ\",style:{\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\"},children:\"2024\"})}),className:\"framer-1fcxhet\",fonts:[\"Inter\"],text:qUPCKc7Ii,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ciynao\",\"data-border\":true,\"data-framer-name\":\"Projects\",children:[visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b1b7i8\",\"data-framer-name\":\"Section 0\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mrxplp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"X0TWu3CFU\",scopeId:\"or4QffhoO\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"X0TWu3CFU\",isMixedBorderRadius:false,isRed:false,layoutId:\"X0TWu3CFU\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:AYwPd3Lg3,width:\"100%\"})})})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-reqp6p\",\"data-framer-name\":\"Section Intro\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1471.6+50+682+0),pixelHeight:3600,pixelWidth:4800,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(mjrtCo81B),...{positionX:\"center\",positionY:\"center\"}}},ZgNcT73Ii:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1488.8+100+682+0),pixelHeight:3600,pixelWidth:4800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(mjrtCo81B),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1399+100+682+0),pixelHeight:3600,pixelWidth:4800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(mjrtCo81B),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-pk077g\"})})}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kok6l5\",\"data-framer-name\":\"Section 1 y medio\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1471.6+50+1022+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(fTWD3sQ6E),...{positionX:\"center\",positionY:\"center\"}}},ZgNcT73Ii:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1488.8+100+1480+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,...toResponsiveImage(fTWD3sQ6E),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1399+100+1480+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,...toResponsiveImage(fTWD3sQ6E),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-12attvl\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1471.6+50+1022+0+320),sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(oiGIC_Yr9),...{positionX:\"center\",positionY:\"center\"}}},ZgNcT73Ii:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1488.8+100+1480+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,...toResponsiveImage(oiGIC_Yr9),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1399+100+1480+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,...toResponsiveImage(oiGIC_Yr9),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1x6iyat\"})})]}),visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9cdo22\",\"data-framer-name\":\"Section 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1471.6+50+1682+0),pixelHeight:3600,pixelWidth:4800,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(wnebXa3vP),...{positionX:\"center\",positionY:\"center\"}}},ZgNcT73Ii:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1488.8+100+2030+0),pixelHeight:3600,pixelWidth:4800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(wnebXa3vP),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1399+100+2030+0),pixelHeight:3600,pixelWidth:4800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(wnebXa3vP),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-4mkzz3\"})})}),visible4&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-knn5oe\",\"data-framer-name\":\"Section 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1471.6+50+2022+0),pixelHeight:3600,pixelWidth:4800,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(rM900goFV),...{positionX:\"center\",positionY:\"center\"}}},ZgNcT73Ii:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1488.8+100+2830+0),pixelHeight:3600,pixelWidth:4800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(rM900goFV),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1399+100+2830+0),pixelHeight:3600,pixelWidth:4800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(rM900goFV),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-l9zmyf\"})})}),visible5&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u56vuv\",\"data-framer-name\":\"Paragraph 1\",children:visible5&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wiX46HEK5,className:\"framer-1ua1iog\",effect:textEffect1,fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-atrlzm\",code:\"framer-styles-preset-17i877b\",h1:\"framer-styles-preset-kfsdsy\",h2:\"framer-styles-preset-17jn1do\",h3:\"framer-styles-preset-1kidst\",h4:\"framer-styles-preset-3xfrcs\",h5:\"framer-styles-preset-uvvoju\",h6:\"framer-styles-preset-su09ni\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8m7hm6\",\"data-framer-name\":\"Section 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1471.6+50+2502+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(WT9i0MpkF),...{positionX:\"center\",positionY:\"center\"}}},ZgNcT73Ii:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1488.8+100+3870+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,...toResponsiveImage(WT9i0MpkF),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1399+100+3870+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,...toResponsiveImage(WT9i0MpkF),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-zg5bki\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1471.6+50+2502+0+320),sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(vwSsiqZ6E),...{positionX:\"center\",positionY:\"center\"}}},ZgNcT73Ii:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1488.8+100+3870+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,...toResponsiveImage(vwSsiqZ6E),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1399+100+3870+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,...toResponsiveImage(vwSsiqZ6E),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ordl5b\"})})]}),visible7&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hc6mgi\",\"data-framer-name\":\"Section 4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:J3oUnwPI1,className:\"framer-1a79v2s\",effect:textEffect1,fonts:[\"Inter\"],stylesPresetsClassNames:{code:\"framer-styles-preset-17i877b\",h1:\"framer-styles-preset-6zs3n4\",h2:\"framer-styles-preset-17jn1do\",h3:\"framer-styles-preset-1kidst\",h4:\"framer-styles-preset-3xfrcs\",h5:\"framer-styles-preset-uvvoju\",h6:\"framer-styles-preset-su09ni\",p:\"framer-styles-preset-eyct9r\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible8&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ky3cj9\",\"data-framer-name\":\"Section 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1471.6+50+3398+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,...toResponsiveImage(Zy3TvJ8vP),...{positionX:\"center\",positionY:\"center\"}}},ZgNcT73Ii:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1488.8+100+4856+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(Zy3TvJ8vP),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1399+100+4856+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,...toResponsiveImage(Zy3TvJ8vP),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1iz98kt\"})})})]}),visible9&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1nt92c5\",\"data-border\":true,\"data-framer-name\":\"Next Projects\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-204h2k\",\"data-framer-name\":\"Top Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17jn1do\",\"data-styles-preset\":\"JkZNnN8LG\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\"},children:\"NEXT PROJECTS\"})}),className:\"framer-8b4qsr\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zfu2zk6_s\"},implicitPathVariables:undefined},{href:{webPageId:\"zfu2zk6_s\"},implicitPathVariables:undefined},{href:{webPageId:\"zfu2zk6_s\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{y:(componentViewport?.y||0)+0+4211.6+100+0+0+99},ZgNcT73Ii:{y:(componentViewport?.y||0)+0+5998.8+100+0+0+37}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+5909+100+0+0+37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iymtws-container\",nodeId:\"R3ujwO1so\",scopeId:\"or4QffhoO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{QAYglumLi:16,tyDtLDHvi:resolvedLinks[2]},ZgNcT73Ii:{tyDtLDHvi:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{h4wvovBO3:getLocalizedValue(\"v4\",activeLocale)??\"VIEW ALL PROJECTS\",height:\"100%\",id:\"R3ujwO1so\",layoutId:\"R3ujwO1so\",QAYglumLi:20,tyDtLDHvi:resolvedLinks[0],variant:\"k5rsGklYw\",width:\"100%\",XycgT8sPQ:\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w26u63\",\"data-framer-name\":\"Bottom Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cehyan\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"NvfEwXa04\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"NvfEwXa04\",name:\"OVilC7kuv\",type:\"Identifier\"},{collection:\"NvfEwXa04\",name:\"bduyH7xsI\",type:\"Identifier\"},{alias:\"zoJLwoTlk\",arguments:[{from:{alias:\"zoJLwoTlk\",data:ScopeOfWork,type:\"Collection\"},orderBy:[{arguments:[{collection:\"NvfEwXa04\",name:\"zoJLwoTlk\",type:\"Identifier\"},{collection:\"zoJLwoTlk\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"zoJLwoTlk\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"zoJLwoTlk\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"NvfEwXa04\",name:\"zoJLwoTlk\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"NvfEwXa04\",name:\"N5Rw3P49t\",type:\"Identifier\"},{collection:\"NvfEwXa04\",name:\"BFiwxmUpL\",type:\"Identifier\"},{collection:\"NvfEwXa04\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"NvfEwXa04\",name:\"uUQWrHoY5\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:uUQWrHoY5},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({bduyH7xsI:bduyH7xsINvfEwXa04,BFiwxmUpL:BFiwxmUpLNvfEwXa04,id:idNvfEwXa04,N5Rw3P49t:N5Rw3P49tNvfEwXa04,OVilC7kuv:OVilC7kuvNvfEwXa04,zoJLwoTlk:zoJLwoTlkNvfEwXa04},index1)=>{OVilC7kuvNvfEwXa04??=\"\";N5Rw3P49tNvfEwXa04??=\"\";BFiwxmUpLNvfEwXa04??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`NvfEwXa04-${idNvfEwXa04}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{OVilC7kuv:OVilC7kuvNvfEwXa04},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{OVilC7kuv:OVilC7kuvNvfEwXa04},webPageId:\"or4QffhoO\"},implicitPathVariables:undefined},{href:{pathVariables:{OVilC7kuv:OVilC7kuvNvfEwXa04},webPageId:\"or4QffhoO\"},implicitPathVariables:undefined},{href:{pathVariables:{OVilC7kuv:OVilC7kuvNvfEwXa04},webPageId:\"or4QffhoO\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{width:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,y:(componentViewport?.y||0)+0+4211.6+100+206+0+0+0},ZgNcT73Ii:{y:(componentViewport?.y||0)+0+5998.8+100+144+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:491,width:`max((max(${componentViewport?.width||\"100vw\"} - 60px, 1px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5909+100+144+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iup8n1-container\",nodeId:\"h3FfxrB8q\",scopeId:\"or4QffhoO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{dppvpubTY:resolvedLinks1[2],variant:\"Khx0aiiK4\"},ZgNcT73Ii:{dppvpubTY:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{dppvpubTY:resolvedLinks1[0],height:\"100%\",id:\"h3FfxrB8q\",Ks2sZIfkG:toResponsiveImage(bduyH7xsINvfEwXa04),layoutId:\"h3FfxrB8q\",owSzFyM5l:zoJLwoTlkNvfEwXa04,PgfaxPQxh:N5Rw3P49tNvfEwXa04,pWQ9J1FOu:{borderColor:'var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255)) /* {\"name\":\"Project Secondary\"} */',borderStyle:\"solid\",borderWidth:1},Q3gCG_vzn:BFiwxmUpLNvfEwXa04,style:{width:\"100%\"},Ug9lEAWE1:\"var(--token-051ada7f-d6be-4bfa-a534-a92279bb596b, rgb(255, 255, 255))\",variant:\"dDe39pyu8\",width:\"100%\"})})})})})})})},idNvfEwXa04);})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{y:(componentViewport?.y||0)+0+5108.6},ZgNcT73Ii:{y:(componentViewport?.y||0)+0+7344.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7255,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y845st-container\",id:elementId2,nodeId:\"z1gK3WJbV\",ref:ref3,scopeId:\"or4QffhoO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{variant:\"SL1d_NIa1\"},ZgNcT73Ii:{variant:\"L7U6nanlw\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",Hh4tQiZC1:ref3,id:\"z1gK3WJbV\",layoutId:\"z1gK3WJbV\",style:{height:\"100%\",width:\"100%\"},variant:\"h_TztjDY3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-phvxjz-container\",nodeId:\"o6J9Wo2bM\",scopeId:\"or4QffhoO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DYrpHL7wq:{variant:\"dKjZfLoBL\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"o6J9Wo2bM\",layoutId:\"o6J9Wo2bM\",style:{width:\"100%\"},variant:\"Dq3lg_Uck\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ng6z8k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Cc1_9SrPM\",scopeId:\"or4QffhoO\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"Cc1_9SrPM\",intensity:20,layoutId:\"Cc1_9SrPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0TOa3.framer-1qtbhxg, .framer-0TOa3 .framer-1qtbhxg { display: block; }\",\".framer-0TOa3.framer-opgwo5 { align-content: center; align-items: center; background-color: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, #000000); 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-0TOa3 .framer-kf0rjz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: flex-end; padding: 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-0TOa3 .framer-4bm3nx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 54%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-0TOa3 .framer-1nx0hj7 { flex: none; height: 100vh; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 0; }\",\".framer-0TOa3 .framer-a38uui { align-content: flex-start; align-items: flex-start; background-color: var(--token-f4891c09-38d9-40f4-892f-42dca179f185, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 80px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-zxdaoj { align-content: flex-start; align-items: flex-start; background-color: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-0TOa3 .framer-vkvd5r, .framer-0TOa3 .framer-1igsvmy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 559px; word-break: break-word; word-wrap: break-word; }\",\".framer-0TOa3 .framer-p4ne6w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 463px; }\",\".framer-0TOa3 .framer-1v4bqd4 { align-content: flex-start; align-items: flex-start; background-color: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-0TOa3 .framer-xncfpz, .framer-0TOa3 .framer-8kqcym, .framer-0TOa3 .framer-du8m3g, .framer-0TOa3 .framer-1pkgsp8, .framer-0TOa3 .framer-1fcxhet { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0TOa3 .framer-ugvpl4, .framer-0TOa3 .framer-1ewn091, .framer-0TOa3 .framer-1cozy8y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0TOa3 .framer-1aiawc7 { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-0TOa3 .framer-1sx6agf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-0TOa3 .framer-5ubovc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0TOa3 .framer-1f2zrpa, .framer-0TOa3 .framer-15br1ex { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-0TOa3 .framer-ciynao { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 30px 150px 30px; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-1b1b7i8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 642px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-1mrxplp-container { flex: none; height: 641px; position: relative; width: 1140px; }\",\".framer-0TOa3 .framer-reqp6p, .framer-0TOa3 .framer-knn5oe { 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-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-pk077g { flex: none; height: 758px; overflow: hidden; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-kok6l5, .framer-0TOa3 .framer-9cdo22, .framer-0TOa3 .framer-8m7hm6, .framer-0TOa3 .framer-ky3cj9 { 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-0TOa3 .framer-12attvl, .framer-0TOa3 .framer-1x6iyat, .framer-0TOa3 .framer-zg5bki, .framer-0TOa3 .framer-ordl5b { aspect-ratio: 1.3333333333333333 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 420px); overflow: hidden; position: relative; width: 1px; }\",\".framer-0TOa3 .framer-4mkzz3, .framer-0TOa3 .framer-l9zmyf { flex: none; height: 760px; overflow: hidden; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-1u56vuv { 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; min-height: 552px; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-1ua1iog, .framer-0TOa3 .framer-1a79v2s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0TOa3 .framer-1hc6mgi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 150px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-1iz98kt { flex: none; height: 762px; overflow: hidden; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-1nt92c5 { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: var(--token-a765b7b0-7d53-46be-8993-a5af0de400ee, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-0TOa3 .framer-204h2k { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-8b4qsr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 505px; word-break: break-word; word-wrap: break-word; }\",\".framer-0TOa3 .framer-1iymtws-container, .framer-0TOa3 .framer-1ng6z8k-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0TOa3 .framer-1w26u63 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-1cehyan { 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-0TOa3 .framer-1iup8n1-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-0TOa3 .framer-1y845st-container { flex: none; height: 100vh; position: relative; width: 100%; z-index: 2; }\",\".framer-0TOa3 .framer-phvxjz-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0TOa3.framer-opgwo5, .framer-0TOa3 .framer-kf0rjz, .framer-0TOa3 .framer-zxdaoj, .framer-0TOa3 .framer-1v4bqd4, .framer-0TOa3 .framer-ugvpl4, .framer-0TOa3 .framer-1aiawc7, .framer-0TOa3 .framer-1sx6agf, .framer-0TOa3 .framer-1f2zrpa, .framer-0TOa3 .framer-1ewn091, .framer-0TOa3 .framer-15br1ex, .framer-0TOa3 .framer-1cozy8y, .framer-0TOa3 .framer-ciynao, .framer-0TOa3 .framer-1b1b7i8, .framer-0TOa3 .framer-reqp6p, .framer-0TOa3 .framer-kok6l5, .framer-0TOa3 .framer-9cdo22, .framer-0TOa3 .framer-knn5oe, .framer-0TOa3 .framer-1u56vuv, .framer-0TOa3 .framer-8m7hm6, .framer-0TOa3 .framer-1hc6mgi, .framer-0TOa3 .framer-ky3cj9, .framer-0TOa3 .framer-1nt92c5, .framer-0TOa3 .framer-1w26u63 { gap: 0px; } .framer-0TOa3.framer-opgwo5 > *, .framer-0TOa3 .framer-ugvpl4 > *, .framer-0TOa3 .framer-1ewn091 > *, .framer-0TOa3 .framer-1cozy8y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0TOa3.framer-opgwo5 > :first-child, .framer-0TOa3 .framer-kf0rjz > :first-child, .framer-0TOa3 .framer-zxdaoj > :first-child, .framer-0TOa3 .framer-1v4bqd4 > :first-child, .framer-0TOa3 .framer-ugvpl4 > :first-child, .framer-0TOa3 .framer-1aiawc7 > :first-child, .framer-0TOa3 .framer-1f2zrpa > :first-child, .framer-0TOa3 .framer-1ewn091 > :first-child, .framer-0TOa3 .framer-15br1ex > :first-child, .framer-0TOa3 .framer-1cozy8y > :first-child, .framer-0TOa3 .framer-ciynao > :first-child, .framer-0TOa3 .framer-1nt92c5 > :first-child { margin-top: 0px; } .framer-0TOa3.framer-opgwo5 > :last-child, .framer-0TOa3 .framer-kf0rjz > :last-child, .framer-0TOa3 .framer-zxdaoj > :last-child, .framer-0TOa3 .framer-1v4bqd4 > :last-child, .framer-0TOa3 .framer-ugvpl4 > :last-child, .framer-0TOa3 .framer-1aiawc7 > :last-child, .framer-0TOa3 .framer-1f2zrpa > :last-child, .framer-0TOa3 .framer-1ewn091 > :last-child, .framer-0TOa3 .framer-15br1ex > :last-child, .framer-0TOa3 .framer-1cozy8y > :last-child, .framer-0TOa3 .framer-ciynao > :last-child, .framer-0TOa3 .framer-1nt92c5 > :last-child { margin-bottom: 0px; } .framer-0TOa3 .framer-kf0rjz > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-0TOa3 .framer-zxdaoj > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-0TOa3 .framer-1v4bqd4 > *, .framer-0TOa3 .framer-1f2zrpa > *, .framer-0TOa3 .framer-15br1ex > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-0TOa3 .framer-1aiawc7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0TOa3 .framer-1sx6agf > *, .framer-0TOa3 .framer-1w26u63 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0TOa3 .framer-1sx6agf > :first-child, .framer-0TOa3 .framer-1b1b7i8 > :first-child, .framer-0TOa3 .framer-reqp6p > :first-child, .framer-0TOa3 .framer-kok6l5 > :first-child, .framer-0TOa3 .framer-9cdo22 > :first-child, .framer-0TOa3 .framer-knn5oe > :first-child, .framer-0TOa3 .framer-1u56vuv > :first-child, .framer-0TOa3 .framer-8m7hm6 > :first-child, .framer-0TOa3 .framer-1hc6mgi > :first-child, .framer-0TOa3 .framer-ky3cj9 > :first-child, .framer-0TOa3 .framer-1w26u63 > :first-child { margin-left: 0px; } .framer-0TOa3 .framer-1sx6agf > :last-child, .framer-0TOa3 .framer-1b1b7i8 > :last-child, .framer-0TOa3 .framer-reqp6p > :last-child, .framer-0TOa3 .framer-kok6l5 > :last-child, .framer-0TOa3 .framer-9cdo22 > :last-child, .framer-0TOa3 .framer-knn5oe > :last-child, .framer-0TOa3 .framer-1u56vuv > :last-child, .framer-0TOa3 .framer-8m7hm6 > :last-child, .framer-0TOa3 .framer-1hc6mgi > :last-child, .framer-0TOa3 .framer-ky3cj9 > :last-child, .framer-0TOa3 .framer-1w26u63 > :last-child { margin-right: 0px; } .framer-0TOa3 .framer-ciynao > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0TOa3 .framer-1b1b7i8 > *, .framer-0TOa3 .framer-reqp6p > *, .framer-0TOa3 .framer-kok6l5 > *, .framer-0TOa3 .framer-9cdo22 > *, .framer-0TOa3 .framer-knn5oe > *, .framer-0TOa3 .framer-1u56vuv > *, .framer-0TOa3 .framer-8m7hm6 > *, .framer-0TOa3 .framer-ky3cj9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0TOa3 .framer-1hc6mgi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0TOa3 .framer-1nt92c5 > * { 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,'.framer-0TOa3[data-border=\"true\"]::after, .framer-0TOa3 [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-0TOa3.framer-opgwo5 { width: 810px; } .framer-0TOa3 .framer-4bm3nx { width: 100%; } .framer-0TOa3 .framer-vkvd5r { white-space: pre; width: auto; } .framer-0TOa3 .framer-1igsvmy { width: 363px; } .framer-0TOa3 .framer-p4ne6w { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 65px; justify-content: flex-start; width: min-content; } .framer-0TOa3 .framer-1v4bqd4 { gap: 20px; } .framer-0TOa3 .framer-1f2zrpa, .framer-0TOa3 .framer-15br1ex { align-self: unset; gap: 20px; height: min-content; } .framer-0TOa3 .framer-12attvl, .framer-0TOa3 .framer-1x6iyat, .framer-0TOa3 .framer-zg5bki, .framer-0TOa3 .framer-ordl5b { height: var(--framer-aspect-ratio-supported, 274px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0TOa3 .framer-p4ne6w, .framer-0TOa3 .framer-1v4bqd4, .framer-0TOa3 .framer-1f2zrpa, .framer-0TOa3 .framer-15br1ex { gap: 0px; } .framer-0TOa3 .framer-p4ne6w > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-0TOa3 .framer-p4ne6w > :first-child, .framer-0TOa3 .framer-1v4bqd4 > :first-child, .framer-0TOa3 .framer-1f2zrpa > :first-child, .framer-0TOa3 .framer-15br1ex > :first-child { margin-top: 0px; } .framer-0TOa3 .framer-p4ne6w > :last-child, .framer-0TOa3 .framer-1v4bqd4 > :last-child, .framer-0TOa3 .framer-1f2zrpa > :last-child, .framer-0TOa3 .framer-15br1ex > :last-child { margin-bottom: 0px; } .framer-0TOa3 .framer-1v4bqd4 > *, .framer-0TOa3 .framer-1f2zrpa > *, .framer-0TOa3 .framer-15br1ex > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\",\"@media (max-width: 809px) { .framer-0TOa3.framer-opgwo5 { width: 390px; } .framer-0TOa3 .framer-4bm3nx, .framer-0TOa3 .framer-zxdaoj, .framer-0TOa3 .framer-vkvd5r, .framer-0TOa3 .framer-1igsvmy, .framer-0TOa3 .framer-p4ne6w, .framer-0TOa3 .framer-8b4qsr { width: 100%; } .framer-0TOa3 .framer-a38uui { flex-direction: column; gap: 83px; justify-content: flex-start; padding: 80px 30px 50px 30px; } .framer-0TOa3 .framer-1v4bqd4, .framer-0TOa3 .framer-1f2zrpa, .framer-0TOa3 .framer-15br1ex { gap: 20px; } .framer-0TOa3 .framer-ciynao { padding: 50px 30px 50px 30px; } .framer-0TOa3 .framer-reqp6p, .framer-0TOa3 .framer-9cdo22, .framer-0TOa3 .framer-knn5oe { justify-content: center; } .framer-0TOa3 .framer-pk077g, .framer-0TOa3 .framer-4mkzz3, .framer-0TOa3 .framer-l9zmyf { flex: 1 0 0px; height: 300px; width: 1px; } .framer-0TOa3 .framer-kok6l5, .framer-0TOa3 .framer-8m7hm6 { flex-direction: column; } .framer-0TOa3 .framer-12attvl, .framer-0TOa3 .framer-1x6iyat, .framer-0TOa3 .framer-zg5bki, .framer-0TOa3 .framer-ordl5b { aspect-ratio: 1.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); width: 100%; } .framer-0TOa3 .framer-1u56vuv, .framer-0TOa3 .framer-1hc6mgi { padding: 50px 0px 50px 0px; } .framer-0TOa3 .framer-1iz98kt { aspect-ratio: 1.1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 300px); width: 1px; } .framer-0TOa3 .framer-204h2k { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 35px; justify-content: flex-start; } .framer-0TOa3 .framer-1cehyan { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; justify-content: flex-start; } .framer-0TOa3 .framer-1iup8n1-container { align-self: unset; height: auto; } .framer-0TOa3 .framer-phvxjz-container { left: 0px; right: 0px; transform: unset; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0TOa3 .framer-a38uui, .framer-0TOa3 .framer-1v4bqd4, .framer-0TOa3 .framer-1f2zrpa, .framer-0TOa3 .framer-15br1ex, .framer-0TOa3 .framer-kok6l5, .framer-0TOa3 .framer-8m7hm6, .framer-0TOa3 .framer-204h2k, .framer-0TOa3 .framer-1cehyan { gap: 0px; } .framer-0TOa3 .framer-a38uui > * { margin: 0px; margin-bottom: calc(83px / 2); margin-top: calc(83px / 2); } .framer-0TOa3 .framer-a38uui > :first-child, .framer-0TOa3 .framer-1v4bqd4 > :first-child, .framer-0TOa3 .framer-1f2zrpa > :first-child, .framer-0TOa3 .framer-15br1ex > :first-child, .framer-0TOa3 .framer-kok6l5 > :first-child, .framer-0TOa3 .framer-8m7hm6 > :first-child, .framer-0TOa3 .framer-204h2k > :first-child, .framer-0TOa3 .framer-1cehyan > :first-child { margin-top: 0px; } .framer-0TOa3 .framer-a38uui > :last-child, .framer-0TOa3 .framer-1v4bqd4 > :last-child, .framer-0TOa3 .framer-1f2zrpa > :last-child, .framer-0TOa3 .framer-15br1ex > :last-child, .framer-0TOa3 .framer-kok6l5 > :last-child, .framer-0TOa3 .framer-8m7hm6 > :last-child, .framer-0TOa3 .framer-204h2k > :last-child, .framer-0TOa3 .framer-1cehyan > :last-child { margin-bottom: 0px; } .framer-0TOa3 .framer-1v4bqd4 > *, .framer-0TOa3 .framer-1f2zrpa > *, .framer-0TOa3 .framer-15br1ex > *, .framer-0TOa3 .framer-kok6l5 > *, .framer-0TOa3 .framer-8m7hm6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0TOa3 .framer-204h2k > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-0TOa3 .framer-1cehyan > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7311.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZgNcT73Ii\":{\"layout\":[\"fixed\",\"auto\"]},\"DYrpHL7wq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Exfpb5dZf\":{\"pattern\":\":Exfpb5dZf\",\"name\":\"overview\"},\"tLw7eL0KF\":{\"pattern\":\":tLw7eL0KF\",\"name\":\"services\"},\"z1gK3WJbV\":{\"pattern\":\":z1gK3WJbV\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const Frameror4QffhoO=withCSS(Component,css,\"framer-0TOa3\");export default Frameror4QffhoO;Frameror4QffhoO.displayName=\"Articles Detail\";Frameror4QffhoO.defaultProps={height:7311.5,width:1200};addFonts(Frameror4QffhoO,[{explicitInter:true,fonts:[{family:\"Neulis Sans Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/J8R4CcNL8FEGxrV73npZxmguwcE.woff2\"},{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\"}]},...YouTubeFonts,...ButtonFonts,...ProjectCardFonts,...FooterFonts,...NavigationBarFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameror4QffhoO\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"Exfpb5dZf\\\":{\\\"pattern\\\":\\\":Exfpb5dZf\\\",\\\"name\\\":\\\"overview\\\"},\\\"tLw7eL0KF\\\":{\\\"pattern\\\":\\\":tLw7eL0KF\\\",\\\"name\\\":\\\"services\\\"},\\\"z1gK3WJbV\\\":{\\\"pattern\\\":\\\":z1gK3WJbV\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicHeight\":\"7311.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZgNcT73Ii\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DYrpHL7wq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__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", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "variationAxes", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "MotionDivWithFX", "withFX", "motion", "YouTubeFonts", "getFonts", "Youtube", "ImageWithFX", "Image2", "ButtonFonts", "k8WOTXbOu_default", "ProjectCardFonts", "OGygyA6nd_default", "FooterFonts", "FN_7uAkrO_default", "NavigationBarFonts", "x1wqzCE33_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "toResponsiveImage", "value", "getTextEffect", "ref", "animation1", "transition2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition3", "transition4", "isSet", "animation2", "transition5", "animation3", "transition6", "textEffect1", "equals", "a", "b", "negate", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "TtBRYIpy2_default", "wak_KVlmQ_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "BFiwxmUpL", "bduyH7xsI", "N5Rw3P49t", "YJcedqTKV", "jwV4bQcljFOaNPp34s", "Jr6Y7yjCCFOaNPp34s", "idFOaNPp34s", "zoJLwoTlk", "KCaDSknRb", "qUPCKc7Ii", "AYwPd3Lg3", "mjrtCo81B", "fTWD3sQ6E", "oiGIC_Yr9", "wnebXa3vP", "rM900goFV", "wiX46HEK5", "WT9i0MpkF", "vwSsiqZ6E", "J3oUnwPI1", "Zy3TvJ8vP", "nextItemId", "OVilC7kuvNvfEwXa04", "bduyH7xsINvfEwXa04", "zoJLwoTlkNvfEwXa04", "N5Rw3P49tNvfEwXa04", "BFiwxmUpLNvfEwXa04", "idNvfEwXa04", "uUQWrHoY5", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "usePreloadLocalizedValues", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "elementId1", "ref2", "router", "useRouter", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText2", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "MotionDivWithFX", "getLocalizedValue", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ComponentViewportProvider", "Container", "Youtube", "ImageWithFX", "ResolveLinks", "resolvedLinks", "k8WOTXbOu_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks1", "OGygyA6nd_default", "FN_7uAkrO_default", "x1wqzCE33_default", "SmoothScroll", "css", "Frameror4QffhoO", "withCSS", "or4QffhoO_default", "addFonts", "YouTubeFonts", "ButtonFonts", "ProjectCardFonts", "FooterFonts", "NavigationBarFonts", "SmoothScrollFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
