{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js", "ssg:https://framerusercontent.com/modules/4eESG9a5vjEF71LDCMbq/T7p5ZFWjP29IzRorJPoX/JDguMTCRG.js", "ssg:https://framerusercontent.com/modules/8zqKRf482wFLew2gHDHm/wP0pYE70V2ux94X4cE7h/ZkokeclFd.js", "ssg:https://framerusercontent.com/modules/4bXIvkjtLBc5jhyI81M4/2cCbNubSUr19T22OfNpg/eSOfEPmfr.js", "ssg:https://framerusercontent.com/modules/AifWhQ5XPXY8J8e023NV/f43pgbL4piiq97qXAQhd/kNP8cImIG.js", "ssg:https://framerusercontent.com/modules/pX2xxfen53QKefbFrRWF/Rgac5oCPjhfrWiGojdCS/fuxa0eFsG.js", "ssg:https://framerusercontent.com/modules/1UdTAZug53JaV3aROtjx/LfDwW2caOo3Oy9cRtHg4/iMp9mQZvd.js", "ssg:https://framerusercontent.com/modules/u4V8UUcLOUDywyehXPUi/GGooV1i72nfQcXSfWwoJ/llioleSC9.js", "ssg:https://framerusercontent.com/modules/V9VzqQuzCJox2shMWuAR/I7iJju5wunPserNvRmoj/rG5rvlLkB.js", "ssg:https://framerusercontent.com/modules/4p38iJC3eH2BDn3iTnTW/jpOP7FuJ7FuwhWQTOt46/W96ZH6Gnz.js", "ssg:https://framerusercontent.com/modules/gRyXMqEHRsaf2BSwffKV/vHvcYfeh5jlj0ojBmiUl/wVLyqC_6X.js", "ssg:https://framerusercontent.com/modules/oPrNzoMP1M7Nc4ifPrZw/0KAcJBuA5OToLDMIIh3v/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/z2QesBsilUbFqVBVwG9G/f2YkHMTEx8Vd3fcHzhFA/q35quwzCc.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rDPUwPDs7NpdJ6SukmDV/4BpAxxwKdgQoVPxw1jct/xNIXLfFSf.js\";const cycleOrder=[\"hDbCvcxst\",\"KVvKXtHq9\"];const serializationHash=\"framer-Akmxr\";const variantClassNames={hDbCvcxst:\"framer-v-145ktc9\",KVvKXtHq9:\"framer-v-yd3s1d\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={Phone:\"KVvKXtHq9\",Primary:\"hDbCvcxst\"};const getProps=({description,height,id,image,title,width,...props})=>{return{...props,iU68ScBCY:description??props.iU68ScBCY??\"Description\",M6makQZJz:title??props.M6makQZJz??\"Title\",OtapoObdF:image??props.OtapoObdF,variant:humanReadableVariantMap[props.variant]??props.variant??\"hDbCvcxst\"};};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,OtapoObdF,M6makQZJz,iU68ScBCY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hDbCvcxst\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-145ktc9\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"hDbCvcxst\",ref:refBinding,style:{...style},...addPropertyOverrides({KVvKXtHq9:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||245.5)-0-359.8)/2+0+0)),pixelHeight:315,pixelWidth:437,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(OtapoObdF),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ieoc4f\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"Y9Cx1EXp6\",...addPropertyOverrides({KVvKXtHq9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||191.5)-0-305.8)/2+0+0)),pixelHeight:315,pixelWidth:437,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(OtapoObdF),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11zx5yf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"XGsulj8pd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Title\"})}),className:\"framer-1qxv4mt\",\"data-framer-name\":\"Branding\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b2S116wtB\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:M6makQZJz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Description\"})}),className:\"framer-1q2ai5c\",\"data-framer-name\":\"We create impactful brand identities that differentiate your business and connect with your audience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lEPU50rVm\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:iU68ScBCY,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Akmxr.framer-g71a2p, .framer-Akmxr .framer-g71a2p { display: block; }\",\".framer-Akmxr.framer-145ktc9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 180px; }\",\".framer-Akmxr .framer-1ieoc4f { aspect-ratio: 1.3846153846153846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 130px); position: relative; width: 100%; }\",\".framer-Akmxr .framer-11zx5yf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Akmxr .framer-1qxv4mt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Akmxr .framer-1q2ai5c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Akmxr.framer-145ktc9, .framer-Akmxr .framer-11zx5yf { gap: 0px; } .framer-Akmxr.framer-145ktc9 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Akmxr.framer-145ktc9 > :first-child, .framer-Akmxr .framer-11zx5yf > :first-child { margin-top: 0px; } .framer-Akmxr.framer-145ktc9 > :last-child, .framer-Akmxr .framer-11zx5yf > :last-child { margin-bottom: 0px; } .framer-Akmxr .framer-11zx5yf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-Akmxr.framer-v-yd3s1d.framer-145ktc9 { gap: 32px; }\",\".framer-Akmxr.framer-v-yd3s1d .framer-1ieoc4f { aspect-ratio: 1.8 / 1; height: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-Akmxr.framer-v-yd3s1d .framer-11zx5yf { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Akmxr.framer-v-yd3s1d.framer-145ktc9, .framer-Akmxr.framer-v-yd3s1d .framer-11zx5yf { gap: 0px; } .framer-Akmxr.framer-v-yd3s1d.framer-145ktc9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Akmxr.framer-v-yd3s1d.framer-145ktc9 > :first-child, .framer-Akmxr.framer-v-yd3s1d .framer-11zx5yf > :first-child { margin-top: 0px; } .framer-Akmxr.framer-v-yd3s1d.framer-145ktc9 > :last-child, .framer-Akmxr.framer-v-yd3s1d .framer-11zx5yf > :last-child { margin-bottom: 0px; } .framer-Akmxr.framer-v-yd3s1d .framer-11zx5yf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 245.5\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KVvKXtHq9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OtapoObdF\":\"image\",\"M6makQZJz\":\"title\",\"iU68ScBCY\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJDguMTCRG=withCSS(Component,css,\"framer-Akmxr\");export default FramerJDguMTCRG;FramerJDguMTCRG.displayName=\"Services / Items / Description\";FramerJDguMTCRG.defaultProps={height:245.5,width:180};addPropertyControls(FramerJDguMTCRG,{variant:{options:[\"hDbCvcxst\",\"KVvKXtHq9\"],optionTitles:[\"Primary\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},OtapoObdF:{title:\"Image\",type:ControlType.ResponsiveImage},M6makQZJz:{defaultValue:\"Title\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},iU68ScBCY:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerJDguMTCRG,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJDguMTCRG\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"OtapoObdF\\\":\\\"image\\\",\\\"M6makQZJz\\\":\\\"title\\\",\\\"iU68ScBCY\\\":\\\"description\\\"}\",\"framerIntrinsicWidth\":\"180\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KVvKXtHq9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"245.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JDguMTCRG.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionAWithFX=withFX(motion.a);const cycleOrder=[\"I5anvyWOt\",\"wNupTgeBX\",\"D_0PvXkKg\",\"sU_9MvVyf\",\"DY4InP0NL\",\"OM0T28LIR\"];const serializationHash=\"framer-dLrOY\";const variantClassNames={D_0PvXkKg:\"framer-v-pz4gxq\",DY4InP0NL:\"framer-v-1wdw0ve\",I5anvyWOt:\"framer-v-1vftdq5\",OM0T28LIR:\"framer-v-16tri3p\",sU_9MvVyf:\"framer-v-1hgpdev\",wNupTgeBX:\"framer-v-10t5t6l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:30,y:0};const transition1={delay:0,duration:1,ease:[.22,1,.36,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:30,y:0};const transition2={delay:0,duration:.4,ease:[.68,0,.16,.97],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:20,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={\"Desktop active\":\"I5anvyWOt\",\"Desktop inactive\":\"wNupTgeBX\",\"Phone active\":\"DY4InP0NL\",\"Phone inactive\":\"OM0T28LIR\",\"Tablet active\":\"D_0PvXkKg\",\"Tablet inative\":\"sU_9MvVyf\"};const getProps=({height,id,link,mouseEnter,title,width,...props})=>{return{...props,fErYKCICq:title??props.fErYKCICq??\"Title\",KrXbsPILD:mouseEnter??props.KrXbsPILD,UrMA4ICCc:link??props.UrMA4ICCc,variant:humanReadableVariantMap[props.variant]??props.variant??\"I5anvyWOt\"};};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,fErYKCICq,KrXbsPILD,UrMA4ICCc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I5anvyWOt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter10pbwk0=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(KrXbsPILD){const res=await KrXbsPILD(...args);if(res===false)return false;}});const sharedStyleClassNames=[];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:transition2,children:/*#__PURE__*/_jsx(Link,{href:UrMA4ICCc,motionChild:true,nodeId:\"I5anvyWOt\",openInNewTab:false,scopeId:\"ZkokeclFd\",smoothScroll:false,children:/*#__PURE__*/_jsx(MotionAWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(scopingClassNames,\"framer-1vftdq5\",className,classNames)} framer-1g1xgga`,\"data-border\":true,\"data-framer-name\":\"Desktop active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I5anvyWOt\",onMouseEnter:onMouseEnter10pbwk0,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(50, 50, 50)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({D_0PvXkKg:{\"data-framer-name\":\"Tablet active\"},DY4InP0NL:{__framer__enter:animation2,__framer__exit:animation3,\"data-framer-name\":\"Phone active\"},OM0T28LIR:{__framer__enter:animation2,__framer__exit:animation3,\"data-framer-name\":\"Phone inactive\"},sU_9MvVyf:{\"data-framer-name\":\"Tablet inative\"},wNupTgeBX:{\"data-framer-name\":\"Desktop inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i8uvxx\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"AibRWKCID\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"102px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})}),className:\"framer-t8hhz4\",\"data-framer-name\":\"Websites\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ElqYy4OYu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:fErYKCICq,variants:{D_0PvXkKg:{opacity:1},DY4InP0NL:{opacity:1},OM0T28LIR:{opacity:.2},sU_9MvVyf:{opacity:.15},wNupTgeBX:{opacity:.15}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D_0PvXkKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},DY4InP0NL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},OM0T28LIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},sU_9MvVyf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ttgg32\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"IAPdu_olr\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b0q5g5\",layoutDependency:layoutDependency,layoutId:\"QW0eLpaJ0\",style:{backgroundColor:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(253, 102, 51))\",skewX:-5}})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dLrOY.framer-1g1xgga, .framer-dLrOY .framer-1g1xgga { display: block; }\",\".framer-dLrOY.framer-1vftdq5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 20px 16px; position: relative; text-decoration: none; width: 725px; }\",\".framer-dLrOY .framer-1i8uvxx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dLrOY .framer-t8hhz4 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-dLrOY .framer-1ttgg32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-dLrOY .framer-b0q5g5 { flex: none; height: 14px; overflow: visible; position: relative; width: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dLrOY.framer-1vftdq5, .framer-dLrOY .framer-1i8uvxx, .framer-dLrOY .framer-1ttgg32 { gap: 0px; } .framer-dLrOY.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-dLrOY.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-dLrOY.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-dLrOY .framer-1i8uvxx > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-dLrOY .framer-1i8uvxx > :first-child, .framer-dLrOY .framer-1ttgg32 > :first-child { margin-left: 0px; } .framer-dLrOY .framer-1i8uvxx > :last-child, .framer-dLrOY .framer-1ttgg32 > :last-child { margin-right: 0px; } .framer-dLrOY .framer-1ttgg32 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-dLrOY.framer-v-10t5t6l.framer-1vftdq5 { padding: 10px 0px 20px 0px; }\",\".framer-dLrOY.framer-v-10t5t6l .framer-1i8uvxx, .framer-dLrOY.framer-v-pz4gxq .framer-1i8uvxx { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dLrOY.framer-v-10t5t6l .framer-1i8uvxx { gap: 0px; } .framer-dLrOY.framer-v-10t5t6l .framer-1i8uvxx > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-dLrOY.framer-v-10t5t6l .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-dLrOY.framer-v-10t5t6l .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",\".framer-dLrOY.framer-v-pz4gxq.framer-1vftdq5, .framer-dLrOY.framer-v-1hgpdev.framer-1vftdq5 { gap: 14px; padding: 12px 0px 26px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dLrOY.framer-v-pz4gxq.framer-1vftdq5, .framer-dLrOY.framer-v-pz4gxq .framer-1i8uvxx { gap: 0px; } .framer-dLrOY.framer-v-pz4gxq.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-dLrOY.framer-v-pz4gxq.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-dLrOY.framer-v-pz4gxq.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-dLrOY.framer-v-pz4gxq .framer-1i8uvxx > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-dLrOY.framer-v-pz4gxq .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-dLrOY.framer-v-pz4gxq .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",\".framer-dLrOY.framer-v-1hgpdev .framer-1i8uvxx { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dLrOY.framer-v-1hgpdev.framer-1vftdq5, .framer-dLrOY.framer-v-1hgpdev .framer-1i8uvxx { gap: 0px; } .framer-dLrOY.framer-v-1hgpdev.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-dLrOY.framer-v-1hgpdev.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-dLrOY.framer-v-1hgpdev.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-dLrOY.framer-v-1hgpdev .framer-1i8uvxx > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-dLrOY.framer-v-1hgpdev .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-dLrOY.framer-v-1hgpdev .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",\".framer-dLrOY.framer-v-1wdw0ve.framer-1vftdq5 { gap: 14px; padding: 0px 0px 16px 0px; width: 320px; }\",\".framer-dLrOY.framer-v-1wdw0ve .framer-1i8uvxx, .framer-dLrOY.framer-v-16tri3p .framer-1i8uvxx { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dLrOY.framer-v-1wdw0ve.framer-1vftdq5, .framer-dLrOY.framer-v-1wdw0ve .framer-1i8uvxx { gap: 0px; } .framer-dLrOY.framer-v-1wdw0ve.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-dLrOY.framer-v-1wdw0ve.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-dLrOY.framer-v-1wdw0ve.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-dLrOY.framer-v-1wdw0ve .framer-1i8uvxx > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-dLrOY.framer-v-1wdw0ve .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-dLrOY.framer-v-1wdw0ve .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",\".framer-dLrOY.framer-v-16tri3p.framer-1vftdq5 { gap: 10px; padding: 0px 0px 16px 0px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dLrOY.framer-v-16tri3p.framer-1vftdq5, .framer-dLrOY.framer-v-16tri3p .framer-1i8uvxx { gap: 0px; } .framer-dLrOY.framer-v-16tri3p.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dLrOY.framer-v-16tri3p.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-dLrOY.framer-v-16tri3p.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-dLrOY.framer-v-16tri3p .framer-1i8uvxx > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-dLrOY.framer-v-16tri3p .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-dLrOY.framer-v-16tri3p .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",'.framer-dLrOY[data-border=\"true\"]::after, .framer-dLrOY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 142\n * @framerIntrinsicWidth 725\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wNupTgeBX\":{\"layout\":[\"fixed\",\"auto\"]},\"D_0PvXkKg\":{\"layout\":[\"fixed\",\"auto\"]},\"sU_9MvVyf\":{\"layout\":[\"fixed\",\"auto\"]},\"DY4InP0NL\":{\"layout\":[\"fixed\",\"auto\"]},\"OM0T28LIR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fErYKCICq\":\"title\",\"KrXbsPILD\":\"mouseEnter\",\"UrMA4ICCc\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZkokeclFd=withCSS(Component,css,\"framer-dLrOY\");export default FramerZkokeclFd;FramerZkokeclFd.displayName=\"Services / Items / Item\";FramerZkokeclFd.defaultProps={height:142,width:725};addPropertyControls(FramerZkokeclFd,{variant:{options:[\"I5anvyWOt\",\"wNupTgeBX\",\"D_0PvXkKg\",\"sU_9MvVyf\",\"DY4InP0NL\",\"OM0T28LIR\"],optionTitles:[\"Desktop active\",\"Desktop inactive\",\"Tablet active\",\"Tablet inative\",\"Phone active\",\"Phone inactive\"],title:\"Variant\",type:ControlType.Enum},fErYKCICq:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},KrXbsPILD:{title:\"Mouse Enter\",type:ControlType.EventHandler},UrMA4ICCc:{title:\"Link\",type:ControlType.Link}});addFonts(FramerZkokeclFd,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZkokeclFd\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"142\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"725\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wNupTgeBX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D_0PvXkKg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sU_9MvVyf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DY4InP0NL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OM0T28LIR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"fErYKCICq\\\":\\\"title\\\",\\\"KrXbsPILD\\\":\\\"mouseEnter\\\",\\\"UrMA4ICCc\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZkokeclFd.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ServicesItemsDescription from\"https://framerusercontent.com/modules/4eESG9a5vjEF71LDCMbq/T7p5ZFWjP29IzRorJPoX/JDguMTCRG.js\";import ServicesItemsItem from\"https://framerusercontent.com/modules/8zqKRf482wFLew2gHDHm/wP0pYE70V2ux94X4cE7h/ZkokeclFd.js\";const ServicesItemsDescriptionFonts=getFonts(ServicesItemsDescription);const MotionDivWithFX=withFX(motion.div);const ServicesItemsItemFonts=getFonts(ServicesItemsItem);const cycleOrder=[\"vl7fPkW6x\",\"xrEj7YEsU\",\"CDtoZNgtA\",\"TLxLam4YZ\",\"YEnTeNdRP\",\"fNHB6YKk0\",\"y1cmM3CL5\",\"VE5xIiPuL\",\"VGwYuVR2s\"];const serializationHash=\"framer-F5hnV\";const variantClassNames={CDtoZNgtA:\"framer-v-1ur73tn\",fNHB6YKk0:\"framer-v-1lhle6x\",TLxLam4YZ:\"framer-v-1t7ta8b\",VE5xIiPuL:\"framer-v-mqhzof\",VGwYuVR2s:\"framer-v-pdjrec\",vl7fPkW6x:\"framer-v-dif0uf\",xrEj7YEsU:\"framer-v-1635f9f\",y1cmM3CL5:\"framer-v-aie38q\",YEnTeNdRP:\"framer-v-o3l3yy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.68,0,.16,.97],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const 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={\"Desktop 2\":\"xrEj7YEsU\",\"Desktop 3\":\"CDtoZNgtA\",\"Desktop main\":\"vl7fPkW6x\",\"Phone 2\":\"VE5xIiPuL\",\"Phone 3\":\"VGwYuVR2s\",\"Phone main\":\"y1cmM3CL5\",\"Tablet 2\":\"YEnTeNdRP\",\"Tablet 3\":\"fNHB6YKk0\",\"Tablet main\":\"TLxLam4YZ\"};const getProps=({_01Description,_01Image,_01Title,_02Description,_02Image,_02Title,_03Description,_03Image,_03Title,height,id,width,...props})=>{return{...props,AChBv6mnx:_02Title??props.AChBv6mnx??\"02 Title\",AtsGqKbqe:_03Image??props.AtsGqKbqe,dym8aGlmH:_02Description??props.dym8aGlmH??\"02 Description\",kGMjQGWFg:_02Image??props.kGMjQGWFg,L5bVOjC54:_01Image??props.L5bVOjC54,nfr3_vd4_:_01Description??props.nfr3_vd4_??\"01 Description\",u2WQNcukZ:_03Description??props.u2WQNcukZ??\"03 Description\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vl7fPkW6x\",Xgqdpwxoc:_01Title??props.Xgqdpwxoc??\"01 Title\",Y7m9L8sgJ:_03Title??props.Y7m9L8sgJ??\"03 Title\"};};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,L5bVOjC54,Xgqdpwxoc,nfr3_vd4_,kGMjQGWFg,AChBv6mnx,dym8aGlmH,AtsGqKbqe,Y7m9L8sgJ,u2WQNcukZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vl7fPkW6x\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const KrXbsPILD1xtnafx=activeVariantCallback(async(...args)=>{setVariant(\"vl7fPkW6x\");});const KrXbsPILD1ov8v4r=activeVariantCallback(async(...args)=>{setVariant(\"TLxLam4YZ\");});const KrXbsPILDgko28l=activeVariantCallback(async(...args)=>{setVariant(\"y1cmM3CL5\");});const KrXbsPILDjnvuu0=activeVariantCallback(async(...args)=>{setVariant(\"xrEj7YEsU\");});const KrXbsPILDkhapmg=activeVariantCallback(async(...args)=>{setVariant(\"YEnTeNdRP\");});const KrXbsPILDbr4mb1=activeVariantCallback(async(...args)=>{setVariant(\"VE5xIiPuL\");});const KrXbsPILD11xbel4=activeVariantCallback(async(...args)=>{setVariant(\"CDtoZNgtA\");});const KrXbsPILD8caf5w=activeVariantCallback(async(...args)=>{setVariant(\"fNHB6YKk0\");});const KrXbsPILD1i08jbh=activeVariantCallback(async(...args)=>{setVariant(\"VGwYuVR2s\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const visible=isSet(AChBv6mnx);const visible1=isSet(Y7m9L8sgJ);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-dif0uf\",className,classNames),\"data-framer-name\":\"Desktop main\",layoutDependency:layoutDependency,layoutId:\"vl7fPkW6x\",ref:refBinding,style:{...style},...addPropertyOverrides({CDtoZNgtA:{\"data-framer-name\":\"Desktop 3\"},fNHB6YKk0:{\"data-framer-name\":\"Tablet 3\"},TLxLam4YZ:{\"data-framer-name\":\"Tablet main\"},VE5xIiPuL:{\"data-framer-name\":\"Phone 2\"},VGwYuVR2s:{\"data-framer-name\":\"Phone 3\"},xrEj7YEsU:{\"data-framer-name\":\"Desktop 2\"},y1cmM3CL5:{\"data-framer-name\":\"Phone main\"},YEnTeNdRP:{\"data-framer-name\":\"Tablet 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-vqugsr\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"dnnR9KUUK\",...addPropertyOverrides({y1cmM3CL5:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:245,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 3, 1px) * 0.85)`,y:(componentViewport?.y||0)+0+0,...addPropertyOverrides({CDtoZNgtA:{y:(componentViewport?.y||0)+0+100},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px)`},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+486+0},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+486+0},xrEj7YEsU:{y:(componentViewport?.y||0)+0+50},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+486+0},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t6msbh-container\",layoutDependency:layoutDependency,layoutId:\"AxX6jMRFd-container\",nodeId:\"AxX6jMRFd\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsDescription,{height:\"100%\",id:\"AxX6jMRFd\",iU68ScBCY:nfr3_vd4_,layoutId:\"AxX6jMRFd\",M6makQZJz:Xgqdpwxoc,OtapoObdF:toResponsiveImage(L5bVOjC54),style:{width:\"100%\"},variant:\"hDbCvcxst\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe)},fNHB6YKk0:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe)},VE5xIiPuL:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg),variant:\"KVvKXtHq9\"},VGwYuVR2s:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe),variant:\"KVvKXtHq9\"},xrEj7YEsU:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg)},y1cmM3CL5:{variant:\"KVvKXtHq9\"},YEnTeNdRP:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg)}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-phl2vz\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"oeh8xrVP_\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"commercial\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"tKJrmmRKR\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nd4r9v-container\",layoutDependency:layoutDependency,layoutId:\"xX3J7kRZq-container\",nodeId:\"xX3J7kRZq\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:Xgqdpwxoc,height:\"100%\",id:\"xX3J7kRZq\",KrXbsPILD:KrXbsPILD1xtnafx,layoutId:\"xX3J7kRZq\",style:{width:\"100%\"},UrMA4ICCc:resolvedLinks[0],variant:\"I5anvyWOt\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{UrMA4ICCc:resolvedLinks[2],variant:\"wNupTgeBX\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILD1ov8v4r,UrMA4ICCc:resolvedLinks[5],variant:\"sU_9MvVyf\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILD1ov8v4r,UrMA4ICCc:resolvedLinks[3],variant:\"D_0PvXkKg\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDgko28l,UrMA4ICCc:resolvedLinks[7],variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDgko28l,UrMA4ICCc:resolvedLinks[8],variant:\"OM0T28LIR\"},xrEj7YEsU:{UrMA4ICCc:resolvedLinks[1],variant:\"wNupTgeBX\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDgko28l,UrMA4ICCc:resolvedLinks[6],variant:\"DY4InP0NL\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILD1ov8v4r,UrMA4ICCc:resolvedLinks[4],variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})})}),visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"marketing\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"aThYx_blD\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+152,...addPropertyOverrides({fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1blppte-container\",layoutDependency:layoutDependency,layoutId:\"iowul08mJ-container\",nodeId:\"iowul08mJ\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:AChBv6mnx,height:\"100%\",id:\"iowul08mJ\",KrXbsPILD:KrXbsPILDjnvuu0,layoutId:\"iowul08mJ\",style:{width:\"100%\"},UrMA4ICCc:resolvedLinks1[0],variant:\"wNupTgeBX\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{UrMA4ICCc:resolvedLinks1[2]},fNHB6YKk0:{KrXbsPILD:KrXbsPILDkhapmg,UrMA4ICCc:resolvedLinks1[5],variant:\"sU_9MvVyf\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILDkhapmg,UrMA4ICCc:resolvedLinks1[3],variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDbr4mb1,UrMA4ICCc:resolvedLinks1[7],variant:\"DY4InP0NL\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDbr4mb1,UrMA4ICCc:resolvedLinks1[8],variant:\"OM0T28LIR\"},xrEj7YEsU:{UrMA4ICCc:resolvedLinks1[1],variant:\"I5anvyWOt\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDbr4mb1,UrMA4ICCc:resolvedLinks1[6],variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILDkhapmg,UrMA4ICCc:resolvedLinks1[4],variant:\"D_0PvXkKg\"}},baseVariant,gestureVariant)})})})}),visible1&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined},{href:{pathVariables:{LNW8xYWC1:\"execution\"},unresolvedPathSlugs:{LNW8xYWC1:{collectionId:\"NEfCxLSn2\",collectionItemId:\"RBjfX145Z\"}},webPageId:\"ydI4uu3Vr\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+304,...addPropertyOverrides({fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d1lq8o-container\",layoutDependency:layoutDependency,layoutId:\"I6fdJ7qzg-container\",nodeId:\"I6fdJ7qzg\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:Y7m9L8sgJ,height:\"100%\",id:\"I6fdJ7qzg\",KrXbsPILD:KrXbsPILD11xbel4,layoutId:\"I6fdJ7qzg\",style:{width:\"100%\"},UrMA4ICCc:resolvedLinks2[0],variant:\"wNupTgeBX\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{UrMA4ICCc:resolvedLinks2[2],variant:\"I5anvyWOt\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILD8caf5w,UrMA4ICCc:resolvedLinks2[5],variant:\"D_0PvXkKg\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILD8caf5w,UrMA4ICCc:resolvedLinks2[3],variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILD1i08jbh,UrMA4ICCc:resolvedLinks2[7],variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILD1i08jbh,UrMA4ICCc:resolvedLinks2[8],variant:\"DY4InP0NL\"},xrEj7YEsU:{UrMA4ICCc:resolvedLinks2[1]},y1cmM3CL5:{KrXbsPILD:KrXbsPILD1i08jbh,UrMA4ICCc:resolvedLinks2[6],variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILD8caf5w,UrMA4ICCc:resolvedLinks2[4],variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-F5hnV.framer-t4nuy2, .framer-F5hnV .framer-t4nuy2 { display: block; }\",\".framer-F5hnV.framer-dif0uf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1128px; }\",\".framer-F5hnV .framer-vqugsr { align-content: flex-start; align-items: flex-start; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-F5hnV .framer-t6msbh-container { flex: none; height: auto; position: relative; width: 85%; }\",\".framer-F5hnV .framer-phl2vz { align-content: flex-start; align-items: flex-start; display: flex; flex: 8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-F5hnV .framer-nd4r9v-container, .framer-F5hnV .framer-1blppte-container, .framer-F5hnV .framer-1d1lq8o-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F5hnV.framer-dif0uf, .framer-F5hnV .framer-vqugsr, .framer-F5hnV .framer-phl2vz { gap: 0px; } .framer-F5hnV.framer-dif0uf > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-F5hnV.framer-dif0uf > :first-child, .framer-F5hnV .framer-vqugsr > :first-child { margin-left: 0px; } .framer-F5hnV.framer-dif0uf > :last-child, .framer-F5hnV .framer-vqugsr > :last-child { margin-right: 0px; } .framer-F5hnV .framer-vqugsr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-F5hnV .framer-phl2vz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-F5hnV .framer-phl2vz > :first-child { margin-top: 0px; } .framer-F5hnV .framer-phl2vz > :last-child { margin-bottom: 0px; } }\",\".framer-F5hnV.framer-v-1635f9f .framer-vqugsr { padding: 50px 0px 0px 0px; }\",\".framer-F5hnV.framer-v-1ur73tn .framer-vqugsr { padding: 100px 0px 0px 0px; }\",\".framer-F5hnV.framer-v-1t7ta8b .framer-vqugsr, .framer-F5hnV.framer-v-o3l3yy .framer-vqugsr, .framer-F5hnV.framer-v-1lhle6x .framer-vqugsr { flex: 3 0 0px; }\",\".framer-F5hnV.framer-v-1t7ta8b .framer-t6msbh-container, .framer-F5hnV.framer-v-o3l3yy .framer-t6msbh-container, .framer-F5hnV.framer-v-1lhle6x .framer-t6msbh-container { flex: 1 0 0px; width: 1px; }\",\".framer-F5hnV.framer-v-1t7ta8b .framer-phl2vz, .framer-F5hnV.framer-v-o3l3yy .framer-phl2vz, .framer-F5hnV.framer-v-1lhle6x .framer-phl2vz { flex: 9 0 0px; }\",\".framer-F5hnV.framer-v-aie38q.framer-dif0uf, .framer-F5hnV.framer-v-mqhzof.framer-dif0uf, .framer-F5hnV.framer-v-pdjrec.framer-dif0uf { flex-direction: column; gap: 40px; width: 400px; }\",\".framer-F5hnV.framer-v-aie38q .framer-vqugsr, .framer-F5hnV.framer-v-mqhzof .framer-vqugsr, .framer-F5hnV.framer-v-pdjrec .framer-vqugsr { flex: none; order: 1; width: 100%; }\",\".framer-F5hnV.framer-v-aie38q .framer-t6msbh-container, .framer-F5hnV.framer-v-mqhzof .framer-t6msbh-container, .framer-F5hnV.framer-v-pdjrec .framer-t6msbh-container { width: 100%; }\",\".framer-F5hnV.framer-v-aie38q .framer-phl2vz, .framer-F5hnV.framer-v-mqhzof .framer-phl2vz, .framer-F5hnV.framer-v-pdjrec .framer-phl2vz { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F5hnV.framer-v-aie38q.framer-dif0uf { gap: 0px; } .framer-F5hnV.framer-v-aie38q.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-F5hnV.framer-v-aie38q.framer-dif0uf > :first-child { margin-top: 0px; } .framer-F5hnV.framer-v-aie38q.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F5hnV.framer-v-mqhzof.framer-dif0uf { gap: 0px; } .framer-F5hnV.framer-v-mqhzof.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-F5hnV.framer-v-mqhzof.framer-dif0uf > :first-child { margin-top: 0px; } .framer-F5hnV.framer-v-mqhzof.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F5hnV.framer-v-pdjrec.framer-dif0uf { gap: 0px; } .framer-F5hnV.framer-v-pdjrec.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-F5hnV.framer-v-pdjrec.framer-dif0uf > :first-child { margin-top: 0px; } .framer-F5hnV.framer-v-pdjrec.framer-dif0uf > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 446.5\n * @framerIntrinsicWidth 1128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xrEj7YEsU\":{\"layout\":[\"fixed\",\"auto\"]},\"CDtoZNgtA\":{\"layout\":[\"fixed\",\"auto\"]},\"TLxLam4YZ\":{\"layout\":[\"fixed\",\"auto\"]},\"YEnTeNdRP\":{\"layout\":[\"fixed\",\"auto\"]},\"fNHB6YKk0\":{\"layout\":[\"fixed\",\"auto\"]},\"y1cmM3CL5\":{\"layout\":[\"fixed\",\"auto\"]},\"VE5xIiPuL\":{\"layout\":[\"fixed\",\"auto\"]},\"VGwYuVR2s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"L5bVOjC54\":\"_01Image\",\"Xgqdpwxoc\":\"_01Title\",\"nfr3_vd4_\":\"_01Description\",\"kGMjQGWFg\":\"_02Image\",\"AChBv6mnx\":\"_02Title\",\"dym8aGlmH\":\"_02Description\",\"AtsGqKbqe\":\"_03Image\",\"Y7m9L8sgJ\":\"_03Title\",\"u2WQNcukZ\":\"_03Description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereSOfEPmfr=withCSS(Component,css,\"framer-F5hnV\");export default FramereSOfEPmfr;FramereSOfEPmfr.displayName=\"Services / Items\";FramereSOfEPmfr.defaultProps={height:446.5,width:1128};addPropertyControls(FramereSOfEPmfr,{variant:{options:[\"vl7fPkW6x\",\"xrEj7YEsU\",\"CDtoZNgtA\",\"TLxLam4YZ\",\"YEnTeNdRP\",\"fNHB6YKk0\",\"y1cmM3CL5\",\"VE5xIiPuL\",\"VGwYuVR2s\"],optionTitles:[\"Desktop main\",\"Desktop 2\",\"Desktop 3\",\"Tablet main\",\"Tablet 2\",\"Tablet 3\",\"Phone main\",\"Phone 2\",\"Phone 3\"],title:\"Variant\",type:ControlType.Enum},L5bVOjC54:{title:\"01 Image\",type:ControlType.ResponsiveImage},Xgqdpwxoc:{defaultValue:\"01 Title\",displayTextArea:false,placeholder:\"\",title:\"01 Title\",type:ControlType.String},nfr3_vd4_:{defaultValue:\"01 Description\",displayTextArea:false,title:\"01 Description\",type:ControlType.String},kGMjQGWFg:{title:\"02 Image\",type:ControlType.ResponsiveImage},AChBv6mnx:{defaultValue:\"02 Title\",displayTextArea:false,placeholder:\"\",title:\"02 Title\",type:ControlType.String},dym8aGlmH:{defaultValue:\"02 Description\",displayTextArea:false,title:\"02 Description\",type:ControlType.String},AtsGqKbqe:{title:\"03 Image\",type:ControlType.ResponsiveImage},Y7m9L8sgJ:{defaultValue:\"03 Title\",displayTextArea:false,placeholder:\"\",title:\"03 Title\",type:ControlType.String},u2WQNcukZ:{defaultValue:\"03 Description\",description:\"\",displayTextArea:false,title:\"03 Description\",type:ControlType.String}});addFonts(FramereSOfEPmfr,[{explicitInter:true,fonts:[]},...ServicesItemsDescriptionFonts,...ServicesItemsItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereSOfEPmfr\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1128\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xrEj7YEsU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CDtoZNgtA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TLxLam4YZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YEnTeNdRP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fNHB6YKk0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y1cmM3CL5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VE5xIiPuL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VGwYuVR2s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"446.5\",\"framerVariables\":\"{\\\"L5bVOjC54\\\":\\\"_01Image\\\",\\\"Xgqdpwxoc\\\":\\\"_01Title\\\",\\\"nfr3_vd4_\\\":\\\"_01Description\\\",\\\"kGMjQGWFg\\\":\\\"_02Image\\\",\\\"AChBv6mnx\\\":\\\"_02Title\\\",\\\"dym8aGlmH\\\":\\\"_02Description\\\",\\\"AtsGqKbqe\\\":\\\"_03Image\\\",\\\"Y7m9L8sgJ\\\":\\\"_03Title\\\",\\\"u2WQNcukZ\\\":\\\"_03Description\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eSOfEPmfr.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-P71uX\";const variantClassNames={BbNvF7zfL:\"framer-v-1udtjmn\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 getProps=({click,height,id,logo,width,...props})=>{return{...props,IiM01HZ0g:logo??props.IiM01HZ0g??{src:\"https://framerusercontent.com/images/haNVbcSIbfVRCcLU0UxDtMQWaQk.svg\"},mb0Ba799H:click??props.mb0Ba799H};};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,IiM01HZ0g,mb0Ba799H,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"BbNvF7zfL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap10mf2nx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(mb0Ba799H){const res=await mb0Ba799H(...args);if(res===false)return false;}});const sharedStyleClassNames=[];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-1udtjmn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BbNvF7zfL\",onTap:onTap10mf2nx,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(224, 224, 224)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-(((componentViewport?.height||200)-0)*.4+0))/2+0+0)),pixelHeight:51,pixelWidth:100,sizes:`calc(${((componentViewport?.height||200)-0)*.4} * 1.45)`,...toResponsiveImage(IiM01HZ0g),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-46623r\",layoutDependency:layoutDependency,layoutId:\"EgPSYyOAm\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-P71uX.framer-821ky2, .framer-P71uX .framer-821ky2 { display: block; }\",\".framer-P71uX.framer-1udtjmn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 290px; }\",\".framer-P71uX .framer-46623r { aspect-ratio: 1.45 / 1; flex: none; height: 40%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 116px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-P71uX.framer-1udtjmn { gap: 0px; } .framer-P71uX.framer-1udtjmn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-P71uX.framer-1udtjmn > :first-child { margin-top: 0px; } .framer-P71uX.framer-1udtjmn > :last-child { margin-bottom: 0px; } }\",'.framer-P71uX[data-border=\"true\"]::after, .framer-P71uX [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 290\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"IiM01HZ0g\":\"logo\",\"mb0Ba799H\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkNP8cImIG=withCSS(Component,css,\"framer-P71uX\");export default FramerkNP8cImIG;FramerkNP8cImIG.displayName=\"Carousel / Item\";FramerkNP8cImIG.defaultProps={height:200,width:290};addPropertyControls(FramerkNP8cImIG,{IiM01HZ0g:{__defaultAssetReference:\"data:framer/asset-reference,haNVbcSIbfVRCcLU0UxDtMQWaQk.svg?originalFilename=Logo-1.svg&preferredSize=auto\",title:\"Logo\",type:ControlType.ResponsiveImage},mb0Ba799H:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerkNP8cImIG,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkNP8cImIG\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerVariables\":\"{\\\"IiM01HZ0g\\\":\\\"logo\\\",\\\"mb0Ba799H\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"290\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kNP8cImIG.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import CarouselItem from\"https://framerusercontent.com/modules/AifWhQ5XPXY8J8e023NV/f43pgbL4piiq97qXAQhd/kNP8cImIG.js\";const CarouselItemFonts=getFonts(CarouselItem);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"TyCkGq4e0\",\"JQZ30bDwJ\"];const serializationHash=\"framer-htaP7\";const variantClassNames={JQZ30bDwJ:\"framer-v-1l0olfg\",TyCkGq4e0:\"framer-v-10fhop6\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={Desktop:\"TyCkGq4e0\",Phone:\"JQZ30bDwJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TyCkGq4e0\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TyCkGq4e0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10fhop6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"TyCkGq4e0\",ref:refBinding,style:{...style},...addPropertyOverrides({JQZ30bDwJ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10ctm3x-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dc39UCPnr-container\",nodeId:\"dc39UCPnr\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.3,id:\"dc39UCPnr\",layoutId:\"dc39UCPnr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"280px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pob2ir-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CYw5IFaGt-container\",nodeId:\"CYw5IFaGt\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"CYw5IFaGt\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/uuwCqm73Frfbsza6qIV2rndDV0.png\"},\"\"),layoutId:\"CYw5IFaGt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wxqo85-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k9wMrkBgh-container\",nodeId:\"k9wMrkBgh\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"k9wMrkBgh\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/NdRiBUbUMHk2qDsdEPXPDwt2ek.png\"},\"\"),layoutId:\"k9wMrkBgh\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v2b4js-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rycXxYZTD-container\",nodeId:\"rycXxYZTD\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"rycXxYZTD\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/cV2sZFYLmy3akZBG6NAoDQIvKE.png\"},\"\"),layoutId:\"rycXxYZTD\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1psmpno-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HjoTuRGOs-container\",nodeId:\"HjoTuRGOs\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"HjoTuRGOs\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/iDCJBlC9LDllea98pwyWD8BZxv8.png\"},\"\"),layoutId:\"HjoTuRGOs\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f7po0z-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"h7vBRumze-container\",nodeId:\"h7vBRumze\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"h7vBRumze\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/R0YaBq5o51qTQa33JhLbhKMXtmc.png\"},\"\"),layoutId:\"h7vBRumze\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jevmlp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jPmcRFZOU-container\",nodeId:\"jPmcRFZOU\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"jPmcRFZOU\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/kQky4vlM4DVlCMyDTH3JaFPSmU.png\"},\"\"),layoutId:\"jPmcRFZOU\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s2hmvv-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AFUhlNl_P-container\",nodeId:\"AFUhlNl_P\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"AFUhlNl_P\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/Sp3ZZ9yYoBUqOegTqJiQN02DoYc.png\"},\"\"),layoutId:\"AFUhlNl_P\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mg5ywf-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"H7KTJXWVN-container\",nodeId:\"H7KTJXWVN\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"H7KTJXWVN\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/7CvjXpGyonuzJ6IkoIOy3DvGY.png\"},\"\"),layoutId:\"H7KTJXWVN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ngnn5u-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"TCkxbQyER-container\",nodeId:\"TCkxbQyER\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"TCkxbQyER\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/URq5PR2KckepyEDQU7fdEUuqtpU.png\"},\"\"),layoutId:\"TCkxbQyER\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({JQZ30bDwJ:{speed:80}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-htaP7.framer-1h1rqwp, .framer-htaP7 .framer-1h1rqwp { display: block; }\",\".framer-htaP7.framer-10fhop6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-htaP7 .framer-10ctm3x-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-htaP7 .framer-pob2ir-container { height: 200px; position: relative; width: 280px; }\",\".framer-htaP7 .framer-wxqo85-container, .framer-htaP7 .framer-v2b4js-container, .framer-htaP7 .framer-1psmpno-container, .framer-htaP7 .framer-f7po0z-container, .framer-htaP7 .framer-1jevmlp-container, .framer-htaP7 .framer-s2hmvv-container, .framer-htaP7 .framer-mg5ywf-container, .framer-htaP7 .framer-ngnn5u-container { height: 200px; position: relative; width: 290px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-htaP7.framer-10fhop6 { gap: 0px; } .framer-htaP7.framer-10fhop6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-htaP7.framer-10fhop6 > :first-child { margin-top: 0px; } .framer-htaP7.framer-10fhop6 > :last-child { margin-bottom: 0px; } }\",\".framer-htaP7.framer-v-1l0olfg.framer-10fhop6 { height: 160px; width: 380px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JQZ30bDwJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerfuxa0eFsG=withCSS(Component,css,\"framer-htaP7\");export default Framerfuxa0eFsG;Framerfuxa0eFsG.displayName=\"Logo carousel\";Framerfuxa0eFsG.defaultProps={height:200,width:1200};addPropertyControls(Framerfuxa0eFsG,{variant:{options:[\"TyCkGq4e0\",\"JQZ30bDwJ\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerfuxa0eFsG,[{explicitInter:true,fonts:[]},...CarouselItemFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfuxa0eFsG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JQZ30bDwJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fuxa0eFsG.map", "// Generated by Framer (d2aa011)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"fwWspvYvF\",\"Rn9uzP_VB\",\"PBlEkZIHF\"];const serializationHash=\"framer-u9wa0\";const variantClassNames={fwWspvYvF:\"framer-v-kivx6k\",PBlEkZIHF:\"framer-v-1ci2hxg\",Rn9uzP_VB:\"framer-v-79tljt\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:0,duration:1.5,ease:[.68,0,.16,.97],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:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,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={Desktop:\"fwWspvYvF\",Phone:\"PBlEkZIHF\",Tablet:\"Rn9uzP_VB\"};const getProps=({height,id,image,name1,occupation,width,...props})=>{return{...props,bWG5C_ulm:occupation??props.bWG5C_ulm??\"Occupation\",Q8qQvk6w7:image??props.Q8qQvk6w7,qDh8ffn58:name1??props.qDh8ffn58??\"Name\",variant:humanReadableVariantMap[props.variant]??props.variant??\"fwWspvYvF\"};};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,qDh8ffn58,bWG5C_ulm,Q8qQvk6w7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fwWspvYvF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-kivx6k\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fwWspvYvF\",ref:refBinding,style:{...style},...addPropertyOverrides({PBlEkZIHF:{\"data-framer-name\":\"Phone\"},Rn9uzP_VB:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-op137o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QCEHsAumX\",children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||625)-0-283)/1)*1-0-(Math.max(0,((componentViewport?.height||625)-0-283)/1)*1-0)*1)/2)),pixelHeight:810,pixelWidth:671,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Q8qQvk6w7),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-gguq23\",\"data-framer-appear-id\":\"gguq23\",\"data-framer-name\":\"Image\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"hRv2tVH8g\",optimized:true,...addPropertyOverrides({PBlEkZIHF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||625)-0-265)/1)*1-0-(Math.max(0,((componentViewport?.height||625)-0-265)/1)*1-0)*1)/2)),pixelHeight:810,pixelWidth:671,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Q8qQvk6w7),...{positionX:\"center\",positionY:\"center\"}}},Rn9uzP_VB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||625)-0-273)/1)*1-0-(Math.max(0,((componentViewport?.height||625)-0-273)/1)*1-0)*1)/2)),pixelHeight:810,pixelWidth:671,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Q8qQvk6w7),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xm5b48\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"E_1zCCAVm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"Lucas Johnson\"})}),className:\"framer-1rm2l8j\",\"data-framer-name\":\"Lucas Johnson\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"k3PpwVm1L\",style:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",\"--framer-paragraph-spacing\":\"0px\"},text:qDh8ffn58,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"Full Stack Developer\"})}),className:\"framer-c6c7i8\",\"data-framer-name\":\"Full Stack Developer\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wqJwV6o5C\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:bWG5C_ulm,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u9wa0.framer-1tnawln, .framer-u9wa0 .framer-1tnawln { display: block; }\",\".framer-u9wa0.framer-kivx6k { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 625px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 514px; }\",\".framer-u9wa0 .framer-op137o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u9wa0 .framer-gguq23 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-u9wa0 .framer-xm5b48 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-u9wa0 .framer-1rm2l8j, .framer-u9wa0 .framer-c6c7i8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-u9wa0.framer-kivx6k, .framer-u9wa0 .framer-op137o, .framer-u9wa0 .framer-xm5b48 { gap: 0px; } .framer-u9wa0.framer-kivx6k > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-u9wa0.framer-kivx6k > :first-child, .framer-u9wa0 .framer-xm5b48 > :first-child { margin-top: 0px; } .framer-u9wa0.framer-kivx6k > :last-child, .framer-u9wa0 .framer-xm5b48 > :last-child { margin-bottom: 0px; } .framer-u9wa0 .framer-op137o > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-u9wa0 .framer-op137o > :first-child { margin-left: 0px; } .framer-u9wa0 .framer-op137o > :last-child { margin-right: 0px; } .framer-u9wa0 .framer-xm5b48 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-u9wa0.framer-v-79tljt.framer-kivx6k { gap: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-u9wa0.framer-v-79tljt.framer-kivx6k { gap: 0px; } .framer-u9wa0.framer-v-79tljt.framer-kivx6k > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-u9wa0.framer-v-79tljt.framer-kivx6k > :first-child { margin-top: 0px; } .framer-u9wa0.framer-v-79tljt.framer-kivx6k > :last-child { margin-bottom: 0px; } }\",\".framer-u9wa0.framer-v-1ci2hxg.framer-kivx6k { gap: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-u9wa0.framer-v-1ci2hxg.framer-kivx6k { gap: 0px; } .framer-u9wa0.framer-v-1ci2hxg.framer-kivx6k > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-u9wa0.framer-v-1ci2hxg.framer-kivx6k > :first-child { margin-top: 0px; } .framer-u9wa0.framer-v-1ci2hxg.framer-kivx6k > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 625\n * @framerIntrinsicWidth 514\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Rn9uzP_VB\":{\"layout\":[\"fixed\",\"fixed\"]},\"PBlEkZIHF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qDh8ffn58\":\"name1\",\"bWG5C_ulm\":\"occupation\",\"Q8qQvk6w7\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriMp9mQZvd=withCSS(Component,css,\"framer-u9wa0\");export default FrameriMp9mQZvd;FrameriMp9mQZvd.displayName=\"Card\";FrameriMp9mQZvd.defaultProps={height:625,width:514};addPropertyControls(FrameriMp9mQZvd,{variant:{options:[\"fwWspvYvF\",\"Rn9uzP_VB\",\"PBlEkZIHF\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},qDh8ffn58:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},bWG5C_ulm:{defaultValue:\"Occupation\",displayTextArea:false,title:\"Occupation\",type:ControlType.String},Q8qQvk6w7:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FrameriMp9mQZvd,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriMp9mQZvd\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"625\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"qDh8ffn58\\\":\\\"name1\\\",\\\"bWG5C_ulm\\\":\\\"occupation\\\",\\\"Q8qQvk6w7\\\":\\\"image\\\"}\",\"framerIntrinsicWidth\":\"514\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Rn9uzP_VB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PBlEkZIHF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iMp9mQZvd.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rDPUwPDs7NpdJ6SukmDV/4BpAxxwKdgQoVPxw1jct/xNIXLfFSf.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"gGCKUKlHw\",\"EQjPBeGe0\",\"GnN_BPSO1\"];const serializationHash=\"framer-tiF3c\";const variantClassNames={EQjPBeGe0:\"framer-v-qkiwmv\",gGCKUKlHw:\"framer-v-jrv8u9\",GnN_BPSO1:\"framer-v-1srj58c\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.96,-.02,.38,1.01],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:3.5,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:30,delay:.4,mass:1,stiffness:238,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-15};const transition3={damping:30,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:25};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={\"1\":\"gGCKUKlHw\",\"2\":\"EQjPBeGe0\",\"3\":\"GnN_BPSO1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gGCKUKlHw\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gGCKUKlHw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearcudx8a=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EQjPBeGe0\"),400);});const onAppearbtcitc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GnN_BPSO1\"),700);});useOnVariantChange(baseVariant,{default:onAppearcudx8a,EQjPBeGe0:onAppearbtcitc,GnN_BPSO1:undefined});const sharedStyleClassNames=[sharedStyle.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jrv8u9\",className,classNames),\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gGCKUKlHw\",ref:refBinding,style:{...style},...addPropertyOverrides({EQjPBeGe0:{\"data-framer-name\":\"2\"},GnN_BPSO1:{\"data-framer-name\":\"3\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r5byhj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"sjWXRiTqQ\",children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1ehj7ej\",\"data-framer-appear-id\":\"1ehj7ej\",\"data-framer-name\":\"Logo\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"tTyKpwRIw\",optimized:true,...addPropertyOverrides({GnN_BPSO1:{animate:undefined,initial:undefined,optimized:undefined,transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4eymma\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"rivt20gSc\",svg:'<svg width=\"112\" height=\"37\" viewBox=\"0 0 112 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 36.7963L8.95278 0.032312L17.8435 0C20.2902 0.21073 21.5445 2.03847 21.053 4.89035C20.2759 9.39998 18.9181 14.6514 17.8411 19.1343C17.1818 21.8822 16.9474 24.0022 14.6947 25.608C13.4832 26.4706 12.2563 26.6335 10.9877 26.6405L8.01147 26.6307L5.70638 36.7921H0.5V36.7949V36.7963ZM9.45735 20.4872H11.9445C12.1682 20.4872 12.3634 20.3116 12.4229 20.0573L15.592 6.50876C15.636 6.32332 15.517 6.13928 15.3528 6.13928H12.843L9.45854 20.4872H9.45735Z\" fill=\"#F2F2F2\"/>\\n<path d=\"M89.1536 13.9644L87.1996 22.572H82.7881L84.8421 13.9475L89.1536 13.9644Z\" fill=\"#F2F2F2\"/>\\n<path d=\"M59.7242 13.9616L57.7702 22.5692H53.3588L55.4128 13.9447L59.7242 13.9616Z\" fill=\"#F2F2F2\"/>\\n<path d=\"M30.321 13.9644L28.3669 22.572H23.9555L26.0095 13.9475L30.321 13.9644Z\" fill=\"#F2F2F2\"/>\\n<path d=\"M48.4392 0.00841522L46.1484 36.7991H41.462L41.6691 31.4044H36.4104L34.2755 36.7991H29.3809L43.9087 0.00841522H48.4392ZM42.1368 25.3916L43.1257 13.6188L38.4965 25.3888L42.138 25.3916H42.1368Z\" fill=\"#F2F2F2\"/>\\n<path d=\"M76.9023 25.2708C76.4619 27.3865 76.0692 29.7088 75.4956 31.7697C74.8875 33.9585 73.563 35.8607 71.6459 36.5561C70.4832 36.9776 66.2134 36.9452 64.8675 36.8005C62.3672 36.5322 61.99 33.8742 62.4327 31.4719L68.4388 5.06454C69.4122 1.40626 72.1969 0.032298 74.1212 0.032298L78.4112 0.00841522C81.5576 0.0589905 81.8766 2.87154 81.228 5.97911L79.9975 11.652L74.9268 11.6576L76.0716 6.26289H73.4166L67.8461 30.6655H70.5546L71.8565 25.2708H76.907H76.9023Z\" fill=\"#F2F2F2\"/>\\n<path d=\"M111.5 0.00841522L110.152 6.08448L102.382 6.26008L100.46 14.9689H107.021L105.656 20.9663L99.0333 20.9719L96.7663 30.7905L104.522 30.7863L103.115 36.7963H90.2532L98.6358 0.00841522H111.5Z\" fill=\"#F2F2F2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.85em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"\\xae\"})}),className:\"framer-q6nwym\",\"data-framer-appear-id\":\"q6nwym\",fonts:[\"FS;Bebas Neue-regular\"],initial:animation3,layoutDependency:layoutDependency,layoutId:\"butgPvkjP\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.9,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:[\"Shifting Gears. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Driving Results.\"})})]})}),className:\"framer-isyott\",\"data-framer-appear-id\":\"isyott\",\"data-framer-name\":\"Why great web design is more than just looks\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation5,layoutDependency:layoutDependency,layoutId:\"u1sQ0z5c2\",optimized:true,style:{\"--extracted-1w3ko1f\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.9},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GnN_BPSO1:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vjwgrt\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"VmSCcyNmG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1961wfn\",layoutDependency:layoutDependency,layoutId:\"HCg8JJcFF\",style:{backgroundColor:\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w4dk01\",layoutDependency:layoutDependency,layoutId:\"SX3mKG5wE\",style:{backgroundColor:\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tiF3c.framer-hnijwy, .framer-tiF3c .framer-hnijwy { display: block; }\",\".framer-tiF3c.framer-jrv8u9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 834px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-tiF3c .framer-r5byhj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 18px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-tiF3c .framer-1ehj7ej { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 2px 0px 12px; position: relative; width: min-content; z-index: 2; }\",\".framer-tiF3c .framer-4eymma { flex: none; height: 37px; position: relative; width: 112px; }\",\".framer-tiF3c .framer-q6nwym { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-tiF3c .framer-isyott { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-tiF3c .framer-vjwgrt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-tiF3c .framer-1961wfn, .framer-tiF3c .framer-1w4dk01 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tiF3c.framer-jrv8u9, .framer-tiF3c .framer-r5byhj, .framer-tiF3c .framer-1ehj7ej, .framer-tiF3c .framer-vjwgrt { gap: 0px; } .framer-tiF3c.framer-jrv8u9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-tiF3c.framer-jrv8u9 > :first-child, .framer-tiF3c .framer-r5byhj > :first-child, .framer-tiF3c .framer-vjwgrt > :first-child { margin-top: 0px; } .framer-tiF3c.framer-jrv8u9 > :last-child, .framer-tiF3c .framer-r5byhj > :last-child, .framer-tiF3c .framer-vjwgrt > :last-child { margin-bottom: 0px; } .framer-tiF3c .framer-r5byhj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tiF3c .framer-1ehj7ej > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-tiF3c .framer-1ehj7ej > :first-child { margin-left: 0px; } .framer-tiF3c .framer-1ehj7ej > :last-child { margin-right: 0px; } .framer-tiF3c .framer-vjwgrt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-tiF3c.framer-v-1srj58c .framer-r5byhj { flex: 1 0 0px; height: 1px; }\",\".framer-tiF3c.framer-v-1srj58c .framer-1ehj7ej { left: 50%; position: absolute; top: -80px; }\",\".framer-tiF3c.framer-v-1srj58c .framer-isyott { bottom: -60px; left: 50%; position: absolute; }\",\".framer-tiF3c.framer-v-1srj58c .framer-vjwgrt { bottom: -1px; gap: unset; height: unset; justify-content: space-between; top: -1px; }\",\".framer-tiF3c.framer-v-1srj58c .framer-1961wfn, .framer-tiF3c.framer-v-1srj58c .framer-1w4dk01 { flex: none; height: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tiF3c.framer-v-1srj58c .framer-vjwgrt { gap: 0px; } .framer-tiF3c.framer-v-1srj58c .framer-vjwgrt > *, .framer-tiF3c.framer-v-1srj58c .framer-vjwgrt > :first-child, .framer-tiF3c.framer-v-1srj58c .framer-vjwgrt > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 834\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EQjPBeGe0\":{\"layout\":[\"fixed\",\"fixed\"]},\"GnN_BPSO1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerllioleSC9=withCSS(Component,css,\"framer-tiF3c\");export default FramerllioleSC9;FramerllioleSC9.displayName=\"Splash screen\";FramerllioleSC9.defaultProps={height:834,width:1200};addPropertyControls(FramerllioleSC9,{variant:{options:[\"gGCKUKlHw\",\"EQjPBeGe0\",\"GnN_BPSO1\"],optionTitles:[\"1\",\"2\",\"3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerllioleSC9,[{explicitInter:true,fonts:[{family:\"Bebas Neue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AWXLDXTI2CYJ5SHK74YUPGPFS5S5BWLL/M6ZJD4UOFNT4DPUXGTK7T46JZ3W3QW64/2TXZKBJMJVP3NQX7K7MGJDQFMD4ZMJR7.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerllioleSC9\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EQjPBeGe0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GnN_BPSO1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"834\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./llioleSC9.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"nyiCY0bRh\",\"gpbTiPwkK\",\"Tz6jktqUP\"];const serializationHash=\"framer-QoVCk\";const variantClassNames={gpbTiPwkK:\"framer-v-1luxfgy\",nyiCY0bRh:\"framer-v-x8dqrb\",Tz6jktqUP:\"framer-v-hl4ytz\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:0,duration:1.5,ease:[.68,0,.16,.97],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:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,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={Desktop:\"nyiCY0bRh\",Phone:\"Tz6jktqUP\",Tablet:\"gpbTiPwkK\"};const getProps=({height,id,image,name1,occupation,width,...props})=>{return{...props,bWG5C_ulm:occupation??props.bWG5C_ulm??\"Occupation\",Q8qQvk6w7:image??props.Q8qQvk6w7,qDh8ffn58:name1??props.qDh8ffn58??\"Name\",variant:humanReadableVariantMap[props.variant]??props.variant??\"nyiCY0bRh\"};};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,qDh8ffn58,bWG5C_ulm,Q8qQvk6w7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nyiCY0bRh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-x8dqrb\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"nyiCY0bRh\",ref:refBinding,style:{...style},...addPropertyOverrides({gpbTiPwkK:{\"data-framer-name\":\"Tablet\"},Tz6jktqUP:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9nixk9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ulwLrwFjD\",children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||625)-0-283)/1)*1-0-(Math.max(0,((componentViewport?.height||625)-0-283)/1)*1-0)*1)/2)),pixelHeight:810,pixelWidth:671,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Q8qQvk6w7),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-fk55rk\",\"data-framer-appear-id\":\"fk55rk\",\"data-framer-name\":\"Image\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"f9sXUXgw4\",optimized:true,...addPropertyOverrides({gpbTiPwkK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||625)-0-273)/1)*1-0-(Math.max(0,((componentViewport?.height||625)-0-273)/1)*1-0)*1)/2)),pixelHeight:810,pixelWidth:671,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Q8qQvk6w7),...{positionX:\"center\",positionY:\"center\"}}},Tz6jktqUP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:810,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||625)-0-265)/1)*1-0-(Math.max(0,((componentViewport?.height||625)-0-265)/1)*1-0)*1)/2)),pixelHeight:810,pixelWidth:671,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Q8qQvk6w7),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cfwv6z\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"GZ79N6pNn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"Lucas Johnson\"})}),className:\"framer-17lyek2\",\"data-framer-name\":\"Lucas Johnson\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Q1JTgR36t\",style:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",\"--framer-paragraph-spacing\":\"0px\"},text:qDh8ffn58,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"Full Stack Developer\"})}),className:\"framer-j8b538\",\"data-framer-name\":\"Full Stack Developer\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"yayLGDEsR\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:bWG5C_ulm,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QoVCk.framer-t5eiwu, .framer-QoVCk .framer-t5eiwu { display: block; }\",\".framer-QoVCk.framer-x8dqrb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 625px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 514px; }\",\".framer-QoVCk .framer-9nixk9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QoVCk .framer-fk55rk { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-QoVCk .framer-cfwv6z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QoVCk .framer-17lyek2, .framer-QoVCk .framer-j8b538 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QoVCk.framer-x8dqrb, .framer-QoVCk .framer-9nixk9, .framer-QoVCk .framer-cfwv6z { gap: 0px; } .framer-QoVCk.framer-x8dqrb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-QoVCk.framer-x8dqrb > :first-child, .framer-QoVCk .framer-cfwv6z > :first-child { margin-top: 0px; } .framer-QoVCk.framer-x8dqrb > :last-child, .framer-QoVCk .framer-cfwv6z > :last-child { margin-bottom: 0px; } .framer-QoVCk .framer-9nixk9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-QoVCk .framer-9nixk9 > :first-child { margin-left: 0px; } .framer-QoVCk .framer-9nixk9 > :last-child { margin-right: 0px; } .framer-QoVCk .framer-cfwv6z > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-QoVCk.framer-v-1luxfgy.framer-x8dqrb { gap: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QoVCk.framer-v-1luxfgy.framer-x8dqrb { gap: 0px; } .framer-QoVCk.framer-v-1luxfgy.framer-x8dqrb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-QoVCk.framer-v-1luxfgy.framer-x8dqrb > :first-child { margin-top: 0px; } .framer-QoVCk.framer-v-1luxfgy.framer-x8dqrb > :last-child { margin-bottom: 0px; } }\",\".framer-QoVCk.framer-v-hl4ytz.framer-x8dqrb { gap: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QoVCk.framer-v-hl4ytz.framer-x8dqrb { gap: 0px; } .framer-QoVCk.framer-v-hl4ytz.framer-x8dqrb > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-QoVCk.framer-v-hl4ytz.framer-x8dqrb > :first-child { margin-top: 0px; } .framer-QoVCk.framer-v-hl4ytz.framer-x8dqrb > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 625\n * @framerIntrinsicWidth 514\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gpbTiPwkK\":{\"layout\":[\"fixed\",\"fixed\"]},\"Tz6jktqUP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qDh8ffn58\":\"name1\",\"bWG5C_ulm\":\"occupation\",\"Q8qQvk6w7\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrG5rvlLkB=withCSS(Component,css,\"framer-QoVCk\");export default FramerrG5rvlLkB;FramerrG5rvlLkB.displayName=\"About / Card 2\";FramerrG5rvlLkB.defaultProps={height:625,width:514};addPropertyControls(FramerrG5rvlLkB,{variant:{options:[\"nyiCY0bRh\",\"gpbTiPwkK\",\"Tz6jktqUP\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},qDh8ffn58:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},bWG5C_ulm:{defaultValue:\"Occupation\",displayTextArea:false,title:\"Occupation\",type:ControlType.String},Q8qQvk6w7:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerrG5rvlLkB,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrG5rvlLkB\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gpbTiPwkK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Tz6jktqUP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"qDh8ffn58\\\":\\\"name1\\\",\\\"bWG5C_ulm\\\":\\\"occupation\\\",\\\"Q8qQvk6w7\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"625\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"514\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rG5rvlLkB.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}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/3Ipa9IuQoTBFJTrIWIqg/GFCQjxYwz177iZdcwtHv/xNIXLfFSf.js\";const cycleOrder=[\"sARX1h65q\",\"k8_Zk7qCw\"];const serializationHash=\"framer-thckg\";const variantClassNames={k8_Zk7qCw:\"framer-v-jmrins\",sARX1h65q:\"framer-v-1o5z7d9\"};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 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={Desktop:\"sARX1h65q\",Phone:\"k8_Zk7qCw\"};const getProps=({bottom,height,id,top,width,...props})=>{return{...props,sUuW11Svk:bottom??props.sUuW11Svk??\"and strategists\",variant:humanReadableVariantMap[props.variant]??props.variant??\"sARX1h65q\",xdRQ8fRTN:top??props.xdRQ8fRTN??\"Creative thinkers\"};};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,xdRQ8fRTN,sUuW11Svk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sARX1h65q\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1o5z7d9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sARX1h65q\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({k8_Zk7qCw:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ruqygu\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"kAA91XuSg\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18eodud\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"otIWNx5Ph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Creative thinkers\"})}),className:\"framer-t4kels\",\"data-framer-name\":\"Creative thinkers and strategists\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"emPg231dB\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:xdRQ8fRTN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:\"and strategists\"})}),className:\"framer-138v28h\",\"data-framer-name\":\"Creative thinkers and strategists\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SNk0V5XcF\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:sUuW11Svk,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-thckg.framer-85t7wa, .framer-thckg .framer-85t7wa { display: block; }\",\".framer-thckg.framer-1o5z7d9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 500px; }\",\".framer-thckg .framer-ruqygu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 0px; top: 0px; width: 9px; z-index: 1; }\",\".framer-thckg .framer-18eodud { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-thckg .framer-t4kels, .framer-thckg .framer-138v28h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-thckg.framer-1o5z7d9, .framer-thckg .framer-18eodud { gap: 0px; } .framer-thckg.framer-1o5z7d9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-thckg.framer-1o5z7d9 > :first-child { margin-left: 0px; } .framer-thckg.framer-1o5z7d9 > :last-child { margin-right: 0px; } .framer-thckg .framer-18eodud > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-thckg .framer-18eodud > :first-child { margin-top: 0px; } .framer-thckg .framer-18eodud > :last-child { margin-bottom: 0px; } }\",\".framer-thckg.framer-v-jmrins.framer-1o5z7d9 { gap: 14px; padding: 0px 0px 18px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-thckg.framer-v-jmrins.framer-1o5z7d9 { gap: 0px; } .framer-thckg.framer-v-jmrins.framer-1o5z7d9 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-thckg.framer-v-jmrins.framer-1o5z7d9 > :first-child { margin-left: 0px; } .framer-thckg.framer-v-jmrins.framer-1o5z7d9 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-thckg[data-border=\"true\"]::after, .framer-thckg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 63.5\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"k8_Zk7qCw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xdRQ8fRTN\":\"top\",\"sUuW11Svk\":\"bottom\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW96ZH6Gnz=withCSS(Component,css,\"framer-thckg\");export default FramerW96ZH6Gnz;FramerW96ZH6Gnz.displayName=\"Team / Item\";FramerW96ZH6Gnz.defaultProps={height:63.5,width:500};addPropertyControls(FramerW96ZH6Gnz,{variant:{options:[\"sARX1h65q\",\"k8_Zk7qCw\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},xdRQ8fRTN:{defaultValue:\"Creative thinkers\",displayTextArea:false,title:\"Top\",type:ControlType.String},sUuW11Svk:{defaultValue:\"and strategists\",displayTextArea:false,title:\"Bottom\",type:ControlType.String}});addFonts(FramerW96ZH6Gnz,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW96ZH6Gnz\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k8_Zk7qCw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"500\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"63.5\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"xdRQ8fRTN\\\":\\\"top\\\",\\\"sUuW11Svk\\\":\\\"bottom\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W96ZH6Gnz.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-Rz2Dy\";const variantClassNames={EUtiQt3Ka:\"framer-v-y50tsm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 getProps=({color,height,id,title,width,...props})=>{var _ref,_ref1;return{...props,ce3V1WO4y:(_ref=color!==null&&color!==void 0?color:props.ce3V1WO4y)!==null&&_ref!==void 0?_ref:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",N3gNITbco:(_ref1=title!==null&&title!==void 0?title:props.N3gNITbco)!==null&&_ref1!==void 0?_ref1:\"Selected work\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ce3V1WO4y,N3gNITbco,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"EUtiQt3Ka\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-y50tsm\",className,classNames),\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"EUtiQt3Ka\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19rkivt\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"YWA5rmMTJ\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90}}),/*#__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\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-ce3V1WO4y-wVLyqC_6X))\",\"--framer-text-transform\":\"uppercase\"},children:\"Selected work\"})}),className:\"framer-1kkenj9\",\"data-framer-name\":\"Selected work\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"TYjZxd_l9\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-ce3V1WO4y-wVLyqC_6X)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-ce3V1WO4y-wVLyqC_6X\":ce3V1WO4y},text:N3gNITbco,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rz2Dy.framer-1qc4lp9, .framer-Rz2Dy .framer-1qc4lp9 { display: block; }\",\".framer-Rz2Dy.framer-y50tsm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rz2Dy .framer-19rkivt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: relative; width: 9px; }\",\".framer-Rz2Dy .framer-1kkenj9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rz2Dy.framer-y50tsm { gap: 0px; } .framer-Rz2Dy.framer-y50tsm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Rz2Dy.framer-y50tsm > :first-child { margin-left: 0px; } .framer-Rz2Dy.framer-y50tsm > :last-child { margin-right: 0px; } }\",'.framer-Rz2Dy[data-border=\"true\"]::after, .framer-Rz2Dy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 123\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ce3V1WO4y\":\"color\",\"N3gNITbco\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwVLyqC_6X=withCSS(Component,css,\"framer-Rz2Dy\");export default FramerwVLyqC_6X;FramerwVLyqC_6X.displayName=\"UI / Category\";FramerwVLyqC_6X.defaultProps={height:18,width:123};addPropertyControls(FramerwVLyqC_6X,{ce3V1WO4y:{defaultValue:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",title:\"Color\",type:ControlType.Color},N3gNITbco:{defaultValue:\"Selected work\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerwVLyqC_6X,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwVLyqC_6X\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"123\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"18\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ce3V1WO4y\\\":\\\"color\\\",\\\"N3gNITbco\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wVLyqC_6X.map", "// Generated by Framer (d19865c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bJnHw5VokAqNKlg6Rp7L/SlideShow.js\";import NumbersItem from\"#framer/local/canvasComponent/aH7yeXBVj/aH7yeXBVj.js\";import BlogArticle from\"#framer/local/canvasComponent/DyECzRfVJ/DyECzRfVJ.js\";import ServicesItems from\"#framer/local/canvasComponent/eSOfEPmfr/eSOfEPmfr.js\";import LogoCarousel from\"#framer/local/canvasComponent/fuxa0eFsG/fuxa0eFsG.js\";import Card from\"#framer/local/canvasComponent/iMp9mQZvd/iMp9mQZvd.js\";import ProjetcsProjectItem from\"#framer/local/canvasComponent/KYMveFRib/KYMveFRib.js\";import SplashScreen from\"#framer/local/canvasComponent/llioleSC9/llioleSC9.js\";import Logo from\"#framer/local/canvasComponent/OY8jC43hH/OY8jC43hH.js\";import UIArrowButton from\"#framer/local/canvasComponent/ozPjcS5mp/ozPjcS5mp.js\";import AboutCard2 from\"#framer/local/canvasComponent/rG5rvlLkB/rG5rvlLkB.js\";import TeamItem from\"#framer/local/canvasComponent/W96ZH6Gnz/W96ZH6Gnz.js\";import UICategory from\"#framer/local/canvasComponent/wVLyqC_6X/wVLyqC_6X.js\";import Blog from\"#framer/local/collection/bfc9_8DEH/bfc9_8DEH.js\";import Projects from\"#framer/local/collection/LxLZ1qH0s/LxLZ1qH0s.js\";import*as sharedStyle3 from\"#framer/local/css/hOrfMQMhw/hOrfMQMhw.js\";import*as sharedStyle4 from\"#framer/local/css/IAEAiqtru/IAEAiqtru.js\";import*as sharedStyle1 from\"#framer/local/css/tbrk_XFMt/tbrk_XFMt.js\";import*as sharedStyle from\"#framer/local/css/xNIXLfFSf/xNIXLfFSf.js\";import*as sharedStyle2 from\"#framer/local/css/zSSdVVb1R/zSSdVVb1R.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SplashScreenFonts=getFonts(SplashScreen);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionSectionWithFX=withFX(motion.section);const LogoFonts=getFonts(Logo);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const LogoCarouselFonts=getFonts(LogoCarousel);const UICategoryFonts=getFonts(UICategory);const ServicesItemsFonts=getFonts(ServicesItems);const UIArrowButtonFonts=getFonts(UIArrowButton);const RichTextWithFX=withFX(RichText);const NumbersItemFonts=getFonts(NumbersItem);const TeamItemFonts=getFonts(TeamItem);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const ProjetcsProjectItemFonts=getFonts(ProjetcsProjectItem);const MotionAWithFX=withFX(motion.a);const SlideshowFonts=getFonts(Slideshow);const BlogArticleFonts=getFonts(BlogArticle);const CardFonts=getFonts(Card);const AboutCard2Fonts=getFonts(AboutCard2);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={p4sQvxEP4:\"(max-width: 809px)\",toDtyncsd:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-4aMyX\";const variantClassNames={p4sQvxEP4:\"framer-v-233qk8\",toDtyncsd:\"framer-v-13dhfrl\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition1={damping:27,delay:1.33,mass:.3,stiffness:121,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60};const transition2={damping:27,delay:.2,mass:.3,stiffness:121,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition3={damping:27,delay:1.8,mass:.3,stiffness:121,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transition4={damping:27,delay:0,mass:.3,stiffness:121,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition5={damping:27,delay:1.7,mass:.3,stiffness:121,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-70};const transition6={damping:27,delay:.1,mass:.3,stiffness:121,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:1.15,duration:1.2,ease:[.05,.65,.22,.96],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:160};const transition8={delay:0,duration:1.2,ease:[.05,.65,.59,1],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:100};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition9={damping:33,delay:0,mass:1,stiffness:180,type:\"spring\"};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:10};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transition10={bounce:.1,delay:.2,duration:1.2,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:-40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition12={bounce:.1,delay:.3,duration:1.2,type:\"spring\"};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"qkiyPWRFQ\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"lqa6yUxMV\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData2=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"uObjygqse\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData3=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"HwKvYUMxL\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData4=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"EunQpifbd\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData5=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"HNrDC81kF\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData6=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"r4etMSqYZ\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData7=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"p4sQvxEP4\",Tablet:\"toDtyncsd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,iVpBlOYOJqkiyPWRFQ,VAUyv1nvHqkiyPWRFQ,TbVrcwbtnqkiyPWRFQ,gIGNVNgICqkiyPWRFQ,kcCxzSQHuqkiyPWRFQ,idqkiyPWRFQ,iVpBlOYOJlqa6yUxMV,VAUyv1nvHlqa6yUxMV,TbVrcwbtnlqa6yUxMV,gIGNVNgIClqa6yUxMV,kcCxzSQHulqa6yUxMV,idlqa6yUxMV,iVpBlOYOJuObjygqse,VAUyv1nvHuObjygqse,TbVrcwbtnuObjygqse,gIGNVNgICuObjygqse,kcCxzSQHuuObjygqse,iduObjygqse,iVpBlOYOJHwKvYUMxL,VAUyv1nvHHwKvYUMxL,TbVrcwbtnHwKvYUMxL,gIGNVNgICHwKvYUMxL,kcCxzSQHuHwKvYUMxL,idHwKvYUMxL,iVpBlOYOJEunQpifbd,VAUyv1nvHEunQpifbd,TbVrcwbtnEunQpifbd,gIGNVNgICEunQpifbd,kcCxzSQHuEunQpifbd,idEunQpifbd,iVpBlOYOJHNrDC81kF,VAUyv1nvHHNrDC81kF,TbVrcwbtnHNrDC81kF,gIGNVNgICHNrDC81kF,kcCxzSQHuHNrDC81kF,idHNrDC81kF,iVpBlOYOJr4etMSqYZ,VAUyv1nvHr4etMSqYZ,TbVrcwbtnr4etMSqYZ,gIGNVNgICr4etMSqYZ,kcCxzSQHur4etMSqYZ,idr4etMSqYZ,iVpBlOYOJpva70l7rN,VAUyv1nvHpva70l7rN,TbVrcwbtnpva70l7rN,gIGNVNgICpva70l7rN,kcCxzSQHupva70l7rN,idpva70l7rN,LBmli9ULdVCBUdP7yK,Vb89uzZJ3VCBUdP7yK,kuz3GVng5VCBUdP7yK,C5zqmAjiJVCBUdP7yK,idVCBUdP7yK,LBmli9ULdd3u7aLgIl,Vb89uzZJ3d3u7aLgIl,kuz3GVng5d3u7aLgIl,C5zqmAjiJd3u7aLgIl,idd3u7aLgIl,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"p4sQvxEP4\")return false;return true;};const elementId=useRouteElementId(\"uhPAu4sKG\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"sHMz2_FAk\");const ref2=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1euzf18-container hidden-233qk8\",layoutScroll:true,nodeId:\"osSeHtXbN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SplashScreen,{height:\"100%\",id:\"osSeHtXbN\",layoutId:\"osSeHtXbN\",style:{height:\"100%\",width:\"100%\"},variant:\"gGCKUKlHw\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ojost9\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fbtq8l\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4wfg3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s8uq1m\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlm8z3\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Digital\"})}),viewBox:\"0 0 1177.62 384\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Digital\"})}),className:\"framer-8xowj5\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 1177.62 342\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation2,initial:animation3,viewBox:\"0 0 676.5880101385751 419\"},toDtyncsd:{viewBox:\"0 0 676.5880101385751 419\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"245.11472291571138px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"109.80016897625102px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Shifting Gears\"})]}),className:\"framer-17f7gii\",\"data-framer-appear-id\":\"17f7gii\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation1,optimized:true,transformTemplate:transformTemplate1,verticalAlignment:\"top\",viewBox:\"0 0 676 419\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation2,initial:animation3,viewBox:\"0 0 676.5880101385751 130\"},toDtyncsd:{viewBox:\"0 0 676.5880101385751 130\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"109.80016897625102px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Shifting Gears\"})}),className:\"framer-l0tfed\",\"data-framer-appear-id\":\"l0tfed\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation1,optimized:true,transformTemplate:transformTemplate1,verticalAlignment:\"top\",viewBox:\"0 0 676 130\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8axwti\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d7ihmp\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation6,initial:animation7}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"We live and breathe sports. With PACE\u2019s expert team by your side, we transform bold ideas into tangible results - combining strategic insight, creative innovation, and seamless execution.\"})}),className:\"framer-1srzfh1\",\"data-framer-appear-id\":\"1srzfh1\",\"data-framer-name\":\"We create digital designs that help brands move faster and convert better. Your business deserves more than just a website. It needs results.\",fonts:[\"Inter\"],initial:animation5,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8tsb6 hidden-233qk8\",\"data-framer-name\":\"Filler\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bmi8eo\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{viewBox:\"0 0 2595.62 491\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"},children:\"Design Studio\"})}),className:\"framer-1po5jnl\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 2595.62 342\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation10,initial:animation3,viewBox:\"0 0 766.0079461317961 291\"},toDtyncsd:{viewBox:\"0 0 766.0079461317961 291\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"126.0130527581079px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"116.79910219660078px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"},children:\"Driving Results\"})]}),className:\"framer-skcre\",\"data-framer-appear-id\":\"skcre\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate1,verticalAlignment:\"top\",viewBox:\"0 0 766 291\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation10,initial:animation3,viewBox:\"0 0 766.0079461317961 140\"},toDtyncsd:{viewBox:\"0 0 766.0079461317961 140\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"116.79910219660078px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"},children:\"Driving Results\"})}),className:\"framer-13h7p30\",\"data-framer-appear-id\":\"13h7p30\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate1,verticalAlignment:\"top\",viewBox:\"0 0 766 140\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"\",backgroundSize:2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+700-700),pixelHeight:150,pixelWidth:150,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/WXwwArEbCEXxVkbbiaI5FD2o.png\"}},toDtyncsd:{background:{alt:\"\",backgroundSize:2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+900-900),pixelHeight:150,pixelWidth:150,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/WXwwArEbCEXxVkbbiaI5FD2o.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+1e3-1e3),pixelHeight:150,pixelWidth:150,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/WXwwArEbCEXxVkbbiaI5FD2o.png\"},className:\"framer-22mi0a\",\"data-framer-name\":\"noise\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation13,background:{alt:\"Artistic portrait with red and blue lighting creating a dramatic effect\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:799,pixelWidth:1440,positionX:\"59.6%\",positionY:\"50%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HySQx8eFwUKwtYAsbSeD9hZLhGA.png\",srcSet:\"https://framerusercontent.com/images/HySQx8eFwUKwtYAsbSeD9hZLhGA.png?scale-down-to=512 512w,https://framerusercontent.com/images/HySQx8eFwUKwtYAsbSeD9hZLhGA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HySQx8eFwUKwtYAsbSeD9hZLhGA.png 1440w\"},initial:animation14}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation11,background:{alt:\"Artistic portrait with red and blue lighting creating a dramatic effect\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:799,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HySQx8eFwUKwtYAsbSeD9hZLhGA.png\",srcSet:\"https://framerusercontent.com/images/HySQx8eFwUKwtYAsbSeD9hZLhGA.png?scale-down-to=512 512w,https://framerusercontent.com/images/HySQx8eFwUKwtYAsbSeD9hZLhGA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HySQx8eFwUKwtYAsbSeD9hZLhGA.png 1440w\"},className:\"framer-1tl276o\",\"data-framer-appear-id\":\"1tl276o\",\"data-framer-name\":\"BG\",initial:animation12,optimized:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-1jgv21m\",\"data-framer-appear-id\":\"1jgv21m\",\"data-framer-name\":\"BG\",initial:animation12,optimized:true})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1p8js24\",\"data-framer-name\":\"Description\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-egi9db\",\"data-border\":true,\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1detlqp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nr51yd\",\"data-border\":true,\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+700+0+0+0+0+60+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+900+0+0+0+0+80+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+0+0+48+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aj0gvu-container\",nodeId:\"r6Jvj9DHu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{UgtvNbvgs:12}},children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"r6Jvj9DHu\",layoutId:\"r6Jvj9DHu\",NTNr8ISIZ:\"\\xae\",UgtvNbvgs:18,V3Qt9yDai:\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ae63dj\",\"data-border\":true,\"data-framer-name\":\"Arrow\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hbmua5\",\"data-framer-name\":\"Ellipse\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eghmoe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ws3N7VE4Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"arrow-down\",iconSelection:\"House\",id:\"Ws3N7VE4Y\",layoutId:\"Ws3N7VE4Y\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zs3m79\",\"data-framer-name\":\"Reinventing\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e0vmcu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mCLk1hZuC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{objectFit:\"scale-down\",style:{width:\"100%\"}},toDtyncsd:{objectFit:\"scale-down\",style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mCLk1hZuC\",isMixedBorderRadius:false,layoutId:\"mCLk1hZuC\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/RjyVrX3ot3NrnXQFXOQBq8mOv0.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/DAyROISHh3vVY5ScUJE8ALpplo.mp4\",srcType:\"Upload\",srcUrl:\"https://app.frame.io/reviews/abfdbce7-e06c-4fca-91bc-31b939bcf23c/6094ecd0-f139-4fc6-91d0-9fcd8fde63eb\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-q9oz9g\",\"data-framer-name\":\"Our Clients\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g6b3a7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation16,__framer__exit:animation17,__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-88ivjp\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1planw1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1vseq11\",\"data-styles-preset\":\"tbrk_XFMt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"},children:\"Meet\"})}),className:\"framer-11o8d1g\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-color\":\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"},children:\"Our Clients\"})}),className:\"framer-1puqgh9\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"We\u2019re proud to work with the most ambitious names in sports and entertainment - delivering bold ideas, record-breaking results, and lasting value every step of the way.\"})}),className:\"framer-6qar90\",\"data-framer-name\":\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+969+60+0+0+329.12},toDtyncsd:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1381+130+0+0+387.12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`min(${componentViewport?.width||\"100vw\"}, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1615+160+0+0+351.12,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6e3kvj-container\",nodeId:\"ySPyJARcU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"JQZ30bDwJ\"}},children:/*#__PURE__*/_jsx(LogoCarousel,{height:\"100%\",id:\"ySPyJARcU\",layoutId:\"ySPyJARcU\",style:{width:\"100%\"},variant:\"TyCkGq4e0\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xch8uj\",\"data-framer-name\":\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-49x5cw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15w7kz1\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+1618.12+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+2218.12+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+0+0+2326.12+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l9ei7f-container\",nodeId:\"WPjzPOuqn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{UgtvNbvgs:12}},children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"WPjzPOuqn\",layoutId:\"WPjzPOuqn\",NTNr8ISIZ:\"\\xae\",UgtvNbvgs:18,V3Qt9yDai:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+1618.12+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+2218.12+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,y:(componentViewport?.y||0)+0+0+0+2326.12+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7npay-container\",nodeId:\"T_R8Vr5uA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UICategory,{ce3V1WO4y:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",id:\"T_R8Vr5uA\",layoutId:\"T_R8Vr5uA\",N3gNITbco:\"What We Do Best\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uo7po2\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1618.12+0+0+36+107+0+0},toDtyncsd:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+2218.12+0+0+36+137+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:`min(${componentViewport?.width||\"100vw\"} - 72px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+2326.12+0+0+36+187+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8jh6fz-container\",nodeId:\"TP6VXojlv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"y1cmM3CL5\"},toDtyncsd:{variant:\"TLxLam4YZ\"}},children:/*#__PURE__*/_jsx(ServicesItems,{AChBv6mnx:\"Marketing\",AtsGqKbqe:addImageAlt({pixelHeight:675,pixelWidth:1200,src:\"https://framerusercontent.com/images/ZSXDsW2eqOin4u9D2F2Vf8ddxSc.png\",srcSet:\"https://framerusercontent.com/images/ZSXDsW2eqOin4u9D2F2Vf8ddxSc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZSXDsW2eqOin4u9D2F2Vf8ddxSc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZSXDsW2eqOin4u9D2F2Vf8ddxSc.png 1200w\"},\"\"),dym8aGlmH:\"Blending creativity with precision, we craft campaigns and content that truly connect. From engaging fanbases to elevating brand stories, we\u2019ve always turned marketing into a powerful tool for growth - rooted in insights and bold ideas.\",height:\"100%\",id:\"TP6VXojlv\",kGMjQGWFg:addImageAlt({pixelHeight:1200,pixelWidth:800,src:\"https://framerusercontent.com/images/gRO8TXqELSXM8FTGUtMkRW7kI.png\",srcSet:\"https://framerusercontent.com/images/gRO8TXqELSXM8FTGUtMkRW7kI.png?scale-down-to=1024 682w,https://framerusercontent.com/images/gRO8TXqELSXM8FTGUtMkRW7kI.png 800w\"},\"\"),L5bVOjC54:addImageAlt({pixelHeight:1200,pixelWidth:960,src:\"https://framerusercontent.com/images/yplnIjnNiJxYH7TUkUYtD0qDQJM.png\",srcSet:\"https://framerusercontent.com/images/yplnIjnNiJxYH7TUkUYtD0qDQJM.png?scale-down-to=1024 819w,https://framerusercontent.com/images/yplnIjnNiJxYH7TUkUYtD0qDQJM.png 960w\"},\"\"),layoutId:\"TP6VXojlv\",nfr3_vd4_:\"We help unlock new revenue streams, maximise sponsorship value, and design strategies that ensure long-term business growth.  Our approach is built on experienced industry insight and a focus on creating value for our clients and their partners.\",style:{width:\"100%\"},u2WQNcukZ:\"Ideas are only as good as their delivery.  At PACE, we don\u2019t just strategise - we bring concepts to life with seamless project management and a commitment to excellence, ensuring every initiative hits the mark.\",variant:\"vl7fPkW6x\",width:\"100%\",Xgqdpwxoc:\"Commercial\",Y7m9L8sgJ:\"Execution\"})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-7wclla\",\"data-framer-name\":\"Numbers\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cu0ogy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7u8fwv\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+2257.12+50+0+0+0+0+76.6},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+2957.12+120+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+3175.12+160+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-63ob45-container\",nodeId:\"EJhWJXtz7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks[0],height:\"100%\",id:\"EJhWJXtz7\",layoutId:\"EJhWJXtz7\",NeQkVIvJM:\"Let\u2019s talk\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v1szlu\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1t5qoig\",\"data-styles-preset\":\"IAEAiqtru\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4aec472-48cb-47db-918e-2416a51470ec, rgb(3, 17, 25))\"},children:[\"Our work speaks through numbers.\",/*#__PURE__*/_jsx(\"br\",{}),\"Here\u2019s what we\u2019ve achieved so far.\"]})}),className:\"framer-5hxscb\",\"data-framer-name\":\"Our work speaks through numbers. Here\u2019s what we\u2019ve achieved so far.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tn9b2u\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+2257.12+50+0+0+136.6+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+2957.12+120+0+0+120.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+3175.12+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-135b06k-container\",nodeId:\"uKIp8RF8y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:150,ezNYwgiIW:\"Campaigns launched\",height:\"100%\",id:\"uKIp8RF8y\",layoutId:\"uKIp8RF8y\",MTE4RiHaV:\"To sell tickets and activate sponsorships.\",OhLeOem3o:10,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+2257.12+50+0+0+136.6+0+257},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+2957.12+120+0+0+120.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+3175.12+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bof1so-container\",nodeId:\"yTnHgnGCA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:5,ezNYwgiIW:\"Users reached\",height:\"100%\",id:\"yTnHgnGCA\",layoutId:\"yTnHgnGCA\",MTE4RiHaV:\"Our campaigns reach billions of people\",OhLeOem3o:30,style:{width:\"100%\"},uvfNqUND5:\"B+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"decimal\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+2257.12+50+0+0+136.6+0+514},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+2957.12+120+0+0+120.6+0+261}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+3175.12+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11zt7bn-container\",nodeId:\"cimfQ68Io\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:6,ezNYwgiIW:\"6+ Global Sports Events\",height:\"100%\",id:\"cimfQ68Io\",layoutId:\"cimfQ68Io\",MTE4RiHaV:\"With audiences of over 1 billion\",OhLeOem3o:250,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+2257.12+50+0+0+136.6+0+771},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+2957.12+120+0+0+120.6+0+261}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+3175.12+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1asny8-container\",nodeId:\"xbfCL0csL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:9,ezNYwgiIW:\"Years of expertise\",height:\"100%\",id:\"xbfCL0csL\",layoutId:\"xbfCL0csL\",MTE4RiHaV:\"In delivering world-class events\",OhLeOem3o:150,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})})]})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-wfeje\",\"data-framer-name\":\"Team\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1doveij\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mh4amm\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+3505.72+0+0+160+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+3819.72+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+0+0+3906.72+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uw1s80-container\",nodeId:\"dzPTO_M8i\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{UgtvNbvgs:12}},children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"dzPTO_M8i\",layoutId:\"dzPTO_M8i\",NTNr8ISIZ:\"\\xae\",UgtvNbvgs:18,V3Qt9yDai:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-unwsa7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__enter:animation16,__framer__exit:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nnrt9k\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"},children:\"The Experts\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Behind the Action\"})]}),className:\"framer-1bhof22\",\"data-framer-name\":\"Meet our team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-868fed70-ef88-4b70-a903-801ee81c13a1, rgb(238, 235, 222))\"},children:[\"Our team is a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(253, 102, 51))\"},children:\"powerhouse of international talent\"}),\", combining strategy, marketing, creativity and digital expertise.\\xa0We bring your bold ideas to life and deliver the results your brand deserves.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"var(--token-868fed70-ef88-4b70-a903-801ee81c13a1, rgb(238, 235, 222))\"},children:\"We can help you unlock your bold ideas and bring them to life, delivering the results your brand or organisation deserves.\"})]}),className:\"framer-1oqoo67\",\"data-framer-name\":\"A diverse group of creators, strategists, and developers driven by a shared passion for crafting impactful digital experiences.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-129dri9\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csplbm\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+3505.72+0+0+160+117+0+567.04+0+0+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3819.72+0+0+36+147+0+567.04+0+108+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3906.72+0+0+36+157+0+581.04+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-4wsqim-container\",nodeId:\"d41uwvl_s\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"d41uwvl_s\",layoutId:\"d41uwvl_s\",style:{width:\"100%\"},sUuW11Svk:\"to analyze every opportunity and trend\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Business strategists\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+3505.72+0+0+160+117+0+567.04+0+0+0+89},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3819.72+0+0+36+147+0+567.04+0+108+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3906.72+0+0+36+157+0+581.04+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-tndojr-container\",nodeId:\"e_YQTlNav\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"e_YQTlNav\",layoutId:\"e_YQTlNav\",style:{width:\"100%\"},sUuW11Svk:\"bringing sports\u2019 biggest events to the world\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Marketing experts\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+3505.72+0+0+160+117+0+567.04+0+0+0+178},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3819.72+0+0+36+147+0+567.04+0+108+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3906.72+0+0+36+157+0+581.04+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-au6363-container\",nodeId:\"yfllcsdtN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"yfllcsdtN\",layoutId:\"yfllcsdtN\",style:{width:\"100%\"},sUuW11Svk:\"delivering storytelling that resonates\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Creative minds\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tpau29\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hT5vq0S94\"},implicitPathVariables:undefined},{href:{webPageId:\"hT5vq0S94\"},implicitPathVariables:undefined},{href:{webPageId:\"hT5vq0S94\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+3505.72+0+0+160+117+0+567.04+0+291+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+3819.72+0+0+36+147+0+567.04+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+3906.72+0+0+36+157+0+581.04+0+0+35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lgm3t3-container\",nodeId:\"ICw3miWdo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks1[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks1[0],height:\"100%\",id:\"ICw3miWdo\",layoutId:\"ICw3miWdo\",NeQkVIvJM:\"Meet our team\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"})})})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleTransformEffectEnabled:undefined,background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3505.72+-2),pixelHeight:1666,pixelWidth:2500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg\",srcSet:\"https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg 2500w\"}},toDtyncsd:{background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3819.72+-2),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg\",srcSet:\"https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:-270}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3906.72+-2),pixelHeight:1666,pixelWidth:2500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg\",srcSet:\"https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hh6wc11WbDuS9WP1jNH4B6dXhUw.jpg 2500w\"},className:\"framer-u8frfl\"})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-170}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-a91qzl\",\"data-framer-name\":\"Projects\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3x970n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"H6mm93PQ1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"H6mm93PQ1\",intervalControl:5,itemAmount:1,layoutId:\"H6mm93PQ1\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:\"xero-beautiful-moments\"},unresolvedPathSlugs:{kcCxzSQHu:{collectionId:\"LxLZ1qH0s\",collectionItemId:\"gIOr7R_vM\"}},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"qkiyPWRFQ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-arvip8 framer-lux5qc\",\"data-framer-name\":\"XERO\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:1,query:{from:{alias:\"qkiyPWRFQ\",data:Projects,type:\"Collection\"},offset:{type:\"LiteralValue\",value:8},orderBy:[{collection:\"qkiyPWRFQ\",name:\"aM0coPMYL\",type:\"Identifier\"}],select:[{collection:\"qkiyPWRFQ\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"qkiyPWRFQ\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"qkiyPWRFQ\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"qkiyPWRFQ\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"qkiyPWRFQ\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"qkiyPWRFQ\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({gIGNVNgIC:gIGNVNgICqkiyPWRFQ,id:idqkiyPWRFQ,iVpBlOYOJ:iVpBlOYOJqkiyPWRFQ,kcCxzSQHu:kcCxzSQHuqkiyPWRFQ,TbVrcwbtn:TbVrcwbtnqkiyPWRFQ,VAUyv1nvH:VAUyv1nvHqkiyPWRFQ},index)=>{iVpBlOYOJqkiyPWRFQ??=\"\";VAUyv1nvHqkiyPWRFQ??=\"\";kcCxzSQHuqkiyPWRFQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qkiyPWRFQ-${idqkiyPWRFQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHuqkiyPWRFQ},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:\"1132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kky19a-container\",inComponentSlot:true,nodeId:\"UCWDmOYI0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{Fa0MqVM6c:toResponsiveImage(gIGNVNgICqkiyPWRFQ),height:\"100%\",id:\"UCWDmOYI0\",layoutId:\"UCWDmOYI0\",m4363AwRQ:iVpBlOYOJqkiyPWRFQ,QAad4Lrvr:VAUyv1nvHqkiyPWRFQ,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnqkiyPWRFQ)})})})})},idqkiyPWRFQ);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:\"visa-potm\"},unresolvedPathSlugs:{kcCxzSQHu:{collectionId:\"LxLZ1qH0s\",collectionItemId:\"rTuVI6rSH\"}},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"lqa6yUxMV\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2midlx framer-lux5qc\",\"data-framer-name\":\"VISA\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:1,query:{from:{alias:\"lqa6yUxMV\",data:Projects,type:\"Collection\"},offset:{type:\"LiteralValue\",value:7},orderBy:[{collection:\"lqa6yUxMV\",name:\"aM0coPMYL\",type:\"Identifier\"}],select:[{collection:\"lqa6yUxMV\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"lqa6yUxMV\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"lqa6yUxMV\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"lqa6yUxMV\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"lqa6yUxMV\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"lqa6yUxMV\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({gIGNVNgIC:gIGNVNgIClqa6yUxMV,id:idlqa6yUxMV,iVpBlOYOJ:iVpBlOYOJlqa6yUxMV,kcCxzSQHu:kcCxzSQHulqa6yUxMV,TbVrcwbtn:TbVrcwbtnlqa6yUxMV,VAUyv1nvH:VAUyv1nvHlqa6yUxMV},index1)=>{iVpBlOYOJlqa6yUxMV??=\"\";VAUyv1nvHlqa6yUxMV??=\"\";kcCxzSQHulqa6yUxMV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lqa6yUxMV-${idlqa6yUxMV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHulqa6yUxMV},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:\"1132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h37if4-container\",inComponentSlot:true,nodeId:\"sVDHUUIP1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{Fa0MqVM6c:toResponsiveImage(gIGNVNgIClqa6yUxMV),height:\"100%\",id:\"sVDHUUIP1\",layoutId:\"sVDHUUIP1\",m4363AwRQ:iVpBlOYOJlqa6yUxMV,QAad4Lrvr:VAUyv1nvHlqa6yUxMV,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnlqa6yUxMV)})})})})},idlqa6yUxMV);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:\"locarno-film-festival\"},unresolvedPathSlugs:{kcCxzSQHu:{collectionId:\"LxLZ1qH0s\",collectionItemId:\"yIDh6zlx3\"}},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"uObjygqse\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5k7vi5 framer-lux5qc\",\"data-framer-name\":\"Budweiser\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData2,{pageSize:1,query:{from:{alias:\"uObjygqse\",data:Projects,type:\"Collection\"},offset:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"uObjygqse\",name:\"aM0coPMYL\",type:\"Identifier\"}],select:[{collection:\"uObjygqse\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"uObjygqse\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"uObjygqse\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"uObjygqse\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"uObjygqse\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"uObjygqse\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({gIGNVNgIC:gIGNVNgICuObjygqse,id:iduObjygqse,iVpBlOYOJ:iVpBlOYOJuObjygqse,kcCxzSQHu:kcCxzSQHuuObjygqse,TbVrcwbtn:TbVrcwbtnuObjygqse,VAUyv1nvH:VAUyv1nvHuObjygqse},index2)=>{iVpBlOYOJuObjygqse??=\"\";VAUyv1nvHuObjygqse??=\"\";kcCxzSQHuuObjygqse??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`uObjygqse-${iduObjygqse}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHuuObjygqse},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:\"1132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbmvjs-container\",inComponentSlot:true,nodeId:\"kc3HV8psq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{Fa0MqVM6c:toResponsiveImage(gIGNVNgICuObjygqse),height:\"100%\",id:\"kc3HV8psq\",layoutId:\"kc3HV8psq\",m4363AwRQ:iVpBlOYOJuObjygqse,QAad4Lrvr:VAUyv1nvHuObjygqse,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnuObjygqse)})})})})},iduObjygqse);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:\"locarno-film-festival\"},unresolvedPathSlugs:{kcCxzSQHu:{collectionId:\"LxLZ1qH0s\",collectionItemId:\"yIDh6zlx3\"}},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"HwKvYUMxL\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xo5jth framer-lux5qc\",\"data-framer-name\":\"Locrano\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData3,{pageSize:1,query:{from:{alias:\"HwKvYUMxL\",data:Projects,type:\"Collection\"},offset:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"HwKvYUMxL\",name:\"aM0coPMYL\",type:\"Identifier\"}],select:[{collection:\"HwKvYUMxL\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"HwKvYUMxL\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"HwKvYUMxL\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"HwKvYUMxL\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"HwKvYUMxL\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"HwKvYUMxL\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({gIGNVNgIC:gIGNVNgICHwKvYUMxL,id:idHwKvYUMxL,iVpBlOYOJ:iVpBlOYOJHwKvYUMxL,kcCxzSQHu:kcCxzSQHuHwKvYUMxL,TbVrcwbtn:TbVrcwbtnHwKvYUMxL,VAUyv1nvH:VAUyv1nvHHwKvYUMxL},index3)=>{iVpBlOYOJHwKvYUMxL??=\"\";VAUyv1nvHHwKvYUMxL??=\"\";kcCxzSQHuHwKvYUMxL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HwKvYUMxL-${idHwKvYUMxL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHuHwKvYUMxL},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:\"1132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-agyibh-container\",inComponentSlot:true,nodeId:\"tsvCAHEuw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{Fa0MqVM6c:toResponsiveImage(gIGNVNgICHwKvYUMxL),height:\"100%\",id:\"tsvCAHEuw\",layoutId:\"tsvCAHEuw\",m4363AwRQ:iVpBlOYOJHwKvYUMxL,QAad4Lrvr:VAUyv1nvHHwKvYUMxL,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnHwKvYUMxL)})})})})},idHwKvYUMxL);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:\"fifa-performance-marketing\"},unresolvedPathSlugs:{kcCxzSQHu:{collectionId:\"LxLZ1qH0s\",collectionItemId:\"q1U4VTLRY\"}},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"EunQpifbd\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c9y9i9 framer-lux5qc\",\"data-framer-name\":\"Fifa\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData4,{pageSize:1,query:{from:{alias:\"EunQpifbd\",data:Projects,type:\"Collection\"},offset:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"EunQpifbd\",name:\"aM0coPMYL\",type:\"Identifier\"}],select:[{collection:\"EunQpifbd\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"EunQpifbd\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"EunQpifbd\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"EunQpifbd\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"EunQpifbd\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"EunQpifbd\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({gIGNVNgIC:gIGNVNgICEunQpifbd,id:idEunQpifbd,iVpBlOYOJ:iVpBlOYOJEunQpifbd,kcCxzSQHu:kcCxzSQHuEunQpifbd,TbVrcwbtn:TbVrcwbtnEunQpifbd,VAUyv1nvH:VAUyv1nvHEunQpifbd},index4)=>{iVpBlOYOJEunQpifbd??=\"\";VAUyv1nvHEunQpifbd??=\"\";kcCxzSQHuEunQpifbd??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`EunQpifbd-${idEunQpifbd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHuEunQpifbd},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:\"1132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sgzhzl-container\",inComponentSlot:true,nodeId:\"LhlXVDvwt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{Fa0MqVM6c:toResponsiveImage(gIGNVNgICEunQpifbd),height:\"100%\",id:\"LhlXVDvwt\",layoutId:\"LhlXVDvwt\",m4363AwRQ:iVpBlOYOJEunQpifbd,QAad4Lrvr:VAUyv1nvHEunQpifbd,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnEunQpifbd)})})})})},idEunQpifbd);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:\"rugby7s\"},unresolvedPathSlugs:{kcCxzSQHu:{collectionId:\"LxLZ1qH0s\",collectionItemId:\"JqQbQUiaq\"}},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"HNrDC81kF\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vy6yhv framer-lux5qc\",\"data-framer-name\":\"World Rugby\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData5,{pageSize:1,query:{from:{alias:\"HNrDC81kF\",data:Projects,type:\"Collection\"},offset:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"HNrDC81kF\",name:\"aM0coPMYL\",type:\"Identifier\"}],select:[{collection:\"HNrDC81kF\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"HNrDC81kF\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"HNrDC81kF\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"HNrDC81kF\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"HNrDC81kF\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"HNrDC81kF\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({gIGNVNgIC:gIGNVNgICHNrDC81kF,id:idHNrDC81kF,iVpBlOYOJ:iVpBlOYOJHNrDC81kF,kcCxzSQHu:kcCxzSQHuHNrDC81kF,TbVrcwbtn:TbVrcwbtnHNrDC81kF,VAUyv1nvH:VAUyv1nvHHNrDC81kF},index5)=>{iVpBlOYOJHNrDC81kF??=\"\";VAUyv1nvHHNrDC81kF??=\"\";kcCxzSQHuHNrDC81kF??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HNrDC81kF-${idHNrDC81kF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHuHNrDC81kF},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:\"1132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xlddv7-container\",inComponentSlot:true,nodeId:\"FHtHqy6xG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{Fa0MqVM6c:toResponsiveImage(gIGNVNgICHNrDC81kF),height:\"100%\",id:\"FHtHqy6xG\",layoutId:\"FHtHqy6xG\",m4363AwRQ:iVpBlOYOJHNrDC81kF,QAad4Lrvr:VAUyv1nvHHNrDC81kF,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnHNrDC81kF)})})})})},idHNrDC81kF);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:\"six-days\"},unresolvedPathSlugs:{kcCxzSQHu:{collectionId:\"LxLZ1qH0s\",collectionItemId:\"uYQLhukVE\"}},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"r4etMSqYZ\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lgr0et framer-lux5qc\",\"data-framer-name\":\"Six\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData6,{pageSize:1,query:{from:{alias:\"r4etMSqYZ\",data:Projects,type:\"Collection\"},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"r4etMSqYZ\",name:\"aM0coPMYL\",type:\"Identifier\"}],select:[{collection:\"r4etMSqYZ\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"r4etMSqYZ\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"r4etMSqYZ\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"r4etMSqYZ\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"r4etMSqYZ\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"r4etMSqYZ\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({gIGNVNgIC:gIGNVNgICr4etMSqYZ,id:idr4etMSqYZ,iVpBlOYOJ:iVpBlOYOJr4etMSqYZ,kcCxzSQHu:kcCxzSQHur4etMSqYZ,TbVrcwbtn:TbVrcwbtnr4etMSqYZ,VAUyv1nvH:VAUyv1nvHr4etMSqYZ},index6)=>{iVpBlOYOJr4etMSqYZ??=\"\";VAUyv1nvHr4etMSqYZ??=\"\";kcCxzSQHur4etMSqYZ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`r4etMSqYZ-${idr4etMSqYZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHur4etMSqYZ},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:\"1132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-138t0g9-container\",inComponentSlot:true,nodeId:\"D8iDQITMF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{Fa0MqVM6c:toResponsiveImage(gIGNVNgICr4etMSqYZ),height:\"100%\",id:\"D8iDQITMF\",layoutId:\"D8iDQITMF\",m4363AwRQ:iVpBlOYOJr4etMSqYZ,QAad4Lrvr:VAUyv1nvHr4etMSqYZ,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnr4etMSqYZ)})})})})},idr4etMSqYZ);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{kcCxzSQHu:\"iisa\"},unresolvedPathSlugs:{kcCxzSQHu:{collectionId:\"LxLZ1qH0s\",collectionItemId:\"iucdtTxRb\"}},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"pva70l7rN\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k7d3gd framer-lux5qc\",\"data-framer-name\":\"IISA\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData7,{query:{from:{alias:\"pva70l7rN\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"pva70l7rN\",name:\"aM0coPMYL\",type:\"Identifier\"}],select:[{collection:\"pva70l7rN\",name:\"iVpBlOYOJ\",type:\"Identifier\"},{collection:\"pva70l7rN\",name:\"VAUyv1nvH\",type:\"Identifier\"},{collection:\"pva70l7rN\",name:\"TbVrcwbtn\",type:\"Identifier\"},{collection:\"pva70l7rN\",name:\"gIGNVNgIC\",type:\"Identifier\"},{collection:\"pva70l7rN\",name:\"kcCxzSQHu\",type:\"Identifier\"},{collection:\"pva70l7rN\",name:\"id\",type:\"Identifier\"}]},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({gIGNVNgIC:gIGNVNgICpva70l7rN,id:idpva70l7rN,iVpBlOYOJ:iVpBlOYOJpva70l7rN,kcCxzSQHu:kcCxzSQHupva70l7rN,TbVrcwbtn:TbVrcwbtnpva70l7rN,VAUyv1nvH:VAUyv1nvHpva70l7rN},index7)=>{iVpBlOYOJpva70l7rN??=\"\";VAUyv1nvHpva70l7rN??=\"\";kcCxzSQHupva70l7rN??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`pva70l7rN-${idpva70l7rN}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kcCxzSQHu:kcCxzSQHupva70l7rN},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:655,width:\"1132px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nhajeh-container\",inComponentSlot:true,nodeId:\"Ow3hgsKle\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProjetcsProjectItem,{Fa0MqVM6c:toResponsiveImage(gIGNVNgICpva70l7rN),height:\"100%\",id:\"Ow3hgsKle\",layoutId:\"Ow3hgsKle\",m4363AwRQ:iVpBlOYOJpva70l7rN,QAad4Lrvr:VAUyv1nvHpva70l7rN,style:{height:\"100%\",width:\"100%\"},variant:\"dRd9b_kWP\",width:\"100%\",y5AUfAn2v:toResponsiveImage(TbVrcwbtnpva70l7rN)})})})})},idpva70l7rN);})})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-10loe5g\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1grbgua\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-12yqnnv\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\"},children:\"Latest Insights\"})}),className:\"framer-1pxotkc\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kaz94y\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gocqtv\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Explore industry news and creative strategies to keep your next project ahead of the curve.\"})}),className:\"framer-108nq7m\",\"data-framer-name\":\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z5iOUqH0r\"},implicitPathVariables:undefined},{href:{webPageId:\"z5iOUqH0r\"},implicitPathVariables:undefined},{href:{webPageId:\"z5iOUqH0r\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+5878.76+60+0+0+0+0+137.52+0+156},toDtyncsd:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 30px) / 4, 50px) * 4 + 30px)`,y:(componentViewport?.y||0)+0+0+0+6020.76+120+0+0+0+0+194+0+156}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px) * 2 - 0px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+6043.76+160+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ai74nf-container\",nodeId:\"XseTBBnLS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks2[2],variant:\"zf2fmntWl\"},toDtyncsd:{DmH_FL2P8:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks2[0],height:\"100%\",id:\"XseTBBnLS\",layoutId:\"XseTBBnLS\",NeQkVIvJM:\"Check out more\",style:{width:\"100%\"},variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1siogyx\",\"data-framer-name\":\"Articles\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oe2gp0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData7,{query:{from:{alias:\"VCBUdP7yK\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"VCBUdP7yK\",name:\"LBmli9ULd\",type:\"Identifier\"},{collection:\"VCBUdP7yK\",name:\"Vb89uzZJ3\",type:\"Identifier\"},{collection:\"VCBUdP7yK\",name:\"kuz3GVng5\",type:\"Identifier\"},{collection:\"VCBUdP7yK\",name:\"C5zqmAjiJ\",type:\"Identifier\"},{collection:\"VCBUdP7yK\",name:\"id\",type:\"Identifier\"}]},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({C5zqmAjiJ:C5zqmAjiJVCBUdP7yK,id:idVCBUdP7yK,kuz3GVng5:kuz3GVng5VCBUdP7yK,LBmli9ULd:LBmli9ULdVCBUdP7yK,Vb89uzZJ3:Vb89uzZJ3VCBUdP7yK},index8)=>{LBmli9ULdVCBUdP7yK??=\"\";C5zqmAjiJVCBUdP7yK??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VCBUdP7yK-${idVCBUdP7yK}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LBmli9ULd:LBmli9ULdVCBUdP7yK},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LBmli9ULd:\"reinventing-the-game-the-next-decade-in-sport\"},unresolvedPathSlugs:{LBmli9ULd:{collectionId:\"bfc9_8DEH\",collectionItemId:\"t28wtybqC\"}},webPageId:\"xQXJQlpI9\"},implicitPathVariables:undefined},{href:{pathVariables:{LBmli9ULd:\"reinventing-the-game-the-next-decade-in-sport\"},unresolvedPathSlugs:{LBmli9ULd:{collectionId:\"bfc9_8DEH\",collectionItemId:\"t28wtybqC\"}},webPageId:\"xQXJQlpI9\"},implicitPathVariables:undefined},{href:{pathVariables:{LBmli9ULd:\"reinventing-the-game-the-next-decade-in-sport\"},unresolvedPathSlugs:{LBmli9ULd:{collectionId:\"bfc9_8DEH\",collectionItemId:\"t28wtybqC\"}},webPageId:\"xQXJQlpI9\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+5878.76+60+0+0+357.52+0+0+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+6020.76+120+0+0+438+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:426,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+6043.76+160+0+0+206+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mslxlp-container\",nodeId:\"KjoABzyB0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"kJtfSsDGp\",WI12JNuXh:resolvedLinks3[2]},toDtyncsd:{variant:\"roaxSULFZ\",WI12JNuXh:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(BlogArticle,{DVHVfGqy9:toResponsiveImage(Vb89uzZJ3VCBUdP7yK),edqf_I0NI:\"0px\",height:\"100%\",id:\"KjoABzyB0\",layoutId:\"KjoABzyB0\",LlAOGF3rl:C5zqmAjiJVCBUdP7yK,style:{width:\"100%\"},variant:\"ImsbINfaA\",WI12JNuXh:resolvedLinks3[0],width:\"100%\",ZGefvI4BF:kuz3GVng5VCBUdP7yK})})})})})})})},idVCBUdP7yK);})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wffo4g\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData7,{query:{from:{alias:\"d3u7aLgIl\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"d3u7aLgIl\",name:\"LBmli9ULd\",type:\"Identifier\"},{collection:\"d3u7aLgIl\",name:\"Vb89uzZJ3\",type:\"Identifier\"},{collection:\"d3u7aLgIl\",name:\"kuz3GVng5\",type:\"Identifier\"},{collection:\"d3u7aLgIl\",name:\"C5zqmAjiJ\",type:\"Identifier\"},{collection:\"d3u7aLgIl\",name:\"id\",type:\"Identifier\"}]},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({C5zqmAjiJ:C5zqmAjiJd3u7aLgIl,id:idd3u7aLgIl,kuz3GVng5:kuz3GVng5d3u7aLgIl,LBmli9ULd:LBmli9ULdd3u7aLgIl,Vb89uzZJ3:Vb89uzZJ3d3u7aLgIl},index9)=>{LBmli9ULdd3u7aLgIl??=\"\";C5zqmAjiJd3u7aLgIl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`d3u7aLgIl-${idd3u7aLgIl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LBmli9ULd:LBmli9ULdd3u7aLgIl},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LBmli9ULd:LBmli9ULdd3u7aLgIl},webPageId:\"xQXJQlpI9\"},implicitPathVariables:undefined},{href:{pathVariables:{LBmli9ULd:LBmli9ULdd3u7aLgIl},webPageId:\"xQXJQlpI9\"},implicitPathVariables:undefined},{href:{pathVariables:{LBmli9ULd:LBmli9ULdd3u7aLgIl},webPageId:\"xQXJQlpI9\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+5878.76+60+0+0+357.52+0+460+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+6020.76+120+0+0+438+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:426,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+6043.76+160+0+0+206+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4dgspl-container\",nodeId:\"ccNbkIQ3g\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{edqf_I0NI:\"0px\",variant:\"kJtfSsDGp\",WI12JNuXh:resolvedLinks4[2]},toDtyncsd:{variant:\"roaxSULFZ\",WI12JNuXh:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(BlogArticle,{DVHVfGqy9:toResponsiveImage(Vb89uzZJ3d3u7aLgIl),edqf_I0NI:\"0px 0px 0px 16px\",height:\"100%\",id:\"ccNbkIQ3g\",layoutId:\"ccNbkIQ3g\",LlAOGF3rl:C5zqmAjiJd3u7aLgIl,style:{width:\"100%\"},variant:\"PXfeYnR9u\",WI12JNuXh:resolvedLinks4[0],width:\"100%\",ZGefvI4BF:kuz3GVng5d3u7aLgIl})})})})})})})},idd3u7aLgIl);})})})})})})]})]})}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-170}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-iraoav\",\"data-framer-name\":\"Locations\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1syt10u\",\"data-framer-name\":\"1 row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1ow3qz6\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wqzq7z\",\"data-border\":true,\"data-framer-name\":\"Corner\",style:{rotate:-90}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sflapi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+7422.28+60+0+0+0+34+0+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+7064.76+120+0+0+40+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+0+0+6895.76+64+0+0+40+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1547ky4-container\",nodeId:\"wbZYOog45\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"wbZYOog45\",layoutId:\"wbZYOog45\",NTNr8ISIZ:\"\\xae\",UgtvNbvgs:14,V3Qt9yDai:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eo5b5c\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1t5qoig\",\"data-styles-preset\":\"IAEAiqtru\",children:\"Locations\"})}),className:\"framer-av69u6\",\"data-framer-name\":\"Success stories\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"If you\u2019re ready to shape the future with us, your journey could start here.\"})}),className:\"framer-1mz3pzd\",\"data-framer-name\":\"Our work speaks for itself, but our clients say it even better.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v9ica9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:360.24,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+7422.28+60+0+0+298.8+0+0},toDtyncsd:{height:326.6667,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) * 0.75 - 40px, 1px) - 10px) / 2, 50px) * 2 + 10px)`,y:(componentViewport?.y||0)+0+0+0+7064.76+120+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) * 0.75 - 20px, 1px) - 10px) / 2, 50px) * 2 + 10px)`,y:(componentViewport?.y||0)+0+0+0+6895.76+64+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__enter:animation16,__framer__exit:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15dntk-container\",nodeId:\"uAlmfXVlE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"PBlEkZIHF\"},toDtyncsd:{variant:\"Rn9uzP_VB\"}},children:/*#__PURE__*/_jsx(Card,{bWG5C_ulm:\"Switzerland\",height:\"100%\",id:\"uAlmfXVlE\",layoutId:\"uAlmfXVlE\",Q8qQvk6w7:addImageAlt({pixelHeight:640,pixelWidth:1280,src:\"https://framerusercontent.com/images/EuElMeSIx92W1rNi5hqMkbQtFE.png\",srcSet:\"https://framerusercontent.com/images/EuElMeSIx92W1rNi5hqMkbQtFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/EuElMeSIx92W1rNi5hqMkbQtFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EuElMeSIx92W1rNi5hqMkbQtFE.png 1280w\"},\"Portrait of a laughing person with curly hair wearing a white shirt\"),qDh8ffn58:\"Z\\xfcrich\",style:{height:\"100%\",width:\"100%\"},variant:\"fwWspvYvF\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:360.24,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+7422.28+60+0+0+298.8+0+370.24},toDtyncsd:{height:326.6667,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) * 0.75 - 40px, 1px) - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+7064.76+120+0+0+0+336.6667}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) * 0.75 - 20px, 1px) - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+6895.76+64+0+0+0+390,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__enter:animation16,__framer__exit:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-110asey-container\",nodeId:\"yfgxlZQ2A\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"PBlEkZIHF\"},toDtyncsd:{variant:\"Rn9uzP_VB\"}},children:/*#__PURE__*/_jsx(Card,{bWG5C_ulm:\"Switzerland\",height:\"100%\",id:\"yfgxlZQ2A\",layoutId:\"yfgxlZQ2A\",Q8qQvk6w7:addImageAlt({pixelHeight:675,pixelWidth:1280,src:\"https://framerusercontent.com/images/LcpT2M86Cf4M4J9TsIajMrCet8.png\",srcSet:\"https://framerusercontent.com/images/LcpT2M86Cf4M4J9TsIajMrCet8.png?scale-down-to=512 512w,https://framerusercontent.com/images/LcpT2M86Cf4M4J9TsIajMrCet8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LcpT2M86Cf4M4J9TsIajMrCet8.png 1280w\"},\"Portrait of a laughing person with curly hair wearing a white shirt\"),qDh8ffn58:\"Lausanne\",style:{height:\"100%\",width:\"100%\"},variant:\"fwWspvYvF\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:360.24,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+7422.28+60+0+0+298.8+0+740.48},toDtyncsd:{height:326.6667,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) * 0.75 - 40px, 1px) - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+7064.76+120+0+0+0+336.6667}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) * 0.75 - 20px, 1px) - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+6895.76+64+0+0+0+390,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__enter:animation16,__framer__exit:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11g8bn3-container\",nodeId:\"yBWu9vFiG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"Tz6jktqUP\"},toDtyncsd:{variant:\"gpbTiPwkK\"}},children:/*#__PURE__*/_jsx(AboutCard2,{bWG5C_ulm:\"England\",height:\"100%\",id:\"yBWu9vFiG\",layoutId:\"yBWu9vFiG\",Q8qQvk6w7:addImageAlt({pixelHeight:3264,pixelWidth:4896,src:\"https://framerusercontent.com/images/mdu3LNtX0hrCCHhtDkEASFRU0jQ.jpg\",srcSet:\"https://framerusercontent.com/images/mdu3LNtX0hrCCHhtDkEASFRU0jQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mdu3LNtX0hrCCHhtDkEASFRU0jQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mdu3LNtX0hrCCHhtDkEASFRU0jQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mdu3LNtX0hrCCHhtDkEASFRU0jQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/mdu3LNtX0hrCCHhtDkEASFRU0jQ.jpg 4896w\"},\"Portrait of a person in a pink sweater against a light background\"),qDh8ffn58:\"London\",style:{height:\"100%\",width:\"100%\"},variant:\"nyiCY0bRh\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:360.24,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+7422.28+60+0+0+298.8+0+1110.72},toDtyncsd:{height:326.6667,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) * 0.75 - 40px, 1px) - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+7064.76+120+0+0+0+673.3334}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) * 0.75 - 20px, 1px) - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+6895.76+64+0+0+0+780,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__enter:animation16,__framer__exit:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-75avkg-container\",nodeId:\"aCNjiIsrF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"PBlEkZIHF\"},toDtyncsd:{variant:\"Rn9uzP_VB\"}},children:/*#__PURE__*/_jsx(Card,{bWG5C_ulm:\"United States\",height:\"100%\",id:\"aCNjiIsrF\",layoutId:\"aCNjiIsrF\",Q8qQvk6w7:addImageAlt({pixelHeight:853,pixelWidth:1280,src:\"https://framerusercontent.com/images/SOra6XylIjIjRInyEtMAXFZ6Zjs.png\",srcSet:\"https://framerusercontent.com/images/SOra6XylIjIjRInyEtMAXFZ6Zjs.png?scale-down-to=512 512w,https://framerusercontent.com/images/SOra6XylIjIjRInyEtMAXFZ6Zjs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SOra6XylIjIjRInyEtMAXFZ6Zjs.png 1280w\"},\"Portrait of a laughing person with curly hair wearing a white shirt\"),qDh8ffn58:\"Miami\",style:{height:\"100%\",width:\"100%\"},variant:\"fwWspvYvF\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:360.24,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+7422.28+60+0+0+298.8+0+1480.96},toDtyncsd:{height:326.6667,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) * 0.75 - 40px, 1px) - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+7064.76+120+0+0+0+673.3334}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) * 0.75 - 20px, 1px) - 10px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+6895.76+64+0+0+0+780,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition4},__framer__enter:animation16,__framer__exit:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ze664x-container\",nodeId:\"I1v1MJ8Mk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"PBlEkZIHF\"},toDtyncsd:{variant:\"Rn9uzP_VB\"}},children:/*#__PURE__*/_jsx(Card,{bWG5C_ulm:\"South Africa\",height:\"100%\",id:\"I1v1MJ8Mk\",layoutId:\"I1v1MJ8Mk\",Q8qQvk6w7:addImageAlt({pixelHeight:1200,pixelWidth:673,src:\"https://framerusercontent.com/images/PGimzXOQIQgmYSkMTQQ8KwYZn5E.png\",srcSet:\"https://framerusercontent.com/images/PGimzXOQIQgmYSkMTQQ8KwYZn5E.png?scale-down-to=1024 574w,https://framerusercontent.com/images/PGimzXOQIQgmYSkMTQQ8KwYZn5E.png 673w\"},\"Portrait of a laughing person with curly hair wearing a white shirt\"),qDh8ffn58:\"Cape Town\",style:{height:\"100%\",width:\"100%\"},variant:\"fwWspvYvF\",width:\"100%\"})})})})})})]})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dsur25-container hidden-233qk8\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ET5iqXTes\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ET5iqXTes\",intensity:10,layoutId:\"ET5iqXTes\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4aMyX.framer-lux5qc, .framer-4aMyX .framer-lux5qc { display: block; }\",\".framer-4aMyX.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-4aMyX .framer-1euzf18-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-4aMyX .framer-1ojost9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-fbtq8l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 0px 36px 56px 36px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-4aMyX .framer-1n4wfg3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1s8uq1m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1hlm8z3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-4aMyX .framer-8xowj5, .framer-4aMyX .framer-1po5jnl { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; opacity: 0; position: relative; user-select: none; white-space: pre; width: 100%; z-index: 1; }\",\".framer-4aMyX .framer-17f7gii { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; mix-blend-mode: difference; position: absolute; right: 0px; top: -23%; transform: translateY(-50%); user-select: none; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-4aMyX .framer-l0tfed { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; mix-blend-mode: overlay; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); user-select: none; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-4aMyX .framer-8axwti { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1d7ihmp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-4aMyX .framer-1srzfh1 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-4aMyX .framer-1r8tsb6 { align-self: stretch; flex: none; height: auto; overflow: hidden; pointer-events: none; position: relative; width: 14%; }\",\".framer-4aMyX .framer-1bmi8eo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 68%; }\",\".framer-4aMyX .framer-skcre { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: absolute; right: 0px; top: -25%; transform: translateY(-50%); user-select: none; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-4aMyX .framer-13h7p30 { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; mix-blend-mode: color; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); user-select: none; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-4aMyX .framer-22mi0a { -webkit-user-select: none; bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; user-select: none; width: 100%; z-index: 1; }\",\".framer-4aMyX .framer-1tl276o { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-4aMyX .framer-1jgv21m { background: linear-gradient(180deg, rgba(3, 17, 25, 0.1) 0%, rgba(3, 17, 25, 0.5) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-4aMyX .framer-1p8js24 { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-4aMyX .framer-egi9db { --border-bottom-width: 1px; --border-color: #e4e4e4; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1detlqp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1nr51yd { --border-bottom-width: 1px; --border-color: #e4e4e4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 48px 0px 80px 0px; position: relative; width: 30%; }\",\".framer-4aMyX .framer-aj0gvu-container, .framer-4aMyX .framer-1l9ei7f-container, .framer-4aMyX .framer-o7npay-container, .framer-4aMyX .framer-1uw1s80-container, .framer-4aMyX .framer-1lgm3t3-container, .framer-4aMyX .framer-1547ky4-container, .framer-4aMyX .framer-1dsur25-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-4aMyX .framer-ae63dj { --border-bottom-width: 1px; --border-color: #e4e4e4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: -42px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 84px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 84px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-4aMyX .framer-hbmua5 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-e4aec472-48cb-47db-918e-2416a51470ec, #031119); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 66px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 66px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4aMyX .framer-1eghmoe-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-4aMyX .framer-zs3m79 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 45vh; justify-content: center; overflow: hidden; padding: 220px 0px 220px 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1e0vmcu-container { bottom: 0px; flex: none; height: 100%; left: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-4aMyX .framer-q9oz9g { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-4aMyX .framer-g6b3a7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-88ivjp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1planw1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-11o8d1g, .framer-4aMyX .framer-1puqgh9, .framer-4aMyX .framer-1bhof22 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4aMyX .framer-6qar90 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 510px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4aMyX .framer-6e3kvj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-4aMyX .framer-xch8uj { align-content: center; align-items: center; background-color: var(--token-e4aec472-48cb-47db-918e-2416a51470ec, #031119); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 36px 180px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-4aMyX .framer-49x5cw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: flex-start; max-width: 1848px; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-4aMyX .framer-15w7kz1, .framer-4aMyX .framer-mh4amm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-uo7po2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-8jh6fz-container, .framer-4aMyX .framer-1mslxlp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4aMyX .framer-7wclla { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 36px 160px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-4aMyX .framer-cu0ogy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-7u8fwv { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-63ob45-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-4aMyX .framer-v1szlu { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: span 3; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-5hxscb { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; max-width: 840px; position: relative; width: 1px; }\",\".framer-4aMyX .framer-1tn9b2u, .framer-4aMyX .framer-12yqnnv { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-135b06k-container, .framer-4aMyX .framer-1bof1so-container, .framer-4aMyX .framer-11zt7bn-container, .framer-4aMyX .framer-1asny8-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-4aMyX .framer-wfeje { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 36px 300px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-4aMyX .framer-1doveij { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-4aMyX .framer-unwsa7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1nnrt9k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1oqoo67 { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 520px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-129dri9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1csplbm { align-content: center; align-items: center; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4aMyX .framer-4wsqim-container, .framer-4aMyX .framer-tndojr-container, .framer-4aMyX .framer-au6363-container, .framer-4aMyX .framer-1ai74nf-container, .framer-4aMyX .framer-4dgspl-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-4aMyX .framer-tpau29 { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4aMyX .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.9) 28.000000000000004%, rgba(0, 0, 0, 0.05) 100%) add; bottom: 2px; flex: none; left: 0px; mask: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 28.000000000000004%, rgba(0, 0, 0, 0.05) 100%) add; overflow: hidden; position: absolute; right: 0px; top: -2px; z-index: 0; }\",\".framer-4aMyX .framer-a91qzl { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-4aMyX .framer-3x970n-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-4aMyX .framer-arvip8, .framer-4aMyX .framer-2midlx, .framer-4aMyX .framer-5k7vi5, .framer-4aMyX .framer-1xo5jth, .framer-4aMyX .framer-1c9y9i9, .framer-4aMyX .framer-1vy6yhv, .framer-4aMyX .framer-lgr0et, .framer-4aMyX .framer-k7d3gd { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 655px; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 1132px; }\",\".framer-4aMyX .framer-kky19a-container, .framer-4aMyX .framer-h37if4-container, .framer-4aMyX .framer-1qbmvjs-container, .framer-4aMyX .framer-agyibh-container, .framer-4aMyX .framer-sgzhzl-container, .framer-4aMyX .framer-1xlddv7-container, .framer-4aMyX .framer-138t0g9-container, .framer-4aMyX .framer-nhajeh-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-4aMyX .framer-10loe5g { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 36px 60px 36px; position: relative; width: 100%; z-index: 3; }\",\".framer-4aMyX .framer-1grbgua { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1pxotkc { --framer-paragraph-spacing: 0px; align-self: start; flex: none; grid-column: span 2; height: 100%; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4aMyX .framer-1kaz94y { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; grid-column: span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-gocqtv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4aMyX .framer-108nq7m { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 290px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4aMyX .framer-1siogyx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1oe2gp0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-4aMyX .framer-wffo4g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-4aMyX .framer-iraoav { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 36px 160px 36px; position: relative; width: 100%; z-index: 3; }\",\".framer-4aMyX .framer-1syt10u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1160px; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1ow3qz6 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.13); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 25%; }\",\".framer-4aMyX .framer-1wqzq7z { --border-bottom-width: 2px; --border-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 30px; top: 30px; width: 9px; z-index: 1; }\",\".framer-4aMyX .framer-sflapi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-1eo5b5c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4aMyX .framer-av69u6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4aMyX .framer-1mz3pzd { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-4aMyX .framer-v9ica9 { display: grid; flex: 1 0 0px; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4aMyX .framer-15dntk-container { align-self: start; flex: none; grid-column: span 2; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-4aMyX .framer-110asey-container, .framer-4aMyX .framer-11g8bn3-container, .framer-4aMyX .framer-75avkg-container, .framer-4aMyX .framer-ze664x-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-4aMyX[data-border=\"true\"]::after, .framer-4aMyX [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-4aMyX.framer-72rtr7 { width: 810px; } .framer-4aMyX .framer-fbtq8l { gap: 10px; height: 90vh; padding: 0px 32px 40px 32px; } .framer-4aMyX .framer-1n4wfg3 { gap: 16px; } .framer-4aMyX .framer-1hlm8z3 { order: 0; width: 70%; } .framer-4aMyX .framer-8axwti { flex-direction: column; gap: 26px; justify-content: flex-start; } .framer-4aMyX .framer-1d7ihmp, .framer-4aMyX .framer-1csplbm { flex: none; order: 1; width: 100%; } .framer-4aMyX .framer-1bmi8eo { order: 0; width: 100%; } .framer-4aMyX .framer-1nr51yd { padding: 80px 0px 130px 0px; } .framer-4aMyX .framer-zs3m79 { height: 234px; padding: 0px; } .framer-4aMyX .framer-1e0vmcu-container { height: auto; } .framer-4aMyX .framer-q9oz9g { padding: 130px 32px 120px 32px; } .framer-4aMyX .framer-g6b3a7, .framer-4aMyX .framer-cu0ogy { gap: 70px; } .framer-4aMyX .framer-88ivjp { gap: 40px; } .framer-4aMyX .framer-xch8uj { padding: 0px 32px 120px 32px; } .framer-4aMyX .framer-49x5cw { gap: 100px; } .framer-4aMyX .framer-uo7po2 { gap: 80px; } .framer-4aMyX .framer-7wclla { padding: 120px 32px 120px 32px; } .framer-4aMyX .framer-7u8fwv { grid-template-rows: repeat(1, min-content); } .framer-4aMyX .framer-1tn9b2u { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-4aMyX .framer-wfeje { padding: 0px 32px 160px 32px; } .framer-4aMyX .framer-1doveij { gap: 110px; padding: 36px 0px 120px 0px; } .framer-4aMyX .framer-unwsa7 { gap: 50px; } .framer-4aMyX .framer-129dri9 { flex-direction: column; gap: 80px; } .framer-4aMyX .framer-tpau29 { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; justify-content: flex-start; order: 0; width: 100%; } .framer-4aMyX .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%) add; mask: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%) add; } .framer-4aMyX .framer-10loe5g, .framer-4aMyX .framer-iraoav { padding: 120px 32px 60px 32px; } .framer-4aMyX .framer-1grbgua { gap: 60px; } .framer-4aMyX .framer-12yqnnv { gap: 10px; } .framer-4aMyX .framer-1pxotkc { grid-column: span 4; height: auto; } .framer-4aMyX .framer-1kaz94y { flex-direction: column; gap: 30px; grid-column: span 4; } .framer-4aMyX .framer-gocqtv, .framer-4aMyX .framer-1ai74nf-container { flex: none; width: 100%; } .framer-4aMyX .framer-108nq7m { --framer-text-wrap-override: balance; max-width: 440px; } .framer-4aMyX .framer-1syt10u { gap: 40px; height: 1000px; }}\",\"@media (max-width: 809px) { .framer-4aMyX.framer-72rtr7 { width: 390px; } .framer-4aMyX .framer-fbtq8l { height: 700px; padding: 0px 24px 34px 24px; position: relative; top: unset; } .framer-4aMyX .framer-1n4wfg3 { order: 0; z-index: 2; } .framer-4aMyX .framer-1s8uq1m { flex-direction: column; gap: 40px; order: 0; } .framer-4aMyX .framer-1hlm8z3, .framer-4aMyX .framer-1bmi8eo { order: 0; width: 100%; } .framer-4aMyX .framer-17f7gii { top: -16%; width: 100%; } .framer-4aMyX .framer-8axwti { flex-direction: column; gap: 26px; justify-content: flex-start; order: 1; } .framer-4aMyX .framer-1d7ihmp { flex: none; order: 1; width: 100%; } .framer-4aMyX .framer-1srzfh1 { max-width: unset; } .framer-4aMyX .framer-13h7p30 { top: 28%; width: 100%; } .framer-4aMyX .framer-22mi0a { order: 1; } .framer-4aMyX .framer-1tl276o { order: 3; } .framer-4aMyX .framer-1jgv21m { background: linear-gradient(180deg, rgba(3, 17, 25, 0.1) 0%, rgb(3, 17, 26) 100%); order: 2; z-index: 1; } .framer-4aMyX .framer-1nr51yd { --border-left-width: 0px; --border-right-width: 0px; padding: 60px 0px 60px 0px; width: 100%; } .framer-4aMyX .framer-ae63dj { bottom: -32px; height: var(--framer-aspect-ratio-supported, 66px); width: 66px; } .framer-4aMyX .framer-hbmua5 { height: var(--framer-aspect-ratio-supported, 52px); width: 52px; } .framer-4aMyX .framer-1eghmoe-container { height: 18px; width: 18px; } .framer-4aMyX .framer-zs3m79 { height: min-content; overflow: visible; padding: 0px; } .framer-4aMyX .framer-1e0vmcu-container { bottom: unset; height: auto; left: unset; position: relative; } .framer-4aMyX .framer-q9oz9g { padding: 60px 24px 60px 24px; } .framer-4aMyX .framer-g6b3a7, .framer-4aMyX .framer-cu0ogy { gap: 32px; } .framer-4aMyX .framer-88ivjp { gap: 20px; } .framer-4aMyX .framer-11o8d1g, .framer-4aMyX .framer-1puqgh9 { max-width: 270px; } .framer-4aMyX .framer-xch8uj, .framer-4aMyX .framer-wfeje { padding: 0px 24px 50px 24px; } .framer-4aMyX .framer-49x5cw { gap: 70px; } .framer-4aMyX .framer-15w7kz1, .framer-4aMyX .framer-mh4amm { overflow: visible; } .framer-4aMyX .framer-uo7po2 { gap: 40px; overflow: visible; } .framer-4aMyX .framer-7wclla { padding: 50px 24px 50px 24px; } .framer-4aMyX .framer-7u8fwv { gap: 26px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-4aMyX .framer-63ob45-container { order: 1; width: 100%; } .framer-4aMyX .framer-v1szlu { grid-column: span 1; order: 0; } .framer-4aMyX .framer-1tn9b2u { gap: 16px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-4aMyX .framer-1doveij { gap: 80px; padding: 160px 0px 160px 0px; } .framer-4aMyX .framer-unwsa7 { gap: 50px; overflow: visible; } .framer-4aMyX .framer-129dri9 { flex-direction: column; gap: 50px; } .framer-4aMyX .framer-1csplbm { flex: none; flex-direction: column; gap: 26px; order: 0; width: 100%; } .framer-4aMyX .framer-4wsqim-container, .framer-4aMyX .framer-tndojr-container, .framer-4aMyX .framer-au6363-container, .framer-4aMyX .framer-gocqtv, .framer-4aMyX .framer-1ai74nf-container, .framer-4aMyX .framer-1oe2gp0, .framer-4aMyX .framer-4dgspl-container { flex: none; width: 100%; } .framer-4aMyX .framer-tpau29 { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-4aMyX .framer-1lgm3t3-container { width: 100%; } .framer-4aMyX .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 21.723606418918923%, rgba(0, 0, 0, 0.05) 100%) add; mask: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 21.723606418918923%, rgba(0, 0, 0, 0.05) 100%) add; } .framer-4aMyX .framer-10loe5g { padding: 60px 24px 240px 24px; } .framer-4aMyX .framer-1grbgua { gap: 36px; } .framer-4aMyX .framer-12yqnnv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; } .framer-4aMyX .framer-1pxotkc { align-self: unset; height: auto; max-width: 270px; order: 0; } .framer-4aMyX .framer-1kaz94y { align-self: unset; flex-direction: column; gap: 30px; height: min-content; order: 1; } .framer-4aMyX .framer-108nq7m { --framer-text-wrap-override: balance; max-width: 340px; } .framer-4aMyX .framer-1siogyx { flex-direction: column; gap: 34px; } .framer-4aMyX .framer-wffo4g { flex: none; flex-direction: column; gap: 34px; width: 100%; } .framer-4aMyX .framer-iraoav { padding: 60px 24px 50px 24px; } .framer-4aMyX .framer-1syt10u { flex-direction: column; gap: 28px; height: 2140px; } .framer-4aMyX .framer-1ow3qz6 { gap: 0px; height: min-content; justify-content: center; padding: 34px; width: 100%; } .framer-4aMyX .framer-1wqzq7z { right: 24px; top: 24px; } .framer-4aMyX .framer-v9ica9 { grid-template-columns: repeat(1, minmax(50px, 1fr)); height: 1px; width: 100%; } .framer-4aMyX .framer-15dntk-container { grid-column: span 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9324\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"toDtyncsd\":{\"layout\":[\"fixed\",\"auto\"]},\"p4sQvxEP4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"uhPAu4sKG\":{\"pattern\":\":uhPAu4sKG\",\"name\":\"description\"},\"sHMz2_FAk\":{\"pattern\":\":sHMz2_FAk\",\"name\":\"benefits\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-4aMyX\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9324,width:1200};addFonts(FrameraugiA20Il,[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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\"}]},...SplashScreenFonts,...LogoFonts,...PhosphorFonts,...VideoFonts,...LogoCarouselFonts,...UICategoryFonts,...ServicesItemsFonts,...UIArrowButtonFonts,...NumbersItemFonts,...TeamItemFonts,...ProjetcsProjectItemFonts,...SlideshowFonts,...BlogArticleFonts,...CardFonts,...AboutCard2Fonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"toDtyncsd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p4sQvxEP4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"9324\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"uhPAu4sKG\\\":{\\\"pattern\\\":\\\":uhPAu4sKG\\\",\\\"name\\\":\\\"description\\\"},\\\"sHMz2_FAk\\\":{\\\"pattern\\\":\\\":sHMz2_FAk\\\",\\\"name\\\":\\\"benefits\\\"}}\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "OtapoObdF", "M6makQZJz", "iU68ScBCY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerJDguMTCRG", "withCSS", "JDguMTCRG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionAWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "mouseEnter", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "fErYKCICq", "KrXbsPILD", "UrMA4ICCc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter10pbwk0", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "css", "FramerZkokeclFd", "withCSS", "ZkokeclFd_default", "addPropertyControls", "ControlType", "addFonts", "ServicesItemsDescriptionFonts", "getFonts", "JDguMTCRG_default", "MotionDivWithFX", "withFX", "motion", "ServicesItemsItemFonts", "ZkokeclFd_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "_01Description", "_01Image", "_01Title", "_02Description", "_02Image", "_02Title", "_03Description", "_03Image", "_03Title", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "L5bVOjC54", "Xgqdpwxoc", "nfr3_vd4_", "kGMjQGWFg", "AChBv6mnx", "dym8aGlmH", "AtsGqKbqe", "Y7m9L8sgJ", "u2WQNcukZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "KrXbsPILD1xtnafx", "args", "KrXbsPILD1ov8v4r", "KrXbsPILDgko28l", "KrXbsPILDjnvuu0", "KrXbsPILDkhapmg", "KrXbsPILDbr4mb1", "KrXbsPILD11xbel4", "KrXbsPILD8caf5w", "KrXbsPILD1i08jbh", "scopingClassNames", "cx", "router", "useRouter", "visible", "visible1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramereSOfEPmfr", "withCSS", "eSOfEPmfr_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "logo", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "IiM01HZ0g", "mb0Ba799H", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap10mf2nx", "args", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerkNP8cImIG", "withCSS", "kNP8cImIG_default", "addPropertyControls", "ControlType", "addFonts", "CarouselItemFonts", "getFonts", "kNP8cImIG_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerfuxa0eFsG", "withCSS", "fuxa0eFsG_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "name1", "occupation", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "qDh8ffn58", "bWG5C_ulm", "Q8qQvk6w7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "RichText", "css", "FrameriMp9mQZvd", "withCSS", "iMp9mQZvd_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearcudx8a", "args", "onAppearbtcitc", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "css", "FramerllioleSC9", "withCSS", "llioleSC9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "name1", "occupation", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "qDh8ffn58", "bWG5C_ulm", "Q8qQvk6w7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "RichText", "css", "FramerrG5rvlLkB", "withCSS", "rG5rvlLkB_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bottom", "height", "id", "top", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xdRQ8fRTN", "sUuW11Svk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramerW96ZH6Gnz", "withCSS", "W96ZH6Gnz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "color", "height", "id", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ce3V1WO4y", "N3gNITbco", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText", "css", "FramerwVLyqC_6X", "withCSS", "wVLyqC_6X_default", "addPropertyControls", "ControlType", "addFonts", "SplashScreenFonts", "getFonts", "llioleSC9_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "ImageWithOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "MotionSectionWithFX", "withFX", "LogoFonts", "OY8jC43hH_default", "PhosphorFonts", "Icon", "MotionDivWithFX", "VideoFonts", "Video", "LogoCarouselFonts", "fuxa0eFsG_default", "UICategoryFonts", "wVLyqC_6X_default", "ServicesItemsFonts", "eSOfEPmfr_default", "UIArrowButtonFonts", "ozPjcS5mp_default", "RichTextWithFX", "NumbersItemFonts", "aH7yeXBVj_default", "TeamItemFonts", "W96ZH6Gnz_default", "ContainerWithFX", "Container", "ImageWithFX", "ProjetcsProjectItemFonts", "KYMveFRib_default", "MotionAWithFX", "SlideshowFonts", "Slideshow", "BlogArticleFonts", "DyECzRfVJ_default", "CardFonts", "iMp9mQZvd_default", "AboutCard2Fonts", "rG5rvlLkB_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "animation9", "transition6", "animation10", "transition7", "animation11", "animation12", "transition8", "animation13", "animation14", "animation15", "transition9", "transformTemplate2", "animation16", "animation17", "animation18", "transition10", "animation19", "addImageAlt", "image", "alt", "animation20", "animation21", "transition11", "animation22", "animation23", "transition12", "animation24", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "QueryData1", "QueryData2", "QueryData3", "QueryData4", "QueryData5", "QueryData6", "QueryData7", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "iVpBlOYOJqkiyPWRFQ", "VAUyv1nvHqkiyPWRFQ", "TbVrcwbtnqkiyPWRFQ", "gIGNVNgICqkiyPWRFQ", "kcCxzSQHuqkiyPWRFQ", "idqkiyPWRFQ", "iVpBlOYOJlqa6yUxMV", "VAUyv1nvHlqa6yUxMV", "TbVrcwbtnlqa6yUxMV", "gIGNVNgIClqa6yUxMV", "kcCxzSQHulqa6yUxMV", "idlqa6yUxMV", "iVpBlOYOJuObjygqse", "VAUyv1nvHuObjygqse", "TbVrcwbtnuObjygqse", "gIGNVNgICuObjygqse", "kcCxzSQHuuObjygqse", "iduObjygqse", "iVpBlOYOJHwKvYUMxL", "VAUyv1nvHHwKvYUMxL", "TbVrcwbtnHwKvYUMxL", "gIGNVNgICHwKvYUMxL", "kcCxzSQHuHwKvYUMxL", "idHwKvYUMxL", "iVpBlOYOJEunQpifbd", "VAUyv1nvHEunQpifbd", "TbVrcwbtnEunQpifbd", "gIGNVNgICEunQpifbd", "kcCxzSQHuEunQpifbd", "idEunQpifbd", "iVpBlOYOJHNrDC81kF", "VAUyv1nvHHNrDC81kF", "TbVrcwbtnHNrDC81kF", "gIGNVNgICHNrDC81kF", "kcCxzSQHuHNrDC81kF", "idHNrDC81kF", "iVpBlOYOJr4etMSqYZ", "VAUyv1nvHr4etMSqYZ", "TbVrcwbtnr4etMSqYZ", "gIGNVNgICr4etMSqYZ", "kcCxzSQHur4etMSqYZ", "idr4etMSqYZ", "iVpBlOYOJpva70l7rN", "VAUyv1nvHpva70l7rN", "TbVrcwbtnpva70l7rN", "gIGNVNgICpva70l7rN", "kcCxzSQHupva70l7rN", "idpva70l7rN", "LBmli9ULdVCBUdP7yK", "Vb89uzZJ3VCBUdP7yK", "kuz3GVng5VCBUdP7yK", "C5zqmAjiJVCBUdP7yK", "idVCBUdP7yK", "LBmli9ULdd3u7aLgIl", "Vb89uzZJ3d3u7aLgIl", "kuz3GVng5d3u7aLgIl", "C5zqmAjiJd3u7aLgIl", "idd3u7aLgIl", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "ChildrenCanSuspend", "LxLZ1qH0s_default", "collection", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "resolvedLinks2", "bfc9_8DEH_default", "collection8", "paginationInfo8", "loadMore8", "index8", "resolvedLinks3", "collection9", "paginationInfo9", "loadMore9", "index9", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
