{"version":3,"file":"kPkSACOLG.BYJeFRbO.mjs","names":["useRef","useState","Player","useCallback","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","transition2","animation","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","className","css","LoadMore","useRef","className","Projects","Clients","Employees","_Fragment","pyhQGVIWN_XM4W8hnOngjJdmWBnv","HBehJerIDgjJdmWBnv","idgjJdmWBnv","kdOyBvdtigjJdmWBnv","KPpKaAZnugjJdmWBnv","mhNOgY3TCgjJdmWBnv","WWN4PPEchgjJdmWBnv"],"sources":["https:/framerusercontent.com/modules/lvhfSOZis68JL30WpaSs/Sa7Vbjz7fKzSoBfmgYnt/Video_grid_2.js","https:/framerusercontent.com/modules/d7gqgIZbJmP6wkNRlh7o/N4DfNXX4b483rQrV5A99/eoBT7rSor.js","https:/framerusercontent.com/modules/qULcZJk3iHe6exHy0KPG/tUuhJObEajPLXRbTtrC3/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(`[Queue] Starting to load item ${next.id}, ${this.queue.length} items remaining in queue`);// Execute the loading function\nnext.loadFn().then(()=>{console.log(`[Queue] Successfully loaded item ${next.id}`);this.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(`[${instanceId.current}] No video URL provided, showing fallback immediately`);if(fallbackImage){loadFallbackImage();}else{setHasError(true);setIsLoading(false);}return;}else if(displayType===\"image\"&&!image){console.log(`[${instanceId.current}] No image provided, showing fallback immediately`);if(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`);const img=new Image;const handleLoad=()=>{if(mountedRef.current){const ratio=(img.height/img.width*100).toFixed(2);console.log(`[${instanceId.current}] Fallback image loaded, aspect ratio: ${ratio}%`);setAspectRatio(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(`[${instanceId.current}] Image loaded, aspect ratio: ${ratio}%`);setAspectRatio(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(`[${instanceId.current}] Image load timeout, trying fallback`);img.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`);setIsLoading(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(`[${instanceId.current}] Safety timeout triggered - forcing loading complete`);// If we're still loading after the timeout, retry or show fallback\nif(retryCount<2){console.log(`[${instanceId.current}] Retrying video load (attempt ${retryCount+1})`);setRetryCount(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(`[${instanceId.current}] Max retries reached, showing fallback`);if(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`);// Create new player instance\nplayerRef.current=new Player(iframeRef.current);// Set up event listeners\nplayerRef.current.on(\"play\",()=>{if(mountedRef.current){console.log(`[${instanceId.current}] Play event received`);setIsPlaying(true);setIsLoading(false);}});playerRef.current.on(\"pause\",()=>{if(mountedRef.current&&playbackConfirmedRef.current){console.log(`[${instanceId.current}] Paused after confirmed playback`);setIsPlaying(false);}});playerRef.current.on(\"loaded\",()=>{if(mountedRef.current){console.log(`[${instanceId.current}] Loaded event received`);}});// 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(`[${instanceId.current}] Max retries reached after error, showing fallback`);if(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(`[${instanceId.current}] Playback confirmed via progress event`);playbackConfirmedRef.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`);// 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(`[${instanceId.current}] Video dimensions: ${width}x${height}`);const 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(`[${instanceId.current}] No progress event received, but continuing queue`);resolve();}},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(`[${instanceId.current}] Retrying initialization (attempt ${retryCount+1})`);setRetryCount(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(`[${instanceId.current}] Max retries reached, showing fallback`);if(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(`[${instanceId.current}] Play attempt ${playAttemptRef.current}`);try{await playerRef.current.play();console.log(`[${instanceId.current}] Play command sent`);}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(`[${instanceId.current}] Giving up after ${playAttemptRef.current} attempts`);if(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/Sa7Vbjz7fKzSoBfmgYnt/Video_grid_2.js\";import Employees from\"https://framerusercontent.com/modules/HpKPj7oUrUyQl7Za8eWO/g7E6unoJ0QfzYUHnXbjH/FNPYSEUBO.js\";import Projects from\"https://framerusercontent.com/modules/NOwvZCPHlwfi6QSJfpmR/LerSfcw6BT4UhR0Ovteb/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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkPkSACOLG\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1100\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"QwzelHuDR\\\":\\\"mainCategory\\\",\\\"iVaZBLZsb\\\":\\\"secondaryCategory\\\",\\\"D_qfoKTPX\\\":\\\"employeeFilter\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KznetGLPq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xQabfjFeQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ghwFCOwFP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1106\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}