{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/CktcTwaBTU2yrFDY1dLG/GF3l64IxeNprxQYZj71O/L8YQrDeKh.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import{highlightPills}from\"https://framerusercontent.com/modules/2n2dAPz36FFE624gYplY/t4pdlIGIujuWbP95gllj/Highlight_terms.js\";const RichTextHighlightPills229hbv=withCodeBoundaryForOverrides(RichText,{nodeId:\"yt8Rrze9A\",override:highlightPills,scopeId:\"L8YQrDeKh\"});const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"W1l6sQgaD\",\"pk1WjUREH\",\"IvImUeSyC\",\"vP6AbBVx6\"];const serializationHash=\"framer-PvpaI\";const variantClassNames={IvImUeSyC:\"framer-v-1r9jmh5\",pk1WjUREH:\"framer-v-1s4ct33\",vP6AbBVx6:\"framer-v-hbyupf\",W1l6sQgaD:\"framer-v-6vwcjc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"LARGE-BLUE\":\"IvImUeSyC\",LARGE:\"W1l6sQgaD\",MEDIUM:\"pk1WjUREH\",Mobile:\"vP6AbBVx6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"W1l6sQgaD\"};};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:\"W1l6sQgaD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-6vwcjc\",className,classNames),\"data-framer-name\":\"LARGE\",layoutDependency:layoutDependency,layoutId:\"W1l6sQgaD\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},variants:{IvImUeSyC:{backgroundColor:\"var(--token-f7bad7e7-938d-4cc2-b8a4-b0c2637ced0d, rgb(244, 244, 255))\"}},...addPropertyOverrides({IvImUeSyC:{\"data-framer-name\":\"LARGE-BLUE\"},pk1WjUREH:{\"data-framer-name\":\"MEDIUM\"},vP6AbBVx6:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichTextHighlightPills229hbv,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Over \",/*#__PURE__*/_jsx(motion.strong,{children:\"316,495\"}),\" hours of work saved through \",/*#__PURE__*/_jsx(motion.strong,{children:\"1,582,478\"}),\" playbook runs for our valued clients.\"]})}),className:\"framer-229hbv\",\"data-framer-name\":\"Time saved\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"yt8Rrze9A\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({vP6AbBVx6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Over \",/*#__PURE__*/_jsx(motion.strong,{children:\"316,495\"}),\" hours of work saved through \",/*#__PURE__*/_jsx(motion.strong,{children:\"1,582,478\"}),\" playbook runs for our valued clients.\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1effn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ccjpESlzD-container\",nodeId:\"ccjpESlzD\",rendersWithMotion:true,scopeId:\"L8YQrDeKh\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",id:\"ccjpESlzD\",intervalControl:1.7,itemAmount:5,layoutId:\"ccjpESlzD\",padding:8,paddingBottom:8,paddingLeft:8,paddingPerSide:false,paddingRight:8,paddingTop:8,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18myte0\",\"data-framer-name\":\"Thales\",layoutDependency:layoutDependency,layoutId:\"opDIrheLh\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jxxpl7\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:296,intrinsicWidth:2428,layoutDependency:layoutDependency,layoutId:\"b0_rbA4xl\",svg:'<svg width=\"2428\" height=\"296\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1621.16 231.434v49.753c-94.24 18.845-187.74 18.845-280.5 0V14.256h66.37v217.178h214.13ZM.756 14.256a1006.25 1006.25 0 0 1 329.51 0v47.508H198.324v219.423h-66.353V61.764H.756V14.256ZM2020.06 231.434v49.753c-99.53 18.845-198.32 18.845-295.6 0V14.256c97.28-18.106 194.55-18.106 291.82 0v47.508H1791.6v54.291h131.18v53.54H1791.6v61.839h228.46Z\" fill=\"#353581\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1104.67 199.01c0 12.814-4.53 24.111-13.58 33.164-9.8 9.04-21.11 13.579-33.93 13.579-12.83 0-23.39-4.539-33.18-13.579-9.05-9.04-13.57-20.337-13.57-33.164 0-12.827 4.53-24.137 13.57-33.19 9.05-9.805 20.36-14.331 33.18-14.331 12.81 0 24.12 4.539 33.93 14.331 9.05 9.04 13.58 20.363 13.58 33.19Z\" fill=\"#8DC2BB\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M714.833 116.056H524.061V8.225l-61.075 7.535v268.436l61.075 7.548v-121.41h190.772v121.41l61.075-7.548V15.76l-61.075-8.3v108.596Zm343.077-50.518 122.16 223.949 66.37-8.313-30.93-53.514-.76-.765-123.66-212.64h-61.08l-153.807 266.92 59.557 7.561L1039.82 97.95l.75-.752 17.34-31.66Zm1121.26 52.774V61.764h244.3V14.256a737.151 737.151 0 0 0-144.02-12.062c-47.52 0-88.23 4.526-123.66 14.319-12.82 3.774-22.62 9.805-27.89 18.858-5.29 9.053-8.31 23.371-8.31 42.23v29.402c0 24.876 5.26 41.464 15.83 50.53 9.81 8.288 28.65 12.788 55.81 12.788h176.44v61.101H2119.6v49.752l159.87 12.814v-.765c39.94 0 77.63-5.266 113.11-15.071 12.81-3.009 21.86-9.04 27.13-18.845 5.29-9.04 7.55-22.62 7.55-41.465v-36.198c0-24.876-5.29-41.478-15.1-50.531-9.8-8.287-27.88-12.814-55.78-12.814l-177.21.013Z\" fill=\"#353581\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d30wnv\",\"data-framer-name\":\"Doctolib\",layoutDependency:layoutDependency,layoutId:\"ViV2DTOhR\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fybtkm\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:210,intrinsicWidth:866,layoutDependency:layoutDependency,layoutId:\"aNkYMJFph\",svg:'<svg width=\"866\" height=\"210\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M56.9 209.4c-42.9 0-49.4-5-47.2-14.6C11.3 188 46.4 57.2 47.2 54.2c3.5-14 18.2-10.6 18.8-10.5.4.1.7.5.6.9-1.3 11.2-21.9 121.7-22.1 123.1-1.7 10.9 0 12 13.5 12 66.7 0 90.9-46.1 97.5-82.9C166.9 33 104.3 13.9 17 21.7c-.8.1-6.6.4-9.1-.8-3.3-1.6-6.1-5.6-6.8-7.8-.3-.8-.3-1.6 0-2.1.2-.3.4-.6.7-.7 28.2-5 67.4-11.7 92.7-9 95.8 10.1 95.8 70.4 90.2 100.9-3.1 17.7-19.3 107.2-127.8 107.2ZM400.3 170c-6.2 21.1-25.1 35.7-47.1 36.3-18.5 1-37-9.5-45.1-25.7-3.2-6.1-5-12.7-5.7-20.5-2.8 1.3-5.7 2.5-8.6 3.4-3.8 10.7-10.4 20.6-19.5 27.4-19.5 14.5-45.9 18.7-69.6 5.7-29.2-20.1-25.6-60.6-5.2-84.4 20.3-23.8 57.6-27.8 76.3-16.1 12.7 8.2 19.5 22.3 21.3 37 2.7-1.9 5.1-4.3 7.9-7.5 2.6-3.1 7.7-10.7 7.7-10.7 3-4.6 6.7-8.9 10.8-12.6 8.6-7.5 19.5-11.2 30.5-11.2 9.5 0 19.2 2.8 27.6 8.5 2.7 1.8 3.4 2.8 2.5 4.3-1.2 2.2-2.5 4.2-4.1 6.1-3 3.6-6.1 2.3-8.2 1.4-.3-.1-.6-.3-.9-.4-9.4-3.3-17.1-2.6-25.1 2.2-17.3 10.5-19.9 30.9-16.7 46.5 3.3 15.9 12.1 21.3 19 23 12.6 3.2 29.5-3.6 40.2-16.2 3.2-3.8 8.1-1.3 11.6 1.5.2.1.3.2.4.3.5.6 0 1.6 0 1.7Zm-131.5-53.6c-12.9-16-36.3-10.6-49.5 4.2-13.2 14.9-13.4 39.3 1 49.6 13.5 9.6 35 4.5 45.6-10.9 7.4-10.8 14.1-29 2.9-42.9ZM591.6 150c-1.8 15.6-9.8 31.4-22.6 41-19.5 14.5-45.9 18.7-69.6 5.7-3-2.1-5.7-4.4-8-6.9-4 3.6-8.7 7.2-13.9 10.3-15.9 9.6-38.1 7.1-51.8-5.7-8.7-7.8-12.9-20.7-11.3-33.8 1.4-11.6 11.8-51.6 21.5-87.4-9.5.3-17.8 0-22.4-2.2-7.4-3.6-5.6-15.9-4.9-19.4.1-.5.6-.9 1.1-.9 3.6 0 17.2-.1 32.3-.2 6.3-23 11.3-40.3 11.3-40.3 1.8-6.1 8.5-9.4 14.6-9.4 1.2 0 2.3.1 3.4.4.4.1.6.5.5 1-1.6 9.9-4.7 27.9-8.4 48.3 8.2 0 15.6.1 20.6.2 17.6.4 40.8 1.4 45.5 1.6.5 0 1 .4 1.1.9.5 2.2.9 7.7-5.4 11.3-5.4 3-44.6 5.8-62.6 7-1 .1-1.9.1-2.9.2-7.5 41.4-15.5 84.3-15.9 86.2-2 10 4.3 16.1 9.9 17.3 10.3 2.2 18.7-2.2 25.7-8.6-3.9-18.7 2.2-39.7 14.7-54.4 20.3-23.8 57.6-27.8 76.3-16.1 17.6 11.5 23.8 34.1 21.2 53.9Zm-28-33.6c-12.9-16-36.3-10.6-49.5 4.2-13.2 14.9-13.4 39.3 1 49.6 13.5 9.6 35 4.5 45.6-10.9 7.4-10.8 14.1-29 2.9-42.9Zm145.2-50.1c5.8 3.8 13.1 2 17.8-1.5 3.2-2.4 5.3-6.3 5.8-10.5.6-4.4-.5-10.6-5.4-13.8-1.9-1.2-4.1-1.7-6.4-1.7-3.6 0-7.3 1.3-10.2 3-.9.6-1.6 1.2-2.3 2-.4.5-.8 1.1-1.1 1.7-4.1 7.2-5 16.1 1.8 20.8Zm134.4 30c-13.3-8.4-36.2-8.7-55.6.5 4.2-23.1 13.3-86.5 14.6-94.5.1-.3 0-.5-.1-.7-.1-.2-.3-.3-.5-.3-1.1-.2-2.2-.4-3.4-.4-6.1 0-12.8 3.3-14.6 9.4 0 0-35.6 143.7-36.8 150.4-8.2 12.7-18.1 17.6-28.9 14.3-9-2.8-8.5-9.7-8.2-13.1.5-5.4 9.8-58.7 11.5-70.6.1-.8-.4-1.5-1.2-1.7-1.9-.3-3.9-.5-5.9-.5-6.6 0-13.4 2.4-17.4 12.4-.1.4-11.8 41.3-14 50.1-.3 1.1-.5 2.2-.8 3.3-8.6 13-21.9 24.4-41.1 20.3-5.6-1.2-11.8-5.3-9.9-17.3.5-3.2 18.1-105 23.2-137.5.1-.5-.1-.9-.5-1-1.1-.3-2.3-.4-3.4-.4-6.1 0-12.7 3.3-14.6 9.4 0 0-28.1 103.1-34.1 132.2-2.7 12.8-.8 25.3 10.6 35.4 10.6 9.5 31 12.5 47.9 5.4 9.8-4.1 18-10.8 23.7-16.6 7.4 14.8 25.1 24.4 41.4 20.5 12.6-3 22.2-12.1 28.5-19.7 2.5 3.6 5.4 6.8 8.5 9.3 14.5 11.5 35 13.6 53.6 8.1 9.4-2.1 18.4-6.2 26.2-12 12.8-9.7 20.9-25.4 22.6-41 2.6-19.8-3.7-42.4-21.3-53.7Zm-9.2 65.3c-10.5 15.4-34.6 21.2-48.1 11.6-14.5-10.3-11.7-35.5 1.5-50.3 13.2-14.9 36.6-20.2 49.5-4.2 11.2 13.8 4.5 32-2.9 42.9Z\" fill=\"#1D78C6\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14d7c0g\",\"data-framer-name\":\"Auchan\",layoutDependency:layoutDependency,layoutId:\"U8wakrTjo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rq8l8e\",\"data-framer-name\":\"Auchan-logo-desktop\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"aHzr3Dob1\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"116\" height=\"28\"><path fill=\"#D6180B\" fill-rule=\"evenodd\" d=\"M91.662 22.316c-.6.557-1.336 1.148-2.666 1.148-1.468 0-2.293-1.356-2.293-3.965 0-3.199.906-4.798 2.654-4.798 1.014 0 1.505.07 2.305.243v7.372zM81.14 19.708c0 5.633 2.098 8.067 6.156 8.067 2.483 0 4.196-.827 5.14-2.183l.28 1.85h4.345v-16.01c-1.6-.557-3.765-1.043-7.576-1.043-5.422 0-8.345 3.303-8.345 9.32zm29.111-9.32c-2.833 0-4.483.87-5.672 2.193l-.356-1.843h-4.362V27.44h5.4V15.85c.4-.556 1.672-1.148 2.652-1.148 1.608 0 2.548.87 2.548 2.434v10.306h5.4V16.405c0-4.034-1.833-6.016-5.61-6.016zm-36.693 0c-2.239 0-3.697.523-4.897 1.426v-7.24h-5.4V27.44h5.4V15.85c.4-.556 1.572-1.148 2.552-1.148 1.609 0 2.448.87 2.448 2.434v10.306h5.6V16.405c0-4.034-1.891-6.016-5.703-6.016zM56.884 23.15c-2.693 0-4.093-1.668-4.093-4.207 0-2.433 1.4-3.929 4.058-3.929 1.434 0 2.588.382 3.602 1.043l.77-4.556c-1.47-.626-3.043-1.112-5.7-1.112-5.421 0-8.395 3.094-8.395 8.763 0 5.702 2.798 8.623 8.255 8.623 2.622 0 5.141-.799 6.19-1.495l-.77-4.242c-1.224.626-2.413 1.112-3.917 1.112zm-17.222-.834c-.4.557-1.573 1.148-2.553 1.148-1.608 0-2.447-.87-2.447-2.434V10.738h-5.6V21.76c0 4.034 1.862 6.015 5.674 6.015 2.834 0 4.5-.862 5.688-2.183l.372 1.85h4.466V10.737h-5.6v11.578zm-22.233-.46 1.99 5.585h1.468l-2.102-5.853a9.588 9.588 0 0 1-1.356.267M0 27.441h6.633l2.147-6.76H2.308A129.25 129.25 0 0 0 0 27.44m8.74-15.22 3.83-3.198c.627-1.697 1.282-3.397 1.963-4.845.34.772.662 1.544 1 2.366 1.478-1.214 2.449-1.874 2.498-1.906l.02-.014a6.821 6.821 0 0 1 1.966-.851A135.874 135.874 0 0 0 18.232 0H10.8c-.62 1.193-2.931 5.966-5.634 12.528H7.9c.445 0 .668-.164.84-.308m15.55 5.31a8.98 8.98 0 0 1-4.184 3.573l2.253 6.338h6.555c-1.31-3.977-2.715-7.564-4.034-10.925-.184.365-.38.675-.59 1.013M22.347 6.847c.189 0 .365.044.525.121-.032-.005-.065-.011-.098-.011a.704.704 0 0 0-.704.7.7.7 0 0 0 .704.699.7.7 0 0 0 .702-.698c0-.024-.003-.045-.005-.066.059.142.093.298.093.463 0 .666-.545 1.208-1.217 1.208a1.214 1.214 0 0 1-1.217-1.208c0-.67.546-1.208 1.217-1.208zm-6.794 13.635c1.602 0 5.425-.407 7.494-3.73 2.072-3.325 2.794-8.6 2.794-8.6l2.268-1.075c.142-.071.105-.316-.068-.316h-2.445c-.383-.597-1.71-1.867-3.665-1.867-1.16 0-2.176.327-3.086.92 0 0-1.327.904-3.257 2.564L9.68 13.293c-.455.38-1.012.627-1.782.627H.465c-.21 0-.14.176-.106.278.524 1.597 1.923 3.022 4.365 3.022L2.98 19.017c-.069.068-.069.272.104.272h6.632c4.793 0 7.74-2.098 9.677-5.005.166-.249.322-.514.47-.77.073.034.08.104.046.172-.489 1.18-1.71 3.572-3.944 4.994-.77.45-1.014.589-2.096 1.004-.074.032-.104.15-.07.252l2.684 7.505h1.465l-2.46-6.96h.067z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-px5g14\",\"data-framer-name\":\"Axians\",layoutDependency:layoutDependency,layoutId:\"ZXEvzdLwi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sy7we\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:97,intrinsicWidth:601,layoutDependency:layoutDependency,layoutId:\"esMtvDElP\",svg:'<svg width=\"601\" height=\"97\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M508.9 84.6c-3.4-1.9-1.2-4.5-1.2-4.5l6.5-8c1.4-1.7 3.2-1.5 4.6-.8 14.8 7.5 34.7 9.4 49.1 7.5 12.4-1.7 14.6-7 14.6-11.7 0-6.6-6.3-8.8-6.3-8.8-3.8-2-18.9-2.9-37.6-4.9-18.7-1.9-29.4-11-29.4-25.4 0-8.9 3.6-14.9 11.8-20.3 8.6-5.7 43.3-13.9 77.8 4.8C602 14.1 600 17 600 17l-6.5 8c-1.4 1.6-3.3 1.4-4.6.8-10.1-5.5-25.2-8.3-39.5-8.2-21.9.6-21.9 7.5-21.9 10.5 0 3.4 0 7.6 13.6 9.1l25.7 2.8c24.1 2.6 34.3 12 33.9 27.8-.5 15.8-10.5 22-23.8 25.7.1.2-34.8 9.7-68-8.9ZM284.399 96h-12.6c-1.6 0-3-1.3-3-2.9V4.3c0-1.6 1.3-3 3-3h12.6c1.6 0 2.9 1.3 2.9 3v88.8c0 1.6-1.3 2.9-2.9 2.9Z\" fill=\"#0068B6\"/><path d=\"M180.598 61.5c37.1 40.5 71.3 34.1 71.3 34.1 1.6 0 2.9-1.3 2.9-2.9V81.3c0-1.6-1.3-2.9-2.9-2.9 0 0-20.8.8-35.9-8.6-15.1-9.4-23.6-21.1-23.6-21.2.1-.1 8.6-11.8 23.6-21.2 15.1-9.4 35.9-8.6 35.9-8.6 1.6 0 2.9-1.3 2.9-2.9V4.5c0-1.6-1.3-2.9-2.9-2.9 0 0-34.1-6.3-71.3 34.1-37.1-40.5-71.2-34.2-71.2-34.2-1.6 0-3 1.3-3 2.9V16c0 1.6 1.3 2.9 3 2.9 0 0 20.8-.8 35.9 8.6 15.1 9.4 23.6 21.1 23.6 21.2-.1.1-8.6 11.8-23.6 21.1-15.1 9.4-35.9 8.6-35.9 8.6-1.6 0-3 1.3-3 2.9v11.4c0 1.6 1.3 2.9 3 2.9-.1.1 34 6.4 71.2-34.1Z\" fill=\"#AC006D\"/><path d=\"M380.199 9.1c-8.6-5.7-41.7-15.5-76.2 3.5-3.2 1.6-1.2 4.5-1.2 4.5l6.4 8c1.4 1.6 3.3 1.5 4.6.8 10.1-5.5 23.6-7.9 37.9-7.9 21.9.6 22.9 8.6 22.9 11.6v10.9c-3.5-1.5-7.5-2.4-11.6-2.4h-35.8c-16 0-29 13-29 28.9 0 8 3.2 15.2 8.5 20.5 5.2 5.2 12.5 8.5 20.5 8.5h35.8c16 0 28.9-13 28.9-29V29.5c.1-8.9-3.5-15-11.7-20.4Zm-16.2 70.7h-37.7c-6.7 0-12.2-5.7-12.2-12.7 0-7 5.5-12.7 12.2-12.7h37.7c6.7 0 12.2 5.7 12.2 12.7 0 7-5.5 12.7-12.2 12.7ZM82.7 9.1C74.1 3.4 41-6.4 6.5 12.6c-3.2 1.6-1.2 4.5-1.2 4.5l6.4 8c1.4 1.6 3.3 1.5 4.6.8C26.4 20.4 39.9 18 54.2 18c21.9.6 22.9 8.6 22.9 11.6v10.9c-3.5-1.5-7.5-2.4-11.6-2.4H29.7c-16 0-29 13-29 28.9 0 8 3.2 15.2 8.5 20.5 5.2 5.2 12.5 8.5 20.5 8.5h35.8c16 0 28.9-13 28.9-29V29.5c.1-8.9-3.5-15-11.7-20.4ZM66.5 79.8H28.8c-6.7 0-12.2-5.7-12.2-12.7 0-7 5.5-12.7 12.2-12.7h37.7c6.7 0 12.2 5.7 12.2 12.7-.1 7-5.5 12.7-12.2 12.7ZM450.999 1.3c10.4 0 16.6 1 16.6 1 30.2 3.8 29.3 26.5 29.3 26.5v64.1c0 1.6-1.3 2.9-3 2.9h-11.5c-1.6 0-3-1.3-3-2.9V28.8s.4-8.3-15.7-9.7c-9.5-.8-12.8-.6-12.8-.6s-3.4-.2-12.8.6c-16.1 1.4-15.7 9.7-15.7 9.7v64.1c0 1.6-1.3 2.9-3 2.9h-11.5c-1.6 0-3-1.3-3-2.9V28.8s-.9-22.7 29.3-26.5c.3 0 6.4-1 16.8-1Z\" fill=\"#0068B6\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ow6m0\",\"data-framer-name\":\"Colas\",layoutDependency:layoutDependency,layoutId:\"mHCFm9vlf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4pkq7u\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:47,intrinsicWidth:145,layoutDependency:layoutDependency,layoutId:\"CRkKPYZBu\",svg:'<svg width=\"145\" height=\"47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M131.075 22.806 73.052.293a5.827 5.827 0 0 0-3.64 0l-1.4.54 56.076 21.762a.965.965 0 0 1 0 1.843L68.253 46l1.454.566a5.8 5.8 0 0 0 3.637 0l57.731-22.29c.441-.17.692-.434.692-.73 0-.295-.252-.564-.692-.739Z\" fill=\"#FE0\"/><path d=\"M143.49 22.865 85.833.495a5.827 5.827 0 0 0-3.64 0l-1.4.543 55.711 21.614a.969.969 0 0 1 .679.921.966.966 0 0 1-.679.922l-55.137 21.3 1.454.567a5.819 5.819 0 0 0 3.637 0l57.033-22.032c.441-.17.692-.436.692-.73s-.252-.564-.692-.74\" fill=\"#FE0\"/><path d=\"M118.663 22.825 61.531.561a6.322 6.322 0 0 0-3.767 0L.664 22.655c-.88.34-.888 1.03-.008 1.37l57.127 22.258c.602.21 1.238.308 1.875.29a5.256 5.256 0 0 0 1.892-.285l57.1-22.094c.881-.34.894-1.03.013-1.37Z\" fill=\"#FE0\"/><path d=\"M53.218 18.533a7.57 7.57 0 0 0-9.825-.01 6.458 6.458 0 0 0-1.953 4.885 6.558 6.558 0 0 0 1.946 4.889 7.573 7.573 0 0 0 9.823.008 6.613 6.613 0 0 0 1.954-4.884 6.557 6.557 0 0 0-1.944-4.884m-2.388 7.486a3.312 3.312 0 0 1-2.533 1.012 3.237 3.237 0 0 1-2.53-1.016 4.06 4.06 0 0 1 0-5.21 3.664 3.664 0 0 1 5.065.005c.644.709.984 1.642.948 2.6a3.705 3.705 0 0 1-.953 2.6m9.905-8.974h-3.286v12.774H65.7V26.74h-4.96m-25.514.28a2.824 2.824 0 0 1-2.215-1.01 3.782 3.782 0 0 1-.923-2.613 3.949 3.949 0 0 1 .934-2.613 3.188 3.188 0 0 1 2.3-1 2.673 2.673 0 0 1 2.262 1.117l2.524-2.055a5.244 5.244 0 0 0-4.527-2.14 6.954 6.954 0 0 0-4.918 1.8 6.652 6.652 0 0 0-1.952 4.89 6.557 6.557 0 0 0 1.944 4.884 6.966 6.966 0 0 0 4.914 1.814 5.49 5.49 0 0 0 4.816-2.473l-2.72-2.034a2.675 2.675 0 0 1-2.44 1.433Zm39.822-9.966h-2.61l-5.53 12.766h3.6l3.154-8.11 1.55 3.906h-1.707l-1.105 2.86h3.956l.556 1.347h3.68m8.295-6.953c-.87-.46-1.795-.806-2.753-1.03-.9-.286-1.246-.538-1.246-1.06 0-.31.271-.952 1.507-.952a2.079 2.079 0 0 1 1.926.968l2.28-2.492a5.285 5.285 0 0 0-2.066-1.245 6.8 6.8 0 0 0-3.909-.045A4.089 4.089 0 0 0 81.506 21a3.162 3.162 0 0 0 1.622 2.89c.898.444 1.836.804 2.8 1.074.4.136 1.285.405 1.285 1.13 0 .811-1.307 1.2-2.385.84a2.873 2.873 0 0 1-1.493-1.189l-2.353 2.582a6 6 0 0 0 2.21 1.431 7.493 7.493 0 0 0 2.3.381 5.477 5.477 0 0 0 3.485-1.039 3.945 3.945 0 0 0 1.511-3.262 3.073 3.073 0 0 0-1.6-2.97\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l9k0o3\",\"data-framer-name\":\"CBWT\",layoutDependency:layoutDependency,layoutId:\"Z5eVLk29x\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qns3z0\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:97,layoutDependency:layoutDependency,layoutId:\"O6nrpolMg\",svg:'<svg width=\"97\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"97\" height=\"25\"><path d=\"M96.5.5H.5v24h96V.5Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.01.512C5.523.512.595 5.215.595 12.412c0 7.198 4.928 11.901 12.413 11.901 3.907 0 7.827-1.21 10.033-4.652v3.859h13.605c6.985 0 9.425-2.725 9.425-6.4l-.002.001c0-2.433-.96-3.994-3.271-4.972v-.476c1.33-.81 2.473-1.511 2.69-3.703h5.533v15.55h7.867V7.97h5.824l2.818 15.55h10.593l1.505-9.574h.676l1.505 9.574H92.43l4.025-22.215h-7.998L86.51 14.951h-.676L83.055 1.305h-6.18l-2.75 13.646h-.676L71.476 1.305H43.311v1.449c-1.286-.878-3.243-1.449-6.146-1.449H23.042v3.863C20.82 1.728 16.87.512 13.009.512Zm10.032 10.334v3.08h-5.754c-.495 2.364-2.033 3.453-4.277 3.453-2.529 0-4.59-1.886-4.59-4.967 0-3.08 2.061-4.966 4.59-4.966 2.242 0 3.782 1.089 4.277 3.4h5.754Zm7.841-3.235v2.697h5.322c1.583 0 1.817-1.057 1.817-1.323 0-.476-.234-1.374-1.817-1.374h-5.322Zm7.244 8.515c0-.476-.259-1.429-1.817-1.429h-5.427v2.91h5.427c1.558 0 1.817-1.085 1.817-1.481Z\" fill=\"#1C1C1C\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h97v25H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14z2xa6\",\"data-framer-name\":\"UAE\",layoutDependency:layoutDependency,layoutId:\"qmUTIo09Q\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:729,intrinsicWidth:570,pixelHeight:729,pixelWidth:570,sizes:\"39.0947px\",src:\"https://framerusercontent.com/images/iBQVyBfqKBE9WUBHcP5tmi3RmV0.svg\",srcSet:\"https://framerusercontent.com/images/iBQVyBfqKBE9WUBHcP5tmi3RmV0.svg 570w\"},className:\"framer-1xigrtx\",\"data-framer-name\":\"Graphic\",layoutDependency:layoutDependency,layoutId:\"zaYfyFcF0\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ue39gz\",\"data-framer-name\":\"ELIOR\",layoutDependency:layoutDependency,layoutId:\"GXbC3cbLK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-k9f40s\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:142,layoutDependency:layoutDependency,layoutId:\"EaeSTnfaI\",svg:'<svg width=\"142\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"142\" height=\"40\"><path d=\"M141.333 0H0v40h141.333V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M39.893 6.72c0-1.493 1.174-2.453 2.88-2.453 2.454 0 2.88 1.6 2.88 2.453 0 1.493-1.066 2.453-2.88 2.453-1.706 0-2.88-.96-2.88-2.453ZM29.547 29.013V6.933c0-1.706.746-2.346 2.453-2.346h2.667v24.426h-5.12ZM0 20.053c0-5.546 5.013-9.386 12.587-9.386 6.4 0 11.946 3.2 11.946 8.64 0 .96-.106 1.813-.213 2.453H5.547c.746 3.52 4.373 4.587 8.32 4.587 3.946 0 8.32-1.174 10.133-2.134v1.814c0 2.24-5.227 3.413-10.667 3.413C6.933 29.44 0 27.2 0 20.053Zm12.48-6.4c-3.733 0-6.187 2.027-6.933 4.8h13.546c0-1.813-1.92-4.8-6.613-4.8Zm36.693 6.4c0-5.44 5.014-9.386 12.48-9.386 7.467 0 12.48 3.84 12.48 9.386 0 5.547-5.013 9.387-12.48 9.387-7.466 0-12.48-3.84-12.48-9.387Zm5.334 0c0 3.627 2.773 6.4 7.146 6.4 4.374 0 7.147-2.773 7.147-6.4 0-3.626-2.773-6.4-7.147-6.4-4.373 0-7.146 2.774-7.146 6.4Zm31.466-9.386c-2.88 0-5.653.426-8.106 1.173v17.173h2.666c1.707 0 2.454-.746 2.454-2.346V14.72c1.173-.32 2.453-.427 3.626-.427 2.134 0 4.16.427 6.187.96l.32-3.946c-2.24-.427-4.693-.64-7.147-.64ZM40.107 13.44v15.573h5.12v-17.92h-2.56c-1.707 0-2.56.64-2.56 2.347Z\" fill=\"#000\"/><path d=\"M122.56 0c2.027 0 4.053.32 6.08.853 8.533 2.347 14.08 9.067 12.267 14.934-.747 2.773-3.094 4.906-6.187 6.08 1.173-2.134 1.813-4.587 1.6-7.04-.747-8.32-9.813-14.4-20.373-13.654C117.867.427 120.107 0 122.453 0h.107Zm5.547 12.16c-.32-.853-.96-1.6-1.707-2.027 1.6.107 2.987.534 4.053 1.92 2.027 2.56 1.174 7.68-2.133 9.6-5.867 3.414-11.093-1.493-11.093-5.653a.331.331 0 0 1 .106.213c.854 2.347 3.947 3.307 6.934 2.24 2.986-1.173 4.693-3.946 3.84-6.293ZM117.12 23.893c.213 4.374 3.84 6.827 7.36 6.827 6.293 0 8.96-5.76 9.387-7.68-1.387 1.493-3.094 2.773-5.227 3.52-4.693 1.707-9.493.213-11.52-2.667Zm-10.987-7.68c-1.173 7.68 3.307 14.934 10.24 16.854-5.973.32-11.52-2.347-14.08-7.574-3.627-7.146.107-16.32 8.214-20.373 2.666-1.28 5.44-1.92 8.106-1.92h1.174c-6.72.427-12.587 5.76-13.654 13.013Zm4.054 2.134c0 4.8 2.986 8.96 7.146 10.666-2.346-2.666-3.306-6.826-2.24-10.986 1.6-6.507 7.254-10.774 12.694-9.494.053 0 .133.027.213.054.08.026.16.053.213.053-1.813-1.387-4.16-2.347-6.613-2.347-6.293 0-11.413 5.76-11.413 12.054Zm3.306 17.173c12.48 2.56 24.32-3.413 26.347-13.44 0-.213 0-.427.107-.64.32 2.027.32 4.053-.107 6.187C138.133 35.093 130.88 40 122.56 40c-1.6 0-3.2-.107-4.8-.533-4.267-1.067-7.893-3.2-10.56-6.08 1.92.96 4.053 1.706 6.293 2.133Z\" fill=\"#E3004F\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h142v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o2abv4\",\"data-framer-name\":\"GBL\",layoutDependency:layoutDependency,layoutId:\"ZWtrAIaU_\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fa3zl9\",\"data-framer-name\":\"Logo-GBL\",fill:\"black\",intrinsicHeight:204,intrinsicWidth:485,layoutDependency:layoutDependency,layoutId:\"g6LCccYBI\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 485 204\" style=\"enable-background:new 0 0 485 204\" xml:space=\"preserve\"><path style=\"fill:#bfc9d0\" d=\"M185.3 155.5V204L309 155.5z\"/><path d=\"M485.5 136V87.5L361.9 136zM76.3 86h45.2v10.5c0 8.1-16 17.2-38.9 17.2-36 0-54.8-21.8-54.8-43.2 0-26.3 23.2-44.6 56.4-44.6 22.6 0 33.1 9.2 40 15.3l4.3 3.7 20.1-18.1-3.9-3.3C135.7 15.7 117 0 82.1 0 35.1 0-.5 29.8-.5 69.4c0 45.3 42.4 69.8 82.2 69.8s68.2-17.5 68.2-41.6V60.3H76.3V86zm194.9 24.8h-57.5V81.3h57.5c21.5 0 24.5 7.1 24.5 14.7 0 6.3-2.6 14.8-24.5 14.8m-57.5-82.4h57.5c17.6 0 17.6 9.4 17.6 12.4 0 12.2-9.6 14.8-17.6 14.8h-57.5V28.4zm93.3 37c6.7-6.4 10.3-15.3 10.2-24.6 0-26.3-23-38.1-46.1-38.1h-85.9v133.8h85.9c32.1 0 52.9-15.9 52.9-40.5-.2-12.4-6.6-23.9-17-30.6m83.9 53V2.7h-29.3v127.1\" style=\"fill:#1a2b48\"/></svg>',withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({vP6AbBVx6:{itemAmount:2}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PvpaI.framer-pnvs1e, .framer-PvpaI .framer-pnvs1e { display: block; }\",\".framer-PvpaI.framer-6vwcjc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 1440px; }\",\".framer-PvpaI .framer-229hbv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PvpaI .framer-1effn-container { flex: none; height: 50px; max-width: 640px; position: relative; width: 100%; }\",\".framer-PvpaI .framer-18myte0, .framer-PvpaI .framer-1d30wnv, .framer-PvpaI .framer-14d7c0g, .framer-PvpaI .framer-4ow6m0, .framer-PvpaI .framer-1l9k0o3, .framer-PvpaI .framer-14z2xa6, .framer-PvpaI .framer-1ue39gz, .framer-PvpaI .framer-o2abv4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PvpaI .framer-1jxxpl7 { aspect-ratio: 8.202702702702704 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 100px; }\",\".framer-PvpaI .framer-fybtkm { aspect-ratio: 4.123809523809523 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 100px; }\",\".framer-PvpaI .framer-1rq8l8e { aspect-ratio: 4.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 100px; }\",\".framer-PvpaI .framer-px5g14 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PvpaI .framer-sy7we { aspect-ratio: 6.195876288659794 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 85px; }\",\".framer-PvpaI .framer-4pkq7u { aspect-ratio: 3.0851063829787235 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 100px; }\",\".framer-PvpaI .framer-qns3z0 { aspect-ratio: 3.88 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 65px; }\",\".framer-PvpaI .framer-1xigrtx { aspect-ratio: 0.7818930041152263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 39px; }\",\".framer-PvpaI .framer-k9f40s { aspect-ratio: 3.55 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 100px; }\",\".framer-PvpaI .framer-fa3zl9 { aspect-ratio: 2.377450980392157 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 65px; }\",\".framer-PvpaI.framer-v-1s4ct33.framer-6vwcjc, .framer-PvpaI.framer-v-1r9jmh5.framer-6vwcjc { width: 1200px; }\",\".framer-PvpaI.framer-v-hbyupf.framer-6vwcjc { gap: 16px; padding: 32px 24px 32px 24px; width: 390px; }\",\".framer-PvpaI.framer-v-hbyupf .framer-229hbv { white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pk1WjUREH\":{\"layout\":[\"fixed\",\"auto\"]},\"IvImUeSyC\":{\"layout\":[\"fixed\",\"auto\"]},\"vP6AbBVx6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerL8YQrDeKh=withCSS(Component,css,\"framer-PvpaI\");export default FramerL8YQrDeKh;FramerL8YQrDeKh.displayName=\"trust_and_usage\";FramerL8YQrDeKh.defaultProps={height:200,width:1440};addPropertyControls(FramerL8YQrDeKh,{variant:{options:[\"W1l6sQgaD\",\"pk1WjUREH\",\"IvImUeSyC\",\"vP6AbBVx6\"],optionTitles:[\"LARGE\",\"MEDIUM\",\"LARGE-BLUE\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerL8YQrDeKh,[{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\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL8YQrDeKh\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pk1WjUREH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IvImUeSyC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vP6AbBVx6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"200\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./L8YQrDeKh.map"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "RichTextHighlightPills229hbv", "withCodeBoundaryForOverrides", "RichText", "highlightPills", "SlideshowFonts", "getFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "SVG", "Image2", "css", "FramerL8YQrDeKh", "withCSS", "L8YQrDeKh_default", "addPropertyControls", "ControlType", "addFonts"]
}
