{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/6fSWMbJRvow7eHelp0Y9/oe0o29iLeRHub7BJl31S/jEozLYjU3.js", "ssg:https://framerusercontent.com/modules/pcCNh6WY1h8JKQjnYRjl/KfUqWxIJ2BCI79HbaUPP/uvocBHkbq.js", "ssg:https://framerusercontent.com/modules/73o7Qgyuh9Nlb0BRKYuU/P4Okrcddnh3Aqs2HvJG4/XKIGgLnnJ.js", "ssg:https://framerusercontent.com/modules/giaaf70oznzFlbB0rCiM/ex58lp8LgUeIy1unNJvs/hAcRaDhWw.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}// https://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Space Grotesk-500\",\"GF;Space Grotesk-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsmNsFjTDJK.woff2\",weight:\"500\"},{family:\"Space Grotesk\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksmNsFjTDJK.woff2\",weight:\"700\"}]}];export const css=['.framer-sKaou .framer-styles-preset-fdc6yh:not(.rich-text-wrapper), .framer-sKaou .framer-styles-preset-fdc6yh.rich-text-wrapper h6 { --framer-font-family: \"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-4ef6a81e-bbba-47f6-b328-62e51365a036, #1d1d1f); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-sKaou\";\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 (0c5492c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Anton-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Anton\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TPY5PBRHOSXJ53WNSUYZQYX4FZUMAYNF/YHKM2QXXZHS7MS6DJUZXTGRXMIGWH7K5/PCXT6E5YCQO6SSVLT6UZPPGT7QKGXOUS.woff2\",weight:\"400\"}]}];export const css=['.framer-M1pVt .framer-styles-preset-1029gsr:not(.rich-text-wrapper), .framer-M1pVt .framer-styles-preset-1029gsr.rich-text-wrapper h2 { --framer-font-family: \"Anton\", \"Anton Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 100px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -3px; --framer-line-height: 90px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #fff6cc; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1919px) and (min-width: 1440px) { .framer-M1pVt .framer-styles-preset-1029gsr:not(.rich-text-wrapper), .framer-M1pVt .framer-styles-preset-1029gsr.rich-text-wrapper h2 { --framer-font-family: \"Anton\", \"Anton Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 95px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -3px; --framer-line-height: 90px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #fff6cc; --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-M1pVt .framer-styles-preset-1029gsr:not(.rich-text-wrapper), .framer-M1pVt .framer-styles-preset-1029gsr.rich-text-wrapper h2 { --framer-font-family: \"Anton\", \"Anton Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -3px; --framer-line-height: 80px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #fff6cc; --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-M1pVt .framer-styles-preset-1029gsr:not(.rich-text-wrapper), .framer-M1pVt .framer-styles-preset-1029gsr.rich-text-wrapper h2 { --framer-font-family: \"Anton\", \"Anton Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -2px; --framer-line-height: 50px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #fff6cc; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-M1pVt\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (78454af)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-DQFyR .framer-styles-preset-1nwt998:not(.rich-text-wrapper), .framer-DQFyR .framer-styles-preset-1nwt998.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-DQFyR\";\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 (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import CircleCursor from\"#framer/local/canvasComponent/GF5osqdRk/GF5osqdRk.js\";import NavigationBar from\"#framer/local/canvasComponent/RCnaNQOyx/RCnaNQOyx.js\";import Footer from\"#framer/local/canvasComponent/XK_Cy5AdA/XK_Cy5AdA.js\";import Sidebar from\"#framer/local/canvasComponent/za5Wivl6B/za5Wivl6B.js\";import WorkCard from\"#framer/local/canvasComponent/ZwEZTdmZ7/ZwEZTdmZ7.js\";import Work from\"#framer/local/collection/MDbE5oYbR/MDbE5oYbR.js\";import*as sharedStyle1 from\"#framer/local/css/CFjNfDI1M/CFjNfDI1M.js\";import*as sharedStyle4 from\"#framer/local/css/HTfM8Vk_f/HTfM8Vk_f.js\";import*as sharedStyle5 from\"#framer/local/css/jEozLYjU3/jEozLYjU3.js\";import*as sharedStyle6 from\"#framer/local/css/mUxksNrH1/mUxksNrH1.js\";import*as sharedStyle from\"#framer/local/css/RwItzxpN6/RwItzxpN6.js\";import*as sharedStyle3 from\"#framer/local/css/TWDj8DIw3/TWDj8DIw3.js\";import*as sharedStyle2 from\"#framer/local/css/uvocBHkbq/uvocBHkbq.js\";import*as sharedStyle7 from\"#framer/local/css/XKIGgLnnJ/XKIGgLnnJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/hAcRaDhWw/hAcRaDhWw.js\";const NavigationBarFonts=getFonts(NavigationBar);const SidebarFonts=getFonts(Sidebar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const YouTubeFonts=getFonts(YouTube);const WorkCardFonts=getFonts(WorkCard);const MotionSectionWithFX=withFX(motion.section);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const CircleCursorFonts=getFonts(CircleCursor);const breakpoints={Lu8BzEP4w:\"(min-width: 1920px)\",mWqTFhp_4:\"(max-width: 809px)\",sY_26EhmN:\"(min-width: 810px) and (max-width: 1439px)\",Xx8IURWhQ:\"(min-width: 1440px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Egwyl\";const variantClassNames={Lu8BzEP4w:\"framer-v-nswy1c\",mWqTFhp_4:\"framer-v-1ek2cjj\",sY_26EhmN:\"framer-v-rnk7ub\",Xx8IURWhQ:\"framer-v-b1pfzr\"};const transition1={damping:40,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-160};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:600,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:600,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??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 transition3={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation8={opacity:.001,rotate:3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition4={damping:40,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:160};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Lu8BzEP4w\",Laptop:\"Xx8IURWhQ\",Phone:\"mWqTFhp_4\",Tablet:\"sY_26EhmN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Xx8IURWhQ\"};};const transition5={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={alignment:\"center\",component:CircleCursor,offset:{x:0,y:0},placement:\"bottom\",transition:transition5,variant:\"Pt_xAziHn\"};const cursor1={component:CircleCursor,transition:transition5,variant:\"ocmAnIYit\"};const cursor2={component:CircleCursor,transition:transition5,variant:\"y_9I0untO\"};const cursor3={component:CircleCursor,transition:transition5,variant:\"FChW5SVy9\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"hAcRaDhWw\",data:Work,type:\"Collection\"},select:[{collection:\"hAcRaDhWw\",name:\"DkNhN2LuX\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"wDvUNxy8Q\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"pDMquoxVy\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"uwANoGnWl\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"nOwjc5BnF\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"giE7zZobH\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"hYUiV_nlW\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"iCqpdCr_d\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"jGHkrt2Ag\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"Yv0c5Oz9h\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"N2Z39PC_7\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"KxiAG9vcP\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"T_r7vz6M7\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"pUgChp0PR\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"SzN3iMSa1\",type:\"Identifier\"},{collection:\"hAcRaDhWw\",name:\"rh8a7lEcE\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"hAcRaDhWw\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,DkNhN2LuX=getFromCurrentRouteData(\"DkNhN2LuX\")??\"\",Yv0c5Oz9h=getFromCurrentRouteData(\"Yv0c5Oz9h\")??\"\",pDMquoxVy=getFromCurrentRouteData(\"pDMquoxVy\")??\"\",uwANoGnWl=getFromCurrentRouteData(\"uwANoGnWl\")??\"\",wDvUNxy8Q=getFromCurrentRouteData(\"wDvUNxy8Q\")??\"\",nOwjc5BnF=getFromCurrentRouteData(\"nOwjc5BnF\"),N2Z39PC_7=getFromCurrentRouteData(\"N2Z39PC_7\")??\"\",KxiAG9vcP=getFromCurrentRouteData(\"KxiAG9vcP\")??\"\",pUgChp0PR=getFromCurrentRouteData(\"pUgChp0PR\")??\"\",giE7zZobH=getFromCurrentRouteData(\"giE7zZobH\"),SzN3iMSa1=getFromCurrentRouteData(\"SzN3iMSa1\")??\"\",hYUiV_nlW=getFromCurrentRouteData(\"hYUiV_nlW\"),rh8a7lEcE=getFromCurrentRouteData(\"rh8a7lEcE\")??\"\",iCqpdCr_d=getFromCurrentRouteData(\"iCqpdCr_d\"),jGHkrt2Ag=getFromCurrentRouteData(\"jGHkrt2Ag\"),nnjikzSRcTbITPxvnM,FagRUdaOmTbITPxvnM,DkNhN2LuXTbITPxvnM,R6ZKryxHVTbITPxvnM,idTbITPxvnM,T_r7vz6M7=getFromCurrentRouteData(\"T_r7vz6M7\")??\"\",...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const LlGjrvFdC3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ZtbBS6tNf1wnntms=({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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"eYb8X1qTD\");const ref1=React.useRef(null);const visible=isSet(pUgChp0PR);const visible1=isSet(SzN3iMSa1);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"mWqTFhp_4\")return false;return true;};const visible2=isSet(rh8a7lEcE);const visible3=isSet(jGHkrt2Ag);const router=useRouter();useCustomCursors({au6giz:cursor3,fze4p4:cursor2,uu70lp:cursor1,x1fcwl:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Xx8IURWhQ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-b1pfzr\",className),\"data-framer-cursor\":\"x1fcwl\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1bm7n30-container\",\"data-framer-appear-id\":\"1bm7n30\",id:\"1bm7n30\",initial:animation1,layoutScroll:true,nodeId:\"wDgPc6Deu\",optimized:true,rendersWithMotion:true,scopeId:\"hAcRaDhWw\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{variant:overlay.visible?\"yJ1SCjfA3\":\"yJ1SCjfA3\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"wDgPc6Deu\",layoutId:\"wDgPc6Deu\",LlGjrvFdC:LlGjrvFdC3bnx0g({overlay}),style:{width:\"100%\"},variant:overlay.visible?\"AvJ79ZuUd\":\"AvJ79ZuUd\",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:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1lm061a\"),\"data-framer-portal-id\":\"1bm7n30\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"djJCdyFNU\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{exit:animation5,initial:animation6}},children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:cx(scopingClassNames,\"framer-umobxj-container\"),\"data-framer-portal-id\":\"1bm7n30\",exit:animation2,inComponentSlot:true,initial:animation4,nodeId:\"xv5RtiExz\",rendersWithMotion:true,scopeId:\"hAcRaDhWw\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{style:{height:\"100%\",width:\"100%\"},variant:\"Xvbh_tmsB\"}},children:/*#__PURE__*/_jsx(Sidebar,{height:\"100%\",hwKupAEcO:\"fze4p4\",id:\"xv5RtiExz\",layoutId:\"xv5RtiExz\",OITSfcGh9:\"uu70lp\",style:{height:\"100%\"},variant:\"c5T3KbqGi\",width:\"100%\",ZtbBS6tNf:ZtbBS6tNf1wnntms({overlay})})})})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ql2012\",\"data-framer-name\":\"Spacer\",id:elementId,ref:ref1}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-5jpco8\",\"data-framer-name\":\"Project Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qjxoze\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1boo37q\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gxpmty\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ykyzjy\",\"data-styles-preset\":\"RwItzxpN6\",style:{\"--framer-text-alignment\":\"left\"},children:\"LIGHTRIC MOTORS\"})}),className:\"framer-6tllgx\",\"data-framer-appear-id\":\"6tllgx\",fonts:[\"Inter\"],initial:animation8,optimized:true,style:{transformPerspective:1200},text:DkNhN2LuX,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6b2bfe\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:Yv0c5Oz9h,className:\"framer-1uaegst\",\"data-framer-appear-id\":\"1uaegst\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],initial:animation10,optimized:true,style:{transformPerspective:1200},stylesPresetsClassNames:{a:\"framer-styles-preset-1nwt998\",h1:\"framer-styles-preset-15y9qrf\",h2:\"framer-styles-preset-1029gsr\",h3:\"framer-styles-preset-1ykyzjy\",h4:\"framer-styles-preset-1uqzoic\",h5:\"framer-styles-preset-1v9djqn\",h6:\"framer-styles-preset-fdc6yh\",p:\"framer-styles-preset-6sak3o\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-f885cm\",\"data-framer-appear-id\":\"f885cm\",\"data-framer-name\":\"Right\",initial:animation11,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z1k287\",\"data-framer-name\":\"1 & 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-303e70\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ynpb6t\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vwsja\",\"data-framer-name\":\"Client\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6sak3o\",\"data-styles-preset\":\"mUxksNrH1\",children:\"Client\"})}),className:\"framer-565zpm\",\"data-framer-name\":\"Text 1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",children:\"Tom Jason\"})}),className:\"framer-3q255l\",\"data-framer-name\":\"Text 2\",fonts:[\"Inter\"],text:pDMquoxVy,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ar7xum\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nkdk3v\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jkwvfm\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kd6l2c\",\"data-framer-name\":\"Year\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6sak3o\",\"data-styles-preset\":\"mUxksNrH1\",children:\"Role\"})}),className:\"framer-1y4jfbb\",\"data-framer-name\":\"Text 1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",children:\"2024\"})}),className:\"framer-x09rgp\",\"data-framer-name\":\"Text 2\",fonts:[\"Inter\"],text:uwANoGnWl,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ko0tu9\",\"data-framer-name\":\"Line\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ricswk\",\"data-framer-name\":\"3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18jkzz2\",\"data-framer-name\":\"Inner Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19cr53y\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130vcnw\",\"data-framer-name\":\"Category\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6sak3o\",\"data-styles-preset\":\"mUxksNrH1\",children:\"Type\"})}),className:\"framer-15lo9dh\",\"data-framer-name\":\"Text 1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",children:\"Photography\"})}),className:\"framer-1g67guq\",\"data-framer-name\":\"Text 2\",fonts:[\"Inter\"],text:wDvUNxy8Q,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pe00yx\",\"data-framer-name\":\"Line\"})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{animate:undefined,initial:undefined,optimized:undefined,style:{}},sY_26EhmN:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithOptimizedAppearEffect,{animate:animation,className:\"framer-gskde7\",\"data-framer-appear-id\":\"gskde7\",\"data-framer-name\":\"Parallex Image\",initial:animation12,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fvtkgk\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},background:{alt:\"\",fit:\"fill\",intrinsicHeight:1254,intrinsicWidth:2624,pixelHeight:1254,pixelWidth:2624,sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(nOwjc5BnF)}},sY_26EhmN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1254,intrinsicWidth:2624,pixelHeight:1254,pixelWidth:2624,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(nOwjc5BnF)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1254,intrinsicWidth:2624,pixelHeight:1254,pixelWidth:2624,sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,...toResponsiveImage(nOwjc5BnF)},className:\"framer-g45hlu\",\"data-framer-name\":\"Fill Your Image Here\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ff7py9\",\"data-framer-name\":\"Corners\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18idhoq\",\"data-framer-name\":\"B Left\",style:{rotate:45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ofcoz8\",\"data-framer-name\":\"T Right\",style:{rotate:45}})]})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-q48kp9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qvou68\",\"data-framer-name\":\"Research\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r1v6vz\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-psqic1\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WHAT HAPPENED?\"})})},sY_26EhmN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"WHAT HAPPENED?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",children:\"WHAT HAPPENED?\"})}),className:\"framer-1invrnd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yf89at\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:N2Z39PC_7,className:\"framer-1s3z7jt\",\"data-framer-name\":\"Line 1\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nwt998\",h1:\"framer-styles-preset-15y9qrf\",h2:\"framer-styles-preset-1029gsr\",h3:\"framer-styles-preset-1ykyzjy\",h4:\"framer-styles-preset-1uqzoic\",h5:\"framer-styles-preset-1v9djqn\",h6:\"framer-styles-preset-fdc6yh\",p:\"framer-styles-preset-6sak3o\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v52ho5\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3o4gwy\",\"data-framer-name\":\"Design\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-36vgme\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ln4d52\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"HOW'D IT GO?\"})})},sY_26EhmN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"HOW'D IT GO?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uqzoic\",\"data-styles-preset\":\"TWDj8DIw3\",children:\"HOW'D IT GO?\"})}),className:\"framer-bnda1b\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14q4jax\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:KxiAG9vcP,className:\"framer-1qhf2ht\",\"data-framer-name\":\"Line 1\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1nwt998\",h1:\"framer-styles-preset-15y9qrf\",h2:\"framer-styles-preset-1029gsr\",h3:\"framer-styles-preset-1ykyzjy\",h4:\"framer-styles-preset-1uqzoic\",h5:\"framer-styles-preset-1v9djqn\",h6:\"framer-styles-preset-fdc6yh\",p:\"framer-styles-preset-6sak3o\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqqfts-container\",isModuleExternal:true,nodeId:\"NdPS45w1K\",scopeId:\"hAcRaDhWw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"NdPS45w1K\",isMixedBorderRadius:false,isRed:true,layoutId:\"NdPS45w1K\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Low Quality\",topLeftRadius:0,topRightRadius:0,url:pUgChp0PR,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-17jhk1q\",\"data-framer-name\":\"Zoom Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40magw\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2460,intrinsicWidth:2624,pixelHeight:2460,pixelWidth:2624,sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(giE7zZobH)}},sY_26EhmN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2460,intrinsicWidth:2624,pixelHeight:2460,pixelWidth:2624,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(giE7zZobH)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2460,intrinsicWidth:2624,pixelHeight:2460,pixelWidth:2624,sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,...toResponsiveImage(giE7zZobH)},className:\"framer-gxk7go\",\"data-framer-name\":\"Fill Your Image Here\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fgrfie\",\"data-framer-name\":\"Corners\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pphebf\",\"data-framer-name\":\"B Left\",style:{rotate:45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d0asdv\",\"data-framer-name\":\"T Right\",style:{rotate:45}})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-14kvxx4\",\"data-framer-name\":\"Text\",children:visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y4xt3r-container\",isModuleExternal:true,nodeId:\"Xn1VgdG0F\",scopeId:\"hAcRaDhWw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Xn1VgdG0F\",isMixedBorderRadius:false,isRed:true,layoutId:\"Xn1VgdG0F\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Low Quality\",topLeftRadius:0,topRightRadius:0,url:SzN3iMSa1,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-3hdhk6\",\"data-framer-name\":\"Zoom Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15yjxnf\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2400,pixelHeight:2400,pixelWidth:2400,sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(hYUiV_nlW)}},sY_26EhmN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2400,pixelHeight:2400,pixelWidth:2400,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(hYUiV_nlW)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2400,intrinsicWidth:2400,pixelHeight:2400,pixelWidth:2400,sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,...toResponsiveImage(hYUiV_nlW)},className:\"framer-173m6uf\",\"data-framer-name\":\"Fill Your Image Here\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i4ihwt\",\"data-framer-name\":\"Corners\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ox2abc\",\"data-framer-name\":\"B Left\",style:{rotate:45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-154l9t3\",\"data-framer-name\":\"T Right\",style:{rotate:45}})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-5i1mio hidden-1ek2cjj\",\"data-framer-name\":\"Text\"}),visible2&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-rd3a58\",\"data-framer-name\":\"Text\",children:visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cj90jk-container\",isModuleExternal:true,nodeId:\"MNn9B1_uQ\",scopeId:\"hAcRaDhWw\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"MNn9B1_uQ\",isMixedBorderRadius:false,isRed:true,layoutId:\"MNn9B1_uQ\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Low Quality\",topLeftRadius:0,topRightRadius:0,url:rh8a7lEcE,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1yfsdw8\",\"data-framer-name\":\"Zoom Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wyico2\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1601,intrinsicWidth:2400,pixelHeight:1601,pixelWidth:2400,sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(iCqpdCr_d)}},sY_26EhmN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1601,intrinsicWidth:2400,pixelHeight:1601,pixelWidth:2400,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(iCqpdCr_d)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1601,intrinsicWidth:2400,pixelHeight:1601,pixelWidth:2400,sizes:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,...toResponsiveImage(iCqpdCr_d)},className:\"framer-1ripzzo\",\"data-framer-name\":\"Fill Your Image Here\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1crcc6e\",\"data-framer-name\":\"Corners\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xfbtd8\",\"data-framer-name\":\"B Left\",style:{rotate:45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejou1q\",\"data-framer-name\":\"T Right\",style:{rotate:45}})]})]})}),visible3&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-ci8tfk\",\"data-framer-name\":\"Text\"}),visible3&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-1d93803\",\"data-framer-name\":\"Zoom Image\",children:visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lj5c85\",\"data-framer-name\":\"Image\",children:[visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mWqTFhp_4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1601,intrinsicWidth:2400,pixelHeight:1601,pixelWidth:2400,sizes:`max((max((${componentViewport?.width||\"100vw\"} - 20px) / 0, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(jGHkrt2Ag)}},sY_26EhmN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1601,intrinsicWidth:2400,pixelHeight:1601,pixelWidth:2400,sizes:`max((max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(jGHkrt2Ag)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.25,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1601,intrinsicWidth:2400,pixelHeight:1601,pixelWidth:2400,sizes:`max((max((${componentViewport?.width||\"100vw\"} - 40px) / 0, 1px) + 10px) / 0, 1px)`,...toResponsiveImage(jGHkrt2Ag)},className:\"framer-1gxyo5w\",\"data-framer-name\":\"Fill Your Image Here\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c7pht7\",\"data-framer-name\":\"Corners\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgxcgk\",\"data-framer-name\":\"B Left\",style:{rotate:45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hgvsah\",\"data-framer-name\":\"T Right\",style:{rotate:45}})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-122hvun\",\"data-framer-name\":\"Work\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rmm2gp\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxnrs6\",\"data-framer-name\":\"Text\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1670h4z\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1228tkq\",\"data-framer-name\":\"More Works\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xgcaef\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TbITPxvnM\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"TbITPxvnM\",name:\"nnjikzSRc\",type:\"Identifier\"},{collection:\"TbITPxvnM\",name:\"FagRUdaOm\",type:\"Identifier\"},{collection:\"TbITPxvnM\",name:\"DkNhN2LuX\",type:\"Identifier\"},{collection:\"TbITPxvnM\",name:\"R6ZKryxHV\",type:\"Identifier\"},{collection:\"TbITPxvnM\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"TbITPxvnM\",name:\"DkNhN2LuX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:DkNhN2LuX},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({DkNhN2LuX:DkNhN2LuXTbITPxvnM,FagRUdaOm:FagRUdaOmTbITPxvnM,id:idTbITPxvnM,nnjikzSRc:nnjikzSRcTbITPxvnM,R6ZKryxHV:R6ZKryxHVTbITPxvnM},index)=>{nnjikzSRcTbITPxvnM??=\"\";DkNhN2LuXTbITPxvnM??=\"\";R6ZKryxHVTbITPxvnM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TbITPxvnM-${idTbITPxvnM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{nnjikzSRc:nnjikzSRcTbITPxvnM},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{nnjikzSRc:nnjikzSRcTbITPxvnM},webPageId:\"hAcRaDhWw\"},motionChild:true,nodeId:\"NoqAvcqbG\",scopeId:\"hAcRaDhWw\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1pj9gut framer-brrrax\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lu8BzEP4w:{height:680},mWqTFhp_4:{height:340,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`},sY_26EhmN:{height:340}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,width:`max((max(${componentViewport?.width||\"100vw\"} - 50px, 1px) - 24px) / 2, 200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ata3ut-container\",\"data-framer-cursor\":\"au6giz\",nodeId:\"Ly5fYpW_q\",scopeId:\"hAcRaDhWw\",children:/*#__PURE__*/_jsx(WorkCard,{DUE3hfemG:DkNhN2LuXTbITPxvnM,height:\"100%\",hVp_6VWvp:toResponsiveImage(FagRUdaOmTbITPxvnM),id:\"Ly5fYpW_q\",layoutId:\"Ly5fYpW_q\",OIPPPoBjX:R6ZKryxHVTbITPxvnM,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})},idTbITPxvnM);})})})})})})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:140}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ypapa1\",\"data-framer-name\":\"Footer Text\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"220.96208040821824px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"GARETH KING\"})}),className:\"framer-xktxvt\",\"data-framer-name\":\"Text\",fonts:[\"FS;Clash Grotesk-regular\"],verticalAlignment:\"top\",viewBox:\"0 0 1308 170\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:T_r7vz6M7,implicitPathVariables:undefined},{href:T_r7vz6M7,implicitPathVariables:undefined},{href:T_r7vz6M7,implicitPathVariables:undefined},{href:T_r7vz6M7,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-j90ezd-container\",nodeId:\"JPwuYGb30\",scopeId:\"hAcRaDhWw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lu8BzEP4w:{V4AKsldnT:resolvedLinks[3]},mWqTFhp_4:{V4AKsldnT:resolvedLinks[2],variant:\"KA6ilXxrI\"},sY_26EhmN:{V4AKsldnT:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"JPwuYGb30\",layoutId:\"JPwuYGb30\",style:{width:\"100%\"},V4AKsldnT:resolvedLinks[0],variant:\"cJsuhy05P\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bypw0z-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Nsuj2WbDs\",scopeId:\"hAcRaDhWw\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"Nsuj2WbDs\",intensity:30,layoutId:\"Nsuj2WbDs\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Egwyl.framer-brrrax, .framer-Egwyl .framer-brrrax { display: block; }\",\".framer-Egwyl.framer-b1pfzr { align-content: center; align-items: center; background-color: #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: 1440px; }\",\".framer-Egwyl .framer-1bm7n30-container { flex: none; height: auto; left: 0px; mix-blend-mode: difference; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-Egwyl.framer-1lm061a { background-color: rgba(0, 0, 0, 0.85); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-Egwyl.framer-umobxj-container { flex: none; height: 100vh; position: fixed; right: 0px; top: 0px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-Egwyl .framer-ql2012 { align-content: center; align-items: center; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 118px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-5jpco8 { align-content: flex-start; align-items: flex-start; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 110px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-qjxoze { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Egwyl .framer-1boo37q, .framer-Egwyl .framer-1r1v6vz, .framer-Egwyl .framer-36vgme { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-Egwyl .framer-gxpmty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Egwyl .framer-6tllgx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Egwyl .framer-6b2bfe { 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: 580px; }\",\".framer-Egwyl .framer-1uaegst { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Egwyl .framer-f885cm { 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; overflow: visible; padding: 0px; position: relative; width: 556px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Egwyl .framer-z1k287, .framer-Egwyl .framer-303e70, .framer-Egwyl .framer-1nkdk3v, .framer-Egwyl .framer-18jkzz2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-1ynpb6t, .framer-Egwyl .framer-1jkwvfm, .framer-Egwyl .framer-19cr53y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-1vwsja, .framer-Egwyl .framer-1kd6l2c, .framer-Egwyl .framer-130vcnw, .framer-Egwyl .framer-1qvou68, .framer-Egwyl .framer-3o4gwy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-565zpm, .framer-Egwyl .framer-3q255l, .framer-Egwyl .framer-1y4jfbb, .framer-Egwyl .framer-x09rgp, .framer-Egwyl .framer-15lo9dh, .framer-Egwyl .framer-1g67guq, .framer-Egwyl .framer-1invrnd, .framer-Egwyl .framer-bnda1b { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-Egwyl .framer-ar7xum, .framer-Egwyl .framer-ko0tu9, .framer-Egwyl .framer-pe00yx, .framer-Egwyl .framer-v52ho5 { align-content: center; align-items: center; background-color: #262626; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-1ricswk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-gskde7 { align-content: center; align-items: center; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 25px 0px 25px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Egwyl .framer-1fvtkgk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 658px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-g45hlu { flex: 1 0 0px; gap: 10px; height: 100%; overflow: hidden; position: relative; width: 1px; z-index: 1; }\",\".framer-Egwyl .framer-ff7py9, .framer-Egwyl .framer-fgrfie, .framer-Egwyl .framer-i4ihwt, .framer-Egwyl .framer-1crcc6e, .framer-Egwyl .framer-c7pht7 { bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-Egwyl .framer-18idhoq, .framer-Egwyl .framer-pphebf, .framer-Egwyl .framer-ox2abc, .framer-Egwyl .framer-xfbtd8, .framer-Egwyl .framer-1xgxcgk { aspect-ratio: 1 / 1; background-color: var(--token-ab161c95-f65a-4d38-b957-5a74a9bf5e79, #000000); bottom: -20px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: -20px; overflow: hidden; position: absolute; width: 40px; }\",\".framer-Egwyl .framer-ofcoz8, .framer-Egwyl .framer-d0asdv, .framer-Egwyl .framer-154l9t3, .framer-Egwyl .framer-1ejou1q, .framer-Egwyl .framer-1hgvsah { aspect-ratio: 1 / 1; background-color: var(--token-ab161c95-f65a-4d38-b957-5a74a9bf5e79, #000000); flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: absolute; right: -20px; top: -20px; width: 40px; }\",\".framer-Egwyl .framer-q48kp9 { align-content: flex-start; align-items: flex-start; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-psqic1, .framer-Egwyl .framer-ln4d52 { 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: relative; width: min-content; }\",\".framer-Egwyl .framer-1yf89at, .framer-Egwyl .framer-14q4jax { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-Egwyl .framer-1s3z7jt, .framer-Egwyl .framer-1qhf2ht { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-Egwyl .framer-aqqfts-container, .framer-Egwyl .framer-y4xt3r-container { aspect-ratio: 1.7729591836734695 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 767px); position: relative; width: 100%; }\",\".framer-Egwyl .framer-17jhk1q, .framer-Egwyl .framer-3hdhk6, .framer-Egwyl .framer-1yfsdw8 { align-content: center; align-items: center; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-40magw, .framer-Egwyl .framer-15yjxnf, .framer-Egwyl .framer-1wyico2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Egwyl .framer-gxk7go, .framer-Egwyl .framer-173m6uf, .framer-Egwyl .framer-1ripzzo, .framer-Egwyl .framer-1gxyo5w { flex: 1 0 0px; gap: 10px; height: 658px; overflow: hidden; position: relative; width: 1px; }\",\".framer-Egwyl .framer-14kvxx4, .framer-Egwyl .framer-rd3a58 { align-content: flex-start; align-items: flex-start; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-5i1mio { align-content: flex-start; align-items: flex-start; aspect-ratio: 7.2 / 1; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: flex-start; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-cj90jk-container { aspect-ratio: 1.7729591836734695 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); position: relative; width: 100%; }\",\".framer-Egwyl .framer-ci8tfk { align-content: flex-start; align-items: flex-start; aspect-ratio: 7.2 / 1; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: var(--framer-aspect-ratio-supported, 28px); justify-content: flex-start; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-1d93803 { align-content: center; align-items: center; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 658px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-lj5c85 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 658px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Egwyl .framer-122hvun { align-content: center; align-items: center; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-rmm2gp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 70px 40px 70px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-oxnrs6 { 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; min-height: 120px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-1670h4z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 100%; z-index: 1; }\",\".framer-Egwyl .framer-1228tkq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Egwyl .framer-xgcaef { display: grid; flex: 1 0 0px; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-Egwyl .framer-1pj9gut { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: auto; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Egwyl .framer-ata3ut-container { flex: 1 0 0px; height: 560px; position: relative; width: 1px; }\",\".framer-Egwyl .framer-1ypapa1 { align-content: center; align-items: center; background-color: var(--token-483f31b7-b22b-4c04-aec8-2653c142e246, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 85px 40px 0px 40px; position: relative; width: 1440px; z-index: 2; }\",\".framer-Egwyl .framer-xktxvt { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: 100%; }\",\".framer-Egwyl .framer-j90ezd-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\".framer-Egwyl .framer-bypw0z-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-Egwyl.framer-b1pfzr { overflow: hidden; width: 810px; } .framer-Egwyl .framer-1bm7n30-container { order: 0; } .framer-Egwyl .framer-ql2012 { order: 1; } .framer-Egwyl .framer-5jpco8 { flex-direction: column; gap: 74px; justify-content: flex-start; order: 2; padding: 100px 40px 0px 40px; } .framer-Egwyl .framer-qjxoze, .framer-Egwyl .framer-1boo37q, .framer-Egwyl .framer-6b2bfe, .framer-Egwyl .framer-f885cm, .framer-Egwyl .framer-1yf89at, .framer-Egwyl .framer-1s3z7jt, .framer-Egwyl .framer-14q4jax, .framer-Egwyl .framer-1qhf2ht { width: 100%; } .framer-Egwyl .framer-gxpmty { justify-content: flex-start; width: 100%; } .framer-Egwyl .framer-6tllgx { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-Egwyl .framer-gskde7 { height: 698px; order: 3; padding: 60px 20px 0px 20px; will-change: unset; } .framer-Egwyl .framer-1fvtkgk { flex: 1 0 0px; height: min-content; width: 1px; } .framer-Egwyl .framer-g45hlu { height: 658px; } .framer-Egwyl .framer-q48kp9 { order: 4; } .framer-Egwyl .framer-1qvou68, .framer-Egwyl .framer-3o4gwy { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-Egwyl .framer-aqqfts-container, .framer-Egwyl .framer-y4xt3r-container { height: var(--framer-aspect-ratio-supported, 412px); } .framer-Egwyl .framer-17jhk1q { order: 5; padding: 0px 20px 0px 20px; } .framer-Egwyl .framer-14kvxx4 { order: 6; } .framer-Egwyl .framer-3hdhk6 { order: 7; padding: 0px 20px 0px 20px; } .framer-Egwyl .framer-5i1mio { order: 8; } .framer-Egwyl .framer-rd3a58 { order: 10; } .framer-Egwyl .framer-1yfsdw8 { order: 9; padding: 0px 20px 0px 20px; } .framer-Egwyl .framer-ci8tfk { order: 11; } .framer-Egwyl .framer-1d93803 { order: 12; padding: 0px 20px 0px 20px; } .framer-Egwyl .framer-122hvun { order: 13; } .framer-Egwyl .framer-rmm2gp { padding: 40px; } .framer-Egwyl .framer-1228tkq, .framer-Egwyl .framer-ata3ut-container { height: 340px; } .framer-Egwyl .framer-1ypapa1 { order: 14; width: 100%; } .framer-Egwyl .framer-j90ezd-container { order: 16; } .framer-Egwyl .framer-bypw0z-container { order: 15; }}\",\"@media (max-width: 809px) { .framer-Egwyl.framer-b1pfzr { overflow: hidden; width: 390px; } .framer-Egwyl.framer-umobxj-container { left: 0px; width: unset; } .framer-Egwyl .framer-ql2012 { gap: 100px; height: 118px; justify-content: flex-start; min-height: unset; } .framer-Egwyl .framer-5jpco8 { flex-direction: column; gap: 60px; justify-content: flex-start; padding: 60px 20px 60px 20px; } .framer-Egwyl .framer-qjxoze, .framer-Egwyl .framer-1boo37q, .framer-Egwyl .framer-gxpmty, .framer-Egwyl .framer-6b2bfe, .framer-Egwyl .framer-f885cm, .framer-Egwyl .framer-1r1v6vz, .framer-Egwyl .framer-1s3z7jt, .framer-Egwyl .framer-36vgme, .framer-Egwyl .framer-1qhf2ht { width: 100%; } .framer-Egwyl .framer-6tllgx { flex: 1 0 0px; overflow: hidden; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-Egwyl .framer-gskde7 { height: 548px; padding: 0px 15px 0px 15px; will-change: unset; } .framer-Egwyl .framer-1fvtkgk, .framer-Egwyl .framer-gxk7go, .framer-Egwyl .framer-173m6uf, .framer-Egwyl .framer-1ripzzo, .framer-Egwyl .framer-1gxyo5w { height: 548px; } .framer-Egwyl .framer-g45hlu { flex: none; width: 100%; } .framer-Egwyl .framer-q48kp9 { gap: 60px; padding: 100px 20px 100px 20px; } .framer-Egwyl .framer-1qvou68, .framer-Egwyl .framer-3o4gwy { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-Egwyl .framer-psqic1, .framer-Egwyl .framer-ln4d52 { overflow: hidden; width: 100%; } .framer-Egwyl .framer-1invrnd, .framer-Egwyl .framer-bnda1b { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-Egwyl .framer-1yf89at, .framer-Egwyl .framer-14q4jax { gap: 40px; width: 100%; } .framer-Egwyl .framer-aqqfts-container, .framer-Egwyl .framer-y4xt3r-container { height: var(--framer-aspect-ratio-supported, 198px); } .framer-Egwyl .framer-17jhk1q, .framer-Egwyl .framer-3hdhk6, .framer-Egwyl .framer-1yfsdw8 { height: 548px; padding: 0px 15px 0px 15px; } .framer-Egwyl .framer-14kvxx4, .framer-Egwyl .framer-rd3a58, .framer-Egwyl .framer-ci8tfk { gap: 50px; padding: 100px 20px 100px 20px; } .framer-Egwyl .framer-1d93803 { height: 548px; min-height: unset; padding: 0px 15px 0px 15px; } .framer-Egwyl .framer-122hvun { overflow: visible; } .framer-Egwyl .framer-rmm2gp { align-content: center; align-items: center; padding: 60px 20px 60px 20px; } .framer-Egwyl .framer-oxnrs6 { align-content: center; align-items: center; } .framer-Egwyl .framer-1670h4z { overflow: visible; padding: 0px 20px 0px 20px; } .framer-Egwyl .framer-1228tkq { flex-direction: column; justify-content: flex-start; overflow: visible; } .framer-Egwyl .framer-xgcaef { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; width: 100%; } .framer-Egwyl .framer-1pj9gut { align-self: unset; flex-direction: column; height: min-content; } .framer-Egwyl .framer-ata3ut-container { flex: none; height: 340px; width: 100%; } .framer-Egwyl .framer-1ypapa1 { padding: 70px 20px 0px 20px; width: 100%; }}\",\"@media (min-width: 1920px) { .framer-Egwyl.framer-b1pfzr { overflow: hidden; width: 1920px; } .framer-Egwyl .framer-gskde7, .framer-Egwyl .framer-17jhk1q, .framer-Egwyl .framer-3hdhk6, .framer-Egwyl .framer-1yfsdw8 { height: 895px; } .framer-Egwyl .framer-1fvtkgk, .framer-Egwyl .framer-40magw, .framer-Egwyl .framer-gxk7go, .framer-Egwyl .framer-15yjxnf, .framer-Egwyl .framer-173m6uf, .framer-Egwyl .framer-1wyico2, .framer-Egwyl .framer-1ripzzo, .framer-Egwyl .framer-1gxyo5w { height: 100%; } .framer-Egwyl .framer-1s3z7jt, .framer-Egwyl .framer-1qhf2ht { width: 1156px; } .framer-Egwyl .framer-aqqfts-container, .framer-Egwyl .framer-y4xt3r-container { height: var(--framer-aspect-ratio-supported, 1038px); } .framer-Egwyl .framer-5i1mio { height: var(--framer-aspect-ratio-supported, 267px); } .framer-Egwyl .framer-1d93803 { height: 895px; min-height: unset; } .framer-Egwyl .framer-lj5c85 { height: 100%; min-height: unset; } .framer-Egwyl .framer-1228tkq, .framer-Egwyl .framer-ata3ut-container { height: 680px; } .framer-Egwyl .framer-1ypapa1 { width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6812\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sY_26EhmN\":{\"layout\":[\"fixed\",\"auto\"]},\"mWqTFhp_4\":{\"layout\":[\"fixed\",\"auto\"]},\"Lu8BzEP4w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"eYb8X1qTD\":{\"pattern\":\":eYb8X1qTD\",\"name\":\"top\"}}\n * @framerResponsiveScreen\n */const FramerhAcRaDhWw=withCSS(Component,css,\"framer-Egwyl\");export default FramerhAcRaDhWw;FramerhAcRaDhWw.displayName=\"Page\";FramerhAcRaDhWw.defaultProps={height:6812,width:1440};addFonts(FramerhAcRaDhWw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/O462VY6O6FTQCS72XVMTQHXAM4NN5CY3/TWF57ITZORMJ3MEWLQQIVO6BMXIB6FUR/MJQFMMOTEGNXDVM7HBBDTQHTVB2M7Y6G.woff2\",weight:\"400\"}]},...NavigationBarFonts,...SidebarFonts,...YouTubeFonts,...WorkCardFonts,...FooterFonts,...SmoothScrollFonts,...CircleCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhAcRaDhWw\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"eYb8X1qTD\\\":{\\\"pattern\\\":\\\":eYb8X1qTD\\\",\\\"name\\\":\\\"top\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sY_26EhmN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mWqTFhp_4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Lu8BzEP4w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"6812\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"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", "fonts", "css", "className", "NavigationBarFonts", "getFonts", "RCnaNQOyx_default", "SidebarFonts", "za5Wivl6B_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithFX", "withFX", "Image2", "MotionSectionWithOptimizedAppearEffect", "YouTubeFonts", "Youtube", "WorkCardFonts", "ZwEZTdmZ7_default", "MotionSectionWithFX", "FooterFonts", "XK_Cy5AdA_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "CircleCursorFonts", "GF5osqdRk_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "animation6", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation7", "animation8", "transition4", "animation9", "animation10", "animation11", "animation12", "toResponsiveImage", "value", "isSet", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition5", "cursor", "cursor1", "cursor2", "cursor3", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "MDbE5oYbR_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "DkNhN2LuX", "Yv0c5Oz9h", "pDMquoxVy", "uwANoGnWl", "wDvUNxy8Q", "nOwjc5BnF", "N2Z39PC_7", "KxiAG9vcP", "pUgChp0PR", "giE7zZobH", "SzN3iMSa1", "hYUiV_nlW", "rh8a7lEcE", "iCqpdCr_d", "jGHkrt2Ag", "nnjikzSRcTbITPxvnM", "FagRUdaOmTbITPxvnM", "DkNhN2LuXTbITPxvnM", "R6ZKryxHVTbITPxvnM", "idTbITPxvnM", "T_r7vz6M7", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "LlGjrvFdC3bnx0g", "overlay", "loadMore", "args", "ZtbBS6tNf1wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "visible1", "isDisplayed", "visible2", "visible3", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "Link", "ResolveLinks", "resolvedLinks", "css", "FramerhAcRaDhWw", "withCSS", "hAcRaDhWw_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
