{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/itgi9RK8CLwe9MFuhYeS/SlideShow.js", "ssg:https://framerusercontent.com/modules/mPUQy3pIuE15ZQ8sCAW1/ZLUKIPV1C2f7s3lAyBJs/AUdIPWa8L.js", "ssg:https://framerusercontent.com/modules/302lkKw4PFgWWcbx7ox3/9wfoOUfKSdX5WPPWQzi1/BmyWZK_C9.js", "ssg:https://framerusercontent.com/modules/iyDXphIl5JmP2qA323Ji/zntkexV2xvvujtYIy9Td/cXxmZ_WGy.js", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv", "ssg:https://framerusercontent.com/modules/OiCf4NNLLpuN6FqtIYsk/9i5jMkFo5EhoLXlXTr2l/Look3D.js", "ssg:https://framerusercontent.com/modules/k2YzM6ZAF7szUtPSKoyj/2YOABP8YSzNhC2tGX02X/O6pJvZkzz.js", "ssg:https://framerusercontent.com/modules/XSOK1IwPTgMnN2pvNWxJ/Z00zsucgxOmr7GXdwKpk/KobtKP3YO.js", "ssg:https://framerusercontent.com/modules/ApxFidDQNfpnGbq6nBk0/l5pgZEzjRmrhnS0tG8BX/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */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}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},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\"],defaultValue:\"left\",displaySegmentedControl:true},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},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},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;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.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,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// 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;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// 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\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\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}=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 filteredSlots.map(index=>({current:null}));},[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     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.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);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);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=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,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();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>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);/* 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){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-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){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{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);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* 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.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],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();setIsMouseDown(true);},onMouseUp:()=>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),\"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),\"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},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}}},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__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\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=>{ref.current?.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\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",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},child.props?.children)})});});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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"fg2Qm7JpU\",\"KTyV7Phkk\"];const serializationHash=\"framer-BJ1Sw\";const variantClassNames={fg2Qm7JpU:\"framer-v-12waq4g\",KTyV7Phkk:\"framer-v-hgdv54\"};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={L:\"fg2Qm7JpU\",S:\"KTyV7Phkk\"};const getProps=({height,id,image,width,...props})=>{return{...props,Ln8d5mN1s:image??props.Ln8d5mN1s??{src:\"https://framerusercontent.com/images/kWKTtT0sHaBtqXAjToYJt0DkM.png\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"fg2Qm7JpU\"};};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,Ln8d5mN1s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fg2Qm7JpU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"KTyV7Phkk\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-12waq4g\",className,classNames),\"data-framer-name\":\"L\",layoutDependency:layoutDependency,layoutId:\"fg2Qm7JpU\",ref:ref??ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{KTyV7Phkk:{backgroundColor:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}},...addPropertyOverrides({KTyV7Phkk:{\"data-framer-name\":\"S\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||180)-0-55)/2)),pixelHeight:100,pixelWidth:456,sizes:\"145px\",...toResponsiveImage(Ln8d5mN1s),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1hrlcan\",layoutDependency:layoutDependency,layoutId:\"cPNYTsnmH\"}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-i8r105\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"UKp9GKW_B\",style:{backgroundColor:\"var(--token-bf3b78f1-7c89-4ecd-bba4-77c1a4c7b347, rgb(234, 234, 234))\",opacity:.65}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BJ1Sw.framer-17xb6gr, .framer-BJ1Sw .framer-17xb6gr { display: block; }\",\".framer-BJ1Sw.framer-12waq4g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 180px; justify-content: center; padding: 0px; position: relative; width: 268px; }\",\".framer-BJ1Sw .framer-1hrlcan { flex: none; height: 55px; overflow: hidden; position: relative; width: 145px; }\",\".framer-BJ1Sw .framer-i8r105 { flex: none; height: 100%; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 1px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BJ1Sw.framer-12waq4g { gap: 0px; } .framer-BJ1Sw.framer-12waq4g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BJ1Sw.framer-12waq4g > :first-child { margin-left: 0px; } .framer-BJ1Sw.framer-12waq4g > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 180\n * @framerIntrinsicWidth 268\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KTyV7Phkk\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Ln8d5mN1s\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAUdIPWa8L=withCSS(Component,css,\"framer-BJ1Sw\");export default FramerAUdIPWa8L;FramerAUdIPWa8L.displayName=\"Client Card XL\";FramerAUdIPWa8L.defaultProps={height:180,width:268};addPropertyControls(FramerAUdIPWa8L,{variant:{options:[\"fg2Qm7JpU\",\"KTyV7Phkk\"],optionTitles:[\"L\",\"S\"],title:\"Variant\",type:ControlType.Enum},Ln8d5mN1s:{__defaultAssetReference:\"data:framer/asset-reference,kWKTtT0sHaBtqXAjToYJt0DkM.png?originalFilename=114.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerAUdIPWa8L,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAUdIPWa8L\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"268\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KTyV7Phkk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Ln8d5mN1s\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"180\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AUdIPWa8L.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}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/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/itgi9RK8CLwe9MFuhYeS/SlideShow.js\";import ClientCardXL from\"https://framerusercontent.com/modules/mPUQy3pIuE15ZQ8sCAW1/ZLUKIPV1C2f7s3lAyBJs/AUdIPWa8L.js\";const ClientCardXLFonts=getFonts(ClientCardXL);const TickerFonts=getFonts(Ticker);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"YmEHXmhgM\",\"BbZ4PDuqX\"];const serializationHash=\"framer-CIgqc\";const variantClassNames={BbZ4PDuqX:\"framer-v-1qckcgx\",YmEHXmhgM:\"framer-v-1gghnu2\"};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={Slider:\"BbZ4PDuqX\",Ticker:\"YmEHXmhgM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YmEHXmhgM\"};};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:\"YmEHXmhgM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"BbZ4PDuqX\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"BbZ4PDuqX\")return true;return false;};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-1gghnu2\",className,classNames),\"data-framer-name\":\"Ticker\",layoutDependency:layoutDependency,layoutId:\"YmEHXmhgM\",ref:refBinding,style:{...style},...addPropertyOverrides({BbZ4PDuqX:{\"data-framer-name\":\"Slider\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7optrw\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"LG3ewVWnA\",style:{backgroundColor:\"var(--token-bf3b78f1-7c89-4ecd-bba4-77c1a4c7b347, rgb(234, 234, 234))\",opacity:.65}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-129g3z6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"N5nguNu8U-container\",nodeId:\"N5nguNu8U\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.6,id:\"N5nguNu8U\",layoutId:\"N5nguNu8U\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qh49py-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"anprtoVTg-container\",nodeId:\"anprtoVTg\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"anprtoVTg\",layoutId:\"anprtoVTg\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/cvn4QEcdrE9VRx984DIWO8lGY.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"fg2Qm7JpU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x106js-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"dA0uXeoXY-container\",nodeId:\"dA0uXeoXY\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"dA0uXeoXY\",layoutId:\"dA0uXeoXY\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/ABU9NM7FGT8nTMpxPFF82vSsww.png\",srcSet:\"https://framerusercontent.com/images/ABU9NM7FGT8nTMpxPFF82vSsww.png?scale-down-to=512 512w,https://framerusercontent.com/images/ABU9NM7FGT8nTMpxPFF82vSsww.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABU9NM7FGT8nTMpxPFF82vSsww.png 1088w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"fg2Qm7JpU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rrowkn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZZATUfibb-container\",nodeId:\"ZZATUfibb\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"ZZATUfibb\",layoutId:\"ZZATUfibb\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/Vp1ncZAFPJDpkvBAcpTQnI4xHEM.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"fg2Qm7JpU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-66sskk-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k0qgt1bmX-container\",nodeId:\"k0qgt1bmX\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"k0qgt1bmX\",layoutId:\"k0qgt1bmX\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/lzxb2eMhdzVwJNxMY34VPYzH0.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"fg2Qm7JpU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s29gc2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ihiVjMx2y-container\",nodeId:\"ihiVjMx2y\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"ihiVjMx2y\",layoutId:\"ihiVjMx2y\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png\",srcSet:\"https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png 6562w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"fg2Qm7JpU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-af5bpn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"WSzrZph8x-container\",nodeId:\"WSzrZph8x\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"WSzrZph8x\",layoutId:\"WSzrZph8x\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/wvObr1atMnn2sOs6RgODEtqQyI.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"fg2Qm7JpU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3usbq-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hYLrtvK83-container\",nodeId:\"hYLrtvK83\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"hYLrtvK83\",layoutId:\"hYLrtvK83\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/OuVxrcUz5peNMPIdwaNvanI3wS0.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"fg2Qm7JpU\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1byfcfc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PTB1JOtlP-container\",nodeId:\"PTB1JOtlP\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:30,arrowPadding:-21,arrowPaddingBottom:-55,arrowPaddingLeft:0,arrowPaddingRight:275,arrowPaddingTop:-70,arrowPosition:\"bottom-right\",arrowRadius:100,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:25,leftArrow:\"https://framerusercontent.com/images/kEw1mnXoxbH5B6L1pZTKejD8.svg\",rightArrow:\"https://framerusercontent.com/images/mOMvmtm0XcmfOgKwLByN9WrE.svg\",showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:.8,effectsPerspective:1200,effectsRotate:0,effectsScale:.9},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"PTB1JOtlP\",intervalControl:3,itemAmount:1,layoutId:\"PTB1JOtlP\",padding:20,paddingBottom:50,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",dotsBlur:0,dotsFill:\"var(--token-f79d02c7-1774-42e8-8ffe-88585b6d572d, rgb(30, 30, 30))\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jn1a0j-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Uyin_DcTz-container\",nodeId:\"Uyin_DcTz\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"Uyin_DcTz\",layoutId:\"Uyin_DcTz\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/J6qaWW4VTwifSvqWtIhi7PYyN7Y.png\",srcSet:\"https://framerusercontent.com/images/J6qaWW4VTwifSvqWtIhi7PYyN7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/J6qaWW4VTwifSvqWtIhi7PYyN7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J6qaWW4VTwifSvqWtIhi7PYyN7Y.png 1238w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KTyV7Phkk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mafozn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"RuAYmxpGF-container\",nodeId:\"RuAYmxpGF\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"RuAYmxpGF\",layoutId:\"RuAYmxpGF\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/CUv2veQDV52DmSdfFXcVu6BVlE.png\",srcSet:\"https://framerusercontent.com/images/CUv2veQDV52DmSdfFXcVu6BVlE.png?scale-down-to=512 512w,https://framerusercontent.com/images/CUv2veQDV52DmSdfFXcVu6BVlE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CUv2veQDV52DmSdfFXcVu6BVlE.png 1097w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KTyV7Phkk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c6x870-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Mi4OukAXW-container\",nodeId:\"Mi4OukAXW\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"Mi4OukAXW\",layoutId:\"Mi4OukAXW\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/ABU9NM7FGT8nTMpxPFF82vSsww.png\",srcSet:\"https://framerusercontent.com/images/ABU9NM7FGT8nTMpxPFF82vSsww.png?scale-down-to=512 512w,https://framerusercontent.com/images/ABU9NM7FGT8nTMpxPFF82vSsww.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABU9NM7FGT8nTMpxPFF82vSsww.png 1088w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KTyV7Phkk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1r11zxw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rra3Z9qby-container\",nodeId:\"rra3Z9qby\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"rra3Z9qby\",layoutId:\"rra3Z9qby\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/cvn4QEcdrE9VRx984DIWO8lGY.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KTyV7Phkk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:180,width:\"268px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3kap1u-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"nIfSlBYPF-container\",nodeId:\"nIfSlBYPF\",rendersWithMotion:true,scopeId:\"BmyWZK_C9\",children:/*#__PURE__*/_jsx(ClientCardXL,{height:\"100%\",id:\"nIfSlBYPF\",layoutId:\"nIfSlBYPF\",Ln8d5mN1s:addImageAlt({src:\"https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png\",srcSet:\"https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ammIa0Ai1IAZwkQSsj6wGVFp0.png 6562w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"KTyV7Phkk\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-j8uqrr\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"jvEStsDSN\",style:{backgroundColor:\"var(--token-bf3b78f1-7c89-4ecd-bba4-77c1a4c7b347, rgb(234, 234, 234))\",opacity:.65}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CIgqc.framer-1rpt4uu, .framer-CIgqc .framer-1rpt4uu { display: block; }\",\".framer-CIgqc.framer-1gghnu2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-CIgqc .framer-7optrw, .framer-CIgqc .framer-j8uqrr { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-CIgqc .framer-129g3z6-container { flex: none; height: 180px; position: relative; width: 100%; }\",\".framer-CIgqc .framer-1qh49py-container, .framer-CIgqc .framer-x106js-container, .framer-CIgqc .framer-rrowkn-container, .framer-CIgqc .framer-66sskk-container, .framer-CIgqc .framer-1s29gc2-container, .framer-CIgqc .framer-af5bpn-container, .framer-CIgqc .framer-3usbq-container, .framer-CIgqc .framer-jn1a0j-container, .framer-CIgqc .framer-mafozn-container, .framer-CIgqc .framer-c6x870-container, .framer-CIgqc .framer-1r11zxw-container, .framer-CIgqc .framer-3kap1u-container { height: 180px; position: relative; width: 268px; }\",\".framer-CIgqc .framer-1byfcfc-container { flex: none; height: 240px; position: relative; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CIgqc.framer-1gghnu2 { gap: 0px; } .framer-CIgqc.framer-1gghnu2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CIgqc.framer-1gghnu2 > :first-child { margin-top: 0px; } .framer-CIgqc.framer-1gghnu2 > :last-child { margin-bottom: 0px; } }\",\".framer-CIgqc.framer-v-1qckcgx.framer-1gghnu2 { gap: 30px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CIgqc.framer-v-1qckcgx.framer-1gghnu2 { gap: 0px; } .framer-CIgqc.framer-v-1qckcgx.framer-1gghnu2 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-CIgqc.framer-v-1qckcgx.framer-1gghnu2 > :first-child { margin-top: 0px; } .framer-CIgqc.framer-v-1qckcgx.framer-1gghnu2 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 182\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BbZ4PDuqX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBmyWZK_C9=withCSS(Component,css,\"framer-CIgqc\");export default FramerBmyWZK_C9;FramerBmyWZK_C9.displayName=\"Client Section XL\";FramerBmyWZK_C9.defaultProps={height:182,width:1440};addPropertyControls(FramerBmyWZK_C9,{variant:{options:[\"YmEHXmhgM\",\"BbZ4PDuqX\"],optionTitles:[\"Ticker\",\"Slider\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBmyWZK_C9,[{explicitInter:true,fonts:[]},...ClientCardXLFonts,...TickerFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBmyWZK_C9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"182\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BbZ4PDuqX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BmyWZK_C9.map", "// Generated by Framer (139b156)\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*as sharedStyle1 from\"https://framerusercontent.com/modules/ArmVRclgLgBCZaqvIi7J/UXSmyAeW1SPXte1lNK1q/L_1csQGlH.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yzKBBDHLPU8t68L256qh/RvnsdxUostg7YpSopYAt/oG4sE7ips.js\";const serializationHash=\"framer-sXmaI\";const variantClassNames={WnS68mnTS:\"framer-v-166c6vg\"};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 getProps=({bodyText,heading,height,id,width,...props})=>{return{...props,QbSI87mM4:bodyText??props.QbSI87mM4??\"Whether you\u2019re launching a new product, managing a crisis, or building your brand\u2019s narrative, we craft stories that captivate, influence, and resonate with your audience.\",raSEl7ki3:heading??props.raSEl7ki3??\"Crafting Clear Connections\"};};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,raSEl7ki3,QbSI87mM4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"WnS68mnTS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();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(serializationHash,...sharedStyleClassNames,\"framer-166c6vg\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"WnS68mnTS\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1i0vr1h\",\"data-styles-preset\":\"oG4sE7ips\",children:\"Crafting Clear Connections\"})}),className:\"framer-2n1ndi\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KBpBn3N22\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:raSEl7ki3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-13egok0\",\"data-styles-preset\":\"L_1csQGlH\",children:\"Whether you\u2019re launching a new product, managing a crisis, or building your brand\u2019s narrative, we craft stories that captivate, influence, and resonate with your audience.\"})}),className:\"framer-ugwt3w\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ntr8wMNDC\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:QbSI87mM4,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sXmaI.framer-dtjva3, .framer-sXmaI .framer-dtjva3 { display: block; }\",\".framer-sXmaI.framer-166c6vg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 389px; }\",\".framer-sXmaI .framer-2n1ndi, .framer-sXmaI .framer-ugwt3w { 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-sXmaI.framer-166c6vg { gap: 0px; } .framer-sXmaI.framer-166c6vg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-sXmaI.framer-166c6vg > :first-child { margin-top: 0px; } .framer-sXmaI.framer-166c6vg > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 142\n * @framerIntrinsicWidth 389\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"raSEl7ki3\":\"heading\",\"QbSI87mM4\":\"bodyText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercXxmZ_WGy=withCSS(Component,css,\"framer-sXmaI\");export default FramercXxmZ_WGy;FramercXxmZ_WGy.displayName=\"Text Card\";FramercXxmZ_WGy.defaultProps={height:142,width:389};addPropertyControls(FramercXxmZ_WGy,{raSEl7ki3:{defaultValue:\"Crafting Clear Connections\",displayTextArea:false,title:\"Heading\",type:ControlType.String},QbSI87mM4:{defaultValue:\"Whether you\u2019re launching a new product, managing a crisis, or building your brand\u2019s narrative, we craft stories that captivate, influence, and resonate with your audience.\",displayTextArea:true,title:\"Body Text\",type:ControlType.String}});addFonts(FramercXxmZ_WGy,[{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\":\"FramercXxmZ_WGy\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"389\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"raSEl7ki3\\\":\\\"heading\\\",\\\"QbSI87mM4\\\":\\\"bodyText\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"142\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const updateChildren=(children,properties)=>{return[{...children,props:{...children.props,children:{...children.props.children,props:{...children.props.children.props,children:{...children.props.children.props.children,props:{...children.props.children.props.children.props,...properties}}}}}}];};export const SettingsMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",overflow:\"hidden\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"\u2728\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};export const getBorder=border=>{if(!border)return{border:\"none\"};const{width,color,style}=border;return{borderWidth:width,borderColor:color,borderStyle:style};};export const borderProperty=(title=\"Border\",width=\"0px\",color=\"#fff\")=>({title,type:ControlType.Object,controls:{width:{title:\"Width\",type:ControlType.Padding,defaultValue:width},color:{title:\"Color\",type:ControlType.Color,defaultValue:color},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export const getBoxShadow=property=>{const{x,y,blur,color}=property.shadow;return`${x}px ${y}px ${blur}px ${color}`;};export const shadowProperty={type:ControlType.Object,controls:{color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#bfbfbf\"},x:{title:\"X\",type:ControlType.Number,defaultValue:0,min:-100,max:100},y:{title:\"Y\",type:ControlType.Number,defaultValue:0,min:-100,max:100},blur:{title:\"Blur\",type:ControlType.Number,defaultValue:0,min:0,max:100}}};export const heightProperty={height:{type:ControlType.Enum,defaultValue:\"auto\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:50,hidden(props){return props.height===\"auto\";}}};export const getHeight=property=>{if(property.height===\"auto\"){return property.height;}else{return`${property.heightNumber}px`;}};export const getPageQueryParam=()=>{const urlParams=new URLSearchParams(window.location.search);const pageParam=urlParams.get(\"page\");return pageParam?parseInt(pageParam,10):1;};export const updatePageQueryParam=newPage=>{const url=new URL(window.location.href);url.searchParams.set(\"page\",newPage);window.history.replaceState({},\"\",url.toString());};export const useStore=createStore({initialLimit:undefined,initialOffset:undefined,limit:undefined,offset:undefined,totalItems:undefined,page:1,searchQuery:\"\",totalPages:undefined});export const scrollToTop=(withScroll,scrollTop,scrollBehavior)=>{if(withScroll){window.scrollTo({top:scrollTop,behavior:scrollBehavior});}};\nexport const __FramerMetadata__ = {\"exports\":{\"heightProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updatePageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHeight\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBoxShadow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateChildren\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorder\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SettingsMessage\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"scrollToTop\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect,cloneElement}from\"react\";import{motion,useMotionValue,useSpring}from\"framer-motion\";import{SettingsMessage}from\"https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-auto\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-auto\n * @framerIntrinsicHeight 300\n */export default function CursorRotation(props){const{style,draggingOptions:{withDragging,withSnapBack,transition},rotationOptions:{withRotationLimitX,withRotationLimitY,maxX,maxY,minX,minY},perspectiveOptions:{withPerspective,perspectiveValue},sensitivity}=props;const children=Array.isArray(props.children)?props.children[0]:props.children;if(!children||children.length===0){return /*#__PURE__*/_jsx(SettingsMessage,{title:\"Set Up the Component\",description:\"Connect a frame to the component.\",containerStyle:{...props.style,width:\"400px\",height:\"200px\",borderRadius:props.borderRadius}});}const[isDragging,setIsDragging]=useState(false);const rotateX=useMotionValue(0);const rotateY=useMotionValue(0);const springConfig=withDragging?transition:{duration:0};const rotateXSpring=useSpring(rotateX,springConfig);const rotateYSpring=useSpring(rotateY,springConfig);const[startingRotation,setStartingRotation]=useState({x:0,y:0});const[startingMousePosition,setStartingMousePosition]=useState({clientX:0,clientY:0});useEffect(()=>{const handleMove=event=>{if(isDragging){event.preventDefault();}const isTouchEvent=event.type.startsWith(\"touch\");const clientX=isTouchEvent?event.touches[0].clientX:event.clientX;const clientY=isTouchEvent?event.touches[0].clientY:event.clientY;const{innerWidth,innerHeight}=window;let rotationX,rotationY;if(withDragging){if(isDragging){const mouseX=clientX-startingMousePosition.clientX;const mouseY=clientY-startingMousePosition.clientY;const rotationFactorX=mouseY/(10/sensitivity);const rotationFactorY=-mouseX/(10/sensitivity);rotationX=startingRotation.x-rotationFactorX;rotationY=startingRotation.y-rotationFactorY;}else if(withSnapBack){rotationX=0;rotationY=0;}else{rotationX=rotateX.get();rotationY=rotateY.get();}}else{const adjustedSensitivity=sensitivity/10;const rotationFactorX=(clientY/innerHeight-.5)*adjustedSensitivity;const rotationFactorY=(clientX/innerWidth-.5)*adjustedSensitivity;rotationX=-rotationFactorX*180;rotationY=rotationFactorY*180;}if(withRotationLimitX){rotationX=Math.max(-minX,Math.min(maxX,rotationX));}if(withRotationLimitY){rotationY=Math.max(-minY,Math.min(maxY,rotationY));}rotateX.set(rotationX);rotateY.set(rotationY);};window.addEventListener(\"mousemove\",handleMove);window.addEventListener(\"touchmove\",handleMove);return()=>{window.removeEventListener(\"mousemove\",handleMove);window.removeEventListener(\"touchmove\",handleMove);};},[isDragging,withDragging,withSnapBack,withRotationLimitX,withRotationLimitY,maxX,maxY,sensitivity]);useEffect(()=>{if(!isDragging&&withDragging&&withSnapBack){rotateX.set(0);rotateY.set(0);}},[isDragging]);const handleOnStart=e=>{const isTouchEvent=e.type.startsWith(\"touch\");const clientX=isTouchEvent?e.touches[0].clientX:e.clientX;const clientY=isTouchEvent?e.touches[0].clientY:e.clientY;setIsDragging(true);setStartingRotation({x:rotateX.get(),y:rotateY.get()});setStartingMousePosition({clientX,clientY});};const handleOnEnd=()=>setIsDragging(false);// Clone the children and apply preserve-3d to them as well\nconst clonedChildren=/*#__PURE__*/cloneElement(children,{style:{...children.props.style,transformStyle:\"preserve-3d\"}});return /*#__PURE__*/_jsx(motion.div,{onPanStart:handleOnStart,onPanEnd:handleOnEnd,onTouchStart:handleOnStart,onTouchEnd:handleOnEnd,style:{...style,rotateX:rotateXSpring,rotateY:rotateYSpring,transformStyle:\"preserve-3d\",transformPerspective:withPerspective?perspectiveValue:undefined,userSelect:\"none\",touchAction:\"none\"},children:clonedChildren});}CursorRotation.displayName=\"3D Look\";addPropertyControls(CursorRotation,{children:{title:\"Element\",type:ControlType.ComponentInstance},sensitivity:{title:\"Sensitivity\",type:ControlType.Number,defaultValue:2,step:1,displayStepper:true,min:1,max:10},draggingOptions:{type:ControlType.Object,title:\"Dragging\",controls:{withDragging:{title:\"Enable\",type:ControlType.Boolean,defaultValue:false},transition:{title:\"Transition\",type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:600,damping:100},hidden(props){return!props.withDragging;}},withSnapBack:{title:\"Snap Back\",type:ControlType.Boolean,defaultValue:false,hidden(props){return!props.withDragging;}}}},rotationOptions:{type:ControlType.Object,title:\"Rota. Limit\",controls:{withRotationLimitX:{title:\"Limit X\",type:ControlType.Boolean,defaultValue:false},maxX:{title:\"Max X\",type:ControlType.Number,defaultValue:90,step:1,displayStepper:true,min:0,max:undefined,hidden(props){return!props.withRotationLimitX;}},minX:{title:\"Min X\",type:ControlType.Number,defaultValue:90,step:1,displayStepper:true,min:0,max:undefined,hidden(props){return!props.withRotationLimitX;}},withRotationLimitY:{title:\"Limit Y\",type:ControlType.Boolean,defaultValue:false},maxY:{title:\"Max Y\",type:ControlType.Number,defaultValue:90,step:1,displayStepper:true,min:0,max:undefined,hidden(props){return!props.withRotationLimitY;}},minY:{title:\"Min Y\",type:ControlType.Number,defaultValue:90,step:1,displayStepper:true,min:0,max:undefined,hidden(props){return!props.withRotationLimitY;}}}},perspectiveOptions:{type:ControlType.Object,title:\"Perspective\",description:\"Need help with the component? Watch [this video](https://youtu.be/WdMR737ptFs).\\nMore components at [Framer University](https://frameruni.link/cc).\",controls:{withPerspective:{title:\"Enable\",type:ControlType.Boolean,defaultValue:false},perspectiveValue:{title:\"Value\",type:ControlType.Number,defaultValue:1200,step:100,min:500,max:5e3,hidden(props){return!props.withPerspective;}}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CursorRotation\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-auto\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-auto\",\"framerIntrinsicHeight\":\"300\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Look3D.map", "// Generated by Framer (f4ba5e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import DLook from\"https://framerusercontent.com/modules/OiCf4NNLLpuN6FqtIYsk/9i5jMkFo5EhoLXlXTr2l/Look3D.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ArmVRclgLgBCZaqvIi7J/UXSmyAeW1SPXte1lNK1q/L_1csQGlH.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wC7I1c4Ykga1BPoBwgvg/sbK7tAFEcXwa1PXaqthH/ShgAstraX.js\";import Header from\"https://framerusercontent.com/modules/1uzdDfsfj52j7dgXVRmQ/d4ASJaZa5gnu4fkP8Eh8/AiBZzPFO5.js\";const HeaderFonts=getFonts(Header);const DLookFonts=getFonts(DLook);const cycleOrder=[\"mrSpulwtm\",\"pXu0V3lWw\",\"VPQ7dWxhh\",\"SjmfottpK\"];const serializationHash=\"framer-GZiZQ\";const variantClassNames={mrSpulwtm:\"framer-v-ry270b\",pXu0V3lWw:\"framer-v-9vbki1\",SjmfottpK:\"framer-v-1ry59mt\",VPQ7dWxhh:\"framer-v-weow3c\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={L:\"pXu0V3lWw\",M:\"VPQ7dWxhh\",S:\"SjmfottpK\",XL:\"mrSpulwtm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mrSpulwtm\"};};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:\"mrSpulwtm\",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.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ry270b\",className,classNames),\"data-framer-name\":\"XL\",layoutDependency:layoutDependency,layoutId:\"mrSpulwtm\",ref:refBinding,style:{backgroundColor:\"var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, rgb(255, 255, 255))\",...style},...addPropertyOverrides({pXu0V3lWw:{\"data-framer-name\":\"L\"},SjmfottpK:{\"data-framer-name\":\"S\"},VPQ7dWxhh:{\"data-framer-name\":\"M\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rzuzz\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"LZIyDe6hf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n4mwik\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"NcO83EqJm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14zjeka\",\"data-framer-name\":\"Seperator\",layoutDependency:layoutDependency,layoutId:\"rIFatFkkK\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15eqpsb\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"K7EXVFhug\",style:{backgroundColor:\"var(--token-bf3b78f1-7c89-4ecd-bba4-77c1a4c7b347, rgb(234, 234, 234))\",opacity:.65}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qbsll3\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"EUbqpROMB\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-skkav3\",\"data-framer-name\":\"Line 2\",layoutDependency:layoutDependency,layoutId:\"p_dQb5mpz\",style:{backgroundColor:\"var(--token-f79d02c7-1774-42e8-8ffe-88585b6d572d, rgb(30, 30, 30))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ybgife\",\"data-framer-name\":\"Line 1\",layoutDependency:layoutDependency,layoutId:\"g19d89iqZ\",style:{backgroundColor:\"var(--token-f79d02c7-1774-42e8-8ffe-88585b6d572d, rgb(30, 30, 30))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,rotate:90}})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1800px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||917)-160-779)/2+0+0)+10+0+0+35,...addPropertyOverrides({SjmfottpK:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1800px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-70-779)/2+0+0)+10+0+0+35},VPQ7dWxhh:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1800px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-100-779)/2+0+0)+10+0+0+35}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qhtkks-container\",layoutDependency:layoutDependency,layoutId:\"Wi9BFVP8D-container\",nodeId:\"Wi9BFVP8D\",rendersWithMotion:true,scopeId:\"O6pJvZkzz\",children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"Wi9BFVP8D\",kEJd_eac5:\"Quelques r\\xe9alisations en images\",layoutId:\"Wi9BFVP8D\",style:{width:\"100%\"},variant:\"f0L9OFVBs\",width:\"100%\",...addPropertyOverrides({SjmfottpK:{variant:\"ThF4G7vI0\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7nkmfc\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Bw9Gp9dVh\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10hoxqg\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"SAYKbeAKD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14xwvx2\",\"data-framer-name\":\"Title/Body Text\",layoutDependency:layoutDependency,layoutId:\"mAmwQOrNa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1jukzkb\",\"data-styles-preset\":\"ShgAstraX\",children:\"Mes cr\\xe9ations graphiques\"})}),className:\"framer-1wcsyl5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MKdFzGQGo\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-148p9c6\",\"data-framer-name\":\"Body Text\",layoutDependency:layoutDependency,layoutId:\"CSQ585yPQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-13egok0\",\"data-styles-preset\":\"L_1csQGlH\",style:{\"--framer-text-alignment\":\"center\"},children:\"Voici diff\\xe9rents supports visuels (couverture de catalogue, des menus, des affiches publicitaires et bien d'autres\u2026) r\\xe9alis\\xe9s au cours de mes diff\\xe9rentes exp\\xe9riences professionnelles.\"})}),className:\"framer-1oel3kv\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"veUZ5cVRe\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13thv35-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"k2zsesWgL-container\",nodeId:\"k2zsesWgL\",rendersWithMotion:true,scopeId:\"O6pJvZkzz\",children:/*#__PURE__*/_jsx(DLook,{draggingOptions:{transition:{damping:100,delay:0,mass:1,stiffness:600,type:\"spring\"},withDragging:true,withSnapBack:false},height:\"100%\",id:\"k2zsesWgL\",layoutId:\"k2zsesWgL\",perspectiveOptions:{perspectiveValue:700,withPerspective:true},rotationOptions:{maxX:0,maxY:90,minX:0,minY:90,withRotationLimitX:true,withRotationLimitY:false},sensitivity:2,style:{maxWidth:\"100%\"},width:\"100%\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-85512d\",\"data-framer-name\":\"Custom Carousel\",layoutDependency:layoutDependency,layoutId:\"qLjI7Rl7m\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18xua8y\",\"data-framer-name\":\"Arms\",layoutDependency:layoutDependency,layoutId:\"XfvuMMv0Y\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wewx0x\",\"data-framer-name\":\"Arm 1\",layoutDependency:layoutDependency,layoutId:\"pHrKnfP9y\",style:{rotateY:90},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Woman In The Water\",fit:\"fill\",pixelHeight:1344,pixelWidth:896,sizes:\"260px\",src:\"https://framerusercontent.com/images/kHM7T6YP0gPr6E2xPe6RUJbpk.png\",srcSet:\"https://framerusercontent.com/images/kHM7T6YP0gPr6E2xPe6RUJbpk.png?scale-down-to=1024 682w,https://framerusercontent.com/images/kHM7T6YP0gPr6E2xPe6RUJbpk.png 896w\"},className:\"framer-1vqdp8b\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zOLuNtTdt\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Woman In The Water\",fit:\"fill\",pixelHeight:1344,pixelWidth:896,sizes:\"260px\",src:\"https://framerusercontent.com/images/kHM7T6YP0gPr6E2xPe6RUJbpk.png\",srcSet:\"https://framerusercontent.com/images/kHM7T6YP0gPr6E2xPe6RUJbpk.png?scale-down-to=1024 682w,https://framerusercontent.com/images/kHM7T6YP0gPr6E2xPe6RUJbpk.png 896w\"},className:\"framer-1p6ld3n\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"D057716YP\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i8wpsm\",\"data-framer-name\":\"Arm 2\",layoutDependency:layoutDependency,layoutId:\"BxxFZD942\",style:{rotateY:120},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Car\",fit:\"fill\",pixelHeight:3508,pixelWidth:2480,sizes:\"260px\",src:\"https://framerusercontent.com/images/FIWH6x0iNxjQWos0lySyEpWOx20.png\",srcSet:\"https://framerusercontent.com/images/FIWH6x0iNxjQWos0lySyEpWOx20.png?scale-down-to=1024 723w,https://framerusercontent.com/images/FIWH6x0iNxjQWos0lySyEpWOx20.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/FIWH6x0iNxjQWos0lySyEpWOx20.png 2480w\"},className:\"framer-12e1mbq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wlDxXrINw\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Car\",fit:\"fill\",pixelHeight:3508,pixelWidth:2480,sizes:\"260px\",src:\"https://framerusercontent.com/images/FIWH6x0iNxjQWos0lySyEpWOx20.png\",srcSet:\"https://framerusercontent.com/images/FIWH6x0iNxjQWos0lySyEpWOx20.png?scale-down-to=1024 723w,https://framerusercontent.com/images/FIWH6x0iNxjQWos0lySyEpWOx20.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/FIWH6x0iNxjQWos0lySyEpWOx20.png 2480w\"},className:\"framer-1hzazhz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MTUTlgtbH\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rdnk6c\",\"data-framer-name\":\"Arm 3\",layoutDependency:layoutDependency,layoutId:\"qAYwuQLQh\",style:{rotateY:150},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Spary Bottle\",fit:\"fill\",pixelHeight:2426,pixelWidth:1517,sizes:\"260px\",src:\"https://framerusercontent.com/images/nFDOtnKUhwBvjTuBpEIbkDv5OZw.png\",srcSet:\"https://framerusercontent.com/images/nFDOtnKUhwBvjTuBpEIbkDv5OZw.png?scale-down-to=1024 640w,https://framerusercontent.com/images/nFDOtnKUhwBvjTuBpEIbkDv5OZw.png?scale-down-to=2048 1280w,https://framerusercontent.com/images/nFDOtnKUhwBvjTuBpEIbkDv5OZw.png 1517w\"},className:\"framer-j6ru8y\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eZH2FyzEE\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Spary Bottle\",fit:\"fill\",pixelHeight:2426,pixelWidth:1517,sizes:\"260px\",src:\"https://framerusercontent.com/images/nFDOtnKUhwBvjTuBpEIbkDv5OZw.png\",srcSet:\"https://framerusercontent.com/images/nFDOtnKUhwBvjTuBpEIbkDv5OZw.png?scale-down-to=1024 640w,https://framerusercontent.com/images/nFDOtnKUhwBvjTuBpEIbkDv5OZw.png?scale-down-to=2048 1280w,https://framerusercontent.com/images/nFDOtnKUhwBvjTuBpEIbkDv5OZw.png 1517w\"},className:\"framer-a7b671\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hoxD1tGaD\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-176p179\",\"data-framer-name\":\"Arm 4\",layoutDependency:layoutDependency,layoutId:\"NyWF7wlOl\",style:{rotateY:180},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Woman In The Glass Way\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"260px\",src:\"https://framerusercontent.com/images/qqgMFFhBjbmzllL7E6Dml51Gw.png\",srcSet:\"https://framerusercontent.com/images/qqgMFFhBjbmzllL7E6Dml51Gw.png?scale-down-to=512 512w,https://framerusercontent.com/images/qqgMFFhBjbmzllL7E6Dml51Gw.png 1024w\"},className:\"framer-1f4g1rq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VE00fPNox\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Woman In The Glass Way\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"260px\",src:\"https://framerusercontent.com/images/qqgMFFhBjbmzllL7E6Dml51Gw.png\",srcSet:\"https://framerusercontent.com/images/qqgMFFhBjbmzllL7E6Dml51Gw.png?scale-down-to=512 512w,https://framerusercontent.com/images/qqgMFFhBjbmzllL7E6Dml51Gw.png 1024w\"},className:\"framer-1xzqp6v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ue70it7X1\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wemevo\",\"data-framer-name\":\"Arm 5\",layoutDependency:layoutDependency,layoutId:\"ckTNA3TfM\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Blue Space\",fit:\"fill\",pixelHeight:2322,pixelWidth:1517,sizes:\"260px\",src:\"https://framerusercontent.com/images/AB9tP0qshW52ZT82ahUztMBkBY.png\",srcSet:\"https://framerusercontent.com/images/AB9tP0qshW52ZT82ahUztMBkBY.png?scale-down-to=1024 668w,https://framerusercontent.com/images/AB9tP0qshW52ZT82ahUztMBkBY.png?scale-down-to=2048 1337w,https://framerusercontent.com/images/AB9tP0qshW52ZT82ahUztMBkBY.png 1517w\"},className:\"framer-10m34r1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"oDdcy4KSH\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Blue Space\",fit:\"fill\",pixelHeight:3049,pixelWidth:2155,sizes:\"260px\",src:\"https://framerusercontent.com/images/HzqbYJtICIE0ciQqsrgOOV0gjc.png\",srcSet:\"https://framerusercontent.com/images/HzqbYJtICIE0ciQqsrgOOV0gjc.png?scale-down-to=1024 723w,https://framerusercontent.com/images/HzqbYJtICIE0ciQqsrgOOV0gjc.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/HzqbYJtICIE0ciQqsrgOOV0gjc.png 2155w\"},className:\"framer-nhwmo6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qdCwFyIrN\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bdpr1j\",\"data-framer-name\":\"Arm 6\",layoutDependency:layoutDependency,layoutId:\"MLytMxi9h\",style:{rotateY:30},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Man Wearing Black Coat\",fit:\"fill\",pixelHeight:2107,pixelWidth:1490,sizes:\"260px\",src:\"https://framerusercontent.com/images/ZVWOkuMQxoqNevtEtmgcVpa0PI.png\",srcSet:\"https://framerusercontent.com/images/ZVWOkuMQxoqNevtEtmgcVpa0PI.png?scale-down-to=1024 724w,https://framerusercontent.com/images/ZVWOkuMQxoqNevtEtmgcVpa0PI.png?scale-down-to=2048 1448w,https://framerusercontent.com/images/ZVWOkuMQxoqNevtEtmgcVpa0PI.png 1490w\"},className:\"framer-1mqct6v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mdVc4Bocd\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Man Wearing Black Coat\",fit:\"fill\",pixelHeight:2107,pixelWidth:1490,sizes:\"260px\",src:\"https://framerusercontent.com/images/ZVWOkuMQxoqNevtEtmgcVpa0PI.png\",srcSet:\"https://framerusercontent.com/images/ZVWOkuMQxoqNevtEtmgcVpa0PI.png?scale-down-to=1024 724w,https://framerusercontent.com/images/ZVWOkuMQxoqNevtEtmgcVpa0PI.png?scale-down-to=2048 1448w,https://framerusercontent.com/images/ZVWOkuMQxoqNevtEtmgcVpa0PI.png 1490w\"},className:\"framer-1g8djim\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Zho3tlE0K\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uc0dry\",\"data-framer-name\":\"Arm 7\",layoutDependency:layoutDependency,layoutId:\"r7py22jjU\",style:{rotateY:60},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"WIne Bottle\",fit:\"fill\",pixelHeight:2106,pixelWidth:1517,sizes:\"260px\",src:\"https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png\",srcSet:\"https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png?scale-down-to=1024 737w,https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png?scale-down-to=2048 1475w,https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png 1517w\"},className:\"framer-3wwny5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"y4U6HRswH\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"WIne Bottle\",fit:\"fill\",pixelHeight:2106,pixelWidth:1517,sizes:\"260px\",src:\"https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png\",srcSet:\"https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png?scale-down-to=1024 737w,https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png?scale-down-to=2048 1475w,https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png 1517w\"},className:\"framer-1f9e94f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"aGFyfCrld\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fjhp1b\",\"data-framer-name\":\"Arm 8\",layoutDependency:layoutDependency,layoutId:\"Z41zEhq6G\",style:{rotateY:60},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"WIne Bottle\",fit:\"fill\",pixelHeight:2106,pixelWidth:1517,sizes:\"260px\",src:\"https://framerusercontent.com/images/mmEHfh9c6bCvck7Lz0srtnQdfBM.png\",srcSet:\"https://framerusercontent.com/images/mmEHfh9c6bCvck7Lz0srtnQdfBM.png?scale-down-to=1024 737w,https://framerusercontent.com/images/mmEHfh9c6bCvck7Lz0srtnQdfBM.png?scale-down-to=2048 1475w,https://framerusercontent.com/images/mmEHfh9c6bCvck7Lz0srtnQdfBM.png 1517w\"},className:\"framer-19xs178\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RjoDy6ZXI\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"WIne Bottle\",fit:\"fill\",pixelHeight:2970,pixelWidth:2100,sizes:\"260px\",src:\"https://framerusercontent.com/images/5J2Mc5yAR0mNgi27o52HbaTQD0.png\",srcSet:\"https://framerusercontent.com/images/5J2Mc5yAR0mNgi27o52HbaTQD0.png?scale-down-to=1024 724w,https://framerusercontent.com/images/5J2Mc5yAR0mNgi27o52HbaTQD0.png?scale-down-to=2048 1448w,https://framerusercontent.com/images/5J2Mc5yAR0mNgi27o52HbaTQD0.png 2100w\"},className:\"framer-1wrcw5d\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UEJn8XDa9\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2of3vq\",\"data-framer-name\":\"Arm 9\",layoutDependency:layoutDependency,layoutId:\"DWRpHM2ed\",style:{rotateY:60},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"WIne Bottle\",fit:\"fill\",pixelHeight:2322,pixelWidth:1517,sizes:\"260px\",src:\"https://framerusercontent.com/images/pAcOzgnOILe3UPBaGNllgaAkLKY.png\",srcSet:\"https://framerusercontent.com/images/pAcOzgnOILe3UPBaGNllgaAkLKY.png?scale-down-to=1024 668w,https://framerusercontent.com/images/pAcOzgnOILe3UPBaGNllgaAkLKY.png?scale-down-to=2048 1337w,https://framerusercontent.com/images/pAcOzgnOILe3UPBaGNllgaAkLKY.png 1517w\"},className:\"framer-dmcnbc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OFcs1rQ9W\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"WIne Bottle\",fit:\"fill\",pixelHeight:2106,pixelWidth:1517,sizes:\"260px\",src:\"https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png\",srcSet:\"https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png?scale-down-to=1024 737w,https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png?scale-down-to=2048 1475w,https://framerusercontent.com/images/jaj0JWzdWZhrEvhVc4LSf6RAc.png 1517w\"},className:\"framer-vpweel\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xydRaQmdT\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-90}})]})]})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GZiZQ.framer-1801sr2, .framer-GZiZQ .framer-1801sr2 { display: block; }\",\".framer-GZiZQ.framer-ry270b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 160px 0px; position: relative; width: 1440px; }\",\".framer-GZiZQ .framer-1rzuzz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: visible; padding: 10px 40px 10px 40px; position: relative; width: 100%; }\",\".framer-GZiZQ .framer-1n4mwik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GZiZQ .framer-14zjeka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GZiZQ .framer-15eqpsb { flex: 1 0 0px; height: 1px; position: relative; width: 1px; }\",\".framer-GZiZQ .framer-1qbsll3 { aspect-ratio: 1 / 1; bottom: -4px; flex: none; left: 50%; overflow: visible; position: absolute; top: -4px; width: var(--framer-aspect-ratio-supported, 9px); z-index: 1; }\",\".framer-GZiZQ .framer-skkav3, .framer-GZiZQ .framer-1ybgife { flex: none; height: 9px; left: 4px; position: absolute; top: 0px; width: 1px; }\",\".framer-GZiZQ .framer-qhtkks-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GZiZQ .framer-7nkmfc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GZiZQ .framer-10hoxqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GZiZQ .framer-14xwvx2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GZiZQ .framer-1wcsyl5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GZiZQ .framer-148p9c6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GZiZQ .framer-1oel3kv { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-GZiZQ .framer-13thv35-container { flex: none; height: auto; max-width: 1800px; position: relative; width: auto; }\",\".framer-GZiZQ .framer-85512d { align-content: center; align-items: center; cursor: grab; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 1200px; }\",\".framer-GZiZQ .framer-18xua8y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 1px; }\",\".framer-GZiZQ .framer-1wewx0x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 240px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 1400px; }\",\".framer-GZiZQ .framer-1vqdp8b, .framer-GZiZQ .framer-1p6ld3n, .framer-GZiZQ .framer-12e1mbq, .framer-GZiZQ .framer-1hzazhz, .framer-GZiZQ .framer-j6ru8y, .framer-GZiZQ .framer-a7b671, .framer-GZiZQ .framer-1f4g1rq, .framer-GZiZQ .framer-1xzqp6v, .framer-GZiZQ .framer-10m34r1, .framer-GZiZQ .framer-nhwmo6, .framer-GZiZQ .framer-1mqct6v, .framer-GZiZQ .framer-1g8djim, .framer-GZiZQ .framer-3wwny5, .framer-GZiZQ .framer-1f9e94f, .framer-GZiZQ .framer-19xs178, .framer-GZiZQ .framer-1wrcw5d, .framer-GZiZQ .framer-dmcnbc, .framer-GZiZQ .framer-vpweel { backface-visibility: hidden; flex: none; height: 370px; overflow: hidden; position: relative; width: 260px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GZiZQ .framer-1i8wpsm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 240px; justify-content: space-between; left: calc(50.00000000000002% - 1400px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 240px / 2); transform-style: preserve-3d; width: 1400px; z-index: 1; }\",\".framer-GZiZQ .framer-rdnk6c, .framer-GZiZQ .framer-176p179, .framer-GZiZQ .framer-1wemevo, .framer-GZiZQ .framer-1bdpr1j, .framer-GZiZQ .framer-uc0dry, .framer-GZiZQ .framer-1fjhp1b, .framer-GZiZQ .framer-2of3vq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 240px; justify-content: space-between; left: calc(50.08333333333336% - 1400px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 240px / 2); transform-style: preserve-3d; width: 1400px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GZiZQ.framer-ry270b, .framer-GZiZQ .framer-1rzuzz, .framer-GZiZQ .framer-1n4mwik, .framer-GZiZQ .framer-14zjeka, .framer-GZiZQ .framer-7nkmfc, .framer-GZiZQ .framer-10hoxqg, .framer-GZiZQ .framer-14xwvx2, .framer-GZiZQ .framer-148p9c6, .framer-GZiZQ .framer-85512d, .framer-GZiZQ .framer-18xua8y { gap: 0px; } .framer-GZiZQ.framer-ry270b > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-GZiZQ.framer-ry270b > :first-child, .framer-GZiZQ .framer-1rzuzz > :first-child, .framer-GZiZQ .framer-1n4mwik > :first-child, .framer-GZiZQ .framer-7nkmfc > :first-child, .framer-GZiZQ .framer-10hoxqg > :first-child, .framer-GZiZQ .framer-14xwvx2 > :first-child, .framer-GZiZQ .framer-18xua8y > :first-child { margin-top: 0px; } .framer-GZiZQ.framer-ry270b > :last-child, .framer-GZiZQ .framer-1rzuzz > :last-child, .framer-GZiZQ .framer-1n4mwik > :last-child, .framer-GZiZQ .framer-7nkmfc > :last-child, .framer-GZiZQ .framer-10hoxqg > :last-child, .framer-GZiZQ .framer-14xwvx2 > :last-child, .framer-GZiZQ .framer-18xua8y > :last-child { margin-bottom: 0px; } .framer-GZiZQ .framer-1rzuzz > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-GZiZQ .framer-1n4mwik > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-GZiZQ .framer-14zjeka > *, .framer-GZiZQ .framer-148p9c6 > *, .framer-GZiZQ .framer-85512d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GZiZQ .framer-14zjeka > :first-child, .framer-GZiZQ .framer-148p9c6 > :first-child, .framer-GZiZQ .framer-85512d > :first-child { margin-left: 0px; } .framer-GZiZQ .framer-14zjeka > :last-child, .framer-GZiZQ .framer-148p9c6 > :last-child, .framer-GZiZQ .framer-85512d > :last-child { margin-right: 0px; } .framer-GZiZQ .framer-7nkmfc > *, .framer-GZiZQ .framer-14xwvx2 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-GZiZQ .framer-10hoxqg > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-GZiZQ .framer-18xua8y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-GZiZQ.framer-v-9vbki1.framer-ry270b { width: 1200px; }\",\".framer-GZiZQ.framer-v-weow3c.framer-ry270b { padding: 0px 0px 100px 0px; width: 810px; }\",\".framer-GZiZQ.framer-v-weow3c .framer-1rzuzz { padding: 10px 30px 10px 30px; }\",\".framer-GZiZQ.framer-v-1ry59mt.framer-ry270b { padding: 0px 0px 70px 0px; width: 390px; }\",\".framer-GZiZQ.framer-v-1ry59mt .framer-1rzuzz { padding: 10px 20px 10px 20px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 917\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pXu0V3lWw\":{\"layout\":[\"fixed\",\"auto\"]},\"VPQ7dWxhh\":{\"layout\":[\"fixed\",\"auto\"]},\"SjmfottpK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO6pJvZkzz=withCSS(Component,css,\"framer-GZiZQ\");export default FramerO6pJvZkzz;FramerO6pJvZkzz.displayName=\"Photography Section\";FramerO6pJvZkzz.defaultProps={height:917,width:1440};addPropertyControls(FramerO6pJvZkzz,{variant:{options:[\"mrSpulwtm\",\"pXu0V3lWw\",\"VPQ7dWxhh\",\"SjmfottpK\"],optionTitles:[\"XL\",\"L\",\"M\",\"S\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerO6pJvZkzz,[{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\"}]},...HeaderFonts,...DLookFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO6pJvZkzz\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"917\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pXu0V3lWw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VPQ7dWxhh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SjmfottpK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O6pJvZkzz.map", "// Generated by Framer (1d068b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FR;InterDisplay-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Display\",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/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",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/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",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/qctQFoJqJ9aIbRSIp0AhCQpFxn8.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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-tgIX3 .framer-styles-preset-1yjw0rh:not(.rich-text-wrapper), .framer-tgIX3 .framer-styles-preset-1yjw0rh.rich-text-wrapper h1 { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss01\\' on, \\'ss07\\' on, \\'cv11\\' on, \\'salt\\' on, \\'cv06\\' on; --framer-font-size: 168px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0px; --framer-line-height: 200px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-fe9d93ed-b3f8-4dd5-a542-7dee2ff95478, #f9f9f9); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-tgIX3\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/mqQEarGIByho1rG31aTv/BlurGradient_Prod.js\";import ChromaBackground from\"https://framerusercontent.com/modules/xaswehZWsdrg2vflyKZT/Waqb0D1mlp7yLK081MAZ/ChromaBGs.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import HighlighterTag from\"#framer/local/canvasComponent/aC3aXnvcq/aC3aXnvcq.js\";import ClientSectionXL from\"#framer/local/canvasComponent/BmyWZK_C9/BmyWZK_C9.js\";import TextCard from\"#framer/local/canvasComponent/cXxmZ_WGy/cXxmZ_WGy.js\";import HeaderTag from\"#framer/local/canvasComponent/eM9l8QD_p/eM9l8QD_p.js\";import ScrollDownArrow from\"#framer/local/canvasComponent/GDNpReCJz/GDNpReCJz.js\";import NavigationBar from\"#framer/local/canvasComponent/Jm7P8qV0g/Jm7P8qV0g.js\";import Footer from\"#framer/local/canvasComponent/jzeC2yo7K/jzeC2yo7K.js\";import ContactButton from\"#framer/local/canvasComponent/maUT3XoJu/maUT3XoJu.js\";import PhotographySection from\"#framer/local/canvasComponent/O6pJvZkzz/O6pJvZkzz.js\";import PrimaryButton from\"#framer/local/canvasComponent/RdOAHW_OD/RdOAHW_OD.js\";import CustomCursor from\"#framer/local/canvasComponent/UfUnsElt7/UfUnsElt7.js\";import WorkCard from\"#framer/local/canvasComponent/whtKcjpH0/whtKcjpH0.js\";import WorkDetail from\"#framer/local/collection/f4zWXyw63/f4zWXyw63.js\";import*as sharedStyle1 from\"#framer/local/css/dMv0pqn5h/dMv0pqn5h.js\";import*as sharedStyle2 from\"#framer/local/css/GQvbIb58t/GQvbIb58t.js\";import*as sharedStyle7 from\"#framer/local/css/JHN5xBTSK/JHN5xBTSK.js\";import*as sharedStyle3 from\"#framer/local/css/Jr50vHhdc/Jr50vHhdc.js\";import*as sharedStyle from\"#framer/local/css/KobtKP3YO/KobtKP3YO.js\";import*as sharedStyle6 from\"#framer/local/css/L_1csQGlH/L_1csQGlH.js\";import*as sharedStyle5 from\"#framer/local/css/ShgAstraX/ShgAstraX.js\";import*as sharedStyle4 from\"#framer/local/css/tIUXa9ayA/tIUXa9ayA.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationBarFonts=getFonts(NavigationBar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ScrollDownArrowFonts=getFonts(ScrollDownArrow);const ContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Container));const ChromaBackgroundFonts=getFonts(ChromaBackground);const BlurGradientFonts=getFonts(BlurGradient);const MotionSectionWithFX=withFX(motion.section);const MotionDivWithFX=withFX(motion.div);const HighlighterTagFonts=getFonts(HighlighterTag);const PrimaryButtonFonts=getFonts(PrimaryButton);const TextCardFonts=getFonts(TextCard);const ImageWithFX=withFX(Image);const HeaderTagFonts=getFonts(HeaderTag);const ClientSectionXLFonts=getFonts(ClientSectionXL);const WorkCardFonts=getFonts(WorkCard);const PhotographySectionFonts=getFonts(PhotographySection);const ContactButtonFonts=getFonts(ContactButton);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const CustomCursorFonts=getFonts(CustomCursor);const breakpoints={d7XOceHhC:\"(max-width: 809px)\",hF5rkgpxQ:\"(min-width: 1200px) and (max-width: 1439px)\",lBiSWiBKw:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3Ti1h\";const variantClassNames={d7XOceHhC:\"framer-v-kgxcmu\",hF5rkgpxQ:\"framer-v-1tfs4jz\",lBiSWiBKw:\"framer-v-1xnmc73\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:70,delay:1.55,mass:1,stiffness:200,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:0};const transition2={bounce:0,delay:.6,duration:2.5,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:-1440,y:0};const transition3={bounce:0,delay:.7,duration:3,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:.2,rotate:0,rotateX:0,rotateY:0,scale:1.15,skewX:0,skewY:0,x:0,y:0};const transition4={damping:70,delay:.4,mass:1,stiffness:200,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:-10};const transition5={damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-5};const transition6={damping:70,delay:1,mass:1,stiffness:200,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;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,\"CJti9R9TJ\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"xuoujPxYu\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={L:\"hF5rkgpxQ\",M:\"lBiSWiBKw\",S:\"d7XOceHhC\",XL:\"WQLkyLRf1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition7={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={alignment:\"center\",component:CustomCursor,offset:{x:0,y:0},placement:\"bottom\",transition:transition7,variant:\"x1r7dRjCJ\"};const cursor1={component:CustomCursor,transition:transition7,variant:\"Eso_WmTDe\"};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,rTVbj0tcfCJti9R9TJ,s6xPIHQ0DCJti9R9TJ,SxNJq5YncCJti9R9TJ,xyo5kS8_cCJti9R9TJ,MMp2v4DriCJti9R9TJ,idCJti9R9TJ,rTVbj0tcfxuoujPxYu,s6xPIHQ0DxuoujPxYu,SxNJq5YncxuoujPxYu,xyo5kS8_cxuoujPxYu,MMp2v4DrixuoujPxYu,idxuoujPxYu,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"nac4JIqLJ\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"lBiSWiBKw\",\"d7XOceHhC\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"d7XOceHhC\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"lBiSWiBKw\")return false;return true;};const ref2=React.useRef(null);const elementId1=useRouteElementId(\"OBr5SGreb\");useCustomCursors({\"11ey75h\":cursor,\"1lxu5yl\":cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{\"data-framer-cursor\":undefined},lBiSWiBKw:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"11ey75h\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19aas2i\",\"data-framer-name\":\"Top\",id:elementId,ref:ref1}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0},lBiSWiBKw:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`,y:(componentViewport?.y||0)+34,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-xxmqpg-container\",\"data-framer-appear-id\":\"xxmqpg\",initial:animation1,nodeId:\"oVBi52JKR\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{rIWD6ou2h:\"a5Xdub2CA\",variant:\"jOL71loun\"},lBiSWiBKw:{rIWD6ou2h:\"a5Xdub2CA\",variant:\"jOL71loun\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"oVBi52JKR\",layoutId:\"oVBi52JKR\",rIWD6ou2h:\"lB_WvzZQ_\",style:{width:\"100%\"},variant:\"rOE9ZvZ5o\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,className:\"framer-esu0sc\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9p6nbb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1i1l8xs\",\"data-framer-appear-id\":\"1i1l8xs\",\"data-framer-name\":\"Loader\",initial:animation3,optimized:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j8vmex\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{background:{alt:\"Woman Zoom Pose\",fit:\"fill\",pixelHeight:3360,pixelWidth:3467,positionX:\"69.1%\",positionY:\"14.9%\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png\",srcSet:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png 3467w\"}},lBiSWiBKw:{background:{alt:\"Woman Zoom Pose\",fit:\"fill\",pixelHeight:3360,pixelWidth:3467,positionX:\"59.1%\",positionY:\"15.5%\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png\",srcSet:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png 3467w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,animate:animation4,background:{alt:\"Woman Zoom Pose\",fit:\"fill\",pixelHeight:3360,pixelWidth:3467,positionX:\"48.4%\",positionY:\"15.1%\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png\",srcSet:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png 3467w\"},className:\"framer-1itbqg7\",\"data-framer-appear-id\":\"1itbqg7\",\"data-framer-name\":\"Blur Image\",initial:animation5,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{background:{alt:\"Woman Zoom Pose\",fit:\"fill\",pixelHeight:3360,pixelWidth:3467,positionX:\"77.8%\",positionY:\"19.3%\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png\",srcSet:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png 3467w\"}},lBiSWiBKw:{background:{alt:\"Woman Zoom Pose\",fit:\"fill\",pixelHeight:3360,pixelWidth:3467,positionX:\"75.4%\",positionY:\"15.5%\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png\",srcSet:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png 3467w\"}}},children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,animate:animation4,background:{alt:\"Woman Zoom Pose\",fit:\"fill\",pixelHeight:3360,pixelWidth:3467,positionX:\"46.1%\",positionY:\"14.9%\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png\",srcSet:\"https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GoMgOgEEbVmi7vXdq66AxAOpX4.png 3467w\"},className:\"framer-xfgo7n\",\"data-framer-appear-id\":\"xfgo7n\",initial:animation5,optimized:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-osl0u8\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fxyt9c\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wf9duk\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14getd2\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5g895a\",\"data-styles-preset\":\"dMv0pqn5h\",style:{\"--framer-text-color\":\"var(--token-fe9d93ed-b3f8-4dd5-a542-7dee2ff95478, rgb(249, 249, 249))\"},children:\"Antonin Farrugia\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1yjw0rh\",\"data-styles-preset\":\"KobtKP3YO\",style:{\"--framer-text-color\":\"var(--token-fe9d93ed-b3f8-4dd5-a542-7dee2ff95478, rgb(249, 249, 249))\"},children:\"Antonin Farrugia\"})}),className:\"framer-xm3gyl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{animate:undefined,initial:undefined,optimized:undefined},lBiSWiBKw:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-123228s\",\"data-styles-preset\":\"GQvbIb58t\",children:\"UX/UI & Web Designer bas\\xe9 \\xe0 Paris \"})}),className:\"framer-1e400hm\",\"data-framer-appear-id\":\"1e400hm\",\"data-framer-name\":\"Year\",fonts:[\"Inter\"],initial:animation7,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-143w83i hidden-1xnmc73 hidden-kgxcmu\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,animate:animation9,className:\"framer-1dsd59n-container\",\"data-framer-appear-id\":\"1dsd59n\",initial:animation10,nodeId:\"BF2aye_ki\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ScrollDownArrow,{height:\"100%\",id:\"BF2aye_ki\",layoutId:\"BF2aye_ki\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hf1pmy-container hidden-1xnmc73 hidden-kgxcmu\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Jlv_y8uQK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ChromaBackground,{height:\"100%\",id:\"Jlv_y8uQK\",layoutId:\"Jlv_y8uQK\",projectId:\"lHlDvoJDIXCxxXVqTNOC\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8bz8u7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"N1bp4wWgD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:2,borderRadius:\"0px\",direction:\"to top\",height:\"100%\",id:\"N1bp4wWgD\",layoutId:\"N1bp4wWgD\",style:{height:\"100%\",width:\"100%\"},transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1613qa2\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1u94ioe\",\"data-framer-name\":\"Overlap Detailing\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-38ndun\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-80}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a3i3ex\",\"data-framer-name\":\"1\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-110}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-18p6yp9\",\"data-framer-name\":\"2\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-180}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-8po27q\",\"data-framer-name\":\"3\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-lmzj1m\",\"data-framer-name\":\"4\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-liuxau\",\"data-framer-name\":\"5\"})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1itu6u2 hidden-1xnmc73 hidden-kgxcmu\",\"data-framer-name\":\"Detailing\",style:{rotate:180},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qfutw7\",\"data-framer-name\":\"Vectors\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3000 1376\"><g><defs><path d=\"M 2069.595 374.187 C 2103.275 304.209 2184.953 275.955 2252.035 311.085 L 2656.921 523.106 C 2724.003 558.234 2751.079 643.441 2717.41 713.421 L 2514.164 1135.783 C 2480.484 1205.762 2398.806 1234.014 2331.724 1198.885 L 1926.849 986.865 C 1859.767 951.736 1832.68 866.529 1866.359 796.55 Z M 539.547 606.15 C 522.777 575.936 532.729 537.302 561.775 519.859 L 737.083 414.575 C 766.129 397.132 803.27 407.484 820.04 437.697 L 921.254 620.053 C 938.024 650.266 928.072 688.901 899.026 706.345 L 723.717 811.628 C 694.672 829.072 657.531 818.72 640.761 788.506 Z\" id=\"a1008z\"></path><filter id=\"a1010z\" x=\"-0.3%\" y=\"-0.6%\" width=\"100.5%\" height=\"101.3%\" filterUnits=\"objectBoundingBox\"><feGaussianBlur stdDeviation=\"2.975\" in=\"SourceAlpha\" result=\"a1012z\"></feGaussianBlur><feOffset dx=\"0\" dy=\"0\" in=\"a1012z\" result=\"a1013z\"></feOffset><feComposite in=\"a1013z\" in2=\"SourceAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\" result=\"a1014z\"></feComposite><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.05000000074505806 0\" type=\"matrix\" in=\"a1014z\" result=\"a1015z\"></feColorMatrix></filter></defs><use xlink:href=\"#a1008z\" fill=\"var(--token-feb989ad-413e-4bad-b2ff-7b929dfdc9f7, rgb(250, 250, 249))\" clip-path=\"url(#a1009z)\"></use><use fill=\"black\" fill-opacity=\"1\" filter=\"url(#a1010z)\" xlink:href=\"#a1008z\"></use></g></svg>',svgContentId:10265791896,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d76cng\",\"data-framer-name\":\"Seperator\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e1xw05\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-37979e\",\"data-framer-name\":\"Plus\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6g6wo4\",\"data-framer-name\":\"Line 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7u8hwa\",\"data-framer-name\":\"Line 1\",style:{rotate:90}})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fcif1p\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11gpcr-container\",nodeId:\"i1buUhGXr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HighlighterTag,{height:\"100%\",id:\"i1buUhGXr\",layoutId:\"i1buUhGXr\",OtDEdWy8z:\"\\xc0 propos de moi\",tP4zUk5D5:\"var(--token-ce1fb5ba-ee3c-4c3f-ad92-485a94d59ab0, rgb(41, 41, 43))\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gvi5jx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uy6f2c\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-ea3xne\",\"data-styles-preset\":\"Jr50vHhdc\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Curieux et passionn\\xe9 par le design digital, je con\\xe7ois des interfaces interactives dans lesquels ergonomie et esth\\xe9tique se rencontrent pour cr\\xe9er des exp\\xe9riences engageantes. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Mon approche repose sur une r\\xe9flexion UX/UI approfondie et une attention vive aux d\\xe9tails qui permettent de donner vie \\xe0 des designs immersifs et impactants.\"]})}),className:\"framer-896n1g\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v1MMai_cu\"},implicitPathVariables:undefined},{href:{webPageId:\"v1MMai_cu\"},implicitPathVariables:undefined},{href:{webPageId:\"v1MMai_cu\"},implicitPathVariables:undefined},{href:{webPageId:\"v1MMai_cu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1utp51-container\",nodeId:\"ZJZLILEEU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{hEpG3uCce:resolvedLinks[3],variant:\"Pg4VyV0sn\"},hF5rkgpxQ:{hEpG3uCce:resolvedLinks[1]},lBiSWiBKw:{hEpG3uCce:resolvedLinks[2],variant:\"Pg4VyV0sn\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",fTIE5iaFM:\"Entrer en contact\",height:\"100%\",hEpG3uCce:resolvedLinks[0],id:\"ZJZLILEEU\",IObMHc1Ho:\"var(--token-7d02c183-c0db-43bb-8dd0-45785f5a79d2, rgb(9, 9, 9))\",layoutId:\"ZJZLILEEU\",variant:\"yi2gWL3KW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asz4fy\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y59t53\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9klxlm\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1800px), 600px)`},lBiSWiBKw:{width:`min(min(${componentViewport?.width||\"100vw\"} - 60px, 1800px), 600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1800px) * 0.286, 600px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-177ti3z-container\",nodeId:\"Q_L84gOzU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextCard,{height:\"100%\",id:\"Q_L84gOzU\",layoutId:\"Q_L84gOzU\",QbSI87mM4:\"Cr\\xe9er une interface, c\u2019est avant tout raconter une histoire et guider l\u2019utilisateur avec clart\\xe9, sans pour autant n\\xe9gliger l'esth\\xe9tique.                 \\nDe la r\\xe9flexion UX aux prototypes interactifs, je mets un point d\u2019honneur \\xe0 concevoir des exp\\xe9riences intuitives qui captivent.\",raSEl7ki3:\"Transformer des id\\xe9es en exp\\xe9riences\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ph806 hidden-1xnmc73 hidden-kgxcmu\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qgauu5\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cki3px\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1800px), 600px)`},lBiSWiBKw:{width:`min(min(${componentViewport?.width||\"100vw\"} - 60px, 1800px), 600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1800px) * 0.286, 600px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-555eio-container\",nodeId:\"cdRPiVZY9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TextCard,{height:\"100%\",id:\"cdRPiVZY9\",layoutId:\"cdRPiVZY9\",QbSI87mM4:'Un site web, une refonte UX/UI ou un prototype immersif ? Chaque projet m\\xe9rite le \"sur-mesure\" qui allie strat\\xe9gie et cr\\xe9ativit\\xe9.       \\nMon objectif : que les interfaces soient toujours fonctionnelles, impactantes et pens\\xe9es pour l\u2019utilisateur.',raSEl7ki3:\"Concevoir une exp\\xe9rience impactante\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qycej1 hidden-kgxcmu\",\"data-framer-name\":\"Line\"})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mtq3yo\",\"data-framer-name\":\"Seperator\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z58rzb\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gurkhn\",\"data-framer-name\":\"Plus\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gvorwo\",\"data-framer-name\":\"Line 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p2i5dh\",\"data-framer-name\":\"Line 1\",style:{rotate:90}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fszezi hidden-kgxcmu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122zhk4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gtxjto\",\"data-styles-preset\":\"tIUXa9ayA\",children:\"Design UX/UI\"})}),className:\"framer-2knk3q\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gtxjto\",\"data-styles-preset\":\"tIUXa9ayA\",children:\"Web Design\"})}),className:\"framer-681jo3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gtxjto\",\"data-styles-preset\":\"tIUXa9ayA\",children:\"Branding\"})}),className:\"framer-o295xw hidden-1xnmc73\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qy6mcn hidden-1xnmc73 hidden-kgxcmu\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwisht\",\"data-framer-name\":\"Image 1\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Fragrance Bottle\",fit:\"fill\",pixelHeight:900,pixelWidth:1600,positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1800px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/UNgfbTjSWvWu5I7Sx1LHlA17CMI.jpg\",srcSet:\"https://framerusercontent.com/images/UNgfbTjSWvWu5I7Sx1LHlA17CMI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UNgfbTjSWvWu5I7Sx1LHlA17CMI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UNgfbTjSWvWu5I7Sx1LHlA17CMI.jpg 1600w\"},className:\"framer-1pkpqa8\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10z9uzq\",\"data-framer-name\":\"Image 2\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Shoes\",fit:\"fill\",pixelHeight:2500,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1800px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/uhCCHZ04fu9WiPWGbLonWoslM.jpg\",srcSet:\"https://framerusercontent.com/images/uhCCHZ04fu9WiPWGbLonWoslM.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/uhCCHZ04fu9WiPWGbLonWoslM.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/uhCCHZ04fu9WiPWGbLonWoslM.jpg 2000w\"},className:\"framer-1i31huy\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wmqp3s\",\"data-framer-name\":\"Image 3\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Bag\",fit:\"fill\",pixelHeight:3295,pixelWidth:5377,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1800px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/5iuQOEMKfBLccEeTbmc2fFLN7Q.jpg\",srcSet:\"https://framerusercontent.com/images/5iuQOEMKfBLccEeTbmc2fFLN7Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5iuQOEMKfBLccEeTbmc2fFLN7Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5iuQOEMKfBLccEeTbmc2fFLN7Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5iuQOEMKfBLccEeTbmc2fFLN7Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/5iuQOEMKfBLccEeTbmc2fFLN7Q.jpg 5377w\"},className:\"framer-128osae\"})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-1kga97x hidden-1xnmc73\",\"data-framer-name\":\"Client\",children:isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wks6ou hidden-kgxcmu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hF5rkgpxQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"var(--token-ce1fb5ba-ee3c-4c3f-ad92-485a94d59ab0, rgb(41, 41, 43))\"},children:\"3 ans d'exp\\xe9rience en Branding\"})}),fonts:[\"FR;InterDisplay-Bold\"],transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gtxjto\",\"data-styles-preset\":\"tIUXa9ayA\",children:\"3 ans d'exp\\xe9rience en Branding\"})}),className:\"framer-3oqj4v\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hF5rkgpxQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"var(--token-ce1fb5ba-ee3c-4c3f-ad92-485a94d59ab0, rgb(41, 41, 43))\"},children:\"4 sites web con\\xe7us en no-code\"})}),fonts:[\"FR;InterDisplay-Bold\"],transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gtxjto\",\"data-styles-preset\":\"tIUXa9ayA\",children:\"4 sites web con\\xe7us en no-code\"})}),className:\"framer-zciji5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hF5rkgpxQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"var(--token-ce1fb5ba-ee3c-4c3f-ad92-485a94d59ab0, rgb(41, 41, 43))\"},children:\"5 ans d'exp\\xe9rience en UX/UI\"})}),fonts:[\"FR;InterDisplay-Bold\"],transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1gtxjto\",\"data-styles-preset\":\"tIUXa9ayA\",children:\"5 ans d'exp\\xe9rience en UX/UI\"})}),className:\"framer-1rojkfy\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ursvyy\",\"data-framer-name\":\"Image\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16stf9r hidden-1xnmc73 hidden-kgxcmu\",\"data-framer-name\":\"Black BG\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-mk2d27\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{__framer__styleTransformEffectEnabled:undefined},lBiSWiBKw:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Man Side View\",fit:\"fill\",pixelHeight:3205,pixelWidth:4807,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/OFbK57XQRHPx3cE38yULCCAK22M.jpg\",srcSet:\"https://framerusercontent.com/images/OFbK57XQRHPx3cE38yULCCAK22M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OFbK57XQRHPx3cE38yULCCAK22M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OFbK57XQRHPx3cE38yULCCAK22M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OFbK57XQRHPx3cE38yULCCAK22M.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/OFbK57XQRHPx3cE38yULCCAK22M.jpg 4807w\"},className:\"framer-lzewsi\",\"data-framer-name\":\"Fill Your Image Here\"})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-118c1v9\",\"data-framer-name\":\"Portfolio\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-17l4ldy\",\"data-framer-name\":\"Overlap Detailing\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12y4coi\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-80}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-owwz5r\",\"data-framer-name\":\"1\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-110}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-cvvo1u\",\"data-framer-name\":\"2\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-180}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yzwpig\",\"data-framer-name\":\"3\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e1h7jj\",\"data-framer-name\":\"4\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hssib4\",\"data-framer-name\":\"5\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sht5cj\",\"data-framer-name\":\"Detailing\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lBiSWiBKw:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3000 1000\"><g><defs><path d=\"M 1102.131 159.193 C 1130.863 99.582 1200.541 75.514 1257.768 105.439 L 1603.17 286.05 C 1660.397 315.973 1683.495 388.557 1654.773 448.169 L 1481.386 807.958 C 1452.654 867.57 1382.976 891.637 1325.749 861.712 L 980.357 681.103 C 923.13 651.178 900.022 578.594 928.754 518.983 Z M -9.178 854.073 C -30.836 815.028 -17.984 765.103 19.529 742.561 L 245.931 606.506 C 283.444 583.964 331.409 597.342 353.067 636.385 L 483.781 872.039 C 505.438 911.083 492.585 961.009 455.074 983.551 L 228.67 1119.606 C 191.159 1142.148 143.194 1128.77 121.535 1089.725 Z\" id=\"a1024z\"></path><filter id=\"a1026z\" x=\"-0.2%\" y=\"-0.4%\" width=\"100.5%\" height=\"100.8%\" filterUnits=\"objectBoundingBox\"><feGaussianBlur stdDeviation=\"2\" in=\"SourceAlpha\" result=\"a1028z\"></feGaussianBlur><feOffset dx=\"0\" dy=\"0\" in=\"a1028z\" result=\"a1029z\"></feOffset><feComposite in=\"a1029z\" in2=\"SourceAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\" result=\"a1030z\"></feComposite><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.05000000074505806 0\" type=\"matrix\" in=\"a1030z\" result=\"a1031z\"></feColorMatrix></filter></defs><use xlink:href=\"#a1024z\" fill=\"var(--token-feb989ad-413e-4bad-b2ff-7b929dfdc9f7, rgb(250, 250, 249))\" clip-path=\"url(#a1025z)\"></use><use fill=\"black\" fill-opacity=\"1\" filter=\"url(#a1026z)\" xlink:href=\"#a1024z\"></use></g></svg>',svgContentId:11842349555}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wfh4pt\",\"data-framer-name\":\"Vectors\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3000 1000\"><g><defs><path d=\"M 2101.954 159.193 C 2130.659 99.582 2200.271 75.514 2257.443 105.439 L 2602.517 286.05 C 2659.689 315.973 2682.765 388.557 2654.07 448.169 L 2480.848 807.958 C 2452.144 867.57 2382.532 891.637 2325.36 861.712 L 1980.296 681.103 C 1923.124 651.178 1900.038 578.594 1928.742 518.983 Z M 570.822 664.073 C 549.164 625.028 562.016 575.103 599.529 552.561 L 825.931 416.506 C 863.444 393.964 911.409 407.342 933.067 446.385 L 1063.781 682.039 C 1085.438 721.083 1072.585 771.009 1035.074 793.551 L 808.67 929.606 C 771.159 952.148 723.194 938.77 701.535 899.725 Z\" id=\"a1016z\"></path><filter id=\"a1018z\" x=\"-0.2%\" y=\"-0.5%\" width=\"100.4%\" height=\"100.9%\" filterUnits=\"objectBoundingBox\"><feGaussianBlur stdDeviation=\"2\" in=\"SourceAlpha\" result=\"a1020z\"></feGaussianBlur><feOffset dx=\"0\" dy=\"0\" in=\"a1020z\" result=\"a1021z\"></feOffset><feComposite in=\"a1021z\" in2=\"SourceAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\" result=\"a1022z\"></feComposite><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.05000000074505806 0\" type=\"matrix\" in=\"a1022z\" result=\"a1023z\"></feColorMatrix></filter></defs><use xlink:href=\"#a1016z\" fill=\"var(--token-feb989ad-413e-4bad-b2ff-7b929dfdc9f7, rgb(250, 250, 249))\" clip-path=\"url(#a1017z)\"></use><use fill=\"black\" fill-opacity=\"1\" filter=\"url(#a1018z)\" xlink:href=\"#a1016z\"></use></g></svg>',svgContentId:9857253677,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a1tw7n\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-112wevo\",\"data-framer-name\":\"Seperator\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l34bv6\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l3i6zh\",\"data-framer-name\":\"Plus\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19xvpdt\",\"data-framer-name\":\"Line 2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-npmlz3\",\"data-framer-name\":\"Line 1\",style:{rotate:90}})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hwmpnh\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lddleg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mv5hpb-container\",nodeId:\"lwgYc5_Tr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HeaderTag,{ABkxegY8b:\"Stack\",height:\"100%\",id:\"lwgYc5_Tr\",layoutId:\"lwgYc5_Tr\",m67IhHb2o:\"Portfolio\",Od_kYFLK5:\"rgba(0, 19, 115, 0.1)\",variant:\"saHhmyJjC\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-69y99q\",\"data-framer-name\":\"Title/Body text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1jukzkb\",\"data-styles-preset\":\"ShgAstraX\",children:\"Mes projets\"})}),className:\"framer-cf9z1u\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],id:\"cf9z1u\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2232c6\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13egok0\",\"data-styles-preset\":\"L_1csQGlH\",style:{\"--framer-text-alignment\":\"center\"},children:\"D\\xe9couvrez une s\\xe9lection de projets alliant innovation, esth\\xe9tique et fonctionnalit\\xe9, con\\xe7us pour offrir des exp\\xe9riences impactantes et immersives.\"})}),className:\"framer-36qzfp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AkOIicI1y\"},implicitPathVariables:undefined},{href:{webPageId:\"AkOIicI1y\"},implicitPathVariables:undefined},{href:{webPageId:\"AkOIicI1y\"},implicitPathVariables:undefined},{href:{webPageId:\"AkOIicI1y\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d4lj9-container\",nodeId:\"UW1PEfYnD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{hEpG3uCce:resolvedLinks1[3],variant:\"Pg4VyV0sn\"},hF5rkgpxQ:{hEpG3uCce:resolvedLinks1[1]},lBiSWiBKw:{hEpG3uCce:resolvedLinks1[2],variant:\"Pg4VyV0sn\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",fTIE5iaFM:\"Portfolio\",height:\"100%\",hEpG3uCce:resolvedLinks1[0],id:\"UW1PEfYnD\",IObMHc1Ho:\"var(--token-7d02c183-c0db-43bb-8dd0-45785f5a79d2, rgb(9, 9, 9))\",layoutId:\"UW1PEfYnD\",variant:\"yi2gWL3KW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1800px)`},lBiSWiBKw:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1800px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:182,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1800px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a63833-container\",nodeId:\"Fthh_dSVN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ClientSectionXL,{height:\"100%\",id:\"Fthh_dSVN\",layoutId:\"Fthh_dSVN\",style:{width:\"100%\"},variant:\"YmEHXmhgM\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p1zopo\",\"data-framer-name\":\"Work Cards\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hf4s62\",\"data-framer-name\":\"Top\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6jbckv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:2,query:{from:{alias:\"CJti9R9TJ\",data:WorkDetail,type:\"Collection\"},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"CJti9R9TJ\",name:\"rTVbj0tcf\",type:\"Identifier\"},{collection:\"CJti9R9TJ\",name:\"s6xPIHQ0D\",type:\"Identifier\"},{collection:\"CJti9R9TJ\",name:\"SxNJq5Ync\",type:\"Identifier\"},{collection:\"CJti9R9TJ\",name:\"xyo5kS8_c\",type:\"Identifier\"},{collection:\"CJti9R9TJ\",name:\"MMp2v4Dri\",type:\"Identifier\"},{collection:\"CJti9R9TJ\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idCJti9R9TJ,MMp2v4Dri:MMp2v4DriCJti9R9TJ,rTVbj0tcf:rTVbj0tcfCJti9R9TJ,s6xPIHQ0D:s6xPIHQ0DCJti9R9TJ,SxNJq5Ync:SxNJq5YncCJti9R9TJ,xyo5kS8_c:xyo5kS8_cCJti9R9TJ},index)=>{rTVbj0tcfCJti9R9TJ??=\"\";SxNJq5YncCJti9R9TJ??=\"\";xyo5kS8_cCJti9R9TJ??=\"\";MMp2v4DriCJti9R9TJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CJti9R9TJ-${idCJti9R9TJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rTVbj0tcf:rTVbj0tcfCJti9R9TJ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rTVbj0tcf:rTVbj0tcfCJti9R9TJ},webPageId:\"plMC03D6_\"},motionChild:true,nodeId:\"FfHygQhfn\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-makkza framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1800px), 1px)`},lBiSWiBKw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1800px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:526,width:`max(max((max(min(${componentViewport?.width||\"100vw\"} - 80px, 1800px), 1px) - 20px) / 2, 50px), 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{\"data-framer-cursor\":undefined},lBiSWiBKw:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ur66nh-container\",\"data-framer-cursor\":\"1lxu5yl\",nodeId:\"KKoLL5KAd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{variant:\"nl5HsFNJk\"},lBiSWiBKw:{variant:\"FAFKfO4pq\"}},children:/*#__PURE__*/_jsx(WorkCard,{Cr4htjnnW:xyo5kS8_cCJti9R9TJ,height:\"100%\",id:\"KKoLL5KAd\",layoutId:\"KKoLL5KAd\",lq5N1EJ6v:SxNJq5YncCJti9R9TJ,LzJ_XpULN:toResponsiveImage(s6xPIHQ0DCJti9R9TJ),o2Q5NvvcV:MMp2v4DriCJti9R9TJ,style:{width:\"100%\"},variant:\"pDRViZ5LJ\",width:\"100%\"})})})})})})})})})},idCJti9R9TJ);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8qs1jd\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ff3rcb\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:1,query:{from:{alias:\"xuoujPxYu\",data:WorkDetail,type:\"Collection\"},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"xuoujPxYu\",name:\"rTVbj0tcf\",type:\"Identifier\"},{collection:\"xuoujPxYu\",name:\"s6xPIHQ0D\",type:\"Identifier\"},{collection:\"xuoujPxYu\",name:\"SxNJq5Ync\",type:\"Identifier\"},{collection:\"xuoujPxYu\",name:\"xyo5kS8_c\",type:\"Identifier\"},{collection:\"xuoujPxYu\",name:\"MMp2v4Dri\",type:\"Identifier\"},{collection:\"xuoujPxYu\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idxuoujPxYu,MMp2v4Dri:MMp2v4DrixuoujPxYu,rTVbj0tcf:rTVbj0tcfxuoujPxYu,s6xPIHQ0D:s6xPIHQ0DxuoujPxYu,SxNJq5Ync:SxNJq5YncxuoujPxYu,xyo5kS8_c:xyo5kS8_cxuoujPxYu},index1)=>{rTVbj0tcfxuoujPxYu??=\"\";SxNJq5YncxuoujPxYu??=\"\";xyo5kS8_cxuoujPxYu??=\"\";MMp2v4DrixuoujPxYu??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xuoujPxYu-${idxuoujPxYu}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rTVbj0tcf:rTVbj0tcfxuoujPxYu},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rTVbj0tcf:rTVbj0tcfxuoujPxYu},webPageId:\"plMC03D6_\"},motionChild:true,nodeId:\"hg7liPGmP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-z5pida framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1800px), 1px)`},lBiSWiBKw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1800px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:526,width:`max(max((max(min(${componentViewport?.width||\"100vw\"} - 80px, 1800px), 1px) - 20px) / 2, 50px), 1px)`,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{\"data-framer-cursor\":undefined},lBiSWiBKw:{\"data-framer-cursor\":undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-68bdh4-container\",\"data-framer-cursor\":\"1lxu5yl\",nodeId:\"ElaiekCND\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{variant:\"nl5HsFNJk\"},lBiSWiBKw:{variant:\"FAFKfO4pq\"}},children:/*#__PURE__*/_jsx(WorkCard,{Cr4htjnnW:xyo5kS8_cxuoujPxYu,height:\"100%\",id:\"ElaiekCND\",layoutId:\"ElaiekCND\",lq5N1EJ6v:SxNJq5YncxuoujPxYu,LzJ_XpULN:toResponsiveImage(s6xPIHQ0DxuoujPxYu),o2Q5NvvcV:MMp2v4DrixuoujPxYu,style:{width:\"100%\"},variant:\"pDRViZ5LJ\",width:\"100%\"})})})})})})})})})},idxuoujPxYu);})})})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:917,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w50spo-container\",nodeId:\"IlHXeqhRl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{variant:\"SjmfottpK\"},hF5rkgpxQ:{variant:\"pXu0V3lWw\"},lBiSWiBKw:{variant:\"VPQ7dWxhh\"}},children:/*#__PURE__*/_jsx(PhotographySection,{height:\"100%\",id:\"IlHXeqhRl\",layoutId:\"IlHXeqhRl\",style:{width:\"100%\"},variant:\"mrSpulwtm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1iydij6\",\"data-framer-name\":\"Contact\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vwdkjv\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjxo2w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uvx0bn\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1u6el4a\",\"data-styles-preset\":\"JHN5xBTSK\",children:\"Travaillons ensemble\"})}),className:\"framer-ttm3uj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w7owuf\",\"data-framer-name\":\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13egok0\",\"data-styles-preset\":\"L_1csQGlH\",style:{\"--framer-text-alignment\":\"left\"},children:\"Cr\\xe9ons quelque chose d'innovant et de cr\\xe9atif ensemble. \"})}),className:\"framer-1jxayd4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3hb1v9\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v1MMai_cu\"},implicitPathVariables:undefined},{href:{webPageId:\"v1MMai_cu\"},implicitPathVariables:undefined},{href:{webPageId:\"v1MMai_cu\"},implicitPathVariables:undefined},{href:{webPageId:\"v1MMai_cu\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v3xhcp-container\",nodeId:\"C6I7BB4_3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{hEpG3uCce:resolvedLinks2[3],variant:\"Pg4VyV0sn\"},hF5rkgpxQ:{hEpG3uCce:resolvedLinks2[1]},lBiSWiBKw:{hEpG3uCce:resolvedLinks2[2],variant:\"Pg4VyV0sn\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{A3sa0aIqI:\"var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, rgb(245, 244, 243))\",fTIE5iaFM:\"Me contacter\",height:\"100%\",hEpG3uCce:resolvedLinks2[0],id:\"C6I7BB4_3\",IObMHc1Ho:\"var(--token-7d02c183-c0db-43bb-8dd0-45785f5a79d2, rgb(9, 9, 9))\",layoutId:\"C6I7BB4_3\",variant:\"yi2gWL3KW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-agghgg\",\"data-framer-name\":\"Right\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-k7uf0c hidden-1xnmc73 hidden-kgxcmu\",\"data-border\":true,\"data-framer-name\":\"Indicator\"}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/d03e4332-196f-40c0-9471-13974a8ed53b/submit\",className:\"framer-14ftx7o\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-6mti7k\",\"data-framer-name\":\"Name\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1v98nax\",inputName:\"Nom\",placeholder:\"Nom & Pr\\xe9nom*\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-5q8d6s\",\"data-framer-name\":\"Email\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-15mid06\",inputName:\"Email\",placeholder:\"Email*\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-10zp5vb\",\"data-framer-name\":\"Message\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1p0mzxl\",inputName:\"Message\",placeholder:\"Message*\",required:true,type:\"textarea\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1800px)`},hF5rkgpxQ:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1800px) - 100px) / 2, 1px)`},lBiSWiBKw:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1800px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1800px) - 170px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jfum7s-container\",nodeId:\"r9D56XPRX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContactButton,{height:\"100%\",id:\"r9D56XPRX\",layoutId:\"r9D56XPRX\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"tVyOgHl4P\",success:\"RS7gm02Nn\"},\"ruPMvctzQ\"),width:\"100%\"})})})})]})})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17erow-container\",nodeId:\"G3RM8JKTO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d7XOceHhC:{variant:\"Y3WH_kTAy\"},hF5rkgpxQ:{variant:\"q7ZKp4Qkq\"},lBiSWiBKw:{variant:\"WxojLi5uf\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"G3RM8JKTO\",layoutId:\"G3RM8JKTO\",rukzQXLoJ:\"uzEeWtzzm\",style:{width:\"100%\"},variant:\"d2qafGl2W\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3q3rwe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VO0YiVgQX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"VO0YiVgQX\",intensity:10,layoutId:\"VO0YiVgQX\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3Ti1h.framer-lux5qc, .framer-3Ti1h .framer-lux5qc { display: block; }\",\".framer-3Ti1h.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, #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: 1440px; }\",\".framer-3Ti1h .framer-19aas2i { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: 0px; width: 20px; z-index: 1; }\",\".framer-3Ti1h .framer-xxmqpg-container { flex: none; height: auto; left: 34px; position: absolute; right: 34px; top: 34px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-3Ti1h .framer-esu0sc { align-content: center; align-items: center; background-color: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-3Ti1h .framer-9p6nbb { align-content: flex-start; align-items: flex-start; background-color: var(--token-7d02c183-c0db-43bb-8dd0-45785f5a79d2, #090909); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; overflow: hidden; padding: 34px; position: relative; width: 1px; }\",\".framer-3Ti1h .framer-1i1l8xs { background-color: var(--token-7ec95c0f-b04a-42ae-a158-91566b52197d, #ff462e); flex: none; height: 7px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-3Ti1h .framer-1j8vmex { flex: none; height: 54px; overflow: hidden; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1itbqg7 { -webkit-filter: blur(5px); filter: blur(5px); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-3Ti1h .framer-xfgo7n { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-3Ti1h .framer-osl0u8 { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.33403716216216%, rgba(0, 0, 0, 0.3791) 67.9054054054054%, rgb(0, 0, 0) 100%) add; background-color: var(--token-beb23004-809b-47bf-9d8f-a7d54cb48fe6, rgba(9, 9, 9, 0.8)); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.33403716216216%, rgba(0, 0, 0, 0.3791) 67.9054054054054%, rgb(0, 0, 0) 100%) add; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-3Ti1h .framer-fxyt9c { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1wf9duk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 13px 0px 13px 0px; position: relative; width: 1px; }\",\".framer-3Ti1h .framer-14getd2, .framer-3Ti1h .framer-fszezi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-xm3gyl { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; mix-blend-mode: difference; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-3Ti1h .framer-1e400hm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-3Ti1h .framer-143w83i { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 95px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 28%; }\",\".framer-3Ti1h .framer-1dsd59n-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-3Ti1h .framer-hf1pmy-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: screen; opacity: 0.3; pointer-events: none; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-3Ti1h .framer-8bz8u7-container { flex: none; height: 180px; left: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-3Ti1h .framer-1613qa2 { align-content: center; align-items: center; background-color: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 40px 0px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-3Ti1h .framer-1u94ioe, .framer-3Ti1h .framer-17l4ldy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 834px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-3Ti1h .framer-38ndun, .framer-3Ti1h .framer-12y4coi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1a3i3ex, .framer-3Ti1h .framer-18p6yp9, .framer-3Ti1h .framer-8po27q, .framer-3Ti1h .framer-lmzj1m, .framer-3Ti1h .framer-liuxau, .framer-3Ti1h .framer-owwz5r, .framer-3Ti1h .framer-cvvo1u, .framer-3Ti1h .framer-1yzwpig, .framer-3Ti1h .framer-1e1h7jj, .framer-3Ti1h .framer-1hssib4 { background-color: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, #ffffff); flex: none; height: 100%; overflow: visible; position: relative; width: 20%; }\",\".framer-3Ti1h .framer-1itu6u2 { align-content: center; align-items: center; bottom: -20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; width: 100%; }\",\".framer-3Ti1h .framer-qfutw7 { flex: none; height: 1376px; position: relative; width: 3000px; }\",\".framer-3Ti1h .framer-d76cng, .framer-3Ti1h .framer-mtq3yo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-e1xw05, .framer-3Ti1h .framer-z58rzb, .framer-3Ti1h .framer-1l34bv6 { background-color: var(--token-bf3b78f1-7c89-4ecd-bba4-77c1a4c7b347, #eaeaea); flex: 1 0 0px; height: 1px; opacity: 0.65; position: relative; width: 1px; }\",\".framer-3Ti1h .framer-37979e, .framer-3Ti1h .framer-1gurkhn, .framer-3Ti1h .framer-1l3i6zh { aspect-ratio: 1 / 1; bottom: -4px; flex: none; left: 50%; overflow: visible; position: absolute; top: -4px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 9px); z-index: 1; }\",\".framer-3Ti1h .framer-6g6wo4, .framer-3Ti1h .framer-7u8hwa, .framer-3Ti1h .framer-gvorwo, .framer-3Ti1h .framer-1p2i5dh, .framer-3Ti1h .framer-19xvpdt, .framer-3Ti1h .framer-npmlz3 { background-color: var(--token-f79d02c7-1774-42e8-8ffe-88585b6d572d, #1e1e1e); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 9px; left: 4px; position: absolute; top: 0px; width: 1px; }\",\".framer-3Ti1h .framer-fcif1p { 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; max-width: 1800px; overflow: visible; padding: 40px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-11gpcr-container, .framer-3Ti1h .framer-1utp51-container, .framer-3Ti1h .framer-1mv5hpb-container, .framer-3Ti1h .framer-1d4lj9-container, .framer-3Ti1h .framer-v3xhcp-container, .framer-3Ti1h .framer-3q3rwe-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3Ti1h .framer-gvi5jx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 72%; }\",\".framer-3Ti1h .framer-1uy6f2c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-896n1g, .framer-3Ti1h .framer-cf9z1u, .framer-3Ti1h .framer-ttm3uj { --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-3Ti1h .framer-asz4fy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1y59t53, .framer-3Ti1h .framer-1qgauu5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-3Ti1h .framer-9klxlm, .framer-3Ti1h .framer-6ph806, .framer-3Ti1h .framer-1cki3px, .framer-3Ti1h .framer-1qycej1, .framer-3Ti1h .framer-3hb1v9 { background-color: var(--token-bf3b78f1-7c89-4ecd-bba4-77c1a4c7b347, #eaeaea); flex: none; height: 1px; opacity: 0.65; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-177ti3z-container, .framer-3Ti1h .framer-555eio-container { flex: none; height: auto; max-width: 600px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-122zhk4 { flex: none; height: 36px; overflow: hidden; position: relative; width: 1338px; }\",\".framer-3Ti1h .framer-2knk3q { flex: none; height: auto; left: 1px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-3Ti1h .framer-681jo3 { bottom: 0px; flex: none; height: auto; left: 1182px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-3Ti1h .framer-o295xw, .framer-3Ti1h .framer-3oqj4v { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-3Ti1h .framer-1qy6mcn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1800px; overflow: hidden; padding: 10px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1jwisht, .framer-3Ti1h .framer-10z9uzq, .framer-3Ti1h .framer-wmqp3s { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 264px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3Ti1h .framer-1pkpqa8, .framer-3Ti1h .framer-1i31huy, .framer-3Ti1h .framer-128osae { flex: 1 0 0px; height: 135%; overflow: hidden; position: relative; width: 1px; }\",\".framer-3Ti1h .framer-1kga97x { align-content: center; align-items: center; background-color: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 132px; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-3Ti1h .framer-wks6ou { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1363px; }\",\".framer-3Ti1h .framer-zciji5 { bottom: 0px; flex: none; height: auto; left: 962px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-3Ti1h .framer-1rojkfy { bottom: 0px; flex: none; height: auto; left: 1px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-3Ti1h .framer-1ursvyy { align-content: center; align-items: center; background-color: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 3; }\",\".framer-3Ti1h .framer-16stf9r { background-color: var(--token-7d02c183-c0db-43bb-8dd0-45785f5a79d2, #090909); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-3Ti1h .framer-mk2d27 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-lzewsi { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; z-index: 0; }\",\".framer-3Ti1h .framer-118c1v9 { align-content: center; align-items: center; background-color: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 30px 40px 160px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-3Ti1h .framer-sht5cj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 900px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 150px; width: 100%; }\",\".framer-3Ti1h .framer-wfh4pt { flex: none; height: 1000px; position: relative; width: 3000px; }\",\".framer-3Ti1h .framer-1a1tw7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-112wevo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-hwmpnh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1800px; overflow: hidden; padding: 40px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1lddleg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-69y99q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-2232c6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-36qzfp, .framer-3Ti1h .framer-1jxayd4 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-3Ti1h .framer-a63833-container, .framer-3Ti1h .framer-jfum7s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1p1zopo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1hf4s62 { 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: visible; padding: 0px; position: sticky; top: 70px; width: 100%; z-index: 1; }\",\".framer-3Ti1h .framer-6jbckv, .framer-3Ti1h .framer-ff3rcb { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-3Ti1h .framer-makkza, .framer-3Ti1h .framer-z5pida { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-3Ti1h .framer-1ur66nh-container, .framer-3Ti1h .framer-68bdh4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-3Ti1h .framer-8qs1jd { 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: visible; padding: 0px; position: sticky; top: 110px; width: 100%; z-index: 1; }\",\".framer-3Ti1h .framer-1w50spo-container, .framer-3Ti1h .framer-17erow-container { flex: none; height: auto; position: relative; width: 100%; z-index: 4; }\",\".framer-3Ti1h .framer-1iydij6 { align-content: center; align-items: center; background-color: var(--token-a83649a1-3fb0-4a78-ac47-908be8944abe, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 40px 140px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-3Ti1h .framer-vwdkjv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1800px; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1cjxo2w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 170px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1uvx0bn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 490px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3Ti1h .framer-w7owuf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 420px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-agghgg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 44px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-3Ti1h .framer-k7uf0c { --border-bottom-width: 0px; --border-color: var(--token-7ec95c0f-b04a-42ae-a158-91566b52197d, #f9452c); --border-left-width: 1.5px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1.5px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: -20px; position: absolute; top: 0px; width: 20px; z-index: 1; }\",\".framer-3Ti1h .framer-14ftx7o { 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-3Ti1h .framer-6mti7k, .framer-3Ti1h .framer-5q8d6s, .framer-3Ti1h .framer-10zp5vb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1v98nax, .framer-3Ti1h .framer-15mid06 { --framer-input-background: var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, #f5f4f3); --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.05); --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-color: var(--token-c2c9f9b3-7ca4-4ca5-baeb-06b83ee1143d, rgba(9, 9, 9, 0.5)); --framer-input-font-family: \\\"Inter Display\\\"; --framer-input-font-letter-spacing: -0.2px; --framer-input-font-line-height: 16px; --framer-input-font-open-type-features: 'salt' on; --framer-input-font-size: 16px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 24px; --framer-input-placeholder-color: var(--token-c2c9f9b3-7ca4-4ca5-baeb-06b83ee1143d, rgba(9, 9, 9, 0.5)); --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3Ti1h .framer-1p0mzxl { --framer-input-background: var(--token-fb12e452-5cc0-4bf6-a721-de659eb1ddc7, #f5f4f3); --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.05); --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-color: var(--token-c2c9f9b3-7ca4-4ca5-baeb-06b83ee1143d, rgba(9, 9, 9, 0.5)); --framer-input-font-family: \\\"Inter Display\\\"; --framer-input-font-letter-spacing: -0.2px; --framer-input-font-line-height: 16px; --framer-input-font-open-type-features: 'salt' on; --framer-input-font-size: 16px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 24px; --framer-input-placeholder-color: var(--token-c2c9f9b3-7ca4-4ca5-baeb-06b83ee1143d, rgba(9, 9, 9, 0.5)); --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 150px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3Ti1h.framer-72rtr7, .framer-3Ti1h .framer-esu0sc, .framer-3Ti1h .framer-fxyt9c, .framer-3Ti1h .framer-1wf9duk, .framer-3Ti1h .framer-14getd2, .framer-3Ti1h .framer-143w83i, .framer-3Ti1h .framer-1613qa2, .framer-3Ti1h .framer-1u94ioe, .framer-3Ti1h .framer-38ndun, .framer-3Ti1h .framer-1itu6u2, .framer-3Ti1h .framer-d76cng, .framer-3Ti1h .framer-gvi5jx, .framer-3Ti1h .framer-1uy6f2c, .framer-3Ti1h .framer-asz4fy, .framer-3Ti1h .framer-1y59t53, .framer-3Ti1h .framer-1qgauu5, .framer-3Ti1h .framer-mtq3yo, .framer-3Ti1h .framer-fszezi, .framer-3Ti1h .framer-1qy6mcn, .framer-3Ti1h .framer-1jwisht, .framer-3Ti1h .framer-10z9uzq, .framer-3Ti1h .framer-wmqp3s, .framer-3Ti1h .framer-1kga97x, .framer-3Ti1h .framer-mk2d27, .framer-3Ti1h .framer-118c1v9, .framer-3Ti1h .framer-17l4ldy, .framer-3Ti1h .framer-12y4coi, .framer-3Ti1h .framer-sht5cj, .framer-3Ti1h .framer-1a1tw7n, .framer-3Ti1h .framer-112wevo, .framer-3Ti1h .framer-hwmpnh, .framer-3Ti1h .framer-1lddleg, .framer-3Ti1h .framer-69y99q, .framer-3Ti1h .framer-2232c6, .framer-3Ti1h .framer-1p1zopo, .framer-3Ti1h .framer-1hf4s62, .framer-3Ti1h .framer-makkza, .framer-3Ti1h .framer-8qs1jd, .framer-3Ti1h .framer-z5pida, .framer-3Ti1h .framer-1iydij6, .framer-3Ti1h .framer-vwdkjv, .framer-3Ti1h .framer-1cjxo2w, .framer-3Ti1h .framer-1uvx0bn, .framer-3Ti1h .framer-w7owuf, .framer-3Ti1h .framer-agghgg, .framer-3Ti1h .framer-14ftx7o, .framer-3Ti1h .framer-6mti7k, .framer-3Ti1h .framer-5q8d6s, .framer-3Ti1h .framer-10zp5vb { gap: 0px; } .framer-3Ti1h.framer-72rtr7 > *, .framer-3Ti1h .framer-1kga97x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3Ti1h.framer-72rtr7 > :first-child, .framer-3Ti1h .framer-1wf9duk > :first-child, .framer-3Ti1h .framer-143w83i > :first-child, .framer-3Ti1h .framer-1613qa2 > :first-child, .framer-3Ti1h .framer-1u94ioe > :first-child, .framer-3Ti1h .framer-gvi5jx > :first-child, .framer-3Ti1h .framer-1uy6f2c > :first-child, .framer-3Ti1h .framer-1y59t53 > :first-child, .framer-3Ti1h .framer-1qgauu5 > :first-child, .framer-3Ti1h .framer-1kga97x > :first-child, .framer-3Ti1h .framer-118c1v9 > :first-child, .framer-3Ti1h .framer-17l4ldy > :first-child, .framer-3Ti1h .framer-1a1tw7n > :first-child, .framer-3Ti1h .framer-hwmpnh > :first-child, .framer-3Ti1h .framer-1lddleg > :first-child, .framer-3Ti1h .framer-69y99q > :first-child, .framer-3Ti1h .framer-1p1zopo > :first-child, .framer-3Ti1h .framer-1iydij6 > :first-child, .framer-3Ti1h .framer-vwdkjv > :first-child, .framer-3Ti1h .framer-1uvx0bn > :first-child, .framer-3Ti1h .framer-agghgg > :first-child, .framer-3Ti1h .framer-14ftx7o > :first-child, .framer-3Ti1h .framer-6mti7k > :first-child, .framer-3Ti1h .framer-5q8d6s > :first-child, .framer-3Ti1h .framer-10zp5vb > :first-child { margin-top: 0px; } .framer-3Ti1h.framer-72rtr7 > :last-child, .framer-3Ti1h .framer-1wf9duk > :last-child, .framer-3Ti1h .framer-143w83i > :last-child, .framer-3Ti1h .framer-1613qa2 > :last-child, .framer-3Ti1h .framer-1u94ioe > :last-child, .framer-3Ti1h .framer-gvi5jx > :last-child, .framer-3Ti1h .framer-1uy6f2c > :last-child, .framer-3Ti1h .framer-1y59t53 > :last-child, .framer-3Ti1h .framer-1qgauu5 > :last-child, .framer-3Ti1h .framer-1kga97x > :last-child, .framer-3Ti1h .framer-118c1v9 > :last-child, .framer-3Ti1h .framer-17l4ldy > :last-child, .framer-3Ti1h .framer-1a1tw7n > :last-child, .framer-3Ti1h .framer-hwmpnh > :last-child, .framer-3Ti1h .framer-1lddleg > :last-child, .framer-3Ti1h .framer-69y99q > :last-child, .framer-3Ti1h .framer-1p1zopo > :last-child, .framer-3Ti1h .framer-1iydij6 > :last-child, .framer-3Ti1h .framer-vwdkjv > :last-child, .framer-3Ti1h .framer-1uvx0bn > :last-child, .framer-3Ti1h .framer-agghgg > :last-child, .framer-3Ti1h .framer-14ftx7o > :last-child, .framer-3Ti1h .framer-6mti7k > :last-child, .framer-3Ti1h .framer-5q8d6s > :last-child, .framer-3Ti1h .framer-10zp5vb > :last-child { margin-bottom: 0px; } .framer-3Ti1h .framer-esu0sc > *, .framer-3Ti1h .framer-fxyt9c > *, .framer-3Ti1h .framer-14getd2 > *, .framer-3Ti1h .framer-1itu6u2 > *, .framer-3Ti1h .framer-d76cng > *, .framer-3Ti1h .framer-mtq3yo > *, .framer-3Ti1h .framer-fszezi > *, .framer-3Ti1h .framer-1jwisht > *, .framer-3Ti1h .framer-10z9uzq > *, .framer-3Ti1h .framer-wmqp3s > *, .framer-3Ti1h .framer-mk2d27 > *, .framer-3Ti1h .framer-sht5cj > *, .framer-3Ti1h .framer-112wevo > *, .framer-3Ti1h .framer-2232c6 > *, .framer-3Ti1h .framer-w7owuf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3Ti1h .framer-esu0sc > :first-child, .framer-3Ti1h .framer-fxyt9c > :first-child, .framer-3Ti1h .framer-14getd2 > :first-child, .framer-3Ti1h .framer-38ndun > :first-child, .framer-3Ti1h .framer-1itu6u2 > :first-child, .framer-3Ti1h .framer-d76cng > :first-child, .framer-3Ti1h .framer-asz4fy > :first-child, .framer-3Ti1h .framer-mtq3yo > :first-child, .framer-3Ti1h .framer-fszezi > :first-child, .framer-3Ti1h .framer-1qy6mcn > :first-child, .framer-3Ti1h .framer-1jwisht > :first-child, .framer-3Ti1h .framer-10z9uzq > :first-child, .framer-3Ti1h .framer-wmqp3s > :first-child, .framer-3Ti1h .framer-mk2d27 > :first-child, .framer-3Ti1h .framer-12y4coi > :first-child, .framer-3Ti1h .framer-sht5cj > :first-child, .framer-3Ti1h .framer-112wevo > :first-child, .framer-3Ti1h .framer-2232c6 > :first-child, .framer-3Ti1h .framer-1hf4s62 > :first-child, .framer-3Ti1h .framer-makkza > :first-child, .framer-3Ti1h .framer-8qs1jd > :first-child, .framer-3Ti1h .framer-z5pida > :first-child, .framer-3Ti1h .framer-1cjxo2w > :first-child, .framer-3Ti1h .framer-w7owuf > :first-child { margin-left: 0px; } .framer-3Ti1h .framer-esu0sc > :last-child, .framer-3Ti1h .framer-fxyt9c > :last-child, .framer-3Ti1h .framer-14getd2 > :last-child, .framer-3Ti1h .framer-38ndun > :last-child, .framer-3Ti1h .framer-1itu6u2 > :last-child, .framer-3Ti1h .framer-d76cng > :last-child, .framer-3Ti1h .framer-asz4fy > :last-child, .framer-3Ti1h .framer-mtq3yo > :last-child, .framer-3Ti1h .framer-fszezi > :last-child, .framer-3Ti1h .framer-1qy6mcn > :last-child, .framer-3Ti1h .framer-1jwisht > :last-child, .framer-3Ti1h .framer-10z9uzq > :last-child, .framer-3Ti1h .framer-wmqp3s > :last-child, .framer-3Ti1h .framer-mk2d27 > :last-child, .framer-3Ti1h .framer-12y4coi > :last-child, .framer-3Ti1h .framer-sht5cj > :last-child, .framer-3Ti1h .framer-112wevo > :last-child, .framer-3Ti1h .framer-2232c6 > :last-child, .framer-3Ti1h .framer-1hf4s62 > :last-child, .framer-3Ti1h .framer-makkza > :last-child, .framer-3Ti1h .framer-8qs1jd > :last-child, .framer-3Ti1h .framer-z5pida > :last-child, .framer-3Ti1h .framer-1cjxo2w > :last-child, .framer-3Ti1h .framer-w7owuf > :last-child { margin-right: 0px; } .framer-3Ti1h .framer-1wf9duk > *, .framer-3Ti1h .framer-hwmpnh > *, .framer-3Ti1h .framer-69y99q > *, .framer-3Ti1h .framer-1p1zopo > *, .framer-3Ti1h .framer-1uvx0bn > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-3Ti1h .framer-143w83i > * { margin: 0px; margin-bottom: calc(95px / 2); margin-top: calc(95px / 2); } .framer-3Ti1h .framer-1613qa2 > *, .framer-3Ti1h .framer-6mti7k > *, .framer-3Ti1h .framer-5q8d6s > *, .framer-3Ti1h .framer-10zp5vb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3Ti1h .framer-1u94ioe > *, .framer-3Ti1h .framer-17l4ldy > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-3Ti1h .framer-38ndun > *, .framer-3Ti1h .framer-12y4coi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3Ti1h .framer-gvi5jx > *, .framer-3Ti1h .framer-118c1v9 > *, .framer-3Ti1h .framer-vwdkjv > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-3Ti1h .framer-1uy6f2c > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-3Ti1h .framer-asz4fy > * { margin: 0px; margin-left: calc(85px / 2); margin-right: calc(85px / 2); } .framer-3Ti1h .framer-1y59t53 > *, .framer-3Ti1h .framer-1qgauu5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3Ti1h .framer-1qy6mcn > *, .framer-3Ti1h .framer-1hf4s62 > *, .framer-3Ti1h .framer-makkza > *, .framer-3Ti1h .framer-8qs1jd > *, .framer-3Ti1h .framer-z5pida > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-3Ti1h .framer-1a1tw7n > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-3Ti1h .framer-1lddleg > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-3Ti1h .framer-1iydij6 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-3Ti1h .framer-1cjxo2w > * { margin: 0px; margin-left: calc(170px / 2); margin-right: calc(170px / 2); } .framer-3Ti1h .framer-agghgg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3Ti1h .framer-14ftx7o > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-3Ti1h[data-border=\"true\"]::after, .framer-3Ti1h [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: 1200px) and (max-width: 1439px) { .framer-3Ti1h.framer-72rtr7 { width: 1200px; } .framer-3Ti1h .framer-122zhk4 { width: 1109px; } .framer-3Ti1h .framer-681jo3 { left: 951px; } .framer-3Ti1h .framer-3oqj4v { bottom: unset; top: 48%; transform: translate(-50%, -50%); } .framer-3Ti1h .framer-zciji5 { bottom: unset; left: 883px; top: 48%; transform: translateY(-50%); } .framer-3Ti1h .framer-1rojkfy { bottom: unset; left: 127px; top: 48%; transform: translateY(-50%); } .framer-3Ti1h .framer-1cjxo2w { gap: 100px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3Ti1h .framer-1cjxo2w { gap: 0px; } .framer-3Ti1h .framer-1cjxo2w > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-3Ti1h .framer-1cjxo2w > :first-child { margin-left: 0px; } .framer-3Ti1h .framer-1cjxo2w > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-3Ti1h.framer-72rtr7 { width: 810px; } .framer-3Ti1h .framer-xxmqpg-container { left: 0px; right: 0px; top: 0px; } .framer-3Ti1h .framer-9p6nbb { padding: 24px 24px 44px 24px; } .framer-3Ti1h .framer-fxyt9c { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; } .framer-3Ti1h .framer-1wf9duk { flex: none; gap: 20px; width: 100%; } .framer-3Ti1h .framer-1e400hm { will-change: unset; } .framer-3Ti1h .framer-1613qa2 { padding: 80px 30px 0px 30px; } .framer-3Ti1h .framer-fcif1p { flex-direction: column; gap: 50px; justify-content: flex-start; } .framer-3Ti1h .framer-gvi5jx, .framer-3Ti1h .framer-1y59t53, .framer-3Ti1h .framer-1qgauu5 { width: 100%; } .framer-3Ti1h .framer-asz4fy { flex-direction: column; gap: 40px; } .framer-3Ti1h .framer-118c1v9 { padding: 40px 30px 80px 30px; } .framer-3Ti1h .framer-1p1zopo { gap: 20px; } .framer-3Ti1h .framer-1hf4s62, .framer-3Ti1h .framer-8qs1jd { flex-direction: column; position: relative; top: unset; } .framer-3Ti1h .framer-6jbckv, .framer-3Ti1h .framer-ff3rcb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; width: 100%; } .framer-3Ti1h .framer-makkza, .framer-3Ti1h .framer-z5pida { align-self: unset; } .framer-3Ti1h .framer-1iydij6 { padding: 0px 30px 100px 30px; } .framer-3Ti1h .framer-vwdkjv { gap: 30px; } .framer-3Ti1h .framer-1cjxo2w { flex-direction: column; gap: 10px; } .framer-3Ti1h .framer-1uvx0bn, .framer-3Ti1h .framer-agghgg { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3Ti1h .framer-fxyt9c, .framer-3Ti1h .framer-1wf9duk, .framer-3Ti1h .framer-fcif1p, .framer-3Ti1h .framer-asz4fy, .framer-3Ti1h .framer-1p1zopo, .framer-3Ti1h .framer-1hf4s62, .framer-3Ti1h .framer-6jbckv, .framer-3Ti1h .framer-8qs1jd, .framer-3Ti1h .framer-ff3rcb, .framer-3Ti1h .framer-vwdkjv, .framer-3Ti1h .framer-1cjxo2w { gap: 0px; } .framer-3Ti1h .framer-fxyt9c > *, .framer-3Ti1h .framer-vwdkjv > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-3Ti1h .framer-fxyt9c > :first-child, .framer-3Ti1h .framer-1wf9duk > :first-child, .framer-3Ti1h .framer-fcif1p > :first-child, .framer-3Ti1h .framer-asz4fy > :first-child, .framer-3Ti1h .framer-1p1zopo > :first-child, .framer-3Ti1h .framer-1hf4s62 > :first-child, .framer-3Ti1h .framer-6jbckv > :first-child, .framer-3Ti1h .framer-8qs1jd > :first-child, .framer-3Ti1h .framer-ff3rcb > :first-child, .framer-3Ti1h .framer-vwdkjv > :first-child, .framer-3Ti1h .framer-1cjxo2w > :first-child { margin-top: 0px; } .framer-3Ti1h .framer-fxyt9c > :last-child, .framer-3Ti1h .framer-1wf9duk > :last-child, .framer-3Ti1h .framer-fcif1p > :last-child, .framer-3Ti1h .framer-asz4fy > :last-child, .framer-3Ti1h .framer-1p1zopo > :last-child, .framer-3Ti1h .framer-1hf4s62 > :last-child, .framer-3Ti1h .framer-6jbckv > :last-child, .framer-3Ti1h .framer-8qs1jd > :last-child, .framer-3Ti1h .framer-ff3rcb > :last-child, .framer-3Ti1h .framer-vwdkjv > :last-child, .framer-3Ti1h .framer-1cjxo2w > :last-child { margin-bottom: 0px; } .framer-3Ti1h .framer-1wf9duk > *, .framer-3Ti1h .framer-1p1zopo > *, .framer-3Ti1h .framer-1hf4s62 > *, .framer-3Ti1h .framer-6jbckv > *, .framer-3Ti1h .framer-8qs1jd > *, .framer-3Ti1h .framer-ff3rcb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-3Ti1h .framer-fcif1p > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-3Ti1h .framer-asz4fy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3Ti1h .framer-1cjxo2w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-3Ti1h.framer-72rtr7 { width: 390px; } .framer-3Ti1h .framer-xxmqpg-container { left: 0px; right: 0px; top: 0px; } .framer-3Ti1h .framer-9p6nbb { padding: 20px 20px 50px 20px; } .framer-3Ti1h .framer-osl0u8 { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 55.1977759009009%) add; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 55.1977759009009%) add; opacity: 0.5; } .framer-3Ti1h .framer-fxyt9c { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; } .framer-3Ti1h .framer-1wf9duk { flex: none; gap: 10px; padding: 49px 0px 49px 0px; width: 100%; } .framer-3Ti1h .framer-1e400hm { will-change: unset; } .framer-3Ti1h .framer-1613qa2 { padding: 50px 20px 0px 20px; } .framer-3Ti1h .framer-fcif1p { flex-direction: column; gap: 30px; justify-content: flex-start; } .framer-3Ti1h .framer-gvi5jx, .framer-3Ti1h .framer-1y59t53, .framer-3Ti1h .framer-1qgauu5 { width: 100%; } .framer-3Ti1h .framer-1uy6f2c { gap: 40px; } .framer-3Ti1h .framer-asz4fy { flex-direction: column; gap: 40px; } .framer-3Ti1h .framer-1kga97x { height: 37px; padding: 10px 0px 0px 0px; } .framer-3Ti1h .framer-118c1v9 { gap: 40px; padding: 30px 20px 50px 20px; } .framer-3Ti1h .framer-1p1zopo { gap: 20px; } .framer-3Ti1h .framer-1hf4s62, .framer-3Ti1h .framer-8qs1jd { flex-direction: column; position: relative; top: unset; } .framer-3Ti1h .framer-6jbckv, .framer-3Ti1h .framer-ff3rcb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; width: 100%; } .framer-3Ti1h .framer-makkza, .framer-3Ti1h .framer-z5pida { align-self: unset; } .framer-3Ti1h .framer-1iydij6 { padding: 0px 20px 60px 20px; } .framer-3Ti1h .framer-vwdkjv { gap: 40px; padding: 0px; } .framer-3Ti1h .framer-1cjxo2w { flex-direction: column; gap: 0px; } .framer-3Ti1h .framer-1uvx0bn, .framer-3Ti1h .framer-agghgg { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3Ti1h .framer-fxyt9c, .framer-3Ti1h .framer-1wf9duk, .framer-3Ti1h .framer-fcif1p, .framer-3Ti1h .framer-1uy6f2c, .framer-3Ti1h .framer-asz4fy, .framer-3Ti1h .framer-118c1v9, .framer-3Ti1h .framer-1p1zopo, .framer-3Ti1h .framer-1hf4s62, .framer-3Ti1h .framer-6jbckv, .framer-3Ti1h .framer-8qs1jd, .framer-3Ti1h .framer-ff3rcb, .framer-3Ti1h .framer-vwdkjv, .framer-3Ti1h .framer-1cjxo2w { gap: 0px; } .framer-3Ti1h .framer-fxyt9c > *, .framer-3Ti1h .framer-1p1zopo > *, .framer-3Ti1h .framer-1hf4s62 > *, .framer-3Ti1h .framer-6jbckv > *, .framer-3Ti1h .framer-8qs1jd > *, .framer-3Ti1h .framer-ff3rcb > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-3Ti1h .framer-fxyt9c > :first-child, .framer-3Ti1h .framer-1wf9duk > :first-child, .framer-3Ti1h .framer-fcif1p > :first-child, .framer-3Ti1h .framer-1uy6f2c > :first-child, .framer-3Ti1h .framer-asz4fy > :first-child, .framer-3Ti1h .framer-118c1v9 > :first-child, .framer-3Ti1h .framer-1p1zopo > :first-child, .framer-3Ti1h .framer-1hf4s62 > :first-child, .framer-3Ti1h .framer-6jbckv > :first-child, .framer-3Ti1h .framer-8qs1jd > :first-child, .framer-3Ti1h .framer-ff3rcb > :first-child, .framer-3Ti1h .framer-vwdkjv > :first-child, .framer-3Ti1h .framer-1cjxo2w > :first-child { margin-top: 0px; } .framer-3Ti1h .framer-fxyt9c > :last-child, .framer-3Ti1h .framer-1wf9duk > :last-child, .framer-3Ti1h .framer-fcif1p > :last-child, .framer-3Ti1h .framer-1uy6f2c > :last-child, .framer-3Ti1h .framer-asz4fy > :last-child, .framer-3Ti1h .framer-118c1v9 > :last-child, .framer-3Ti1h .framer-1p1zopo > :last-child, .framer-3Ti1h .framer-1hf4s62 > :last-child, .framer-3Ti1h .framer-6jbckv > :last-child, .framer-3Ti1h .framer-8qs1jd > :last-child, .framer-3Ti1h .framer-ff3rcb > :last-child, .framer-3Ti1h .framer-vwdkjv > :last-child, .framer-3Ti1h .framer-1cjxo2w > :last-child { margin-bottom: 0px; } .framer-3Ti1h .framer-1wf9duk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3Ti1h .framer-fcif1p > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-3Ti1h .framer-1uy6f2c > *, .framer-3Ti1h .framer-asz4fy > *, .framer-3Ti1h .framer-118c1v9 > *, .framer-3Ti1h .framer-vwdkjv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3Ti1h .framer-1cjxo2w > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6794\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hF5rkgpxQ\":{\"layout\":[\"fixed\",\"auto\"]},\"lBiSWiBKw\":{\"layout\":[\"fixed\",\"auto\"]},\"d7XOceHhC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"nac4JIqLJ\":{\"pattern\":\":nac4JIqLJ\",\"name\":\"top\"},\"OBr5SGreb\":{\"pattern\":\":OBr5SGreb\",\"name\":\"image-1\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-3Ti1h\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6794,width:1440};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/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 Display\",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/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",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/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",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/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...NavigationBarFonts,...ScrollDownArrowFonts,...ChromaBackgroundFonts,...BlurGradientFonts,...HighlighterTagFonts,...PrimaryButtonFonts,...TextCardFonts,...HeaderTagFonts,...ClientSectionXLFonts,...WorkCardFonts,...PhotographySectionFonts,...ContactButtonFonts,...FooterFonts,...SmoothScrollFonts,...CustomCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"nac4JIqLJ\\\":{\\\"pattern\\\":\\\":nac4JIqLJ\\\",\\\"name\\\":\\\"top\\\"},\\\"OBr5SGreb\\\":{\\\"pattern\\\":\\\":OBr5SGreb\\\",\\\"name\\\":\\\"image-1\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6794\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hF5rkgpxQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lBiSWiBKw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d7XOceHhC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "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", "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", "index", "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", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "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", "setDelta", "delta", "setPage", "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", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "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", "height", "id", "image", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Ln8d5mN1s", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "css", "FramerAUdIPWa8L", "withCSS", "AUdIPWa8L_default", "addPropertyControls", "ControlType", "addFonts", "ClientCardXLFonts", "getFonts", "AUdIPWa8L_default", "TickerFonts", "Ticker", "SlideshowFonts", "Slideshow", "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", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerBmyWZK_C9", "withCSS", "BmyWZK_C9_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "bodyText", "heading", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "raSEl7ki3", "QbSI87mM4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "css", "FramercXxmZ_WGy", "withCSS", "cXxmZ_WGy_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "SettingsMessage", "title", "description", "containerStyle", "u", "p", "shadowProperty", "ControlType", "heightProperty", "props", "useStore", "createStore", "CursorRotation", "props", "style", "withDragging", "withSnapBack", "transition", "withRotationLimitX", "withRotationLimitY", "maxX", "maxY", "minX", "minY", "withPerspective", "perspectiveValue", "sensitivity", "children", "p", "SettingsMessage", "isDragging", "setIsDragging", "ye", "rotateX", "useMotionValue", "rotateY", "springConfig", "rotateXSpring", "useSpring", "rotateYSpring", "startingRotation", "setStartingRotation", "startingMousePosition", "setStartingMousePosition", "ue", "handleMove", "event", "isTouchEvent", "clientX", "clientY", "innerWidth", "innerHeight", "window", "rotationX", "rotationY", "mouseX", "rotationFactorX", "rotationFactorY", "adjustedSensitivity", "handleOnStart", "e", "handleOnEnd", "clonedChildren", "q", "motion", "addPropertyControls", "ControlType", "HeaderFonts", "getFonts", "AiBZzPFO5_default", "DLookFonts", "CursorRotation", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "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", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Image2", "css", "FramerO6pJvZkzz", "withCSS", "O6pJvZkzz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavigationBarFonts", "getFonts", "Jm7P8qV0g_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithOptimizedAppearEffect", "motion", "ImageWithFXWithOptimizedAppearEffect", "withFX", "Image2", "RichTextWithOptimizedAppearEffect", "RichText2", "ScrollDownArrowFonts", "GDNpReCJz_default", "ContainerWithFXWithOptimizedAppearEffect", "ChromaBackgroundFonts", "UnicornStudioEmbed", "BlurGradientFonts", "BlurGradient_Prod_default", "MotionSectionWithFX", "MotionDivWithFX", "HighlighterTagFonts", "aC3aXnvcq_default", "PrimaryButtonFonts", "RdOAHW_OD_default", "TextCardFonts", "cXxmZ_WGy_default", "ImageWithFX", "HeaderTagFonts", "eM9l8QD_p_default", "ClientSectionXLFonts", "BmyWZK_C9_default", "WorkCardFonts", "whtKcjpH0_default", "PhotographySectionFonts", "O6pJvZkzz_default", "ContactButtonFonts", "maUT3XoJu_default", "FooterFonts", "jzeC2yo7K_default", "SmoothScrollFonts", "SmoothScroll", "CustomCursorFonts", "UfUnsElt7_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "transition6", "animation9", "animation10", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "QueryData1", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition7", "cursor", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "rTVbj0tcfCJti9R9TJ", "s6xPIHQ0DCJti9R9TJ", "SxNJq5YncCJti9R9TJ", "xyo5kS8_cCJti9R9TJ", "MMp2v4DriCJti9R9TJ", "idCJti9R9TJ", "rTVbj0tcfxuoujPxYu", "s6xPIHQ0DxuoujPxYu", "SxNJq5YncxuoujPxYu", "xyo5kS8_cxuoujPxYu", "MMp2v4DrixuoujPxYu", "idxuoujPxYu", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "ref2", "elementId1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "ChildrenCanSuspend", "f4zWXyw63_default", "collection", "l", "index", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "FormContainer", "formState", "FormPlainTextInput2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
