{"version":3,"file":"DH0aqeL7GljjLFDckYN1v1BwhLcWdbWniSS0s4Lj5Oc.DM3iNIaH.mjs","names":["addPropertyOverrides","VideoFonts","ResponsiveVimeoPlayerFonts","cycleOrder","serializationHash","variantClassNames","transition1","transition2","isSet","toResponsiveImage","transformTemplate1","transition3","animation","animation1","transition4","animation2","animation3","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","PrimaryButton","serializationHash","variantClassNames","transition1","toResponsiveImage","isSet","humanReadableVariantMap","getProps","Component","className","OraProjects","_Fragment","dHg3trIHkRyAwKEJkZ","FnwgSIUrARyAwKEJkZ","iC9pVt3ffRyAwKEJkZ","idRyAwKEJkZ","TXmd62wMmRyAwKEJkZ","XJ8ZUbM6yRyAwKEJkZ","Image","dHg3trIHkP0BsIBWLX","FnwgSIUrAP0BsIBWLX","iC9pVt3ffP0BsIBWLX","idP0BsIBWLX","TXmd62wMmP0BsIBWLX","XJ8ZUbM6yP0BsIBWLX","css","fonts","css","className","Twice_navigation","NavigationMobile","MobileFullNavigation","HeroImageVideoProjectsPage","LineAnimationGlobal","Twice_button","OraHomeProjectsRow","Twice_footer","OraProjects","metadata","className","PropertyOverrides","_Fragment","Image","css"],"sources":["https:/framerusercontent.com/modules/CTE2NcODBFj6DSqWs4LY/r4507AuLsunxr3NmnfDL/Vimeo_Embedder.js","https:/framerusercontent.com/modules/7KqJUYyynQmjwUlfVNSk/NM3ENEwksDEBRT4d8sVz/NFM2OS8GO.js","https:/framerusercontent.com/modules/4DcAxejIdnsDjHOeilA8/fWq4QWotOAneJYK6Slpf/WdaBfsjHK.js","https:/framerusercontent.com/modules/ZEXNEj6socRsgVoZXHZY/wKF8LNTjs7AXVz8cMJup/cYXc5GuOi.js","https:/framerusercontent.com/modules/rX4xRykKC5RBUcCUtcab/quZm52esUIen4xCc0B4X/vKctiIGyU.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useRef,useState}from\"react\";/**\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function ResponsiveVimeoPlayer(props){const{vimeoUrl,autoplay,loop,muted,controls,scaleFactor,posterImage,backgroundColor,style}=props;const containerRef=useRef(null);const[videoId,setVideoId]=useState(\"\");const[isPlaying,setIsPlaying]=useState(autoplay);// Extract video ID from Vimeo URL\nuseEffect(()=>{if(!vimeoUrl)return;const regex=/(?:vimeo\\.com\\/|player\\.vimeo\\.com\\/video\\/)(\\d+)/;const match=vimeoUrl.match(regex);if(match&&match[1]){setVideoId(match[1]);}else{console.error(\"Invalid Vimeo URL format\");}},[vimeoUrl]);useEffect(()=>{if(!videoId||!containerRef.current)return;// Nur Video laden wenn kein Poster oder wenn Video bereits spielt\nif(!posterImage||isPlaying){// Leeren des Containers\ncontainerRef.current.innerHTML=\"\";// Äußerer Container für den Overflow und die feste Positionierung\nconst outerContainer=document.createElement(\"div\");outerContainer.style.position=\"absolute\";outerContainer.style.top=\"0\";outerContainer.style.left=\"0\";outerContainer.style.width=\"100%\";outerContainer.style.height=\"100%\";outerContainer.style.overflow=\"hidden\";outerContainer.style.backgroundColor=backgroundColor// Hintergrundfarbe anwenden\n;// Container für das 120%-breite Element\nconst wideContainer=document.createElement(\"div\");wideContainer.style.position=\"absolute\";wideContainer.style.top=\"0\";wideContainer.style.left=\"-10%\"// Zentrieren des 120% breiten Elements\n;wideContainer.style.width=\"120%\"// 120% für den Hover-Effekt\n;wideContainer.style.height=\"100%\"// 100% Höhe\n;wideContainer.style.overflow=\"hidden\"// Wichtig, um überlaufenden Inhalt abzuschneiden\n;wideContainer.style.backgroundColor=backgroundColor// Auch auf den inneren Container anwenden\n;// Erstellen der iFrame-URL mit allen Parametern\nconst iframeUrl=new URL(`https://player.vimeo.com/video/${videoId}`);const params=new URLSearchParams;if(autoplay||isPlaying)params.append(\"autoplay\",\"1\");if(loop)params.append(\"loop\",\"1\");if(muted)params.append(\"muted\",\"1\");if(!controls)params.append(\"controls\",\"0\");params.append(\"background\",\"1\");params.append(\"transparent\",\"0\");params.append(\"dnt\",\"1\");// Videostart-Events aktivieren\nparams.append(\"api\",\"1\");// Standard responsive Parameter für Vimeo\nparams.append(\"responsive\",\"1\");// URL mit Parametern zusammenfügen\niframeUrl.search=params.toString();// HTML für den Vimeo-Player mit Hintergrundfarbe\nwideContainer.innerHTML=`\n        <div style=\"position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding-bottom: 0; background-color: ${backgroundColor};\">\n          <iframe \n            src=\"${iframeUrl.toString()}\" \n            frameborder=\"0\" \n            allow=\"autoplay; fullscreen; picture-in-picture\" \n            allowfullscreen\n            style=\"position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%) scale(${scaleFactor}); \n                  object-fit: cover; background-color: ${backgroundColor};\"\n          ></iframe>\n        </div>\n      `;// Container zum DOM hinzufügen\nouterContainer.appendChild(wideContainer);containerRef.current.appendChild(outerContainer);// Beobachter für Größenänderungen, um die 120% Breite beizubehalten\nconst resizeObserver=new ResizeObserver(()=>{if(wideContainer){wideContainer.style.width=\"120%\";wideContainer.style.height=\"100%\";wideContainer.style.left=\"-10%\"// Zentrieren beibehalten\n;wideContainer.style.backgroundColor=backgroundColor// Hintergrundfarbe beibehalten\n;}});if(containerRef.current){resizeObserver.observe(containerRef.current);}return()=>{resizeObserver.disconnect();};}},[videoId,autoplay,loop,muted,controls,scaleFactor,isPlaying,posterImage,backgroundColor]);// Funktion zum Starten des Videos\nconst startVideo=()=>{setIsPlaying(true);};return /*#__PURE__*/_jsx(\"div\",{ref:containerRef,style:{...style,position:\"relative\",width:\"100%\",height:\"100%\",overflow:\"hidden\",backgroundColor:backgroundColor},children:posterImage&&!isPlaying&&/*#__PURE__*/_jsxs(\"div\",{style:{position:\"absolute\",top:0,left:\"-10%\",width:\"120%\",height:\"100%\",zIndex:10,overflow:\"hidden\",cursor:\"pointer\",backgroundColor:backgroundColor},onClick:startVideo,children:[/*#__PURE__*/_jsx(\"img\",{src:posterImage,alt:\"Video Vorschau\",style:{width:\"100%\",height:\"100%\",objectFit:\"cover\",transformOrigin:\"center center\"}}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:\"80px\",height:\"80px\",borderRadius:\"50%\",backgroundColor:\"rgba(0, 0, 0, 0.6)\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(\"div\",{style:{width:\"0\",height:\"0\",borderTop:\"20px solid transparent\",borderBottom:\"20px solid transparent\",borderLeft:\"30px solid white\",marginLeft:\"10px\"}})})]})});}ResponsiveVimeoPlayer.defaultProps={vimeoUrl:\"https://vimeo.com/123456789\",autoplay:false,loop:false,muted:false,controls:true,scaleFactor:1.5,posterImage:\"\",backgroundColor:\"#000000\"};addPropertyControls(ResponsiveVimeoPlayer,{vimeoUrl:{type:ControlType.String,title:\"Vimeo URL\",placeholder:\"https://vimeo.com/123456789\"},autoplay:{type:ControlType.Boolean,title:\"Autoplay\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},loop:{type:ControlType.Boolean,title:\"Loop\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},muted:{type:ControlType.Boolean,title:\"Muted\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},controls:{type:ControlType.Boolean,title:\"Controls\",defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\"},scaleFactor:{type:ControlType.Number,title:\"Skalierungsfaktor\",defaultValue:1.5,min:1,max:3,step:.1,displayStepper:true},posterImage:{type:ControlType.Image,title:\"Poster-Bild\"},backgroundColor:{type:ControlType.Color,title:\"Hintergrundfarbe\",defaultValue:\"#000000\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ResponsiveVimeoPlayer\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth any\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vimeo_Embedder.map","// Generated by Framer (ee1e8a0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import ResponsiveVimeoPlayer from\"https://framerusercontent.com/modules/CTE2NcODBFj6DSqWs4LY/r4507AuLsunxr3NmnfDL/Vimeo_Embedder.js\";const VideoFonts=getFonts(Video);const ResponsiveVimeoPlayerFonts=getFonts(ResponsiveVimeoPlayer);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const cycleOrder=[\"VHdeBoiFa\",\"Z_bsp3dTD\",\"uW4xCRh39\"];const serializationHash=\"framer-Gs3Of\";const variantClassNames={uW4xCRh39:\"framer-v-1kmby4y\",VHdeBoiFa:\"framer-v-qqtbu8\",Z_bsp3dTD:\"framer-v-d1ta03\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition2={delay:0,duration:2,ease:[.2,.93,.37,1.01],type:\"tween\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={delay:1.7,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const transition4={delay:1.9,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation2={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Initial State\":\"VHdeBoiFa\",\"On Appear\":\"uW4xCRh39\",Variant:\"Z_bsp3dTD\"};const getProps=({client,height,heroVideoURL,id,imageHero,skalierungsfaktor,title,videoPoster,width,...props})=>{return{...props,B5sCjwcF_:heroVideoURL??props.B5sCjwcF_,cM8JGBzkE:client??props.cM8JGBzkE??\"snipes\",eKMOq8490:title??props.eKMOq8490??\"St. Deniz\",s7UosfiRw:imageHero??props.s7UosfiRw,V9TOCqVxo:videoPoster??props.V9TOCqVxo,variant:humanReadableVariantMap[props.variant]??props.variant??\"VHdeBoiFa\",xLNnqr6Jk:skalierungsfaktor??props.xLNnqr6Jk??1.5};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{style,className,layoutId,variant,s7UosfiRw,B5sCjwcF_,eKMOq8490,V9TOCqVxo,cM8JGBzkE,xLNnqr6Jk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VHdeBoiFa\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1xtg1go=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uW4xCRh39\"),1200);});useOnVariantChange(baseVariant,{Z_bsp3dTD:onAppear1xtg1go});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(isSet(B5sCjwcF_));const visible1=isSet(B5sCjwcF_);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({Z_bsp3dTD:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qqtbu8\",className,classNames),\"data-framer-name\":\"Initial State\",layoutDependency:layoutDependency,layoutId:\"VHdeBoiFa\",ref:refBinding,style:{...style},...addPropertyOverrides({uW4xCRh39:{\"data-framer-name\":\"On Appear\"},Z_bsp3dTD:{\"data-framer-name\":undefined,\"data-highlight\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u7u9db\",\"data-framer-name\":\"Image / Video Wrapper\",layoutDependency:layoutDependency,layoutId:\"CXdBKOcNk\",children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||800)-(-200+(componentViewport?.height||800)*1)+((componentViewport?.height||800)*1*.5000000000000002-(componentViewport?.height||800)*1*.95/2)),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`,...toResponsiveImage(s7UosfiRw)},className:\"framer-74ee42\",\"data-framer-name\":\"Image Hero\",layoutDependency:layoutDependency,layoutId:\"Lt7qfU9X3\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:0},variants:{uW4xCRh39:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,opacity:1},Z_bsp3dTD:{opacity:.9}},...addPropertyOverrides({uW4xCRh39:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1*.5000000000000002-Math.max(0,((componentViewport?.height||800)-0-0)/1)*1*1/2)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(s7UosfiRw)}},Z_bsp3dTD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(Math.max(0,((componentViewport?.height||800)-0-0)/1)*1*.5000000000000002-Math.max(0,((componentViewport?.height||800)-0-0)/1)*1*.95/2)),sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`,...toResponsiveImage(s7UosfiRw)}}},baseVariant,gestureVariant)}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kisav6-container\",\"data-framer-name\":\"Video Hero\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HH9M8K8Re-container\",name:\"Video Hero\",nodeId:\"HH9M8K8Re\",rendersWithMotion:true,scopeId:\"NFM2OS8GO\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"HH9M8K8Re\",isMixedBorderRadius:false,layoutId:\"HH9M8K8Re\",loop:true,muted:true,name:\"Video Hero\",objectFit:\"cover\",playing:true,poster:toImageSrc(V9TOCqVxo),posterEnabled:true,srcType:\"URL\",srcUrl:B5sCjwcF_,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\",...addPropertyOverrides({uW4xCRh39:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,topLeftRadius:0,topRightRadius:0}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18qwc26-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"uhcE43K0R-container\",nodeId:\"uhcE43K0R\",rendersWithMotion:true,scopeId:\"NFM2OS8GO\",children:/*#__PURE__*/_jsx(ResponsiveVimeoPlayer,{autoplay:true,backgroundColor:\"rgb(13, 13, 13)\",controls:false,height:\"100%\",id:\"uhcE43K0R\",layoutId:\"uhcE43K0R\",loop:true,muted:true,scaleFactor:xLNnqr6Jk,style:{height:\"100%\",width:\"100%\"},vimeoUrl:B5sCjwcF_,width:\"100%\",...addPropertyOverrides({Z_bsp3dTD:{vimeoUrl:\"\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o6dd5g\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"WP4xVBPzb\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, 0.39) 100%)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,opacity:0},variants:{uW4xCRh39:{opacity:1},Z_bsp3dTD:{opacity:1}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jafoe6\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"HmpE0ZYfH\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hmu298\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"WuHREpOxY\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO0ZGIERJTiBmb3IgUFVNQSBCb2xk\",\"--framer-font-family\":'\"FF DIN for PUMA Bold\", \"FF DIN for PUMA Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 2.75)\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"St. Deniz\"})}),className:\"framer-onm38w\",\"data-framer-appear-id\":\"onm38w\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;FF DIN for PUMA Bold\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"wahUIANOd\",optimized:true,style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},text:eKMOq8490,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qp24hx\",\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"cFOm_S0vY\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.6,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Zvcm11bGEgQ29uZGVuc2VkIEJvbGQ=\",\"--framer-font-family\":'\"Formula Condensed Bold\", \"Formula Condensed Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 0.88)\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(192, 202, 201))\",\"--framer-text-transform\":\"uppercase\"},children:\"snipes\"})}),className:\"framer-6bn7pl\",\"data-framer-appear-id\":\"6bn7pl\",\"data-framer-name\":\"Category\",fonts:[\"CUSTOM;Formula Condensed Bold\"],initial:animation3,layoutDependency:layoutDependency,layoutId:\"G9RzO9Mt4\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(192, 202, 201)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6,transformPerspective:1200},text:cM8JGBzkE,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Gs3Of.framer-jv8jw0, .framer-Gs3Of .framer-jv8jw0 { display: block; }\",\".framer-Gs3Of.framer-qqtbu8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 800px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Gs3Of .framer-1u7u9db { align-content: center; align-items: center; bottom: -200px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-Gs3Of .framer-74ee42 { flex: none; height: 95%; left: calc(50.00000000000002% - 95% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 95% / 2); width: 95%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Gs3Of .framer-1kisav6-container { flex: none; height: 95%; position: relative; width: 95%; z-index: 1; }\",\".framer-Gs3Of .framer-18qwc26-container { flex: none; height: 95%; left: calc(50.00000000000002% - 95% / 2); position: absolute; top: calc(50.00000000000002% - 95% / 2); width: 95%; z-index: 1; }\",\".framer-Gs3Of .framer-o6dd5g { flex: none; gap: 5px; height: 95%; left: calc(50.00000000000002% - 95% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 95% / 2); width: 95%; z-index: 3; }\",\".framer-Gs3Of .framer-jafoe6 { align-content: flex-start; align-items: flex-start; bottom: -300px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px 0px 0px 100px; position: absolute; width: 100%; z-index: 4; }\",\".framer-Gs3Of .framer-1hmu298 { 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; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Gs3Of .framer-onm38w, .framer-Gs3Of .framer-6bn7pl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Gs3Of .framer-qp24hx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Gs3Of.framer-v-d1ta03 .framer-1u7u9db, .framer-Gs3Of.framer-v-1kmby4y .framer-1u7u9db { bottom: unset; flex: 1 0 0px; height: 1px; left: unset; position: relative; }\",\".framer-Gs3Of.framer-v-d1ta03 .framer-jafoe6 { bottom: 50px; }\",\".framer-Gs3Of.framer-v-1kmby4y .framer-74ee42 { height: 100%; left: calc(50.00000000000002% - 100% / 2); top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: unset; }\",\".framer-Gs3Of.framer-v-1kmby4y .framer-1kisav6-container { height: 100%; width: 100%; }\",\".framer-Gs3Of.framer-v-1kmby4y .framer-18qwc26-container, .framer-Gs3Of.framer-v-1kmby4y .framer-o6dd5g { height: 100%; left: calc(50.00000000000002% - 100% / 2); top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-Gs3Of.framer-v-1kmby4y .framer-jafoe6 { bottom: 50px; padding: 0px 0px 0px 70px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z_bsp3dTD\":{\"layout\":[\"fixed\",\"fixed\"]},\"uW4xCRh39\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"s7UosfiRw\":\"imageHero\",\"B5sCjwcF_\":\"heroVideoURL\",\"eKMOq8490\":\"title\",\"V9TOCqVxo\":\"videoPoster\",\"cM8JGBzkE\":\"client\",\"xLNnqr6Jk\":\"skalierungsfaktor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNFM2OS8GO=withCSS(Component,css,\"framer-Gs3Of\");export default FramerNFM2OS8GO;FramerNFM2OS8GO.displayName=\"Hero Image - Video Projects Page\";FramerNFM2OS8GO.defaultProps={height:800,width:1200};addPropertyControls(FramerNFM2OS8GO,{variant:{options:[\"VHdeBoiFa\",\"Z_bsp3dTD\",\"uW4xCRh39\"],optionTitles:[\"Initial State\",\"Variant\",\"On Appear\"],title:\"Variant\",type:ControlType.Enum},s7UosfiRw:{title:\"Image Hero\",type:ControlType.ResponsiveImage},B5sCjwcF_:{defaultValue:\"\",title:\"Hero Video URL\",type:ControlType.String},eKMOq8490:{defaultValue:\"St. Deniz\",title:\"Title\",type:ControlType.String},V9TOCqVxo:{title:\"Video Poster\",type:ControlType.ResponsiveImage},cM8JGBzkE:{defaultValue:\"snipes\",description:\"\",displayTextArea:false,title:\"Client\",type:ControlType.String},xLNnqr6Jk:{defaultValue:1.5,displayStepper:true,max:3,min:1,step:.1,title:\"Skalierungsfaktor\",type:ControlType.Number}});addFonts(FramerNFM2OS8GO,[{explicitInter:true,fonts:[{family:\"FF DIN for PUMA Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Aq2FUOxyWkQOIiasPBlnNee4AA.woff2\"},{family:\"Formula Condensed Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/4HTo7pUwCFDIYSJspcYmauC3H8.woff2\"}]},...VideoFonts,...ResponsiveVimeoPlayerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNFM2OS8GO\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"s7UosfiRw\\\":\\\"imageHero\\\",\\\"B5sCjwcF_\\\":\\\"heroVideoURL\\\",\\\"eKMOq8490\\\":\\\"title\\\",\\\"V9TOCqVxo\\\":\\\"videoPoster\\\",\\\"cM8JGBzkE\\\":\\\"client\\\",\\\"xLNnqr6Jk\\\":\\\"skalierungsfaktor\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z_bsp3dTD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uW4xCRh39\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"800\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NFM2OS8GO.map","// Generated by Framer (ee1e8a0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import ResponsiveVimeoPlayer from\"https://framerusercontent.com/modules/CTE2NcODBFj6DSqWs4LY/r4507AuLsunxr3NmnfDL/Vimeo_Embedder.js\";import OraProjects from\"https://framerusercontent.com/modules/46TlqNDiSU6GvFlT8X0Z/6ffH68EutI2hm14tY4Un/PhixcoSCu.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rWkyRkXWKaZTS8PScuBV/1FRQihmZzCZwmngERPu2/cAhehJvI4.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/S4S9Igrl2dcpMvdiWf5T/2tmgXjcCj7DO9o1JZ1C4/THmedGvj0.js\";import PrimaryButton from\"https://framerusercontent.com/modules/86Go2R6mz8jHX6nzPJ3Y/6BCGzHMJREdYWhwrw0Gi/rt_SAwhgS.js\";const ResponsiveVimeoPlayerFonts=getFonts(ResponsiveVimeoPlayer);const PrimaryButtonFonts=getFonts(PrimaryButton);const VideoFonts=getFonts(Video);const cycleOrder=[\"rpif4DV3T\",\"Y8avS7pTM\",\"dnBUXczYL\",\"OJGlHUuFI\",\"cm7oKisEJ\",\"JyjZ0P0wF\",\"wmNFGK5vh\",\"pBVHXVYA0\",\"zG6fZngeB\"];const serializationHash=\"framer-IWQkt\";const variantClassNames={cm7oKisEJ:\"framer-v-q8i6ig\",dnBUXczYL:\"framer-v-11su1bn\",JyjZ0P0wF:\"framer-v-14pfp6f\",OJGlHUuFI:\"framer-v-1eq05zh\",pBVHXVYA0:\"framer-v-1kxr7m9\",rpif4DV3T:\"framer-v-1l2ncor\",wmNFGK5vh:\"framer-v-85fj56\",Y8avS7pTM:\"framer-v-ep3zxm\",zG6fZngeB:\"framer-v-11iut63\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const query=(prequery,{mOlwWpG5v})=>prequery({from:{alias:\"RyAwKEJkZ\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"RyAwKEJkZ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"RyAwKEJkZ\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"XJ8ZUbM6y\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"RyAwKEJkZ\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:mOlwWpG5v},type:\"BinaryOperation\"}});const query1=(prequery,{QjFw7n4_C})=>prequery({from:{alias:\"RyAwKEJkZ\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"RyAwKEJkZ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"RyAwKEJkZ\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"XJ8ZUbM6y\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"RyAwKEJkZ\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:QjFw7n4_C},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query2=(prequery,{uilfSt1nU})=>prequery({from:{alias:\"P0BsIBWLX\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"P0BsIBWLX\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"P0BsIBWLX\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"XJ8ZUbM6y\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"P0BsIBWLX\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:uilfSt1nU},type:\"BinaryOperation\"}});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Before Scroll State - Below Hero\":\"OJGlHUuFI\",\"Home Project Single - Wide\":\"cm7oKisEJ\",\"Home Project Single Wide - Mobile\":\"pBVHXVYA0\",\"Home Projects - Initial State\":\"rpif4DV3T\",\"Home Projects - Left Open\":\"Y8avS7pTM\",\"Home Projects - Mobile\":\"wmNFGK5vh\",\"Home Projects - Right Open\":\"dnBUXczYL\",\"Home Projects - Tablet Below Hero\":\"zG6fZngeB\",\"Home Projects - Tablet\":\"JyjZ0P0wF\"};const getProps=({height,id,sortingImageWide,sortingLeft,sortingRight,width,...props})=>{return{...props,mOlwWpG5v:sortingLeft??props.mOlwWpG5v??1,QjFw7n4_C:sortingImageWide??props.QjFw7n4_C??1,uilfSt1nU:sortingRight??props.uilfSt1nU??3,variant:humanReadableVariantMap[props.variant]??props.variant??\"rpif4DV3T\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{style,className,layoutId,variant,mOlwWpG5v,uilfSt1nU,QjFw7n4_C,dHg3trIHkRyAwKEJkZ,XJ8ZUbM6yRyAwKEJkZ,TXmd62wMmRyAwKEJkZ,FnwgSIUrARyAwKEJkZ,iC9pVt3ffRyAwKEJkZ,idRyAwKEJkZ,dHg3trIHkP0BsIBWLX,XJ8ZUbM6yP0BsIBWLX,TXmd62wMmP0BsIBWLX,FnwgSIUrAP0BsIBWLX,iC9pVt3ffP0BsIBWLX,idP0BsIBWLX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rpif4DV3T\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter3ag3xv=activeVariantCallback(async(...args)=>{setVariant(\"Y8avS7pTM\");});const onMouseLeavel6c2cl=activeVariantCallback(async(...args)=>{setVariant(\"rpif4DV3T\");});const onMouseEnter1bra6s1=activeVariantCallback(async(...args)=>{setVariant(\"dnBUXczYL\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if([\"cm7oKisEJ\",\"pBVHXVYA0\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1l2ncor\",className,classNames),\"data-framer-name\":\"Home Projects - Initial State\",layoutDependency:layoutDependency,layoutId:\"rpif4DV3T\",ref:refBinding,style:{...style},...addPropertyOverrides({cm7oKisEJ:{\"data-framer-name\":\"Home Project Single - Wide\"},dnBUXczYL:{\"data-framer-name\":\"Home Projects - Right Open\"},JyjZ0P0wF:{\"data-framer-name\":\"Home Projects - Tablet\"},OJGlHUuFI:{\"data-framer-name\":\"Before Scroll State - Below Hero\"},pBVHXVYA0:{\"data-framer-name\":\"Home Project Single Wide - Mobile\"},wmNFGK5vh:{\"data-framer-name\":\"Home Projects - Mobile\"},Y8avS7pTM:{\"data-framer-name\":\"Home Projects - Left Open\"},zG6fZngeB:{\"data-framer-name\":\"Home Projects - Tablet Below Hero\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1picr1v\",\"data-framer-name\":\"Home Project Left\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RyAwKEJkZ\",onMouseEnter:onMouseEnter3ag3xv,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({cm7oKisEJ:{\"data-highlight\":undefined,onMouseEnter:undefined},JyjZ0P0wF:{\"data-highlight\":undefined,onMouseEnter:undefined},OJGlHUuFI:{\"data-highlight\":undefined,onMouseEnter:undefined},pBVHXVYA0:{\"data-highlight\":undefined,onMouseEnter:undefined},wmNFGK5vh:{\"data-highlight\":undefined,onMouseEnter:undefined},Y8avS7pTM:{onMouseLeave:onMouseLeavel6c2cl},zG6fZngeB:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RyAwKEJkZ\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"RyAwKEJkZ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"RyAwKEJkZ\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"XJ8ZUbM6y\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"RyAwKEJkZ\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:mOlwWpG5v},type:\"BinaryOperation\"}},...addPropertyOverrides({cm7oKisEJ:{query:{from:{alias:\"RyAwKEJkZ\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"RyAwKEJkZ\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"RyAwKEJkZ\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"XJ8ZUbM6y\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"RyAwKEJkZ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"RyAwKEJkZ\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:QjFw7n4_C},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({dHg3trIHk:dHg3trIHkRyAwKEJkZ,FnwgSIUrA:FnwgSIUrARyAwKEJkZ,iC9pVt3ff:iC9pVt3ffRyAwKEJkZ,id:idRyAwKEJkZ,TXmd62wMm:TXmd62wMmRyAwKEJkZ,XJ8ZUbM6y:XJ8ZUbM6yRyAwKEJkZ},index)=>{XJ8ZUbM6yRyAwKEJkZ??=\"\";TXmd62wMmRyAwKEJkZ??=\"\";FnwgSIUrARyAwKEJkZ??=\"\";iC9pVt3ffRyAwKEJkZ??=\"\";const visible=isSet(XJ8ZUbM6yRyAwKEJkZ);return /*#__PURE__*/_jsx(LayoutGroup,{id:`RyAwKEJkZ-${idRyAwKEJkZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11f29du\",\"data-framer-name\":\"Product Card\",layoutDependency:layoutDependency,layoutId:\"JP1bygBnX\",children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3304,intrinsicWidth:2400},className:\"framer-9sc2ms\",\"data-framer-name\":\"Image Wrapper Left\",layoutDependency:layoutDependency,layoutId:\"zycC2fkJo\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||605)-15-590)/2)+0+0+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 1px) * 1.2)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)},className:\"framer-15m2r2a\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mJ2a8r0NM\",...addPropertyOverrides({cm7oKisEJ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-590)/2)+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)}},dnBUXczYL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||605)-15-590)/2)+0+0+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 2.5, 1px) * 1.5)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)}},JyjZ0P0wF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-490)/2)+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 1px)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)}},OJGlHUuFI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(15+((componentViewport?.height||620)-30-590)/2)+0+0+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 1px) * 1.2)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)}},pBVHXVYA0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-490)/2)+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)}},wmNFGK5vh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)}},Y8avS7pTM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-590)/2)+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 45px) * 0.6, 1px)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)}},zG6fZngeB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(15+((componentViewport?.height||200)-30-490)/2)+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 1px)`,...toResponsiveImage(dHg3trIHkRyAwKEJkZ)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1buv9ku\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"xn5PQDaCe\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%)\"}}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fyct21-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"rNq0Szu5_-container\",nodeId:\"rNq0Szu5_\",rendersWithMotion:true,scopeId:\"WdaBfsjHK\",children:/*#__PURE__*/_jsx(ResponsiveVimeoPlayer,{autoplay:true,backgroundColor:\"rgb(0, 0, 0)\",controls:false,height:\"100%\",id:\"rNq0Szu5_\",layoutId:\"rNq0Szu5_\",loop:true,muted:true,scaleFactor:1.3,style:{height:\"100%\",width:\"100%\"},vimeoUrl:XJ8ZUbM6yRyAwKEJkZ,width:\"100%\",...addPropertyOverrides({cm7oKisEJ:{scaleFactor:1.4},JyjZ0P0wF:{scaleFactor:2},pBVHXVYA0:{scaleFactor:2},wmNFGK5vh:{scaleFactor:2},zG6fZngeB:{scaleFactor:2}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1njb05p\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"tec__O4nD\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4ed7ox\",\"data-framer-name\":\"Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"XXBkYEOTS\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-atidct\",\"data-styles-preset\":\"cAhehJvI4\",children:\"PUMA\"})}),className:\"framer-ud5t2j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BG4pfbtOL\",style:{opacity:.6},text:TXmd62wMmRyAwKEJkZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1g45w\",\"data-styles-preset\":\"THmedGvj0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Bamberg Baskets\"})}),className:\"framer-n8tajj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S_JgIHgqd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:FnwgSIUrARyAwKEJkZ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffRyAwKEJkZ},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||605)-15-590)/2)+0+590-148+0+72,...addPropertyOverrides({cm7oKisEJ:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-590)/2)+0+590-148+0+72},JyjZ0P0wF:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-490)/2)+0+490-148+0+72},OJGlHUuFI:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||620)-30-590)/2)+0+590-148+0+72},pBVHXVYA0:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-490)/2)+0+490-148+0+72},wmNFGK5vh:{y:(componentViewport?.y||0)+0+0+0+490-148+0+72},Y8avS7pTM:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-590)/2)+0+590-148+0+72},zG6fZngeB:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-30-490)/2)+0+490-148+0+72}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1je3qd4-container\",layoutDependency:layoutDependency,layoutId:\"EtFZAo19w-container\",nodeId:\"EtFZAo19w\",rendersWithMotion:true,scopeId:\"WdaBfsjHK\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"EtFZAo19w\",layoutId:\"EtFZAo19w\",NhREodF7M:resolvedLinks[0],variant:\"wlEVB9reR\",width:\"100%\",XqpXZUGU6:\"View\",...addPropertyOverrides({cm7oKisEJ:{NhREodF7M:resolvedLinks[4]},dnBUXczYL:{NhREodF7M:resolvedLinks[2]},JyjZ0P0wF:{NhREodF7M:resolvedLinks[5]},OJGlHUuFI:{NhREodF7M:resolvedLinks[3]},pBVHXVYA0:{NhREodF7M:resolvedLinks[7]},wmNFGK5vh:{NhREodF7M:resolvedLinks[6]},Y8avS7pTM:{NhREodF7M:resolvedLinks[1]},zG6fZngeB:{NhREodF7M:resolvedLinks[8]}},baseVariant,gestureVariant)})})})})]})]})})},idRyAwKEJkZ);})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vr860k\",\"data-framer-name\":\"Home Project Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"P0BsIBWLX\",onMouseEnter:onMouseEnter1bra6s1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({dnBUXczYL:{onMouseLeave:onMouseLeavel6c2cl},JyjZ0P0wF:{\"data-highlight\":undefined,onMouseEnter:undefined},OJGlHUuFI:{\"data-highlight\":undefined,onMouseEnter:undefined},wmNFGK5vh:{\"data-highlight\":undefined,onMouseEnter:undefined},zG6fZngeB:{\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"P0BsIBWLX\",data:OraProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"P0BsIBWLX\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"P0BsIBWLX\",name:\"dHg3trIHk\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"XJ8ZUbM6y\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"iC9pVt3ff\",type:\"Identifier\"},{collection:\"P0BsIBWLX\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"P0BsIBWLX\",name:\"PbqHsHzDE\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:uilfSt1nU},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({dHg3trIHk:dHg3trIHkP0BsIBWLX,FnwgSIUrA:FnwgSIUrAP0BsIBWLX,iC9pVt3ff:iC9pVt3ffP0BsIBWLX,id:idP0BsIBWLX,TXmd62wMm:TXmd62wMmP0BsIBWLX,XJ8ZUbM6y:XJ8ZUbM6yP0BsIBWLX},index1)=>{XJ8ZUbM6yP0BsIBWLX??=\"\";TXmd62wMmP0BsIBWLX??=\"\";FnwgSIUrAP0BsIBWLX??=\"\";iC9pVt3ffP0BsIBWLX??=\"\";const visible1=isSet(XJ8ZUbM6yP0BsIBWLX);return /*#__PURE__*/_jsx(LayoutGroup,{id:`P0BsIBWLX-${idP0BsIBWLX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{iC9pVt3ff:iC9pVt3ffP0BsIBWLX},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-odtkpi\",\"data-framer-name\":\"Product Card\",layoutDependency:layoutDependency,layoutId:\"l_mDEqZuN\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3304,intrinsicWidth:2400},className:\"framer-1i2o5do\",\"data-framer-name\":\"Image Wrapper Right\",layoutDependency:layoutDependency,layoutId:\"fatWEyX5u\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||605)-15-590)/2)+0+0+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 1px) * 1.2)`,...toResponsiveImage(dHg3trIHkP0BsIBWLX)},className:\"framer-u1j3y9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"A4KUL9fdC\",...addPropertyOverrides({dnBUXczYL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||605)-15-590)/2)+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 45px) * 0.6, 1px)`,...toResponsiveImage(dHg3trIHkP0BsIBWLX)}},JyjZ0P0wF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-490)/2)+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 1px)`,...toResponsiveImage(dHg3trIHkP0BsIBWLX)}},OJGlHUuFI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(15+((componentViewport?.height||620)-30-590)/2)+0+0+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 1px) * 1.2)`,...toResponsiveImage(dHg3trIHkP0BsIBWLX)}},wmNFGK5vh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+505+0+0+0+0),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(dHg3trIHkP0BsIBWLX)}},Y8avS7pTM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-590)/2)+0+0+0+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 45px) / 2.5, 1px) * 1.5)`,...toResponsiveImage(dHg3trIHkP0BsIBWLX)}},zG6fZngeB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(15+((componentViewport?.height||200)-30-490)/2)+0+0+0+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 45px) / 2, 1px)`,...toResponsiveImage(dHg3trIHkP0BsIBWLX)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a89f6k\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"c3zoHl4nJ\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%)\"}}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zff0ca-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cB7Nb0c48-container\",nodeId:\"cB7Nb0c48\",rendersWithMotion:true,scopeId:\"WdaBfsjHK\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"cB7Nb0c48\",isMixedBorderRadius:false,layoutId:\"cB7Nb0c48\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:XJ8ZUbM6yP0BsIBWLX,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gtj596\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"QnJ5vXZ_V\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e49gbj\",layoutDependency:layoutDependency,layoutId:\"Oiqc9naBY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-atidct\",\"data-styles-preset\":\"cAhehJvI4\",children:\"TERREX\"})}),className:\"framer-vhbsn0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KEkVQVY4q\",style:{opacity:.6},text:TXmd62wMmP0BsIBWLX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b1g45w\",\"data-styles-preset\":\"THmedGvj0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Flagship Store\"})}),className:\"framer-a80830\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zrQDwqd0p\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:FnwgSIUrAP0BsIBWLX,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffP0BsIBWLX},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffP0BsIBWLX},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffP0BsIBWLX},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffP0BsIBWLX},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffP0BsIBWLX},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffP0BsIBWLX},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined},{href:{pathVariables:{iC9pVt3ff:iC9pVt3ffP0BsIBWLX},webPageId:\"vKctiIGyU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||605)-15-590)/2)+0+590-148+0+72,...addPropertyOverrides({JyjZ0P0wF:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-490)/2)+0+490-148+0+72},OJGlHUuFI:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||620)-30-590)/2)+0+590-148+0+72},wmNFGK5vh:{y:(componentViewport?.y||0)+0+505+0+490-148+0+72},Y8avS7pTM:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-15-590)/2)+0+590-148+0+72},zG6fZngeB:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-30-490)/2)+0+490-148+0+72}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kqw8ii-container\",layoutDependency:layoutDependency,layoutId:\"Dq8pbeQ8y-container\",nodeId:\"Dq8pbeQ8y\",rendersWithMotion:true,scopeId:\"WdaBfsjHK\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"Dq8pbeQ8y\",layoutId:\"Dq8pbeQ8y\",NhREodF7M:resolvedLinks1[0],variant:\"wlEVB9reR\",width:\"100%\",XqpXZUGU6:\"View\",...addPropertyOverrides({dnBUXczYL:{NhREodF7M:resolvedLinks1[2]},JyjZ0P0wF:{NhREodF7M:resolvedLinks1[4]},OJGlHUuFI:{NhREodF7M:resolvedLinks1[3]},wmNFGK5vh:{NhREodF7M:resolvedLinks1[5]},Y8avS7pTM:{NhREodF7M:resolvedLinks1[1]},zG6fZngeB:{NhREodF7M:resolvedLinks1[6]}},baseVariant,gestureVariant)})})})})]})]})})},idP0BsIBWLX);})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IWQkt.framer-ur7o97, .framer-IWQkt .framer-ur7o97 { display: block; }\",\".framer-IWQkt.framer-1l2ncor { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 15px 15px 15px; position: relative; width: 1200px; }\",\".framer-IWQkt .framer-1picr1v, .framer-IWQkt .framer-1vr860k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 5; }\",\".framer-IWQkt .framer-11f29du { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IWQkt .framer-9sc2ms { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-IWQkt .framer-15m2r2a, .framer-IWQkt .framer-u1j3y9 { aspect-ratio: 1.1745762711864407 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 590px); overflow: hidden; position: relative; width: 120%; z-index: 1; }\",\".framer-IWQkt .framer-1buv9ku { bottom: 0px; flex: none; gap: 5px; height: 100%; left: 0px; overflow: visible; position: absolute; width: 120%; z-index: 3; }\",\".framer-IWQkt .framer-fyct21-container { aspect-ratio: 1.1745762711864407 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); left: 0px; position: absolute; top: 0px; width: 120%; z-index: 1; }\",\".framer-IWQkt .framer-1njb05p, .framer-IWQkt .framer-gtj596 { align-content: center; align-items: center; bottom: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; width: min-content; z-index: 8; }\",\".framer-IWQkt .framer-4ed7ox, .framer-IWQkt .framer-e49gbj { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-IWQkt .framer-ud5t2j, .framer-IWQkt .framer-n8tajj, .framer-IWQkt .framer-vhbsn0, .framer-IWQkt .framer-a80830 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-IWQkt .framer-1je3qd4-container, .framer-IWQkt .framer-kqw8ii-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-IWQkt .framer-odtkpi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IWQkt .framer-1i2o5do { 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%; will-change: var(--framer-will-change-override, transform); }\",\".framer-IWQkt .framer-a89f6k { flex: none; gap: 5px; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 3; }\",\".framer-IWQkt .framer-zff0ca-container { flex: none; height: 100%; position: absolute; right: -1px; top: 0px; width: 100%; z-index: 1; }\",\".framer-IWQkt.framer-v-ep3zxm .framer-1picr1v, .framer-IWQkt.framer-v-11su1bn .framer-1vr860k { flex: 1.5 0 0px; }\",\".framer-IWQkt.framer-v-ep3zxm .framer-15m2r2a { height: var(--framer-aspect-ratio-supported, 170px); width: 100%; }\",\".framer-IWQkt.framer-v-ep3zxm .framer-1buv9ku { bottom: unset; left: calc(49.92784992784995% - 100% / 2); top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-IWQkt.framer-v-ep3zxm .framer-fyct21-container, .framer-IWQkt.framer-v-11su1bn .framer-u1j3y9, .framer-IWQkt.framer-v-q8i6ig .framer-1buv9ku, .framer-IWQkt.framer-v-14pfp6f .framer-1buv9ku, .framer-IWQkt.framer-v-85fj56 .framer-1buv9ku, .framer-IWQkt.framer-v-1kxr7m9 .framer-1buv9ku { width: 100%; }\",\".framer-IWQkt.framer-v-ep3zxm .framer-u1j3y9 { height: var(--framer-aspect-ratio-supported, 170px); width: 150%; }\",\".framer-IWQkt.framer-v-ep3zxm .framer-a89f6k { bottom: 0px; left: unset; right: 0px; top: unset; width: 150%; }\",\".framer-IWQkt.framer-v-ep3zxm .framer-zff0ca-container { aspect-ratio: 1.1745762711864407 / 1; height: var(--framer-aspect-ratio-supported, 170px); right: -1px; width: 150%; }\",\".framer-IWQkt.framer-v-11su1bn .framer-15m2r2a, .framer-IWQkt.framer-v-11su1bn .framer-1buv9ku, .framer-IWQkt.framer-v-11su1bn .framer-fyct21-container { width: 150%; }\",\".framer-IWQkt.framer-v-11su1bn .framer-zff0ca-container { height: 590px; left: 0px; right: unset; width: 100%; }\",\".framer-IWQkt.framer-v-1eq05zh.framer-1l2ncor { padding: 15px; }\",\".framer-IWQkt.framer-v-q8i6ig .framer-15m2r2a { aspect-ratio: 1.9830508474576272 / 1; height: var(--framer-aspect-ratio-supported, 101px); width: 100%; }\",\".framer-IWQkt.framer-v-q8i6ig .framer-fyct21-container { aspect-ratio: unset; height: 590px; width: 100%; }\",\".framer-IWQkt.framer-v-14pfp6f.framer-1l2ncor { width: 810px; }\",\".framer-IWQkt.framer-v-14pfp6f .framer-15m2r2a, .framer-IWQkt.framer-v-14pfp6f .framer-fyct21-container, .framer-IWQkt.framer-v-14pfp6f .framer-u1j3y9, .framer-IWQkt.framer-v-11iut63 .framer-15m2r2a, .framer-IWQkt.framer-v-11iut63 .framer-fyct21-container, .framer-IWQkt.framer-v-11iut63 .framer-u1j3y9 { aspect-ratio: 0.7806122448979592 / 1; height: var(--framer-aspect-ratio-supported, 256px); width: 100%; }\",\".framer-IWQkt.framer-v-14pfp6f .framer-zff0ca-container { aspect-ratio: 0.7826398091704213 / 1; height: var(--framer-aspect-ratio-supported, 256px); }\",\".framer-IWQkt.framer-v-85fj56.framer-1l2ncor { flex-direction: column; width: 390px; }\",\".framer-IWQkt.framer-v-85fj56 .framer-1picr1v, .framer-IWQkt.framer-v-85fj56 .framer-1vr860k { flex: none; width: 100%; }\",\".framer-IWQkt.framer-v-85fj56 .framer-15m2r2a, .framer-IWQkt.framer-v-85fj56 .framer-u1j3y9 { aspect-ratio: unset; height: 490px; width: 100%; }\",\".framer-IWQkt.framer-v-85fj56 .framer-fyct21-container, .framer-IWQkt.framer-v-1kxr7m9 .framer-15m2r2a, .framer-IWQkt.framer-v-1kxr7m9 .framer-fyct21-container { aspect-ratio: 0.7346938775510204 / 1; height: var(--framer-aspect-ratio-supported, 272px); width: 100%; }\",\".framer-IWQkt.framer-v-85fj56 .framer-zff0ca-container { left: 0px; right: unset; width: 100%; }\",\".framer-IWQkt.framer-v-1kxr7m9.framer-1l2ncor { width: 390px; }\",\".framer-IWQkt.framer-v-11iut63.framer-1l2ncor { padding: 15px; width: 810px; }\",\".framer-IWQkt.framer-v-11iut63 .framer-zff0ca-container { aspect-ratio: 0.7795918366838818 / 1; height: var(--framer-aspect-ratio-supported, 257px); right: 0px; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 605\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Y8avS7pTM\":{\"layout\":[\"fixed\",\"auto\"]},\"dnBUXczYL\":{\"layout\":[\"fixed\",\"auto\"]},\"OJGlHUuFI\":{\"layout\":[\"fixed\",\"auto\"]},\"cm7oKisEJ\":{\"layout\":[\"fixed\",\"auto\"]},\"JyjZ0P0wF\":{\"layout\":[\"fixed\",\"auto\"]},\"wmNFGK5vh\":{\"layout\":[\"fixed\",\"auto\"]},\"pBVHXVYA0\":{\"layout\":[\"fixed\",\"auto\"]},\"zG6fZngeB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mOlwWpG5v\":\"sortingLeft\",\"uilfSt1nU\":\"sortingRight\",\"QjFw7n4_C\":\"sortingImageWide\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWdaBfsjHK=withCSS(Component,css,\"framer-IWQkt\");export default FramerWdaBfsjHK;FramerWdaBfsjHK.displayName=\"Ora/Home - Projects Row\";FramerWdaBfsjHK.defaultProps={height:605,width:1200};addPropertyControls(FramerWdaBfsjHK,{variant:{options:[\"rpif4DV3T\",\"Y8avS7pTM\",\"dnBUXczYL\",\"OJGlHUuFI\",\"cm7oKisEJ\",\"JyjZ0P0wF\",\"wmNFGK5vh\",\"pBVHXVYA0\",\"zG6fZngeB\"],optionTitles:[\"Home Projects - Initial State\",\"Home Projects - Left Open\",\"Home Projects - Right Open\",\"Before Scroll State - Below Hero\",\"Home Project Single - Wide\",\"Home Projects - Tablet\",\"Home Projects - Mobile\",\"Home Project Single Wide - Mobile\",\"Home Projects - Tablet Below Hero\"],title:\"Variant\",type:ControlType.Enum},mOlwWpG5v:{defaultValue:1,description:\"\",title:\"Sorting Left\",type:ControlType.Number},uilfSt1nU:{defaultValue:3,description:\"\",title:\"Sorting Right\",type:ControlType.Number},QjFw7n4_C:{defaultValue:1,title:\"Sorting Image Wide\",type:ControlType.Number}});addFonts(FramerWdaBfsjHK,[{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\"}]},...ResponsiveVimeoPlayerFonts,...PrimaryButtonFonts,...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWdaBfsjHK\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"605\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y8avS7pTM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dnBUXczYL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OJGlHUuFI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cm7oKisEJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JyjZ0P0wF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wmNFGK5vh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pBVHXVYA0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zG6fZngeB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"mOlwWpG5v\\\":\\\"sortingLeft\\\",\\\"uilfSt1nU\\\":\\\"sortingRight\\\",\\\"QjFw7n4_C\\\":\\\"sortingImageWide\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (b6cf623)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;General Sans-regular\",\"FS;General Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\",weight:\"400\"},{family:\"General Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GQOITZI54NH6HDBP26XAMQYTXB4JQ3NQ/VY7SXNCPHYFLQTOFY72GM4OZTBH62U2D/AHPLTG2YASI4OYLGJV4CF3P25VBHPK5X.woff2\",weight:\"400\"}]}];export const css=['.framer-zdKX3 .framer-styles-preset-1tl7v7r:not(.rich-text-wrapper), .framer-zdKX3 .framer-styles-preset-1tl7v7r.rich-text-wrapper h2 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --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-zdKX3\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (18b201b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}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 Twice_footer from\"#framer/local/canvasComponent/eIeIx2l_W/eIeIx2l_W.js\";import NavigationMobile from\"#framer/local/canvasComponent/fKZzCOMw9/fKZzCOMw9.js\";import Twice_button from\"#framer/local/canvasComponent/LbfYiO3dO/LbfYiO3dO.js\";import MobileFullNavigation from\"#framer/local/canvasComponent/m1vvItcti/m1vvItcti.js\";import HeroImageVideoProjectsPage from\"#framer/local/canvasComponent/NFM2OS8GO/NFM2OS8GO.js\";import Twice_navigation from\"#framer/local/canvasComponent/NwsqX2rgT/NwsqX2rgT.js\";import LineAnimationGlobal from\"#framer/local/canvasComponent/pkj9Ere0O/pkj9Ere0O.js\";import OraHomeProjectsRow from\"#framer/local/canvasComponent/WdaBfsjHK/WdaBfsjHK.js\";import OraProjects from\"#framer/local/collection/PhixcoSCu/PhixcoSCu.js\";import*as sharedStyle from\"#framer/local/css/Cdy8kTjam/Cdy8kTjam.js\";import*as sharedStyle2 from\"#framer/local/css/cYXc5GuOi/cYXc5GuOi.js\";import*as sharedStyle1 from\"#framer/local/css/dDAuXcqfM/dDAuXcqfM.js\";import*as sharedStyle3 from\"#framer/local/css/epquBzzqh/epquBzzqh.js\";import*as sharedStyle4 from\"#framer/local/css/IsgMMPEHU/IsgMMPEHU.js\";import*as sharedStyle9 from\"#framer/local/css/THmedGvj0/THmedGvj0.js\";import*as sharedStyle6 from\"#framer/local/css/UBZ17NG79/UBZ17NG79.js\";import*as sharedStyle5 from\"#framer/local/css/vFgiLTeGJ/vFgiLTeGJ.js\";import*as sharedStyle7 from\"#framer/local/css/WWbz0wZb0/WWbz0wZb0.js\";import*as sharedStyle8 from\"#framer/local/css/xHea8ZIZv/xHea8ZIZv.js\";import metadataProvider from\"#framer/local/webPageMetadata/vKctiIGyU/vKctiIGyU.js\";const Twice_navigationFonts=getFonts(Twice_navigation);const Twice_navigationWithVariantAppearEffect=withVariantAppearEffect(Twice_navigation);const NavigationMobileFonts=getFonts(NavigationMobile);const NavigationMobileWithVariantAppearEffect=withVariantAppearEffect(NavigationMobile);const MobileFullNavigationFonts=getFonts(MobileFullNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const HeroImageVideoProjectsPageFonts=getFonts(HeroImageVideoProjectsPage);const HeroImageVideoProjectsPageWithVariantAppearEffect=withVariantAppearEffect(HeroImageVideoProjectsPage);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const LineAnimationGlobalFonts=getFonts(LineAnimationGlobal);const LineAnimationGlobalWithVariantAppearEffect=withVariantAppearEffect(LineAnimationGlobal);const Twice_buttonFonts=getFonts(Twice_button);const OraHomeProjectsRowFonts=getFonts(OraHomeProjectsRow);const Twice_footerFonts=getFonts(Twice_footer);const breakpoints={tQPmnZstc:\"(min-width: 810px) and (max-width: 1199px)\",ug9c9a3vt:\"(min-width: 1200px)\",zBrXEgxPn:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zx9GU\";const variantClassNames={tQPmnZstc:\"framer-v-1oxno9u\",ug9c9a3vt:\"framer-v-mbku8w\",zBrXEgxPn:\"framer-v-1qivyxi\"};const transition1={delay:2.5,duration:.3,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y: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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation2={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:23};const transition2={delay:.1,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const animation3={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={delay:.4,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition4={delay:.5,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition5={delay:.6,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition6={delay:.55,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition7={delay:.7,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition8={delay:.8,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition9={delay:.3,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ug9c9a3vt\",Phone:\"zBrXEgxPn\",Tablet:\"tQPmnZstc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ug9c9a3vt\"};};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:\"vKctiIGyU\",data:OraProjects,type:\"Collection\"},select:[{collection:\"vKctiIGyU\",name:\"FnwgSIUrA\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"Fz9l0NnYQ\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"OKHcAq9Ff\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"iqG3u7S2H\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"iCDUa9cHV\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"Byf_lucD0\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"XIa54mDv6\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"wbxT_J77Z\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"TXmd62wMm\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"vO0Cvxftv\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"uNKxhajOC\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"c26Jr57LR\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"NPZz5yatu\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"ORffhsntQ\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"nQqO0se6B\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"UjsO85djj\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"orhO9uHHx\",type:\"Identifier\"},{collection:\"vKctiIGyU\",name:\"mBpzi3bx4\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"vKctiIGyU\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,iCDUa9cHV=getFromCurrentRouteData(\"iCDUa9cHV\"),FnwgSIUrA=getFromCurrentRouteData(\"FnwgSIUrA\")??\"\",iqG3u7S2H=getFromCurrentRouteData(\"iqG3u7S2H\"),TXmd62wMm=getFromCurrentRouteData(\"TXmd62wMm\")??\"\",Byf_lucD0=getFromCurrentRouteData(\"Byf_lucD0\")??\"\",XIa54mDv6=getFromCurrentRouteData(\"XIa54mDv6\")??\"\",wbxT_J77Z=getFromCurrentRouteData(\"wbxT_J77Z\")??\"\",vO0Cvxftv=getFromCurrentRouteData(\"vO0Cvxftv\")??\"\",uNKxhajOC=getFromCurrentRouteData(\"uNKxhajOC\")??\"\",c26Jr57LR=getFromCurrentRouteData(\"c26Jr57LR\")??\"\",NPZz5yatu=getFromCurrentRouteData(\"NPZz5yatu\"),ORffhsntQ=getFromCurrentRouteData(\"ORffhsntQ\"),nQqO0se6B=getFromCurrentRouteData(\"nQqO0se6B\"),UjsO85djj=getFromCurrentRouteData(\"UjsO85djj\"),orhO9uHHx=getFromCurrentRouteData(\"orhO9uHHx\")??\"\",mBpzi3bx4=getFromCurrentRouteData(\"mBpzi3bx4\")??\"\",Fz9l0NnYQ=getFromCurrentRouteData(\"Fz9l0NnYQ\")??0,OKHcAq9Ff=getFromCurrentRouteData(\"OKHcAq9Ff\")??0,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const EHMhKGDpT3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const wCQM1JsQO1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"zBrXEgxPn\")return true;return false;};const ref2=React.useRef(null);const elementId=useRouteElementId(\"UQEYIaNIh\");const elementId1=useRouteElementId(\"RbgxCShXc\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"IWwCV5Xkt\");const elementId3=useRouteElementId(\"jioavKSxy\");const ref4=React.useRef(null);const visible=equals(activeLocale?.id,\"default\");const visible1=equals(activeLocale?.id,\"hEb0bfXSX\");const elementId4=useRouteElementId(\"VnuHPoI8w\");const ref5=React.useRef(null);const visible2=isSet(uNKxhajOC);const visible3=isSet(NPZz5yatu);const visible4=isSet(ORffhsntQ);const visible5=isSet(nQqO0se6B);const visible6=isSet(UjsO85djj);const elementId5=useRouteElementId(\"eA2oanvFA\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"OWXt1H9Jy\");const ref7=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ug9c9a3vt\",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-mbku8w\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r1bev\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XoUyQsVJi\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"Yknn1XAII\"},implicitPathVariables:undefined},{href:{webPageId:\"YqXN0qAeK\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoUyQsVJi\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"Yknn1XAII\"},implicitPathVariables:undefined},{href:{webPageId:\"YqXN0qAeK\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoUyQsVJi\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"Yknn1XAII\"},implicitPathVariables:undefined},{href:{webPageId:\"YqXN0qAeK\"},implicitPathVariables:undefined},{href:{webPageId:\"bnocYeWs4\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1585itj-container\",nodeId:\"OLHOjlVXZ\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{bs6Meq43p:resolvedLinks[6],dAdwoZToF:resolvedLinks[9],E_L5pmaKG:resolvedLinks[5],nyhqmPqql:resolvedLinks[7],variant:\"LXcQ9Ngg8\",x8ZkjcwBa:resolvedLinks[8]},zBrXEgxPn:{bs6Meq43p:resolvedLinks[11],dAdwoZToF:resolvedLinks[14],E_L5pmaKG:resolvedLinks[10],nyhqmPqql:resolvedLinks[12],variant:\"JSxliy0r4\",x8ZkjcwBa:resolvedLinks[13]}},children:/*#__PURE__*/_jsx(Twice_navigationWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref1,target:\"r1qgyy9M4\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,bs6Meq43p:resolvedLinks[1],dAdwoZToF:resolvedLinks[4],E_L5pmaKG:resolvedLinks[0],height:\"100%\",id:\"OLHOjlVXZ\",kO2r2zopL:\"o5PGZsAQT\",layoutId:\"OLHOjlVXZ\",N6ZBsFaid:\"o5PGZsAQT\",nyhqmPqql:resolvedLinks[2],OhjDN58L7:\"o5PGZsAQT\",style:{width:\"100%\"},variant:\"mYIUnubUa\",width:\"100%\",wyllv6zJR:\"o5PGZsAQT\",x8ZkjcwBa:resolvedLinks[3]})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{height:56,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-5yart0-container hidden-mbku8w hidden-1oxno9u\",\"data-framer-appear-id\":\"5yart0\",id:\"5yart0\",initial:animation1,layoutScroll:true,nodeId:\"fqQLEGzBn\",optimized:true,rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:[/*#__PURE__*/_jsx(NavigationMobileWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:400,ref:ref2,target:\"ZSBAX1QR1\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,EHMhKGDpT:EHMhKGDpT3bnx0g({overlay}),height:\"100%\",id:\"fqQLEGzBn\",layoutId:\"fqQLEGzBn\",style:{width:\"100%\"},variant:overlay.visible?\"ZSBAX1QR1\":\"rnhsVic2r\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-87wob0\"),\"data-framer-portal-id\":\"5yart0\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"XLRSmjkly\"),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-1slaw7i-container\")} hidden-mbku8w`,\"data-framer-portal-id\":\"5yart0\",inComponentSlot:true,nodeId:\"TB44yv19q\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{wCQM1JsQO:wCQM1JsQO1wnntms({overlay})}},children:/*#__PURE__*/_jsx(MobileFullNavigation,{height:\"100%\",id:\"TB44yv19q\",layoutId:\"TB44yv19q\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-wsqo7\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1t8e0gu\",\"data-framer-name\":\"Section Hero Sticky\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19qquby-container\",nodeId:\"A_8BPhbpk\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{xLNnqr6Jk:2},zBrXEgxPn:{xLNnqr6Jk:2}},children:/*#__PURE__*/_jsx(HeroImageVideoProjectsPageWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"VHdeBoiFa\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"Z_bsp3dTD\",B5sCjwcF_:\"\",cM8JGBzkE:TXmd62wMm,eKMOq8490:FnwgSIUrA,height:\"100%\",id:\"A_8BPhbpk\",layoutId:\"A_8BPhbpk\",s7UosfiRw:toResponsiveImage(iCDUa9cHV),style:{height:\"100%\",width:\"100%\"},V9TOCqVxo:toResponsiveImage(iqG3u7S2H),variant:\"VHdeBoiFa\",width:\"100%\",xLNnqr6Jk:1.5})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12aefgc\",\"data-framer-name\":\"nav_trigger\",id:elementId,ref:ref1}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lgclxu\",\"data-framer-name\":\"Container Relative\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1grx2qp\",\"data-framer-name\":\"Section Details\",id:elementId2,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cergo0\",\"data-framer-name\":\"Left Content\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rj6jrh\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ywdlpw\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bpy6cf\",\"data-styles-preset\":\"Cdy8kTjam\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"About\"})}),className:\"framer-1mrfpwj\",\"data-framer-name\":\"About\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7n7bda\",children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Byf_lucD0,className:\"framer-uq2992\",\"data-framer-name\":\"About en\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-yx9a1c\",h1:\"framer-styles-preset-bb1wus\",h2:\"framer-styles-preset-1tl7v7r\",h3:\"framer-styles-preset-1x2rloe\",h4:\"framer-styles-preset-usmfc9\",h5:\"framer-styles-preset-xz2g08\",h6:\"framer-styles-preset-nk9rvz\",p:\"framer-styles-preset-1y47ic6\"},verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:XIa54mDv6,className:\"framer-1qcwm1\",\"data-framer-name\":\"About de\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-yx9a1c\",h1:\"framer-styles-preset-bb1wus\",h2:\"framer-styles-preset-1tl7v7r\",h3:\"framer-styles-preset-1x2rloe\",h4:\"framer-styles-preset-usmfc9\",h5:\"framer-styles-preset-xz2g08\",h6:\"framer-styles-preset-nk9rvz\",p:\"framer-styles-preset-1y47ic6\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1shdmfr\",\"data-framer-name\":\"Right Content\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oy9772\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5e8afm\",\"data-framer-name\":\"Details Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vf22l8\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bpy6cf\",\"data-styles-preset\":\"Cdy8kTjam\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Client\"})}),className:\"framer-mqxqh8\",\"data-framer-name\":\"Client\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vttrqd\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y47ic6\",\"data-styles-preset\":\"WWbz0wZb0\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"PUMA\"})}),className:\"framer-grdcj3\",\"data-framer-name\":\"Client\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:TXmd62wMm,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13p58p2\",\"data-framer-name\":\"Details Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nta95i\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bpy6cf\",\"data-styles-preset\":\"Cdy8kTjam\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Location\"})}),className:\"framer-rrxduc\",\"data-framer-name\":\"Location\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xc82jz\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y47ic6\",\"data-styles-preset\":\"WWbz0wZb0\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Germany\"})}),className:\"framer-178bhea\",\"data-framer-name\":\"Location\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:wbxT_J77Z,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qqpmfa\",\"data-framer-name\":\"Details Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqcmuh\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bpy6cf\",\"data-styles-preset\":\"Cdy8kTjam\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Category\"})}),className:\"framer-1wpzt7h\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qnhqz3\",\"data-framer-name\":\"Category Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11xwwak\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y47ic6\",\"data-styles-preset\":\"WWbz0wZb0\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Brand Store\"})}),className:\"framer-llbs45\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:vO0Cvxftv,verticalAlignment:\"top\",withExternalLayout:true}),visible2&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y47ic6\",\"data-styles-preset\":\"WWbz0wZb0\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\",\"})}),className:\"framer-1os2r0x\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cwu302\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y47ic6\",\"data-styles-preset\":\"WWbz0wZb0\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-1noc4qq\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:uNKxhajOC,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipktrt\",\"data-framer-name\":\"Details Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yafzdf\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bpy6cf\",\"data-styles-preset\":\"Cdy8kTjam\",children:\"Year\"})}),className:\"framer-jk0162\",\"data-framer-name\":\"Year\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16o91qo\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y47ic6\",\"data-styles-preset\":\"WWbz0wZb0\",children:\"Content\"})}),className:\"framer-wjoi12\",\"data-framer-name\":\"2024\",fonts:[\"Inter\"],style:{transformPerspective:1200},text:c26Jr57LR,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ulhowz\",\"data-framer-name\":\"Section Images\",children:[visible3&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wdv9e0\",\"data-framer-name\":\"Image Wrapper 16x9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+485.4+0+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(NPZz5yatu)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+385.4+0+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(NPZz5yatu)},className:\"framer-1a87z5d\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10n7l9r\",\"data-framer-name\":\"Image Duo Wrapper\",children:[visible4&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11ic71c\",\"data-framer-name\":\"Image Wrapper 3x4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+485.4+0+0+0+7.5+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(ORffhsntQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+385.4+0+0+-386.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 15px) / 0, 1px)`,...toResponsiveImage(ORffhsntQ)},className:\"framer-1rgk5q9\",\"data-framer-name\":\"Image\"})})}),visible5&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1abxkxy\",\"data-framer-name\":\"Image Wrapper 3x4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+485.4+0+0+0+7.5+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(nQqO0se6B)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+385.4+0+0+-386.5+0),sizes:`max((${componentViewport?.width||\"100vw\"} - 15px) / 0, 1px)`,...toResponsiveImage(nQqO0se6B)},className:\"framer-dbh35w\",\"data-framer-name\":\"Image\"})})})]}),visible6&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yl7k8\",\"data-framer-name\":\"Image Wrapper 16x9\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+485.4+0+15+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(UjsO85djj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+385.4+0+15+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,...toResponsiveImage(UjsO85djj)},className:\"framer-m0web5\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1v19k07\",\"data-framer-name\":\"Section Quote\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xehfg5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-onep4d\",\"data-framer-name\":\"Quote Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{stylesPresetsClassNames:{h1:\"framer-styles-preset-bb1wus\",h2:\"framer-styles-preset-1tl7v7r\",p:\"framer-styles-preset-1y47ic6\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:orhO9uHHx,className:\"framer-1r1n6os\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],stylesPresetsClassNames:{h2:\"framer-styles-preset-1tl7v7r\",p:\"framer-styles-preset-1y47ic6\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bpy6cf\",\"data-styles-preset\":\"Cdy8kTjam\",children:\"Content\"})}),className:\"framer-15ljtm0\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],text:mBpzi3bx4,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-b3eyiq\",\"data-framer-name\":\"Next Projects Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{y:(componentViewport?.y||0)+0+0+0+1e3+0+821.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+1e3+0+721.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15tsatq-container\",nodeId:\"fNWttJuCC\",rendersWithMotion:true,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{sjMku05M0:\"var(--token-78d7ca27-6156-464c-afd3-6638f2e82e95, rgba(0, 0, 0, 0.2))\"}},children:/*#__PURE__*/_jsx(LineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"rNAyrBUC2\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"XDoMQWKtp\",height:\"100%\",id:\"fNWttJuCC\",layoutId:\"fNWttJuCC\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"XDoMQWKtp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ikftaf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-b1g45w\",\"data-styles-preset\":\"THmedGvj0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"More projects\"})}),className:\"framer-1lawr56\",\"data-framer-name\":\"News\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined},{href:{webPageId:\"ALf7_LAm5\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{y:(componentViewport?.y||0)+0+0+0+1e3+0+821.4+0+11+7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+0+0+1e3+0+721.4+0+11+7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tmb746-container\",nodeId:\"DDRZp40e9\",scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{bZogo0dF4:resolvedLinks1[1]},zBrXEgxPn:{bZogo0dF4:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Twice_button,{bZogo0dF4:resolvedLinks1[0],height:\"100%\",id:\"DDRZp40e9\",layoutId:\"DDRZp40e9\",MX6TVkRBp:\"ALL PROJECTS\",style:{height:\"100%\"},variant:\"oE_s93H03\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-gmgctx\",\"data-framer-name\":\"Section Next Projects\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{y:(componentViewport?.y||0)+0+0+0+1e3+0+932.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:605,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+832.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19wa6c3-container\",nodeId:\"ncr6VHMUY\",scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{variant:\"JyjZ0P0wF\"},zBrXEgxPn:{variant:\"wmNFGK5vh\"}},children:/*#__PURE__*/_jsx(OraHomeProjectsRow,{height:\"100%\",id:\"ncr6VHMUY\",layoutId:\"ncr6VHMUY\",mOlwWpG5v:Fz9l0NnYQ,QjFw7n4_C:1,style:{width:\"100%\"},uilfSt1nU:OKHcAq9Ff,variant:\"rpif4DV3T\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zBrXEgxPn:{y:(componentViewport?.y||0)+0+2537.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:441,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2437.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vc4zhr-container\",id:elementId6,nodeId:\"OWXt1H9Jy\",ref:ref7,scopeId:\"vKctiIGyU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tQPmnZstc:{variant:\"v6buDZWn1\"},zBrXEgxPn:{variant:\"pwVtACACX\"}},children:/*#__PURE__*/_jsx(Twice_footer,{H4gHZSGy5:\"o5PGZsAQT\",height:\"100%\",id:\"OWXt1H9Jy\",isTn1qL0L:\"o5PGZsAQT\",layoutId:\"OWXt1H9Jy\",style:{width:\"100%\"},variant:\"zh2dNkaSf\",VlsXzjG3v:\"o5PGZsAQT\",w2CAnC8Zx:\"o5PGZsAQT\",w6YfzNa1e:{borderBottomWidth:1,borderColor:\"rgb(38, 58, 56)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zx9GU.framer-6gj07i, .framer-zx9GU .framer-6gj07i { display: block; }\",\".framer-zx9GU.framer-mbku8w { 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: 1200px; }\",\".framer-zx9GU .framer-1r1bev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-zx9GU .framer-1585itj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-zx9GU .framer-5yart0-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-zx9GU.framer-87wob0 { inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-zx9GU.framer-1slaw7i-container { flex: none; height: 800px; left: -52px; position: fixed; top: -300px; width: 390px; z-index: 6; }\",\".framer-zx9GU .framer-wsqo7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-zx9GU .framer-1t8e0gu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; }\",\".framer-zx9GU .framer-19qquby-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-zx9GU .framer-12aefgc { flex: none; height: 2px; left: calc(50.00000000000002% - 100% / 2); overflow: var(--overflow-clip-fallback, clip); position: absolute; top: 300px; width: 100%; z-index: 1; }\",\".framer-zx9GU .framer-1lgclxu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 1000px; width: 100%; z-index: 6; }\",\".framer-zx9GU .framer-1grx2qp { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 50px 15px 90px 15px; position: relative; scroll-margin-top: 400px; width: 100%; }\",\".framer-zx9GU .framer-cergo0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zx9GU .framer-1rj6jrh { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 575px; }\",\".framer-zx9GU .framer-1ywdlpw, .framer-zx9GU .framer-vf22l8, .framer-zx9GU .framer-1vttrqd, .framer-zx9GU .framer-nta95i, .framer-zx9GU .framer-xc82jz, .framer-zx9GU .framer-cwu302, .framer-zx9GU .framer-1yafzdf, .framer-zx9GU .framer-16o91qo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zx9GU .framer-1mrfpwj, .framer-zx9GU .framer-mqxqh8, .framer-zx9GU .framer-rrxduc, .framer-zx9GU .framer-1wpzt7h, .framer-zx9GU .framer-jk0162 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre; width: auto; }\",\".framer-zx9GU .framer-7n7bda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 575px; z-index: 1; }\",\".framer-zx9GU .framer-uq2992 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 520px; position: relative; white-space: pre-wrap; width: 520px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-zx9GU .framer-1qcwm1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 520px; position: relative; white-space: pre-wrap; width: 520px; word-break: break-word; word-wrap: break-word; }\",\".framer-zx9GU .framer-1shdmfr { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zx9GU .framer-oy9772 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zx9GU .framer-5e8afm, .framer-zx9GU .framer-13p58p2, .framer-zx9GU .framer-qqpmfa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zx9GU .framer-grdcj3, .framer-zx9GU .framer-178bhea, .framer-zx9GU .framer-llbs45, .framer-zx9GU .framer-1os2r0x, .framer-zx9GU .framer-1noc4qq, .framer-zx9GU .framer-wjoi12 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zx9GU .framer-1tqcmuh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 15px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zx9GU .framer-qnhqz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zx9GU .framer-11xwwak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zx9GU .framer-ipktrt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zx9GU .framer-ulhowz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-zx9GU .framer-1wdv9e0, .framer-zx9GU .framer-1yl7k8 { align-content: center; align-items: center; aspect-ratio: 1.778115501519757 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 112px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zx9GU .framer-1a87z5d, .framer-zx9GU .framer-1rgk5q9, .framer-zx9GU .framer-dbh35w, .framer-zx9GU .framer-m0web5 { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-zx9GU .framer-10n7l9r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zx9GU .framer-11ic71c, .framer-zx9GU .framer-1abxkxy { align-content: center; align-items: center; aspect-ratio: 0.7503234152652005 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 267px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zx9GU .framer-1v19k07 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 30px 15px 120px 15px; position: relative; scroll-margin-top: 200px; width: 100%; }\",\".framer-zx9GU .framer-1xehfg5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zx9GU .framer-onep4d { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zx9GU .framer-1r1n6os { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 460px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zx9GU .framer-15ljtm0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zx9GU .framer-b3eyiq { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 50px 15px; position: relative; width: 100%; }\",\".framer-zx9GU .framer-15tsatq-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-zx9GU .framer-ikftaf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zx9GU .framer-1lawr56 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-zx9GU .framer-1tmb746-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-zx9GU .framer-gmgctx { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zx9GU .framer-19wa6c3-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\".framer-zx9GU .framer-vc4zhr-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-zx9GU.framer-mbku8w { width: 810px; }}\",\"@media (max-width: 809px) { .framer-zx9GU.framer-mbku8w { width: 390px; } .framer-zx9GU.framer-1slaw7i-container { height: 100vh; left: 0px; right: 0px; top: 0px; width: unset; z-index: 9; } .framer-zx9GU .framer-1t8e0gu { align-content: flex-start; align-items: flex-start; } .framer-zx9GU .framer-1grx2qp { flex-direction: column; padding: 30px 15px 60px 15px; } .framer-zx9GU .framer-cergo0, .framer-zx9GU .framer-1shdmfr, .framer-zx9GU .framer-11ic71c, .framer-zx9GU .framer-1abxkxy { flex: none; width: 100%; } .framer-zx9GU .framer-1rj6jrh, .framer-zx9GU .framer-7n7bda, .framer-zx9GU .framer-5e8afm, .framer-zx9GU .framer-13p58p2, .framer-zx9GU .framer-qqpmfa { width: 100%; } .framer-zx9GU .framer-uq2992, .framer-zx9GU .framer-1qcwm1 { flex: 1 0 0px; max-width: unset; width: 1px; } .framer-zx9GU .framer-oy9772, .framer-zx9GU .framer-onep4d { flex: 1 0 0px; } .framer-zx9GU .framer-10n7l9r { flex-direction: column; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2664\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tQPmnZstc\":{\"layout\":[\"fixed\",\"auto\"]},\"zBrXEgxPn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"UQEYIaNIh\":{\"pattern\":\":UQEYIaNIh\",\"name\":\"nav-trigger\"},\"RbgxCShXc\":{\"pattern\":\":RbgxCShXc\",\"name\":\"hero\"},\"IWwCV5Xkt\":{\"pattern\":\":IWwCV5Xkt\",\"name\":\"trigger-section\"},\"jioavKSxy\":{\"pattern\":\":jioavKSxy\",\"name\":\"left-content\"},\"VnuHPoI8w\":{\"pattern\":\":VnuHPoI8w\",\"name\":\"right-content\"},\"eA2oanvFA\":{\"pattern\":\":eA2oanvFA\",\"name\":\"trigger\"},\"OWXt1H9Jy\":{\"pattern\":\":OWXt1H9Jy\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramervKctiIGyU=withCSS(Component,css,\"framer-zx9GU\");export default FramervKctiIGyU;FramervKctiIGyU.displayName=\"Ora-Projects\";FramervKctiIGyU.defaultProps={height:2664,width:1200};addFonts(FramervKctiIGyU,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"}]},...Twice_navigationFonts,...NavigationMobileFonts,...MobileFullNavigationFonts,...HeroImageVideoProjectsPageFonts,...LineAnimationGlobalFonts,...Twice_buttonFonts,...OraHomeProjectsRowFonts,...Twice_footerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervKctiIGyU\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"UQEYIaNIh\\\":{\\\"pattern\\\":\\\":UQEYIaNIh\\\",\\\"name\\\":\\\"nav-trigger\\\"},\\\"RbgxCShXc\\\":{\\\"pattern\\\":\\\":RbgxCShXc\\\",\\\"name\\\":\\\"hero\\\"},\\\"IWwCV5Xkt\\\":{\\\"pattern\\\":\\\":IWwCV5Xkt\\\",\\\"name\\\":\\\"trigger-section\\\"},\\\"jioavKSxy\\\":{\\\"pattern\\\":\\\":jioavKSxy\\\",\\\"name\\\":\\\"left-content\\\"},\\\"VnuHPoI8w\\\":{\\\"pattern\\\":\\\":VnuHPoI8w\\\",\\\"name\\\":\\\"right-content\\\"},\\\"eA2oanvFA\\\":{\\\"pattern\\\":\\\":eA2oanvFA\\\",\\\"name\\\":\\\"trigger\\\"},\\\"OWXt1H9Jy\\\":{\\\"pattern\\\":\\\":OWXt1H9Jy\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"2664\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tQPmnZstc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zBrXEgxPn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}