{"version":3,"file":"kPkSACOLG.BDB4fKrF.mjs","names":["useRef","useState","Player","useCallback","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","animation","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","React.useId","sharedStyle.className","className","css","sharedStyle.css","sharedStyle.fonts","LoadMore","React.useContext","React.useMemo","React.Fragment","useRef","React.useId","sharedStyle.className","sharedStyle1.className","className","Projects","Clients","Employees","_Fragment","pyhQGVIWN_XM4W8hnOngjJdmWBnv","HBehJerIDgjJdmWBnv","idgjJdmWBnv","kdOyBvdtigjJdmWBnv","KPpKaAZnugjJdmWBnv","mhNOgY3TCgjJdmWBnv","WWN4PPEchgjJdmWBnv","sharedStyle.css","sharedStyle1.css","sharedStyle.fonts","sharedStyle1.fonts"],"sources":["https:/framerusercontent.com/modules/lvhfSOZis68JL30WpaSs/20MbtajGwrQ2tw2UDXmd/Video_grid_2.js","https:/framerusercontent.com/modules/d7gqgIZbJmP6wkNRlh7o/N4DfNXX4b483rQrV5A99/eoBT7rSor.js","https:/framerusercontent.com/modules/qULcZJk3iHe6exHy0KPG/ITCFJYH5yqLNWfgZxIUv/kPkSACOLG.js"],"sourcesContent":["\"use client\";import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useState,useRef,useCallback}from\"react\";import Player from\"@vimeo/player\";// Global queue system for sequential loading\n// This ensures only one video loads at a time\nconst loadingQueue={isLoading:false,queue:[],currentlyLoading:null,// Add a video to the loading queue\nenqueue:function(loadFn,priority=0){const id=Math.random().toString(36).substring(2,11);this.queue.push({id,loadFn,priority});// Sort queue by priority (lower number = higher priority)\nthis.queue.sort((a,b)=>a.priority-b.priority);this.processQueue();return id;},// Process the next item in the queue if nothing is currently loading\nprocessQueue:function(){if(this.isLoading||this.queue.length===0)return;this.isLoading=true;const next=this.queue.shift();this.currentlyLoading=next.id;// console.log(\n//     `[Queue] Starting to load item ${next.id}, ${this.queue.length} items remaining in queue`\n// )\n// Execute the loading function\nnext.loadFn().then(()=>{// console.log(`[Queue] Successfully loaded item ${next.id}`)\nthis.isLoading=false;this.currentlyLoading=null;// Process the next item\nsetTimeout(()=>this.processQueue(),300)// Small delay between videos\n;}).catch(error=>{console.error(`[Queue] Error loading item ${next.id}:`,error);this.isLoading=false;this.currentlyLoading=null;// Process the next item even if there was an error\nsetTimeout(()=>this.processQueue(),300);});},// Remove an item from the queue\ndequeue:function(id){this.queue=this.queue.filter(item=>item.id!==id);// If we're removing the currently loading item, mark as not loading\nif(this.currentlyLoading===id){this.isLoading=false;this.currentlyLoading=null;this.processQueue();}}};export default function VimeoEmbedForGrid({videoUrl,image,displayType,index=0,fallbackImage}){// Use a unique ID for each component instance to ensure they don't interfere with each other\nconst instanceId=useRef(`vimeo-embed-${Math.random().toString(36).substring(2,11)}`);const queueItemId=useRef(null);const[aspectRatio,setAspectRatio]=useState(56.25)// 16:9 default\n;const[isLoading,setIsLoading]=useState(true);const[isPlaying,setIsPlaying]=useState(false);const[hasError,setHasError]=useState(false);const[retryCount,setRetryCount]=useState(0);const iframeRef=useRef(null);const playerRef=useRef(null);const imageRef=useRef(null);const fallbackImageRef=useRef(null);const mountedRef=useRef(true);const safetyTimeoutRef=useRef(null);const playAttemptRef=useRef(0);const playIntervalRef=useRef(null);const lastPlayAttemptTimeRef=useRef(0);const playbackConfirmedRef=useRef(false);// Immediately check if we should show fallback based on inputs\nuseEffect(()=>{// Reset state on input change\nsetIsLoading(true);setIsPlaying(false);setHasError(false);setRetryCount(0);// Immediate check for missing primary content\nif(displayType===\"video\"&&!videoUrl){// console.log(\n//     `[${instanceId.current}] No video URL provided, showing fallback immediately`\n// )\nif(fallbackImage){loadFallbackImage();}else{setHasError(true);setIsLoading(false);}return;}else if(displayType===\"image\"&&!image){// console.log(\n//     `[${instanceId.current}] No image provided, showing fallback immediately`\n// )\nif(fallbackImage){loadFallbackImage();}else{setHasError(true);setIsLoading(false);}return;}// If we have valid content, queue it for loading\nif(displayType===\"video\"&&videoUrl){// Remove any existing queue item\nif(queueItemId.current){loadingQueue.dequeue(queueItemId.current);}// Add to loading queue with priority based on index\nqueueItemId.current=loadingQueue.enqueue(()=>loadVideo(),index// Use index as priority (lower index = higher priority)\n);}else if(displayType===\"image\"&&image){// Images don't need to be queued, load immediately\nloadImage();}// Cleanup function\nreturn()=>{if(queueItemId.current){loadingQueue.dequeue(queueItemId.current);queueItemId.current=null;}};},[displayType,videoUrl,image,fallbackImage,index]);const extractVimeoId=url=>{if(!url)return\"\";const match=url.match(/vimeo\\.com\\/(\\d+)(?:\\/([\\w\\d]+))?/);if(match){const videoId=match[1];const hash=match[2]?`?h=${match[2]}`:\"\";return`${videoId}${hash}`;}return\"\";};const formattedId=videoUrl?extractVimeoId(videoUrl):\"\";// Get video URL with optimized parameters but without quality parameter\nconst getVideoUrl=id=>{if(!id)return\"\";const[videoId,hash]=id.split(\"?\");// Enable autoplay in the URL parameters\nconst params=[\"controls=0\",\"loop=1\",\"muted=1\",\"autoplay=1\",\"transparent=1\",\"background=1\"].join(\"&\");return`https://player.vimeo.com/video/${videoId}${hash?`?${hash}&${params}`:`?${params}`}`;};// Function to load fallback image and set its aspect ratio\nconst loadFallbackImage=()=>{if(!fallbackImage)return;setHasError(true);setIsLoading(true);// console.log(`[${instanceId.current}] Loading fallback image`)\nconst img=new Image;const handleLoad=()=>{if(mountedRef.current){const ratio=(img.height/img.width*100).toFixed(2);// console.log(\n//     `[${instanceId.current}] Fallback image loaded, aspect ratio: ${ratio}%`\n// )\nsetAspectRatio(Number(ratio));setIsLoading(false);}};const handleError=()=>{if(mountedRef.current){console.error(`[${instanceId.current}] Failed to load fallback image`);setAspectRatio(56.25)// Default to 16:9 if even the fallback fails\n;setIsLoading(false);}};img.addEventListener(\"load\",handleLoad);img.addEventListener(\"error\",handleError);img.src=fallbackImage;// Return cleanup function\nreturn()=>{img.removeEventListener(\"load\",handleLoad);img.removeEventListener(\"error\",handleError);};};// Improved loadImage function with proper timeout handling\nconst loadImage=()=>{if(!image||!mountedRef.current)return Promise.resolve();return new Promise((resolve,reject)=>{setIsLoading(true);const img=new Image;// Create a timeout ID that we can clear\nlet timeoutId=null;const handleLoad=()=>{if(mountedRef.current){// Clear the timeout when image loads successfully\nif(timeoutId){clearTimeout(timeoutId);}const ratio=(img.height/img.width*100).toFixed(2);// console.log(\n//     `[${instanceId.current}] Image loaded, aspect ratio: ${ratio}%`\n// )\nsetAspectRatio(Number(ratio));setIsLoading(false);resolve();}};const handleError=()=>{if(mountedRef.current){// Clear the timeout on error too\nif(timeoutId){clearTimeout(timeoutId);}console.error(`[${instanceId.current}] Failed to load image, trying fallback`);if(fallbackImage){loadFallbackImage();}else{// Set default 16:9 aspect ratio on error\nsetAspectRatio(56.25);setHasError(true);setIsLoading(false);}reject(new Error(\"Failed to load image\"));}};img.addEventListener(\"load\",handleLoad);img.addEventListener(\"error\",handleError);img.src=image;// Safety timeout - properly tracked for cleanup\ntimeoutId=setTimeout(()=>{if(mountedRef.current&&isLoading){// console.log(\n//     `[${instanceId.current}] Image load timeout, trying fallback`\n// )\nimg.removeEventListener(\"load\",handleLoad);img.removeEventListener(\"error\",handleError);if(fallbackImage){loadFallbackImage();}else{setHasError(true);setIsLoading(false);}reject(new Error(\"Image load timeout\"));}},1e4);});};// Function to load a video with improved retry logic\nconst loadVideo=()=>{if(!formattedId||!mountedRef.current||!iframeRef.current){return Promise.reject(new Error(\"Invalid video configuration\"));}return new Promise(async(resolve,reject)=>{// console.log(`[${instanceId.current}] Starting video load process`)\nsetIsLoading(true);setIsPlaying(false);playAttemptRef.current=0;lastPlayAttemptTimeRef.current=0;playbackConfirmedRef.current=false;// Cleanup any existing player\ncleanupPlayer();// Set a safety timeout\nsafetyTimeoutRef.current=setTimeout(()=>{if(mountedRef.current&&isLoading){// console.log(\n//     `[${instanceId.current}] Safety timeout triggered - forcing loading complete`\n// )\n// If we're still loading after the timeout, retry or show fallback\nif(retryCount<2){// console.log(\n//     `[${instanceId.current}] Retrying video load (attempt ${retryCount + 1})`\n// )\nsetRetryCount(prev=>prev+1);cleanupPlayer();// Re-queue with higher priority\nif(queueItemId.current){loadingQueue.dequeue(queueItemId.current);}// Use exponential backoff for retry delay\nconst retryDelay=Math.min(1e3*Math.pow(2,retryCount),5e3);setTimeout(()=>{if(mountedRef.current){queueItemId.current=loadingQueue.enqueue(()=>loadVideo(),-1e3// Very high priority for retries\n);}},retryDelay);reject(new Error(\"Video load timeout, retrying\"));}else{// console.log(\n//     `[${instanceId.current}] Max retries reached, showing fallback`\n// )\nif(fallbackImage){loadFallbackImage();}else{setIsLoading(false);}resolve()// Resolve anyway to continue the queue\n;}}},15e3)// Longer timeout for video loading\n;try{// console.log(`[${instanceId.current}] Initializing video player`)\n// Create new player instance\nplayerRef.current=new Player(iframeRef.current);// Set up event listeners\nplayerRef.current.on(\"play\",()=>{if(mountedRef.current){// console.log(\n//     `[${instanceId.current}] Play event received`\n// )\nsetIsPlaying(true);setIsLoading(false);}});playerRef.current.on(\"pause\",()=>{if(mountedRef.current&&playbackConfirmedRef.current){// console.log(\n//     `[${instanceId.current}] Paused after confirmed playback`\n// )\nsetIsPlaying(false);}});playerRef.current.on(\"loaded\",()=>{if(mountedRef.current){// console.log(\n//     `[${instanceId.current}] Loaded event received`\n// )\n}});// Add error event handler\nplayerRef.current.on(\"error\",error=>{if(mountedRef.current){console.error(`[${instanceId.current}] Video error:`,error);// If we're already at max retries, show fallback\nif(retryCount>=2){// console.log(\n//     `[${instanceId.current}] Max retries reached after error, showing fallback`\n// )\nif(fallbackImage){loadFallbackImage();}else{setHasError(true);setIsLoading(false);}}// Otherwise, retry will be handled by the caller\n}});// Add progress event to confirm continuous playback\nplayerRef.current.on(\"progress\",data=>{if(mountedRef.current&&data.percent>.01){// Video is definitely playing if we're getting progress events\nif(!playbackConfirmedRef.current){// console.log(\n//     `[${instanceId.current}] Playback confirmed via progress event`\n// )\nplaybackConfirmedRef.current=true;setIsPlaying(true);setIsLoading(false);// Clear the safety timeout once playback is confirmed\nif(safetyTimeoutRef.current){clearTimeout(safetyTimeoutRef.current);safetyTimeoutRef.current=null;}// Clear the play interval once playing is confirmed\nif(playIntervalRef.current){clearInterval(playIntervalRef.current);playIntervalRef.current=null;}}}});await playerRef.current.ready();if(!mountedRef.current){reject(new Error(\"Component unmounted during initialization\"));return;}// console.log(`[${instanceId.current}] Player is ready`)\n// Set initial player settings\nawait playerRef.current.setLoop(true);await playerRef.current.setVolume(0);// Get video dimensions\nconst[width,height]=await Promise.all([playerRef.current.getVideoWidth(),playerRef.current.getVideoHeight()]);if(!mountedRef.current){reject(new Error(\"Component unmounted during initialization\"));return;}if(width&&height){// console.log(\n//     `[${instanceId.current}] Video dimensions: ${width}x${height}`\n// )\nconst ratio=(height/width*100).toFixed(2);setAspectRatio(Number(ratio));}// Start playing with a slight delay to ensure player is fully ready\nsetTimeout(attemptPlay,500);// Set up an interval to try playing if not confirmed yet\nplayIntervalRef.current=setInterval(()=>{if(!playbackConfirmedRef.current&&mountedRef.current&&playerRef.current){attemptPlay();}else if(playbackConfirmedRef.current&&playIntervalRef.current){clearInterval(playIntervalRef.current);playIntervalRef.current=null;}},3e3)// Try every 3 seconds\n;// If we don't get a progress event within 10 seconds, resolve anyway\n// to prevent blocking the queue\nsetTimeout(()=>{if(!playbackConfirmedRef.current&&mountedRef.current){// console.log(\n//     `[${instanceId.current}] No progress event received, but continuing queue`\n// )\nresolve();}},1e4);// Resolve the promise once initialization is complete\nresolve();}catch(error){console.error(`[${instanceId.current}] Error initializing video:`,error);// Retry logic for initialization errors\nif(retryCount<2){// console.log(\n//     `[${instanceId.current}] Retrying initialization (attempt ${retryCount + 1})`\n// )\nsetRetryCount(prev=>prev+1);cleanupPlayer();// Re-queue with higher priority\nif(queueItemId.current){loadingQueue.dequeue(queueItemId.current);}// Use exponential backoff for retry delay\nconst retryDelay=Math.min(1e3*Math.pow(2,retryCount),5e3);setTimeout(()=>{if(mountedRef.current){queueItemId.current=loadingQueue.enqueue(()=>loadVideo(),-1e3// Very high priority for retries\n);}},retryDelay);reject(new Error(\"Initialization error, retrying\"));}else{// console.log(\n//     `[${instanceId.current}] Max retries reached, showing fallback`\n// )\nif(fallbackImage){loadFallbackImage();}else{// Set default 16:9 aspect ratio on error\nsetAspectRatio(56.25);setHasError(true);setIsLoading(false);}resolve()// Resolve anyway to continue the queue\n;}}});};// Simplified attemptPlay function with better error handling\nconst attemptPlay=async()=>{if(!playerRef.current||!mountedRef.current||hasError)return;// Don't attempt to play too frequently\nconst now=Date.now();if(now-lastPlayAttemptTimeRef.current<2e3){return;// Don't try more than once per 2 seconds\n}lastPlayAttemptTimeRef.current=now;playAttemptRef.current++;// console.log(\n//     `[${instanceId.current}] Play attempt ${playAttemptRef.current}`\n// )\ntry{await playerRef.current.play();// console.log(`[${instanceId.current}] Play command sent`)\n}catch(error){console.error(`[${instanceId.current}] Error playing video:`,error);// If we've tried too many times, give up and show fallback\nif(playAttemptRef.current>=3){// console.log(\n//     `[${instanceId.current}] Giving up after ${playAttemptRef.current} attempts`\n// )\nif(playIntervalRef.current){clearInterval(playIntervalRef.current);playIntervalRef.current=null;}if(fallbackImage){loadFallbackImage();}else{setIsLoading(false)// Show the first frame at least\n;}}}};// Improved cleanup function to ensure we properly dispose of all resources\nconst cleanupPlayer=useCallback(()=>{if(playerRef.current){try{// Remove all event listeners\nplayerRef.current.off(\"play\");playerRef.current.off(\"pause\");playerRef.current.off(\"loaded\");playerRef.current.off(\"progress\");playerRef.current.off(\"ended\");playerRef.current.off(\"error\");playerRef.current.unload();playerRef.current.destroy();}catch(error){console.error(`[${instanceId.current}] Error cleaning up player:`,error);}playerRef.current=null;}if(safetyTimeoutRef.current){clearTimeout(safetyTimeoutRef.current);safetyTimeoutRef.current=null;}if(playIntervalRef.current){clearInterval(playIntervalRef.current);playIntervalRef.current=null;}},[]);// Function to handle visibility changes (for performance optimization)\nconst handleVisibilityChange=useCallback(()=>{if(!playerRef.current||!mountedRef.current||hasError)return;if(document.visibilityState===\"hidden\"){// Page is hidden, pause video\nplayerRef.current.pause().catch(err=>{console.error(`[${instanceId.current}] Error pausing video:`,err);});}else if(document.visibilityState===\"visible\"&&isPlaying){// Page is visible again, resume if it was playing\nplayerRef.current.play().catch(err=>{console.error(`[${instanceId.current}] Error resuming video:`,err);});}},[isPlaying,hasError]);// Set up visibility change listener\nuseEffect(()=>{document.addEventListener(\"visibilitychange\",handleVisibilityChange);return()=>{document.removeEventListener(\"visibilitychange\",handleVisibilityChange);};},[handleVisibilityChange]);// Cleanup on unmount\nuseEffect(()=>{return()=>{mountedRef.current=false;cleanupPlayer();if(queueItemId.current){loadingQueue.dequeue(queueItemId.current);queueItemId.current=null;}};},[cleanupPlayer]);return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",width:\"300px\",gap:\"0.5rem\",cursor:\"pointer\"},children:/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",width:\"100%\",paddingTop:`${aspectRatio}%`,borderRadius:\"20px\",overflow:\"hidden\",cursor:\"pointer\",backgroundColor:isLoading?\"#000\":\"#f5f5f5\",transform:\"translateZ(0)\",transition:\"background-color 0.3s ease\"},onClick:()=>{// Manual play on click only if we have a valid video player and no error\nif(playerRef.current&&!isPlaying&&!hasError){attemptPlay();}},children:[isLoading&&/*#__PURE__*/_jsxs(\"div\",{style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",color:\"#fff\",zIndex:2},children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"30px\",height:\"30px\",borderRadius:\"50%\",border:\"3px solid rgba(255,255,255,0.3)\",borderTopColor:\"#fff\"},className:\"spinner\"}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                  .spinner {\n                    animation: spin 1s linear infinite;\n                  }\n                  @keyframes spin {\n                    to { transform: rotate(360deg); }\n                  }\n                `}})]}),!isLoading&&!isPlaying&&displayType===\"video\"&&!hasError&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(0,0,0,0.3)\",zIndex:2,cursor:\"pointer\"},onClick:e=>{e.stopPropagation();attemptPlay();},children:/*#__PURE__*/_jsx(\"div\",{style:{width:0,height:0,borderTop:\"15px solid transparent\",borderBottom:\"15px solid transparent\",borderLeft:\"25px solid white\",marginLeft:\"5px\"}})}),hasError&&fallbackImage&&/*#__PURE__*/_jsx(\"img\",{ref:fallbackImageRef,src:fallbackImage||\"/placeholder.svg\",alt:\"Fallback content\",style:{position:\"absolute\",top:\"-1px\",left:\"-1px\",width:\"calc(100% + 2px)\",height:\"calc(100% + 2px)\",objectFit:\"cover\",borderRadius:\"inherit\",opacity:isLoading?0:1,transition:\"opacity 0.3s ease\"},onLoad:()=>setIsLoading(false)}),hasError&&!fallbackImage&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",color:\"#fff\",backgroundColor:\"rgba(0,0,0,0.7)\",padding:\"1rem\",textAlign:\"center\",fontSize:\"14px\"},children:displayType===\"video\"?\"Video failed to load\":\"Image failed to load\"}),!hasError&&(displayType===\"video\"?formattedId?/*#__PURE__*/_jsx(\"iframe\",{ref:iframeRef,src:getVideoUrl(formattedId),frameBorder:\"0\",allow:\"autoplay; fullscreen; picture-in-picture\",style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",borderRadius:\"inherit\",pointerEvents:\"none\",opacity:isLoading?0:1,transition:\"opacity 0.3s ease\",transform:\"scale(1.01)\"},title:\"Vimeo Video\"}):null:image?/*#__PURE__*/_jsx(\"img\",{ref:imageRef,src:image||\"/placeholder.svg\",alt:\"Media content\",style:{position:\"absolute\",top:\"-1px\",left:\"-1px\",width:\"calc(100% + 2px)\",height:\"calc(100% + 2px)\",objectFit:\"cover\",borderRadius:\"inherit\",opacity:isLoading?0:1,transition:\"opacity 0.3s ease\"},onLoad:()=>setIsLoading(false)}):null)]})});}// Add Framer controls\naddPropertyControls(VimeoEmbedForGrid,{displayType:{type:ControlType.Enum,title:\"Display Type\",options:[\"video\",\"image\"],defaultValue:\"video\"},videoUrl:{type:ControlType.String,title:\"Vimeo URL\",defaultValue:\"https://vimeo.com/1023893382/2c3803037a\",hidden:props=>props.displayType!==\"video\"},image:{type:ControlType.Image,title:\"Image\",hidden:props=>props.displayType!==\"image\"},fallbackImage:{type:ControlType.Image,title:\"Fallback Image\",description:\"Shown if video/image fails to load\"},index:{type:ControlType.Number,title:\"Grid Index\",defaultValue:0,min:0,step:1,displayStepper:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VimeoEmbedForGrid\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video_grid_2.map","// Generated by Framer (f4ba5e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZQPb5KOqyzudzKYaThsw/YJOyiwPJzfalkz52ZGt8/fWCKuTuXj.js\";const MotionDivWithFX=withFX(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"Vc6plN4x8\",\"q1m7EqpcJ\",\"Qe8ga6bJL\",\"I2rxmIV2b\",\"bWvhXBoa5\"];const serializationHash=\"framer-ptoZW\";const variantClassNames={bWvhXBoa5:\"framer-v-8hdjwx\",I2rxmIV2b:\"framer-v-178imot\",q1m7EqpcJ:\"framer-v-ccya49\",Qe8ga6bJL:\"framer-v-ho9gmx\",Vc6plN4x8:\"framer-v-qpq0nb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,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 transition3={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={\"Variant 4\":\"I2rxmIV2b\",\"Variant 5\":\"bWvhXBoa5\",Default:\"Vc6plN4x8\",Hidden:\"Qe8ga6bJL\",Loading:\"q1m7EqpcJ\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Vc6plN4x8\",Wld3NDzSj:click??props.Wld3NDzSj};};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,Wld3NDzSj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Vc6plN4x8\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapn9xadi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wld3NDzSj){const res=await Wld3NDzSj(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const isDisplayed=()=>{if(baseVariant===\"Qe8ga6bJL\")return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed1=()=>{if([\"q1m7EqpcJ\",\"bWvhXBoa5\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"q1m7EqpcJ\",\"bWvhXBoa5\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qpq0nb\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Vc6plN4x8\",onTap:onTapn9xadi,ref:refBinding,style:{backgroundColor:\"rgb(68, 68, 68)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{bWvhXBoa5:{backgroundColor:\"rgba(0, 0, 0, 0)\"},I2rxmIV2b:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({bWvhXBoa5:{\"data-framer-name\":\"Variant 5\"},I2rxmIV2b:{\"data-framer-name\":\"Variant 4\"},q1m7EqpcJ:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Load More\"})}),className:\"framer-l6mb1\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bs6utFenm\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I2rxmIV2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-114e05k\",\"data-styles-preset\":\"fWCKuTuXj\",children:\"Flere…\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1kr9lk4\",\"data-framer-appear-id\":\"1kr9lk4\",\"data-framer-name\":\"Spinner\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ikJcay8iK\",optimized:true,style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1yjb1y0\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"GZ10tkIoE\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 0deg, rgb(255, 255, 255) 342deg)\"},variants:{bWvhXBoa5:{background:'conic-gradient(from 0deg at 50% 50%, var(--token-83072c57-1ba4-4217-8b57-617167164efa, rgb(0, 0, 0)) /* {\"name\":\"BLACK\"} */ 0deg, rgb(255, 255, 255) 342deg)'}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ic0w41\",\"data-framer-name\":\"Round\",layoutDependency:layoutDependency,layoutId:\"qwTUcId6x\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{bWvhXBoa5:{backgroundColor:\"var(--token-fa946790-f1fe-4323-a8ed-1878361b92a7, rgb(71, 71, 71))\"}}})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ptoZW.framer-1o5mqch, .framer-ptoZW .framer-1o5mqch { display: block; }\",\".framer-ptoZW.framer-qpq0nb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px; position: relative; width: 100px; }\",\".framer-ptoZW .framer-l6mb1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-ptoZW .framer-1kr9lk4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-ptoZW .framer-1yjb1y0 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-ptoZW .framer-ic0w41 { flex: none; height: 2px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ptoZW.framer-qpq0nb { gap: 0px; } .framer-ptoZW.framer-qpq0nb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ptoZW.framer-qpq0nb > :first-child { margin-left: 0px; } .framer-ptoZW.framer-qpq0nb > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"q1m7EqpcJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"Qe8ga6bJL\":{\"layout\":[\"fixed\",\"fixed\"]},\"I2rxmIV2b\":{\"layout\":[\"fixed\",\"fixed\"]},\"bWvhXBoa5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Wld3NDzSj\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereoBT7rSor=withCSS(Component,css,\"framer-ptoZW\");export default FramereoBT7rSor;FramereoBT7rSor.displayName=\"Load More\";FramereoBT7rSor.defaultProps={height:40,width:100};addPropertyControls(FramereoBT7rSor,{variant:{options:[\"Vc6plN4x8\",\"q1m7EqpcJ\",\"Qe8ga6bJL\",\"I2rxmIV2b\",\"bWvhXBoa5\"],optionTitles:[\"Default\",\"Loading\",\"Hidden\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},Wld3NDzSj:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramereoBT7rSor,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereoBT7rSor\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"100\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Wld3NDzSj\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q1m7EqpcJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Qe8ga6bJL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I2rxmIV2b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bWvhXBoa5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import VimeoEmbedForGrid from\"https://framerusercontent.com/modules/lvhfSOZis68JL30WpaSs/20MbtajGwrQ2tw2UDXmd/Video_grid_2.js\";import Employees from\"https://framerusercontent.com/modules/HpKPj7oUrUyQl7Za8eWO/LK0PiExvtCZFTDEA4oqC/FNPYSEUBO.js\";import Projects from\"https://framerusercontent.com/modules/NOwvZCPHlwfi6QSJfpmR/0XnLxfzKmGAo3OLuUSTG/M_kRGlH1d.js\";import Clients from\"https://framerusercontent.com/modules/tSU8iUVBbyvsLBte5Wbt/vQUjh97QT25p9q0E2lqz/uikrc5xFy.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Nz26xJ8zteTlPoOEUXMj/HG3GSvSHuV4GbHYWFgLy/FNQO2JiTn.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ZQPb5KOqyzudzKYaThsw/YJOyiwPJzfalkz52ZGt8/fWCKuTuXj.js\";import LoadMore from\"https://framerusercontent.com/modules/d7gqgIZbJmP6wkNRlh7o/N4DfNXX4b483rQrV5A99/eoBT7rSor.js\";const VimeoEmbedForGridFonts=getFonts(VimeoEmbedForGrid);const LoadMoreFonts=getFonts(LoadMore);const cycleOrder=[\"gjJdmWBnv\",\"KznetGLPq\",\"xQabfjFeQ\",\"ghwFCOwFP\"];const serializationHash=\"framer-tPGeT\";const variantClassNames={ghwFCOwFP:\"framer-v-1gc6qnb\",gjJdmWBnv:\"framer-v-ct8fxb\",KznetGLPq:\"framer-v-19c1m6m\",xQabfjFeQ:\"framer-v-1i03suo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"video\";}else{return\"image\";}};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 loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const query=(prequery,{QwzelHuDR})=>prequery({from:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"pyhQGVIWN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pyhQGVIWN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gjJdmWBnv\",data:Projects,type:\"Collection\"},right:{alias:\"pyhQGVIWN\",data:Clients,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:18},select:[{collection:\"gjJdmWBnv\",name:\"HBehJerID\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"mhNOgY3TC\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"KPpKaAZnu\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"WWN4PPEch\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"kdOyBvdti\",type:\"Identifier\"},{alias:\"pyhQGVIWN.XM4W8hnOn\",collection:\"pyhQGVIWN\",name:\"XM4W8hnOn\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{type:\"LiteralValue\",value:QwzelHuDR},operator:\"in\",right:{collection:\"gjJdmWBnv\",name:\"yxNztwXoa\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"gjJdmWBnv\",name:\"OSIvciyvU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:false},type:\"BinaryOperation\"},type:\"BinaryOperation\"}});const query1=prequery=>prequery({from:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"pyhQGVIWN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pyhQGVIWN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gjJdmWBnv\",data:Projects,type:\"Collection\"},right:{alias:\"pyhQGVIWN\",data:Clients,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:18},select:[{collection:\"gjJdmWBnv\",name:\"HBehJerID\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"mhNOgY3TC\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"KPpKaAZnu\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"WWN4PPEch\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"kdOyBvdti\",type:\"Identifier\"},{alias:\"pyhQGVIWN.XM4W8hnOn\",collection:\"pyhQGVIWN\",name:\"XM4W8hnOn\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"id\",type:\"Identifier\"}]});const query2=(prequery,{iVaZBLZsb})=>prequery({from:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"pyhQGVIWN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pyhQGVIWN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gjJdmWBnv\",data:Projects,type:\"Collection\"},right:{alias:\"pyhQGVIWN\",data:Clients,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:18},select:[{collection:\"gjJdmWBnv\",name:\"HBehJerID\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"mhNOgY3TC\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"KPpKaAZnu\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"WWN4PPEch\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"kdOyBvdti\",type:\"Identifier\"},{alias:\"pyhQGVIWN.XM4W8hnOn\",collection:\"pyhQGVIWN\",name:\"XM4W8hnOn\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{type:\"LiteralValue\",value:iVaZBLZsb},operator:\"in\",right:{collection:\"gjJdmWBnv\",name:\"j6218atl4\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"gjJdmWBnv\",name:\"OSIvciyvU\",type:\"Identifier\"}},type:\"BinaryOperation\"}});const query3=(prequery,{D_qfoKTPX})=>prequery({from:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"pyhQGVIWN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pyhQGVIWN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"GNwxX84Qk\",type:\"Identifier\"},operator:\"==\",right:{collection:\"GNwxX84Qk\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gjJdmWBnv\",data:Projects,type:\"Collection\"},right:{alias:\"GNwxX84Qk\",data:Employees,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"pyhQGVIWN\",data:Clients,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:18},select:[{collection:\"gjJdmWBnv\",name:\"HBehJerID\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"mhNOgY3TC\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"KPpKaAZnu\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"WWN4PPEch\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"kdOyBvdti\",type:\"Identifier\"},{alias:\"pyhQGVIWN.XM4W8hnOn\",collection:\"pyhQGVIWN\",name:\"XM4W8hnOn\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"GNwxX84Qk\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:D_qfoKTPX},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"gjJdmWBnv\",name:\"OSIvciyvU\",type:\"Identifier\"}},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"gjJdmWBnv\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};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={\"Employee - filtered\":\"ghwFCOwFP\",\"Main-category - Filtered\":\"gjJdmWBnv\",\"Non-filtered\":\"KznetGLPq\",\"Secondary-category Filtered\":\"xQabfjFeQ\"};const getProps=({employeeFilter,height,id,mainCategory,secondaryCategory,width,...props})=>{return{...props,D_qfoKTPX:employeeFilter??props.D_qfoKTPX??\"m5Q_5CHrI\",iVaZBLZsb:secondaryCategory??props.iVaZBLZsb??\"UCdw6Yglw\",QwzelHuDR:mainCategory??props.QwzelHuDR??\"lB9jSroNf\",variant:humanReadableVariantMap[props.variant]??props.variant??\"gjJdmWBnv\"};};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,QwzelHuDR,iVaZBLZsb,D_qfoKTPX,HBehJerIDgjJdmWBnv,mhNOgY3TCgjJdmWBnv,KPpKaAZnugjJdmWBnv,WWN4PPEchgjJdmWBnv,kdOyBvdtigjJdmWBnv,pyhQGVIWN_XM4W8hnOngjJdmWBnv,idgjJdmWBnv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gjJdmWBnv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Wld3NDzSj1b86s49=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{loadMore();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ct8fxb\",className,classNames),\"data-framer-name\":\"Main-category - Filtered\",layoutDependency:layoutDependency,layoutId:\"gjJdmWBnv\",ref:refBinding,style:{...style},...addPropertyOverrides({ghwFCOwFP:{\"data-framer-name\":\"Employee - filtered\"},KznetGLPq:{\"data-framer-name\":\"Non-filtered\"},xQabfjFeQ:{\"data-framer-name\":\"Secondary-category Filtered\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:6,query:{from:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"pyhQGVIWN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pyhQGVIWN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gjJdmWBnv\",data:Projects,type:\"Collection\"},right:{alias:\"pyhQGVIWN\",data:Clients,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:18},select:[{collection:\"gjJdmWBnv\",name:\"HBehJerID\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"mhNOgY3TC\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"KPpKaAZnu\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"WWN4PPEch\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"kdOyBvdti\",type:\"Identifier\"},{alias:\"pyhQGVIWN.XM4W8hnOn\",collection:\"pyhQGVIWN\",name:\"XM4W8hnOn\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{type:\"LiteralValue\",value:QwzelHuDR},operator:\"in\",right:{collection:\"gjJdmWBnv\",name:\"yxNztwXoa\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"gjJdmWBnv\",name:\"OSIvciyvU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:false},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},...addPropertyOverrides({ghwFCOwFP:{pageSize:6,query:{from:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"pyhQGVIWN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pyhQGVIWN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"GNwxX84Qk\",type:\"Identifier\"},operator:\"==\",right:{collection:\"GNwxX84Qk\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gjJdmWBnv\",data:Projects,type:\"Collection\"},right:{alias:\"GNwxX84Qk\",data:Employees,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"pyhQGVIWN\",data:Clients,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:18},select:[{collection:\"gjJdmWBnv\",name:\"HBehJerID\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"mhNOgY3TC\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"KPpKaAZnu\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"WWN4PPEch\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"kdOyBvdti\",type:\"Identifier\"},{alias:\"pyhQGVIWN.XM4W8hnOn\",collection:\"pyhQGVIWN\",name:\"XM4W8hnOn\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"GNwxX84Qk\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:D_qfoKTPX},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"gjJdmWBnv\",name:\"OSIvciyvU\",type:\"Identifier\"}},type:\"BinaryOperation\"}}},KznetGLPq:{pageSize:6,query:{from:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"pyhQGVIWN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pyhQGVIWN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gjJdmWBnv\",data:Projects,type:\"Collection\"},right:{alias:\"pyhQGVIWN\",data:Clients,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:18},select:[{collection:\"gjJdmWBnv\",name:\"HBehJerID\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"mhNOgY3TC\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"KPpKaAZnu\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"WWN4PPEch\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"kdOyBvdti\",type:\"Identifier\"},{alias:\"pyhQGVIWN.XM4W8hnOn\",collection:\"pyhQGVIWN\",name:\"XM4W8hnOn\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"id\",type:\"Identifier\"}]}},xQabfjFeQ:{pageSize:6,query:{from:{constraint:{left:{collection:\"gjJdmWBnv\",name:\"pyhQGVIWN\",type:\"Identifier\"},operator:\"==\",right:{collection:\"pyhQGVIWN\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"gjJdmWBnv\",data:Projects,type:\"Collection\"},right:{alias:\"pyhQGVIWN\",data:Clients,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:18},select:[{collection:\"gjJdmWBnv\",name:\"HBehJerID\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"mhNOgY3TC\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"KPpKaAZnu\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"WWN4PPEch\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"kdOyBvdti\",type:\"Identifier\"},{alias:\"pyhQGVIWN.XM4W8hnOn\",collection:\"pyhQGVIWN\",name:\"XM4W8hnOn\",type:\"Identifier\"},{collection:\"gjJdmWBnv\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{type:\"LiteralValue\",value:iVaZBLZsb},operator:\"in\",right:{collection:\"gjJdmWBnv\",name:\"j6218atl4\",type:\"Identifier\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"gjJdmWBnv\",name:\"OSIvciyvU\",type:\"Identifier\"}},type:\"BinaryOperation\"}}}},baseVariant,gestureVariant),children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({\"pyhQGVIWN.XM4W8hnOn\":pyhQGVIWN_XM4W8hnOngjJdmWBnv,HBehJerID:HBehJerIDgjJdmWBnv,id:idgjJdmWBnv,kdOyBvdti:kdOyBvdtigjJdmWBnv,KPpKaAZnu:KPpKaAZnugjJdmWBnv,mhNOgY3TC:mhNOgY3TCgjJdmWBnv,WWN4PPEch:WWN4PPEchgjJdmWBnv},index)=>{HBehJerIDgjJdmWBnv??=\"\";KPpKaAZnugjJdmWBnv??=\"\";kdOyBvdtigjJdmWBnv??=\"\";pyhQGVIWN_XM4W8hnOngjJdmWBnv??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gjJdmWBnv-${idgjJdmWBnv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{HBehJerID:HBehJerIDgjJdmWBnv},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{HBehJerID:HBehJerIDgjJdmWBnv},webPageId:\"Lk3CmiSd_\"},motionChild:true,nodeId:\"PLWtKhiBH\",openInNewTab:false,scopeId:\"kPkSACOLG\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1iebknx framer-1nvvxbs\",layoutDependency:layoutDependency,layoutId:\"PLWtKhiBH\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-datheq-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"xRGOuzV19-container\",nodeId:\"xRGOuzV19\",rendersWithMotion:true,scopeId:\"kPkSACOLG\",whileHover:animation,children:/*#__PURE__*/_jsx(VimeoEmbedForGrid,{displayType:convertFromBoolean(equals(mhNOgY3TCgjJdmWBnv,\"SfpPoThVT\"),activeLocale),fallbackImage:\"https://framerusercontent.com/images/4X6LXye0BMRSUPzA2AA9blLXrc.png\",height:\"100%\",id:\"xRGOuzV19\",image:toImageSrc(WWN4PPEchgjJdmWBnv),index:0,layoutId:\"xRGOuzV19\",videoUrl:KPpKaAZnugjJdmWBnv,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17pmhm9\",\"data-styles-preset\":\"FNQO2JiTn\",style:{\"--framer-text-alignment\":\"left\"},children:\"Du har fortsatt tid til \\xe5 v\\xe6re god i \\xe5r\"})}),className:\"framer-1chgpm9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g_WgNXCCV\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:kdOyBvdtigjJdmWBnv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-114e05k\",\"data-styles-preset\":\"fWCKuTuXj\",style:{\"--framer-text-alignment\":\"left\"},children:\"For et st\\xf8rre og gr\\xf8nnere Oslo\"})}),className:\"framer-go85ab\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"koEeTzny7\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pyhQGVIWN_XM4W8hnOngjJdmWBnv,verticalAlignment:\"top\",withExternalLayout:true})]})})})},idgjJdmWBnv);}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(componentViewport?.height||1106)-40,...addPropertyOverrides({ghwFCOwFP:{y:(componentViewport?.y||0)+(componentViewport?.height||454)-40},KznetGLPq:{y:(componentViewport?.y||0)+(componentViewport?.height||1126)-40},xQabfjFeQ:{y:(componentViewport?.y||0)+(componentViewport?.height||1126)-40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w643su-container\",layoutDependency:layoutDependency,layoutId:\"uNx7xBKib-container\",nodeId:\"uNx7xBKib\",rendersWithMotion:true,scopeId:\"kPkSACOLG\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(LoadMore,{height:\"100%\",id:\"uNx7xBKib\",layoutId:\"uNx7xBKib\",variant:loaderVariants(paginationInfo,{disabled:\"Qe8ga6bJL\",loading:\"bWvhXBoa5\"},\"I2rxmIV2b\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore})})})})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tPGeT.framer-1nvvxbs, .framer-tPGeT .framer-1nvvxbs { display: block; }\",\".framer-tPGeT.framer-ct8fxb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; padding: 0px 0px 40px 0px; position: relative; width: 1100px; }\",\".framer-tPGeT .framer-1iebknx { 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: hidden; padding: 10px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\".framer-tPGeT .framer-datheq-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tPGeT .framer-1chgpm9, .framer-tPGeT .framer-go85ab { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-tPGeT .framer-1w643su-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tPGeT.framer-ct8fxb, .framer-tPGeT .framer-1iebknx { gap: 0px; } .framer-tPGeT.framer-ct8fxb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-tPGeT.framer-ct8fxb > :first-child { margin-left: 0px; } .framer-tPGeT.framer-ct8fxb > :last-child { margin-right: 0px; } .framer-tPGeT .framer-1iebknx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tPGeT .framer-1iebknx > :first-child { margin-top: 0px; } .framer-tPGeT .framer-1iebknx > :last-child { margin-bottom: 0px; } }\",\".framer-tPGeT.framer-v-1gc6qnb.framer-ct8fxb { justify-content: flex-start; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1106\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KznetGLPq\":{\"layout\":[\"fixed\",\"auto\"]},\"xQabfjFeQ\":{\"layout\":[\"fixed\",\"auto\"]},\"ghwFCOwFP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"QwzelHuDR\":\"mainCategory\",\"iVaZBLZsb\":\"secondaryCategory\",\"D_qfoKTPX\":\"employeeFilter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkPkSACOLG=withCSS(Component,css,\"framer-tPGeT\");export default FramerkPkSACOLG;FramerkPkSACOLG.displayName=\"Project-gallery\";FramerkPkSACOLG.defaultProps={height:1106,width:1100};addPropertyControls(FramerkPkSACOLG,{variant:{options:[\"gjJdmWBnv\",\"KznetGLPq\",\"xQabfjFeQ\",\"ghwFCOwFP\"],optionTitles:[\"Main-category - Filtered\",\"Non-filtered\",\"Secondary-category Filtered\",\"Employee - filtered\"],title:\"Variant\",type:ControlType.Enum},QwzelHuDR:{dataIdentifier:\"local-module:collection/mV7Zqfzj7:default\",defaultValue:\"lB9jSroNf\",title:\"Main-category\",type:ControlType.CollectionReference},iVaZBLZsb:{dataIdentifier:\"local-module:collection/p5wp1NJhb:default\",defaultValue:\"UCdw6Yglw\",title:\"Secondary-category\",type:ControlType.CollectionReference},D_qfoKTPX:{dataIdentifier:\"local-module:collection/FNPYSEUBO:default\",defaultValue:\"m5Q_5CHrI\",title:\"Employee-filter\",type:ControlType.CollectionReference}});addFonts(FramerkPkSACOLG,[{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\"}]},...VimeoEmbedForGridFonts,...LoadMoreFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkPkSACOLG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1106\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"QwzelHuDR\\\":\\\"mainCategory\\\",\\\"iVaZBLZsb\\\":\\\"secondaryCategory\\\",\\\"D_qfoKTPX\\\":\\\"employeeFilter\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1100\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KznetGLPq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xQabfjFeQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ghwFCOwFP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}