{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/rJf2rgJ7NDHo7kOEtx3S/yLLQLR3ZQ7ieN1PuMX3p/Am7SPtrGT.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/c3g3b0OOzaDS5K5mLBSS/vkH8Vj0OL6jRIzpdUylt/Am7SPtrGT.js", "ssg:https://framerusercontent.com/modules/c3g3b0OOzaDS5K5mLBSS/vkH8Vj0OL6jRIzpdUylt/Am7SPtrGT-0.js", "ssg:https://framerusercontent.com/modules/5DpARADeANZyvuvwfKgo/iCt97Hk7xgk2kn7aKxIG/AFuLYa_1V.js", "ssg:https://framerusercontent.com/modules/5DpARADeANZyvuvwfKgo/iCt97Hk7xgk2kn7aKxIG/AFuLYa_1V-0.js", "ssg:https://framerusercontent.com/modules/PYCEjaNVAWhRHo1iAp8f/yN8gBna7k4lmMbMMvAGm/g554CgAUH.js", "ssg:https://framerusercontent.com/modules/PYCEjaNVAWhRHo1iAp8f/yN8gBna7k4lmMbMMvAGm/g554CgAUH-0.js", "ssg:https://framerusercontent.com/modules/i3Fues4KLdJUkajpqT8D/RPTy32TwEHTy4RhwhAe5/HCwYqAi67.js", "ssg:https://framerusercontent.com/modules/i3Fues4KLdJUkajpqT8D/RPTy32TwEHTy4RhwhAe5/HCwYqAi67-0.js", "ssg:https://framerusercontent.com/modules/ciKAOWk71eh81nkTORTw/rSzFZ9QChxEeBDOtR9kv/CKqfdmLpZ.js", "ssg:https://framerusercontent.com/modules/ciKAOWk71eh81nkTORTw/rSzFZ9QChxEeBDOtR9kv/CKqfdmLpZ-0.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 isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);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(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.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(slots,(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%\"};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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"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\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vbJMOHANXGaXbRgsqrXo/V9YLWtPzX0BhcdWJbnqb/oQUPxNLl1.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/c3g3b0OOzaDS5K5mLBSS/vkH8Vj0OL6jRIzpdUylt/Am7SPtrGT.js\";import DomaineApplicationCard from\"https://framerusercontent.com/modules/5DpARADeANZyvuvwfKgo/iCt97Hk7xgk2kn7aKxIG/AFuLYa_1V.js\";const DomaineApplicationCardFonts=getFonts(DomaineApplicationCard);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"e6tpanOs7\",\"k24G4mwmW\",\"GyrkRXIH2\",\"CSvVYfdO2\"];const serializationHash=\"framer-g27L3\";const variantClassNames={CSvVYfdO2:\"framer-v-3uphuw\",e6tpanOs7:\"framer-v-kni7ym\",GyrkRXIH2:\"framer-v-yja620\",k24G4mwmW:\"framer-v-12bdkv6\"};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 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={\"av mobile\":\"CSvVYfdO2\",\"web mobile\":\"GyrkRXIH2\",AV:\"e6tpanOs7\",web:\"k24G4mwmW\"};const getProps=({cursor,height,id,title3,width,...props})=>{return{...props,JhceIrjES:title3??props.JhceIrjES??\"Solution AV pour Infrastructure\",JQ7hB7PDE:cursor??props.JQ7hB7PDE,variant:humanReadableVariantMap[props.variant]??props.variant??\"e6tpanOs7\"};};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,JhceIrjES,JQ7hB7PDE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e6tpanOs7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"k24G4mwmW\",\"GyrkRXIH2\",\"CSvVYfdO2\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"k24G4mwmW\",\"GyrkRXIH2\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"k24G4mwmW\",\"GyrkRXIH2\"].includes(baseVariant))return true;return false;};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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-kni7ym\",className,classNames),\"data-framer-name\":\"AV\",layoutDependency:layoutDependency,layoutId:\"e6tpanOs7\",ref:ref??ref1,style:{...style},...addPropertyOverrides({CSvVYfdO2:{\"data-framer-name\":\"av mobile\"},GyrkRXIH2:{\"data-framer-name\":\"web mobile\"},k24G4mwmW:{\"data-framer-name\":\"web\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19zu9vq\",\"data-framer-name\":\"2 Columns Text Image\",layoutDependency:layoutDependency,layoutId:\"HDLJ919I9\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g4a4v2\",layoutDependency:layoutDependency,layoutId:\"l_MBzyoOo\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k2w4wy\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"hAthaWVbH\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1bevml3\",\"data-styles-preset\":\"oQUPxNLl1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)))\"},children:\"Solution AV pour Infrastructure\"})}),className:\"framer-104by0e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dLgQCzY1h\",style:{\"--extracted-a0htzi\":\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:JhceIrjES,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CSvVYfdO2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1bevml3\",\"data-styles-preset\":\"oQUPxNLl1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)))\"},children:\"Solution AV pour Infrastructure\"})})},GyrkRXIH2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1bevml3\",\"data-styles-preset\":\"oQUPxNLl1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)))\"},children:\"Solution AV pour Infrastructure\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kj6p4m\",layoutDependency:layoutDependency,layoutId:\"sv3MmThfZ\",style:{borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22},children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-167bqjw-container\",\"data-framer-name\":\"AVslide\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TN_O7yi3r-container\",name:\"AVslide\",nodeId:\"TN_O7yi3r\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-f596fa91-68ac-4b6b-8ebb-2b24ae985412, rgb(171, 174, 186))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:10,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:30,showMouseControls:true},autoPlayControl:true,borderRadius:22,direction:\"top\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.75,effectsPerspective:1200,effectsRotate:0,effectsScale:.75},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:1,overflow:false},gap:22,height:\"100%\",id:\"TN_O7yi3r\",intervalControl:7,itemAmount:1,layoutId:\"TN_O7yi3r\",name:\"AVslide\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:44,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FDKHe68eP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xewju3-container\",\"data-framer-name\":\"AVloisir\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"E2_RADOiz-container\",name:\"AVloisir\",nodeId:\"E2_RADOiz\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"90.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v10\",activeLocale)??\"1080.-/12 mois\",id:\"E2_RADOiz\",iq0h8Rjbd:getLocalizedValue(\"v1\",activeLocale)??\"Faites vivre des \\xe9motions fortes aux visiteurs avec des installations audiovisuelles qui cr\\xe9ent des exp\\xe9riences inoubliables.\",jA974z8os:getLocalizedValue(\"v7\",activeLocale)??\"1.5/mois pour la modification ou l'ajout de contenu\",layoutId:\"E2_RADOiz\",M3Cju7P3f:\"3500.-\",name:\"AVloisir\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/trtK37tarzObE4U1C8BJ9hHFhXs.svg\",srcSet:\"https://framerusercontent.com/images/trtK37tarzObE4U1C8BJ9hHFhXs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/trtK37tarzObE4U1C8BJ9hHFhXs.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v5\",activeLocale)??\"Paiement s\\xe9curis\\xe9\",q17haYLIt:getLocalizedValue(\"v4\",activeLocale)??\"Produits illimit\\xe9s\",RDWiPLjFk:getLocalizedValue(\"v11\",activeLocale)??\"100/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v9\",activeLocale)??\"2520.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"70.-\",VIdvUYNg7:\"100.-\",vjZyvq4Ae:getLocalizedValue(\"v0\",activeLocale)??\"Parcs d'attractions et de loisirs\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v3\",activeLocale)??\"Pages illimit\\xe9es\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FDKHe68eP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b4gv77-container\",\"data-framer-name\":\"AVsport\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FiTTsxl4e-container\",name:\"AVsport\",nodeId:\"FiTTsxl4e\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"90.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v10\",activeLocale)??\"1080.-/12 mois\",id:\"FiTTsxl4e\",iq0h8Rjbd:getLocalizedValue(\"v13\",activeLocale)??\"Electrisez les foules avec des affichages LED, une sonorisation claire et des solutions de captation vid\\xe9o qui cr\\xe9ent une atmosph\\xe8re de comp\\xe9tition et d'excitation.\",jA974z8os:getLocalizedValue(\"v7\",activeLocale)??\"1.5/mois pour la modification ou l'ajout de contenu\",layoutId:\"FiTTsxl4e\",M3Cju7P3f:\"3500.-\",name:\"AVsport\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/fsTZuDnKuE8dbipdi0EEWOZO81M.svg\",srcSet:\"https://framerusercontent.com/images/fsTZuDnKuE8dbipdi0EEWOZO81M.svg?scale-down-to=512 512w,https://framerusercontent.com/images/fsTZuDnKuE8dbipdi0EEWOZO81M.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v5\",activeLocale)??\"Paiement s\\xe9curis\\xe9\",q17haYLIt:getLocalizedValue(\"v4\",activeLocale)??\"Produits illimit\\xe9s\",RDWiPLjFk:getLocalizedValue(\"v11\",activeLocale)??\"100/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v9\",activeLocale)??\"2520.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"70.-\",VIdvUYNg7:\"100.-\",vjZyvq4Ae:getLocalizedValue(\"v12\",activeLocale)??\"Infrastructures sportives\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks1[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v3\",activeLocale)??\"Pages illimit\\xe9es\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FDKHe68eP\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5ymi0s-container\",\"data-framer-name\":\"AVchurch\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"W0BjubGuS-container\",name:\"AVchurch\",nodeId:\"W0BjubGuS\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"90.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v10\",activeLocale)??\"1080.-/12 mois\",id:\"W0BjubGuS\",iq0h8Rjbd:getLocalizedValue(\"v15\",activeLocale)??\"Syst\\xe8mes audio et vid\\xe9o discrets et performants, favorisant l'intelligibilit\\xe9 et la lisibilit\\xe9 de votre message.\",jA974z8os:getLocalizedValue(\"v16\",activeLocale)??\"90min/mois pour la modification ou l'ajout de contenu\",layoutId:\"W0BjubGuS\",M3Cju7P3f:\"3500.-\",name:\"AVchurch\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/xxEz86Izgh8Ek4GzAqUeBlDI5k.svg\",srcSet:\"https://framerusercontent.com/images/xxEz86Izgh8Ek4GzAqUeBlDI5k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xxEz86Izgh8Ek4GzAqUeBlDI5k.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v5\",activeLocale)??\"Paiement s\\xe9curis\\xe9\",q17haYLIt:getLocalizedValue(\"v4\",activeLocale)??\"Produits illimit\\xe9s\",RDWiPLjFk:getLocalizedValue(\"v11\",activeLocale)??\"100/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v9\",activeLocale)??\"2520.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"70.-\",VIdvUYNg7:\"100.-\",vjZyvq4Ae:getLocalizedValue(\"v14\",activeLocale)??\"Lieux de cultes\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks2[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v3\",activeLocale)??\"Pages illimit\\xe9es\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FDKHe68eP\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ouaptb-container\",\"data-framer-name\":\"AVschool\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"DlWVyTjbC-container\",name:\"AVschool\",nodeId:\"DlWVyTjbC\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"225.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v22\",activeLocale)??\"270.-/12 mois\",id:\"DlWVyTjbC\",iq0h8Rjbd:getLocalizedValue(\"v18\",activeLocale)??\"Fournissez des outils p\\xe9dagogiques innovants avec des technologies audiovisuelles qui int\\xe8grent des fonctions collaboratives et interactives.\",jA974z8os:getLocalizedValue(\"v16\",activeLocale)??\"90min/mois pour la modification ou l'ajout de contenu\",layoutId:\"DlWVyTjbC\",M3Cju7P3f:\"2500.-\",name:\"AVschool\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/5iorDbEDI0mWUqbf3FZtRkZKiRA.svg\",srcSet:\"https://framerusercontent.com/images/5iorDbEDI0mWUqbf3FZtRkZKiRA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5iorDbEDI0mWUqbf3FZtRkZKiRA.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v20\",activeLocale)??\"Multilangues\",q17haYLIt:getLocalizedValue(\"v19\",activeLocale)??\"Formulaire d'inscription\",RDWiPLjFk:getLocalizedValue(\"v23\",activeLocale)??\"250/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v21\",activeLocale)??\"6300.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"175.-\",VIdvUYNg7:\"250.-\",vjZyvq4Ae:getLocalizedValue(\"v17\",activeLocale)??\"Enseignement et formation\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks3[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v3\",activeLocale)??\"Pages illimit\\xe9es\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FDKHe68eP\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l761bu-container\",\"data-framer-name\":\"AVstudio\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"IUFvo0e1w-container\",name:\"AVstudio\",nodeId:\"IUFvo0e1w\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"45.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v30\",activeLocale)??\"540.-/12 mois\",id:\"IUFvo0e1w\",iq0h8Rjbd:getLocalizedValue(\"v25\",activeLocale)??\"Cr\\xe9ez du contenu qui impactent vos spectateurs, avec des \\xe9quipements de pointe et des solutions flexibles qui offrent une libert\\xe9 cr\\xe9ative sans limites.\",jA974z8os:getLocalizedValue(\"v28\",activeLocale)??\"30min/mois pour la modification ou l'ajout de contenu\",layoutId:\"IUFvo0e1w\",M3Cju7P3f:\"500.-\",name:\"AVstudio\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/GHxuN3wShRSYdO80lXXp4Jl2lw.svg\",srcSet:\"https://framerusercontent.com/images/GHxuN3wShRSYdO80lXXp4Jl2lw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/GHxuN3wShRSYdO80lXXp4Jl2lw.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v27\",activeLocale)??\"Gallerie photos\",q17haYLIt:getLocalizedValue(\"v19\",activeLocale)??\"Formulaire d'inscription\",RDWiPLjFk:getLocalizedValue(\"v31\",activeLocale)??\"50.-/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v29\",activeLocale)??\"1440.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"40.-\",VIdvUYNg7:\"50.-\",vjZyvq4Ae:getLocalizedValue(\"v24\",activeLocale)??\"Studios TV et outside broadcast\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks4[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v26\",activeLocale)??\"Site OnePage\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FDKHe68eP\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k9wyjr-container\",\"data-framer-name\":\"AVconference\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"VftQ5hm3v-container\",name:\"AVconference\",nodeId:\"VftQ5hm3v\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"45.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v30\",activeLocale)??\"540.-/12 mois\",id:\"VftQ5hm3v\",iq0h8Rjbd:getLocalizedValue(\"v33\",activeLocale)??\"Imaginez des r\\xe9unions qui font vibrer les id\\xe9es! Nos solutions audiovisuelles cr\\xe9ent une atmosph\\xe8re de cr\\xe9ativit\\xe9 et de collaboration.\",jA974z8os:getLocalizedValue(\"v34\",activeLocale)??\"30min/mois offert pour la modification ou l'ajout de contenu\",layoutId:\"VftQ5hm3v\",M3Cju7P3f:\"500.-\",name:\"AVconference\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/ctg4JlxTL9ZvXPA3EOs8a3cZ2E.svg\",srcSet:\"https://framerusercontent.com/images/ctg4JlxTL9ZvXPA3EOs8a3cZ2E.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ctg4JlxTL9ZvXPA3EOs8a3cZ2E.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v27\",activeLocale)??\"Gallerie photos\",q17haYLIt:getLocalizedValue(\"v19\",activeLocale)??\"Formulaire d'inscription\",RDWiPLjFk:getLocalizedValue(\"v31\",activeLocale)??\"50.-/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v35\",activeLocale)??\"1440.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"40.-\",VIdvUYNg7:\"50.-\",vjZyvq4Ae:getLocalizedValue(\"v32\",activeLocale)??\"Salles de conf\\xe9rences et auditoriums\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks5[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v26\",activeLocale)??\"Site OnePage\"})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pbwznl-container\",\"data-framer-name\":\"WEBslide\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"k4Sf91Jj7-container\",name:\"WEBslide\",nodeId:\"k4Sf91Jj7\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-f596fa91-68ac-4b6b-8ebb-2b24ae985412, rgb(171, 174, 186))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:10,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:36,showMouseControls:true},autoPlayControl:true,borderRadius:22,direction:\"top\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.75,effectsPerspective:1200,effectsRotate:0,effectsScale:.75},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:1,overflow:false},gap:22,height:\"100%\",id:\"k4Sf91Jj7\",intervalControl:7,itemAmount:1,layoutId:\"k4Sf91Jj7\",name:\"WEBslide\",padding:0,paddingBottom:22,paddingLeft:22,paddingPerSide:true,paddingRight:44,paddingTop:11,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(ResolveLinks,{links:[{href:{webPageId:\"zo0Imlh4L\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w7thp9-container\",\"data-framer-name\":\"WEBwedding\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QXE92BMIa-container\",name:\"WEBwedding\",nodeId:\"QXE92BMIa\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"54.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v39\",activeLocale)??\"648.-/12 mois\",id:\"QXE92BMIa\",iq0h8Rjbd:getLocalizedValue(\"v37\",activeLocale)??\"Immortalisez votre union gr\\xe2ce \\xe0 un site \\xe9l\\xe9gant  et des photos inoubliables.\",jA974z8os:getLocalizedValue(\"v34\",activeLocale)??\"30min/mois offert pour la modification ou l'ajout de contenu\",layoutId:\"QXE92BMIa\",M3Cju7P3f:\"199.-\",name:\"WEBwedding\",O76A4DxIQ:getLocalizedValue(\"v27\",activeLocale)??\"Gallerie photos\",q17haYLIt:getLocalizedValue(\"v19\",activeLocale)??\"Formulaire d'inscription\",RDWiPLjFk:getLocalizedValue(\"v40\",activeLocale)??\"59.-/mois*\",RQ3iNttL1:\"Voir nos offres\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v38\",activeLocale)??\"1764.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"49.-\",VIdvUYNg7:\"59.-\",vjZyvq4Ae:getLocalizedValue(\"v36\",activeLocale)??\"Pack mariage: site web + shooting photo\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks6[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v26\",activeLocale)??\"Site OnePage\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ocx9es-container\",\"data-framer-name\":\"WEBstudio\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KHs3IwO9l-container\",name:\"WEBstudio\",nodeId:\"KHs3IwO9l\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"44.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v44\",activeLocale)??\"528.-/12 mois\",id:\"KHs3IwO9l\",iq0h8Rjbd:getLocalizedValue(\"v42\",activeLocale)??\"Capturez l'attention d\\xe8s le premier clic avec un site one-page \\xe0 la fois design et efficace, qui met en valeur votre identit\\xe9 et vos services pour une forte premi\\xe8re impression.\",jA974z8os:getLocalizedValue(\"v28\",activeLocale)??\"30min/mois pour la modification ou l'ajout de contenu\",layoutId:\"KHs3IwO9l\",M3Cju7P3f:\"499.-\",name:\"WEBstudio\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/jAwWRu3hEJcR4XMfcgcXqq5vDIw.svg\",srcSet:\"https://framerusercontent.com/images/jAwWRu3hEJcR4XMfcgcXqq5vDIw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/jAwWRu3hEJcR4XMfcgcXqq5vDIw.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v27\",activeLocale)??\"Gallerie photos\",q17haYLIt:getLocalizedValue(\"v19\",activeLocale)??\"Formulaire d'inscription\",RDWiPLjFk:getLocalizedValue(\"v45\",activeLocale)??\"49.-/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v43\",activeLocale)??\"1404.-/36mois\",variant:\"FOXM1kJMH\",vfWeeNH6O:\"39.-\",VIdvUYNg7:\"49.-\",vjZyvq4Ae:getLocalizedValue(\"v41\",activeLocale)??\"Site vitrine ou One-page\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v26\",activeLocale)??\"Site OnePage\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o2kkm-container\",\"data-framer-name\":\"WEBcompany\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vd6N4MG8Y-container\",name:\"WEBcompany\",nodeId:\"vd6N4MG8Y\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"199.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v49\",activeLocale)??\"2388.-/12 mois\",id:\"vd6N4MG8Y\",iq0h8Rjbd:getLocalizedValue(\"v47\",activeLocale)??\"Le professionnalisme et la clart\\xe9 sont primordiaux pour votre site d'entreprise, sp\\xe9cialement con\\xe7u pour incarner votre s\\xe9rieux et d\\xe9montrer votre expertise dans votre domaine.\",jA974z8os:getLocalizedValue(\"v16\",activeLocale)??\"90min/mois pour la modification ou l'ajout de contenu\",layoutId:\"vd6N4MG8Y\",M3Cju7P3f:\"2499.-\",name:\"WEBcompany\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/xkRzp5QKtYD8iDcxsyYfM6OochQ.svg\",srcSet:\"https://framerusercontent.com/images/xkRzp5QKtYD8iDcxsyYfM6OochQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xkRzp5QKtYD8iDcxsyYfM6OochQ.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v20\",activeLocale)??\"Multilangues\",q17haYLIt:getLocalizedValue(\"v19\",activeLocale)??\"Formulaire d'inscription\",RDWiPLjFk:getLocalizedValue(\"v50\",activeLocale)??\"219.-/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v48\",activeLocale)??\"5364.-/36mois\",variant:\"FOXM1kJMH\",vfWeeNH6O:\"149.-\",VIdvUYNg7:\"219.-\",vjZyvq4Ae:getLocalizedValue(\"v46\",activeLocale)??\"Site d'entreprise ou institutionnel\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:\"300 pages\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o92u0q-container\",\"data-framer-name\":\"WEBe-commerce\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XWayeXMrh-container\",name:\"WEBe-commerce\",nodeId:\"XWayeXMrh\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"89.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v54\",activeLocale)??\"1068.-/12 mois\",id:\"XWayeXMrh\",iq0h8Rjbd:getLocalizedValue(\"v52\",activeLocale)??\"Votre boutique en ligne, intuitive et s\\xe9curis\\xe9e, offre une exp\\xe9rience utilisateur optimale pour convertir les visites en ventes gr\\xe2ce \\xe0 une navigation et des processus d'achat simplifi\\xe9s.\",jA974z8os:getLocalizedValue(\"v16\",activeLocale)??\"90min/mois pour la modification ou l'ajout de contenu\",layoutId:\"XWayeXMrh\",M3Cju7P3f:\"3499.-\",name:\"WEBe-commerce\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/9cqbUCQNyeij86pJmTbvGF9qd0.svg\",srcSet:\"https://framerusercontent.com/images/9cqbUCQNyeij86pJmTbvGF9qd0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/9cqbUCQNyeij86pJmTbvGF9qd0.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v5\",activeLocale)??\"Paiement s\\xe9curis\\xe9\",q17haYLIt:getLocalizedValue(\"v4\",activeLocale)??\"Produits illimit\\xe9s\",RDWiPLjFk:getLocalizedValue(\"v55\",activeLocale)??\"99.-/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v53\",activeLocale)??\"2484.-/36mois\",variant:\"FOXM1kJMH\",vfWeeNH6O:\"69.-\",VIdvUYNg7:\"99.-\",vjZyvq4Ae:getLocalizedValue(\"v51\",activeLocale)??\"Site e-commerce\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v3\",activeLocale)??\"Pages illimit\\xe9es\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sNAjIaqf9\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12a2lca-container\",\"data-framer-name\":\"WEBdashboard\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q7JuySszv-container\",name:\"WEBdashboard\",nodeId:\"Q7JuySszv\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"90.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v10\",activeLocale)??\"1080.-/12 mois\",id:\"Q7JuySszv\",iq0h8Rjbd:getLocalizedValue(\"v56\",activeLocale)??\"Visualisez et g\\xe9rez vos donn\\xe9es en temps r\\xe9el avec un tableau de bord personnalis\\xe9, garantissant un suivi pr\\xe9cis.\",jA974z8os:getLocalizedValue(\"v57\",activeLocale)??\"1.5/mois pour la modification ou l'ajout de contenu\",layoutId:\"Q7JuySszv\",M3Cju7P3f:\"3500.-\",name:\"WEBdashboard\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/YIiad1F4EKCKiLpbUr0cGS5aX8.svg\",srcSet:\"https://framerusercontent.com/images/YIiad1F4EKCKiLpbUr0cGS5aX8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/YIiad1F4EKCKiLpbUr0cGS5aX8.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v5\",activeLocale)??\"Paiement s\\xe9curis\\xe9\",q17haYLIt:getLocalizedValue(\"v4\",activeLocale)??\"Produits illimit\\xe9s\",RDWiPLjFk:getLocalizedValue(\"v11\",activeLocale)??\"100/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v58\",activeLocale)??\"2520.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"70.-\",VIdvUYNg7:\"100.-\",vjZyvq4Ae:\"Dashboard\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks7[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v3\",activeLocale)??\"Pages illimit\\xe9es\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sNAjIaqf9\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"489px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-el09jz-container\",\"data-framer-name\":\"WEBstreaming\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hqqFPl1Z3-container\",name:\"WEBstreaming\",nodeId:\"hqqFPl1Z3\",rendersWithMotion:true,scopeId:\"Am7SPtrGT\",children:/*#__PURE__*/_jsx(DomaineApplicationCard,{aSug0UYh2:getLocalizedValue(\"v2\",activeLocale)??\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:\"90.-\",gC3Di_3Wm:getLocalizedValue(\"v8\",activeLocale)??\"Int\\xe9gration du contenu fournit par le client\",height:\"100%\",hkwYurm6q:getLocalizedValue(\"v10\",activeLocale)??\"1080.-/12 mois\",id:\"hqqFPl1Z3\",iq0h8Rjbd:getLocalizedValue(\"v60\",activeLocale)??\"Partagez du contenu vid\\xe9o ou audio en continu avec une plateforme robuste et flexible, offrant une exp\\xe9rience utilisateur fluide et une large port\\xe9e.\",jA974z8os:getLocalizedValue(\"v57\",activeLocale)??\"1.5/mois pour la modification ou l'ajout de contenu\",layoutId:\"hqqFPl1Z3\",M3Cju7P3f:\"3500.-\",name:\"WEBstreaming\",nKB3jPEAS:addImageAlt({src:\"https://framerusercontent.com/images/faz9rOCOxyxvWdho4PmMsB4fyE.svg\",srcSet:\"https://framerusercontent.com/images/faz9rOCOxyxvWdho4PmMsB4fyE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/faz9rOCOxyxvWdho4PmMsB4fyE.svg 1024w\"},\"\"),O76A4DxIQ:getLocalizedValue(\"v5\",activeLocale)??\"Paiement s\\xe9curis\\xe9\",q17haYLIt:getLocalizedValue(\"v4\",activeLocale)??\"Produits illimit\\xe9s\",RDWiPLjFk:getLocalizedValue(\"v11\",activeLocale)??\"100/mois*\",RQ3iNttL1:\"Demander une offre\",style:{width:\"100%\"},Ta4fNQewI:getLocalizedValue(\"v9\",activeLocale)??\"2520.-/36mois\",variant:\"K1uUgWNFb\",vfWeeNH6O:\"70.-\",VIdvUYNg7:\"100.-\",vjZyvq4Ae:getLocalizedValue(\"v59\",activeLocale)??\"Plateforme de streaming\",vxgj6oGLf:JQ7hB7PDE,width:\"100%\",wPHWluvTp:resolvedLinks8[0],YEQsZTQNk:getLocalizedValue(\"v6\",activeLocale)??\"Maintenance & optimisation\",Yo4gFJgVK:getLocalizedValue(\"v3\",activeLocale)??\"Pages illimit\\xe9es\"})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({GyrkRXIH2:{paddingBottom:0,paddingLeft:0,paddingTop:0},k24G4mwmW:{arrowOptions:{arrowFill:\"var(--token-f596fa91-68ac-4b6b-8ebb-2b24ae985412, rgb(171, 174, 186))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:10,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:30,showMouseControls:true},paddingBottom:0,paddingLeft:0,paddingTop:0}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g27L3.framer-uagba, .framer-g27L3 .framer-uagba { display: block; }\",\".framer-g27L3.framer-kni7ym { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-g27L3 .framer-19zu9vq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g27L3 .framer-1g4a4v2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px 22px 22px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-g27L3 .framer-k2w4wy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-g27L3 .framer-104by0e { -webkit-user-select: none; flex: none; height: auto; overflow: visible; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g27L3 .framer-1kj6p4m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g27L3 .framer-167bqjw-container, .framer-g27L3 .framer-pbwznl-container { flex: none; height: 850px; position: relative; width: 800px; }\",\".framer-g27L3 .framer-xewju3-container, .framer-g27L3 .framer-1b4gv77-container, .framer-g27L3 .framer-5ymi0s-container, .framer-g27L3 .framer-1ouaptb-container, .framer-g27L3 .framer-l761bu-container, .framer-g27L3 .framer-k9wyjr-container, .framer-g27L3 .framer-1w7thp9-container, .framer-g27L3 .framer-1ocx9es-container, .framer-g27L3 .framer-o2kkm-container, .framer-g27L3 .framer-o92u0q-container, .framer-g27L3 .framer-12a2lca-container, .framer-g27L3 .framer-el09jz-container { height: auto; position: relative; width: 489px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-g27L3.framer-kni7ym, .framer-g27L3 .framer-19zu9vq, .framer-g27L3 .framer-1g4a4v2, .framer-g27L3 .framer-k2w4wy, .framer-g27L3 .framer-1kj6p4m { gap: 0px; } .framer-g27L3.framer-kni7ym > *, .framer-g27L3 .framer-19zu9vq > *, .framer-g27L3 .framer-k2w4wy > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-g27L3.framer-kni7ym > :first-child, .framer-g27L3 .framer-19zu9vq > :first-child, .framer-g27L3 .framer-k2w4wy > :first-child, .framer-g27L3 .framer-1kj6p4m > :first-child { margin-top: 0px; } .framer-g27L3.framer-kni7ym > :last-child, .framer-g27L3 .framer-19zu9vq > :last-child, .framer-g27L3 .framer-k2w4wy > :last-child, .framer-g27L3 .framer-1kj6p4m > :last-child { margin-bottom: 0px; } .framer-g27L3 .framer-1g4a4v2 > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-g27L3 .framer-1g4a4v2 > :first-child { margin-left: 0px; } .framer-g27L3 .framer-1g4a4v2 > :last-child { margin-right: 0px; } .framer-g27L3 .framer-1kj6p4m > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } }\",\".framer-g27L3.framer-v-12bdkv6.framer-kni7ym { justify-content: flex-start; }\",\".framer-g27L3.framer-v-yja620.framer-kni7ym, .framer-g27L3.framer-v-3uphuw.framer-kni7ym { width: 500px; }\",\".framer-g27L3.framer-v-yja620 .framer-pbwznl-container { height: 900px; width: 100%; }\",\".framer-g27L3.framer-v-3uphuw .framer-167bqjw-container { width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 850\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"k24G4mwmW\":{\"layout\":[\"fixed\",\"auto\"]},\"GyrkRXIH2\":{\"layout\":[\"fixed\",\"auto\"]},\"CSvVYfdO2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"JhceIrjES\":\"title3\",\"JQ7hB7PDE\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAm7SPtrGT=withCSS(Component,css,\"framer-g27L3\");export default FramerAm7SPtrGT;FramerAm7SPtrGT.displayName=\"domaineApplicationSlide\";FramerAm7SPtrGT.defaultProps={height:850,width:1440};addPropertyControls(FramerAm7SPtrGT,{variant:{options:[\"e6tpanOs7\",\"k24G4mwmW\",\"GyrkRXIH2\",\"CSvVYfdO2\"],optionTitles:[\"AV\",\"web\",\"web mobile\",\"av mobile\"],title:\"Variant\",type:ControlType.Enum},JhceIrjES:{defaultValue:\"Solution AV pour Infrastructure\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},JQ7hB7PDE:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerAm7SPtrGT,[{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\"}]},...DomaineApplicationCardFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAm7SPtrGT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k24G4mwmW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GyrkRXIH2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CSvVYfdO2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"850\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerVariables\":\"{\\\"JhceIrjES\\\":\\\"title3\\\",\\\"JQ7hB7PDE\\\":\\\"cursor\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\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;const hasChildren=Children.count(slots)>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 slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight: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(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[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     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0: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 isVisible=usePageVisibility();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===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0: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===null||size===void 0?void 0: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     * */let 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(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.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:slots===null||slots===void 0?void 0:slots.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<(slots===null||slots===void 0?void 0:slots.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=dotsBlurStyle.MozBackdropFilter=`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,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1: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),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?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: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\",{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\",{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){var _child_props,_child_props1;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===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0: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.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);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=child.props)===null||_child_props===void 0?void 0:_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},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.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;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let 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\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (915daba)\nimport*as localizedValues from\"./Am7SPtrGT-0.js\";const valuesByLocaleId={UTFfW6rvB:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Amusement and leisure parks\";export const v1=\"Create powerful emotions for visitors with audiovisual installations that create unforgettable experiences.\";export const v2=\"Domain name + hosting\";export const v3=\"Unlimited pages\";export const v4=\"Unlimited products\";export const v5=\"Secure Payment\";export const v6=\"Maintenance & optimization\";export const v7=\"1.5/month for content modification or addition\";export const v8=\"Integration of the content provided by the client\";export const v9=\"2520.-/36months\";export const v10=\"1080.-/12 months\";export const v11=\"100/month*\";export const v12=\"Sports facilities\";export const v13=\"Electrify the crowds with LED displays, clear sound, and video capture solutions that create an atmosphere of competition and excitement.\";export const v14=\"Places of worship\";export const v15=\"Discreet and powerful audio and video systems, promoting the intelligibility and readability of your message.\";export const v16=\"90 minutes/month for content modification or addition\";export const v17=\"Education and training\";export const v18=\"Provide innovative educational tools with audiovisual technologies that integrate collaborative and interactive features.\";export const v19=\"Registration form\";export const v20=\"Multilingual\";export const v21=\"6300.-/36months\";export const v22=\"270.-/12 months\";export const v23=\"250/month*\";export const v24=\"TV studios and outside broadcast\";export const v25=\"Create content that impacts your audience, with cutting-edge equipment and flexible solutions that offer limitless creative freedom.\";export const v26=\"OnePage Site\";export const v27=\"Photo gallery\";export const v28=\"30 minutes/month for modifying or adding content\";export const v29=\"1440.-/36 months\";export const v30=\"540.-/12 months\";export const v31=\"50.-/month*\";export const v32=\"Conference rooms and auditoriums\";export const v33=\"Imagine meetings that spark ideas! Our audiovisual solutions create an atmosphere of creativity and collaboration.\";export const v34=\"30 minutes per month offered for content modification or addition\";export const v35=\"1440.-/36months\";export const v36=\"Wedding package: website + photo shoot\";export const v37=\"Immortalize your union with an elegant website and unforgettable photos.\";export const v38=\"1764.-/36months\";export const v39=\"648.-/12 months\";export const v40=\"59.-/month*\";export const v41=\"Showcase website or One-page\";export const v42=\"Capture attention from the first click with a one-page website that is both stylish and effective, showcasing your identity and services for a strong first impression.\";export const v43=\"1404.-/36months\";export const v44=\"528.-/12 months\";export const v45=\"49.-/month*\";export const v46=\"Corporate or institutional website\";export const v47=\"Professionalism and clarity are essential for your company website, specially designed to embody your seriousness and demonstrate your expertise in your field.\";export const v48=\"5364.-/36 months\";export const v49=\"2388.-/12 months\";export const v50=\"CHF 219 per month*\";export const v51=\"E-commerce site\";export const v52=\"Your intuitive and secure online store offers an optimal user experience to convert visits into sales through simplified navigation and purchasing processes.\";export const v53=\"2484.-/36months\";export const v54=\"1068.-/12 months\";export const v55=\"99.-/month*\";export const v56=\"Visualize and manage your data in real time with a customized dashboard, ensuring accurate tracking.\";export const v57=\"1.5h/month for content modification or addition\";export const v58=\"2520.-/36 months\";export const v59=\"Streaming platform\";export const v60=\"Share video or audio content seamlessly with a robust and flexible platform, offering a smooth user experience and broad reach.\";\nexport const __FramerMetadata__ = {\"exports\":{\"v41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v49\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v50\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v52\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v54\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v48\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v59\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v46\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v55\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v60\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v43\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v44\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v51\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v53\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v57\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v56\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v58\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v47\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v31\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v45\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0b5b7f5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vbJMOHANXGaXbRgsqrXo/V9YLWtPzX0BhcdWJbnqb/oQUPxNLl1.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gk8yDe9OaC34eMSiVYJr/QEKiPAmbSpNs19fiQBCT/xj_Llkh1w.js\";import*as localizedValues from\"./AFuLYa_1V-0.js\";import BtnIcon2 from\"https://framerusercontent.com/modules/7JTLWTex4qd2PWF6nFtP/C7YtYDfcXVVqKQHX6VPk/eR7wc51he.js\";import PriceCard from\"https://framerusercontent.com/modules/PYCEjaNVAWhRHo1iAp8f/yN8gBna7k4lmMbMMvAGm/g554CgAUH.js\";import BtnText2 from\"https://framerusercontent.com/modules/ojxxoi2JhuBErl0YBnuP/I04lzj0cxd4zqhgNtLyk/wYEF83i4O.js\";const BtnText2Fonts=getFonts(BtnText2);const BtnIcon2Fonts=getFonts(BtnIcon2);const PriceCardFonts=getFonts(PriceCard);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"FOXM1kJMH\",\"YrLhy3lIR\",\"K1uUgWNFb\"];const serializationHash=\"framer-EENX3\";const variantClassNames={FOXM1kJMH:\"framer-v-1ou8cla\",K1uUgWNFb:\"framer-v-13aa53n\",YrLhy3lIR:\"framer-v-74uhke\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={UTFfW6rvB:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:5,stiffness:300,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2};const transition3={damping:50,delay:0,mass:5,stiffness:300,type:\"spring\"};const animation2={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition3};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"FOXM1kJMH\",\"Variant 2\":\"YrLhy3lIR\",\"Variant 3\":\"K1uUgWNFb\"};const getProps=({amount1,amount12,amount36,btnText,cursor,height,id,image,link,price1,price12,price36,priceDev1,pro1,pro2,pro3,pro4,pro5,pro6,pro7,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_ref12,_humanReadableVariantMap_props_variant,_ref13,_ref14,_ref15,_ref16,_ref17,_ref18;return{...props,aSug0UYh2:(_ref=pro1!==null&&pro1!==void 0?pro1:props.aSug0UYh2)!==null&&_ref!==void 0?_ref:\"Nom de domaine + h\\xe9bergement\",DO9_BT1MQ:(_ref1=price12!==null&&price12!==void 0?price12:props.DO9_BT1MQ)!==null&&_ref1!==void 0?_ref1:\"45.-\",gC3Di_3Wm:(_ref2=pro7!==null&&pro7!==void 0?pro7:props.gC3Di_3Wm)!==null&&_ref2!==void 0?_ref2:\"Int\\xe9gration du contenu fournit par le client\",hkwYurm6q:(_ref3=amount12!==null&&amount12!==void 0?amount12:props.hkwYurm6q)!==null&&_ref3!==void 0?_ref3:\"500.- + 540.-/12 mois\",iq0h8Rjbd:(_ref4=text!==null&&text!==void 0?text:props.iq0h8Rjbd)!==null&&_ref4!==void 0?_ref4:\"Immortalisez votre union gr\\xe2ce \\xe0 un site \\xe9l\\xe9gant qui regroupe toutes les informations essentielles pour vos invit\\xe9s : invitations, programme, galerie de photos, liste de cadeaux, et bien plus encore\",jA974z8os:(_ref5=pro6!==null&&pro6!==void 0?pro6:props.jA974z8os)!==null&&_ref5!==void 0?_ref5:\"1h/mois offert pour la modification ou l'ajout de contenu\",M3Cju7P3f:(_ref6=priceDev1!==null&&priceDev1!==void 0?priceDev1:props.M3Cju7P3f)!==null&&_ref6!==void 0?_ref6:\"500.-\",nKB3jPEAS:(_ref7=image!==null&&image!==void 0?image:props.nKB3jPEAS)!==null&&_ref7!==void 0?_ref7:{src:\"https://framerusercontent.com/images/q0jJgoPev8Fqu183uF1HZnXN8Yc.svg\",srcSet:\"https://framerusercontent.com/images/q0jJgoPev8Fqu183uF1HZnXN8Yc.svg?scale-down-to=512 512w,https://framerusercontent.com/images/q0jJgoPev8Fqu183uF1HZnXN8Yc.svg 1024w\"},O76A4DxIQ:(_ref8=pro4!==null&&pro4!==void 0?pro4:props.O76A4DxIQ)!==null&&_ref8!==void 0?_ref8:\"Gallerie photos\",q17haYLIt:(_ref9=pro3!==null&&pro3!==void 0?pro3:props.q17haYLIt)!==null&&_ref9!==void 0?_ref9:\"Formulaire d'inscription\",RDWiPLjFk:(_ref10=amount1!==null&&amount1!==void 0?amount1:props.RDWiPLjFk)!==null&&_ref10!==void 0?_ref10:\"500.- + 50/mois*\",RQ3iNttL1:(_ref11=btnText!==null&&btnText!==void 0?btnText:props.RQ3iNttL1)!==null&&_ref11!==void 0?_ref11:\"Demander une offre\",Ta4fNQewI:(_ref12=amount36!==null&&amount36!==void 0?amount36:props.Ta4fNQewI)!==null&&_ref12!==void 0?_ref12:\"500.- + 1440.-/36mois\",variant:(_ref13=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref13!==void 0?_ref13:\"FOXM1kJMH\",vfWeeNH6O:(_ref14=price36!==null&&price36!==void 0?price36:props.vfWeeNH6O)!==null&&_ref14!==void 0?_ref14:\"40.-\",VIdvUYNg7:(_ref15=price1!==null&&price1!==void 0?price1:props.VIdvUYNg7)!==null&&_ref15!==void 0?_ref15:\"50.-\",vjZyvq4Ae:(_ref16=title!==null&&title!==void 0?title:props.vjZyvq4Ae)!==null&&_ref16!==void 0?_ref16:\"Site de mariage\",vxgj6oGLf:cursor!==null&&cursor!==void 0?cursor:props.vxgj6oGLf,wPHWluvTp:link!==null&&link!==void 0?link:props.wPHWluvTp,YEQsZTQNk:(_ref17=pro5!==null&&pro5!==void 0?pro5:props.YEQsZTQNk)!==null&&_ref17!==void 0?_ref17:\"Maintenance & optimisation\",Yo4gFJgVK:(_ref18=pro2!==null&&pro2!==void 0?pro2:props.Yo4gFJgVK)!==null&&_ref18!==void 0?_ref18:\"Site OnePage\"};};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,vjZyvq4Ae,iq0h8Rjbd,M3Cju7P3f,vfWeeNH6O,DO9_BT1MQ,VIdvUYNg7,aSug0UYh2,Yo4gFJgVK,q17haYLIt,O76A4DxIQ,YEQsZTQNk,jA974z8os,gC3Di_3Wm,Ta4fNQewI,hkwYurm6q,RDWiPLjFk,nKB3jPEAS,wPHWluvTp,vxgj6oGLf,RQ3iNttL1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FOXM1kJMH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const syMduEDNT4td968=activeVariantCallback(async(...args)=>{setVariant(\"YrLhy3lIR\");});const onMouseEnter1q6rq0w=activeVariantCallback(async(...args)=>{setVariant(\"imAfkxAGR\");});const syMduEDNThh0y8j=activeVariantCallback(async(...args)=>{setVariant(\"FOXM1kJMH\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"YrLhy3lIR\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"K1uUgWNFb\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"K1uUgWNFb\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"YrLhy3lIR\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ou8cla\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FOXM1kJMH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({K1uUgWNFb:{\"data-framer-name\":\"Variant 3\"},YrLhy3lIR:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jccc79\",\"data-framer-name\":\"wedding\",layoutDependency:layoutDependency,layoutId:\"DEvVLclw6\",style:{rotateY:360,transformPerspective:1200},variants:{YrLhy3lIR:{rotateY:180}},children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ojjv1c\",\"data-framer-name\":\"info\",layoutDependency:layoutDependency,layoutId:\"fX22hkV3e\",style:{backgroundColor:\"var(--token-0b87bf9e-08df-454b-bb9b-03778ed87e82, rgba(227, 228, 232, 0.5))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dgt4jx\",layoutDependency:layoutDependency,layoutId:\"FuCQrR9yQ\",style:{backgroundColor:\"var(--token-9b5c0c69-f701-4ae5-ba88-8ce4db2259f4, rgba(227, 228, 232, 0))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fit\",sizes:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) - 44px, 400px), 1px)`,...toResponsiveImage(nKB3jPEAS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-iqch8a\",layoutDependency:layoutDependency,layoutId:\"hiLw2kdIA\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c0zgzs\",layoutDependency:layoutDependency,layoutId:\"cY7xBpZlF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1bevml3\",\"data-styles-preset\":\"oQUPxNLl1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)))\"},children:\"Site de mariage\"})}),className:\"framer-1r91pad\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xl0S7_dgW\",style:{\"--extracted-1eung3n\":\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vjZyvq4Ae,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tj1vyk\",\"data-styles-preset\":\"xj_Llkh1w\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Immortalisez votre union gr\\xe2ce \\xe0 un site \\xe9l\\xe9gant qui regroupe toutes les informations essentielles pour vos invit\\xe9s : invitations, programme, galerie de photos, liste de cadeaux, et bien plus encore\"})}),className:\"framer-j5if7y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FCOJRcu0X\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:iq0h8Rjbd,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zhzi4k\",layoutDependency:layoutDependency,layoutId:\"bqrywgdq7\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({K1uUgWNFb:{width:`min(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) - 44px, 1px), 256px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-143emjm-container\",\"data-framer-cursor\":vxgj6oGLf,layoutDependency:layoutDependency,layoutId:\"WAO9mg_FL-container\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(BtnText2,{dlzW0IyFP:\"var(--token-797d0fb3-e90e-4630-af68-5c3f00c82ac5, rgb(159, 255, 0))\",H5TLNEZum:\"var(--token-9837ce69-5ba9-463a-af16-1b1c3d5d053e, rgb(31, 51, 0))\",hCz0ujRVn:\"var(--token-797d0fb3-e90e-4630-af68-5c3f00c82ac5, rgb(159, 255, 0))\",height:\"100%\",id:\"WAO9mg_FL\",iPZmeNJrf:RQ3iNttL1,layoutId:\"WAO9mg_FL\",style:{maxWidth:\"100%\",width:\"100%\"},UC0iJ1nnH:14,variant:\"YQx3oNeTJ\",vQMFOqEdK:wPHWluvTp,width:\"100%\",YgEvwJCMj:\"var(--token-9837ce69-5ba9-463a-af16-1b1c3d5d053e, rgb(31, 51, 0))\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13qamwz-container\",\"data-framer-cursor\":vxgj6oGLf,layoutDependency:layoutDependency,layoutId:\"ukYChamJF-container\",whileHover:animation2,whileTap:animation1,children:/*#__PURE__*/_jsx(BtnIcon2,{dlzW0IyFP:\"var(--token-797d0fb3-e90e-4630-af68-5c3f00c82ac5, rgb(159, 255, 0))\",height:\"100%\",I6V6PzogS:\"Coins\",id:\"ukYChamJF\",layoutId:\"ukYChamJF\",nJz_e9Yfe:\"var(--token-797d0fb3-e90e-4630-af68-5c3f00c82ac5, rgb(159, 255, 0))\",pt7PzNtuU:{borderBottomWidth:3,borderColor:'var(--token-797d0fb3-e90e-4630-af68-5c3f00c82ac5, rgb(159, 255, 0)) /* {\"name\":\"secondary - 500\"} */',borderLeftWidth:5,borderRightWidth:5,borderStyle:\"solid\",borderTopWidth:3},PVmnbAkt8:\"var(--token-9837ce69-5ba9-463a-af16-1b1c3d5d053e, rgb(31, 51, 0))\",syMduEDNT:syMduEDNT4td968,tEgFAtPNP:\"var(--token-9837ce69-5ba9-463a-af16-1b1c3d5d053e, rgb(31, 51, 0))\",variant:\"hAnt2FGxJ\",width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16zpif5\",\"data-framer-name\":\"price\",layoutDependency:layoutDependency,layoutId:\"qo3qnjB5l\",style:{borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,rotateY:180,transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({YrLhy3lIR:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v98140-container\",layoutDependency:layoutDependency,layoutId:\"blwLDV1L9-container\",children:/*#__PURE__*/_jsx(PriceCard,{A01fuFY57:O76A4DxIQ,BpxhWnzII:{borderColor:'var(--token-0b87bf9e-08df-454b-bb9b-03778ed87e82, rgba(227, 228, 232, 0.5)) /* {\"name\":\"gray - 50 - 50%\"} */',borderStyle:\"solid\",borderWidth:1},CHSBUHY5E:VIdvUYNg7,EXS5DDcl_:Ta4fNQewI,f_iINw1zE:hkwYurm6q,gZ8gF4xqU:RDWiPLjFk,height:\"100%\",HLlT75DSb:aSug0UYh2,id:\"blwLDV1L9\",JFcSZgxDi:M3Cju7P3f,KUHK_ICTA:q17haYLIt,layoutId:\"blwLDV1L9\",lqW9LvDEv:vxgj6oGLf,MVkyZUQc5:vfWeeNH6O,RowOiZkTa:gC3Di_3Wm,style:{width:\"100%\"},u6XjlXe3W:DO9_BT1MQ,variant:\"Ze8ezQ22a\",WC692_UiA:Yo4gFJgVK,width:\"100%\",WNSp7PRHr:jA974z8os,yBRlZx_KP:YEQsZTQNk,YSFB00kiQ:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Exemple de prix\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vifatv\",layoutDependency:layoutDependency,layoutId:\"vnLpsQ4hm\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-134eskr\",\"data-framer-name\":\"btnIcon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"il09EyG9b\",onMouseEnter:onMouseEnter1q6rq0w,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3givzn\",\"data-border\":true,\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"QflLh8ypo\",style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"var(--token-382df4bc-0ea2-477b-ab7c-3d43aefe10bc, rgb(104, 25, 230))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,WebkitBackdropFilter:\"blur(5px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wijfpx\",\"data-border\":true,\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"uAUvB_2fn\",style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"var(--token-382df4bc-0ea2-477b-ab7c-3d43aefe10bc, rgb(104, 25, 230))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,opacity:.5,WebkitBackdropFilter:\"blur(5px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fh428m\",\"data-framer-name\":\"main\",layoutDependency:layoutDependency,layoutId:\"eYYzcKtOg\",style:{backgroundColor:\"var(--token-382df4bc-0ea2-477b-ab7c-3d43aefe10bc, rgb(104, 25, 230))\",borderBottomLeftRadius:11,borderBottomRightRadius:11,borderTopLeftRadius:11,borderTopRightRadius:11},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dg0y1i-container\",layoutDependency:layoutDependency,layoutId:\"ihrr_u6Rg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-274159a3-f650-4199-8f21-8e7a2bc7edcc, rgb(240, 232, 252))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowLeft\",id:\"ihrr_u6Rg\",layoutId:\"ihrr_u6Rg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ojyb5d-container\",\"data-framer-cursor\":vxgj6oGLf,layoutDependency:layoutDependency,layoutId:\"eBupyPjKJ-container\",whileHover:animation2,whileTap:animation1,children:/*#__PURE__*/_jsx(BtnIcon2,{dlzW0IyFP:\"var(--token-797d0fb3-e90e-4630-af68-5c3f00c82ac5, rgb(159, 255, 0))\",height:\"100%\",I6V6PzogS:\"CaretLeft\",id:\"eBupyPjKJ\",layoutId:\"eBupyPjKJ\",nJz_e9Yfe:\"var(--token-797d0fb3-e90e-4630-af68-5c3f00c82ac5, rgb(159, 255, 0))\",pt7PzNtuU:{borderBottomWidth:3,borderColor:'var(--token-797d0fb3-e90e-4630-af68-5c3f00c82ac5, rgb(159, 255, 0)) /* {\"name\":\"secondary - 500\"} */',borderLeftWidth:5,borderRightWidth:5,borderStyle:\"solid\",borderTopWidth:3},PVmnbAkt8:\"var(--token-9837ce69-5ba9-463a-af16-1b1c3d5d053e, rgb(31, 51, 0))\",syMduEDNT:syMduEDNThh0y8j,tEgFAtPNP:\"var(--token-9837ce69-5ba9-463a-af16-1b1c3d5d053e, rgb(31, 51, 0))\",variant:\"hAnt2FGxJ\",width:\"100%\"})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EENX3.framer-v1zixt, .framer-EENX3 .framer-v1zixt { display: block; }\",\".framer-EENX3.framer-1ou8cla { 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: 600px; }\",\".framer-EENX3 .framer-jccc79 { 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-EENX3 .framer-1ojjv1c { align-content: center; align-items: center; backface-visibility: hidden; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 22px; position: relative; width: 100%; z-index: 1; }\",\".framer-EENX3 .framer-dgt4jx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 287px; justify-content: center; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EENX3 .framer-iqch8a { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-EENX3 .framer-c0zgzs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EENX3 .framer-1r91pad, .framer-EENX3 .framer-j5if7y { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EENX3 .framer-zhzi4k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EENX3 .framer-143emjm-container { flex: 1 0 0px; height: auto; max-width: 256px; position: relative; width: 1px; }\",\".framer-EENX3 .framer-13qamwz-container, .framer-EENX3 .framer-ojyb5d-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-EENX3 .framer-16zpif5 { align-content: center; align-items: center; backface-visibility: hidden; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-EENX3 .framer-v98140-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-EENX3 .framer-1vifatv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 11px; top: 11px; width: 45px; z-index: 1; }\",\".framer-EENX3 .framer-134eskr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-EENX3 .framer-3givzn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 95%; justify-content: center; left: calc(49.50000000000002% - 94.82758620689656% / 2); overflow: visible; padding: 5px 10px 5px 10px; position: absolute; top: calc(50.00000000000002% - 95% / 2); width: 95%; z-index: 1; }\",\".framer-EENX3 .framer-wijfpx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 95%; justify-content: center; left: calc(49.50000000000002% - 95% / 2); overflow: visible; padding: 5px 10px 5px 10px; position: absolute; top: calc(50.00000000000002% - 95% / 2); width: 95%; z-index: 1; }\",\".framer-EENX3 .framer-fh428m { 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: 10px; position: relative; width: min-content; z-index: 1; }\",\".framer-EENX3 .framer-1dg0y1i-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EENX3.framer-1ou8cla, .framer-EENX3 .framer-jccc79, .framer-EENX3 .framer-1ojjv1c, .framer-EENX3 .framer-dgt4jx, .framer-EENX3 .framer-c0zgzs, .framer-EENX3 .framer-zhzi4k, .framer-EENX3 .framer-16zpif5, .framer-EENX3 .framer-1vifatv, .framer-EENX3 .framer-134eskr, .framer-EENX3 .framer-3givzn, .framer-EENX3 .framer-wijfpx, .framer-EENX3 .framer-fh428m { gap: 0px; } .framer-EENX3.framer-1ou8cla > *, .framer-EENX3 .framer-dgt4jx > *, .framer-EENX3 .framer-zhzi4k > *, .framer-EENX3 .framer-134eskr > *, .framer-EENX3 .framer-3givzn > *, .framer-EENX3 .framer-wijfpx > *, .framer-EENX3 .framer-fh428m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EENX3.framer-1ou8cla > :first-child, .framer-EENX3 .framer-dgt4jx > :first-child, .framer-EENX3 .framer-zhzi4k > :first-child, .framer-EENX3 .framer-134eskr > :first-child, .framer-EENX3 .framer-3givzn > :first-child, .framer-EENX3 .framer-wijfpx > :first-child, .framer-EENX3 .framer-fh428m > :first-child { margin-left: 0px; } .framer-EENX3.framer-1ou8cla > :last-child, .framer-EENX3 .framer-dgt4jx > :last-child, .framer-EENX3 .framer-zhzi4k > :last-child, .framer-EENX3 .framer-134eskr > :last-child, .framer-EENX3 .framer-3givzn > :last-child, .framer-EENX3 .framer-wijfpx > :last-child, .framer-EENX3 .framer-fh428m > :last-child { margin-right: 0px; } .framer-EENX3 .framer-jccc79 > *, .framer-EENX3 .framer-c0zgzs > *, .framer-EENX3 .framer-1vifatv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-EENX3 .framer-jccc79 > :first-child, .framer-EENX3 .framer-1ojjv1c > :first-child, .framer-EENX3 .framer-c0zgzs > :first-child, .framer-EENX3 .framer-16zpif5 > :first-child, .framer-EENX3 .framer-1vifatv > :first-child { margin-top: 0px; } .framer-EENX3 .framer-jccc79 > :last-child, .framer-EENX3 .framer-1ojjv1c > :last-child, .framer-EENX3 .framer-c0zgzs > :last-child, .framer-EENX3 .framer-16zpif5 > :last-child, .framer-EENX3 .framer-1vifatv > :last-child { margin-bottom: 0px; } .framer-EENX3 .framer-1ojjv1c > *, .framer-EENX3 .framer-16zpif5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-EENX3.framer-v-74uhke .framer-jccc79 { min-height: 751px; }\",\".framer-EENX3.framer-v-74uhke .framer-v98140-container, .framer-EENX3.framer-v-74uhke .framer-ojyb5d-container { order: 1; }\",\".framer-EENX3.framer-v-74uhke .framer-1vifatv { order: 0; }\",\".framer-EENX3.framer-v-13aa53n.framer-1ou8cla { width: 300px; }\",\".framer-EENX3.framer-v-13aa53n .framer-zhzi4k { min-height: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-EENX3[data-border=\"true\"]::after, .framer-EENX3 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 556\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YrLhy3lIR\":{\"layout\":[\"fixed\",\"auto\"]},\"K1uUgWNFb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vjZyvq4Ae\":\"title\",\"iq0h8Rjbd\":\"text\",\"M3Cju7P3f\":\"priceDev1\",\"vfWeeNH6O\":\"price36\",\"DO9_BT1MQ\":\"price12\",\"VIdvUYNg7\":\"price1\",\"aSug0UYh2\":\"pro1\",\"Yo4gFJgVK\":\"pro2\",\"q17haYLIt\":\"pro3\",\"O76A4DxIQ\":\"pro4\",\"YEQsZTQNk\":\"pro5\",\"jA974z8os\":\"pro6\",\"gC3Di_3Wm\":\"pro7\",\"Ta4fNQewI\":\"amount36\",\"hkwYurm6q\":\"amount12\",\"RDWiPLjFk\":\"amount1\",\"nKB3jPEAS\":\"image\",\"wPHWluvTp\":\"link\",\"vxgj6oGLf\":\"cursor\",\"RQ3iNttL1\":\"btnText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAFuLYa_1V=withCSS(Component,css,\"framer-EENX3\");export default FramerAFuLYa_1V;FramerAFuLYa_1V.displayName=\"domaineApplicationCard\";FramerAFuLYa_1V.defaultProps={height:556,width:600};addPropertyControls(FramerAFuLYa_1V,{variant:{options:[\"FOXM1kJMH\",\"YrLhy3lIR\",\"K1uUgWNFb\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},vjZyvq4Ae:{defaultValue:\"Site de mariage\",displayTextArea:false,title:\"Title\",type:ControlType.String},iq0h8Rjbd:{defaultValue:\"Immortalisez votre union gr\\xe2ce \\xe0 un site \\xe9l\\xe9gant qui regroupe toutes les informations essentielles pour vos invit\\xe9s : invitations, programme, galerie de photos, liste de cadeaux, et bien plus encore\",displayTextArea:false,title:\"Text\",type:ControlType.String},M3Cju7P3f:{defaultValue:\"500.-\",displayTextArea:false,title:\"Price Dev 1\",type:ControlType.String},vfWeeNH6O:{defaultValue:\"40.-\",displayTextArea:false,title:\"Price 36\",type:ControlType.String},DO9_BT1MQ:{defaultValue:\"45.-\",displayTextArea:false,title:\"Price 12\",type:ControlType.String},VIdvUYNg7:{defaultValue:\"50.-\",displayTextArea:false,title:\"Price 1\",type:ControlType.String},aSug0UYh2:{defaultValue:\"Nom de domaine + h\\xe9bergement\",displayTextArea:false,title:\"Pro 1\",type:ControlType.String},Yo4gFJgVK:{defaultValue:\"Site OnePage\",displayTextArea:false,title:\"Pro 2\",type:ControlType.String},q17haYLIt:{defaultValue:\"Formulaire d'inscription\",displayTextArea:false,title:\"Pro 3\",type:ControlType.String},O76A4DxIQ:{defaultValue:\"Gallerie photos\",displayTextArea:false,title:\"Pro 4\",type:ControlType.String},YEQsZTQNk:{defaultValue:\"Maintenance & optimisation\",displayTextArea:false,title:\"Pro 5\",type:ControlType.String},jA974z8os:{defaultValue:\"1h/mois offert pour la modification ou l'ajout de contenu\",displayTextArea:false,title:\"Pro 6\",type:ControlType.String},gC3Di_3Wm:{defaultValue:\"Int\\xe9gration du contenu fournit par le client\",displayTextArea:false,title:\"Pro 7\",type:ControlType.String},Ta4fNQewI:{defaultValue:\"500.- + 1440.-/36mois\",displayTextArea:false,title:\"Amount 36\",type:ControlType.String},hkwYurm6q:{defaultValue:\"500.- + 540.-/12 mois\",displayTextArea:false,title:\"Amount 12\",type:ControlType.String},RDWiPLjFk:{defaultValue:\"500.- + 50/mois*\",displayTextArea:false,title:\"Amount 1\",type:ControlType.String},nKB3jPEAS:{__defaultAssetReference:\"data:framer/asset-reference,q0jJgoPev8Fqu183uF1HZnXN8Yc.svg?originalFilename=web-page-wedding.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},wPHWluvTp:{title:\"Link\",type:ControlType.Link},vxgj6oGLf:{title:\"Cursor\",type:ControlType.CustomCursor},RQ3iNttL1:{defaultValue:\"Demander une offre\",displayTextArea:false,title:\"btn text\",type:ControlType.String}});addFonts(FramerAFuLYa_1V,[{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\"}]},...BtnText2Fonts,...BtnIcon2Fonts,...PriceCardFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAFuLYa_1V\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YrLhy3lIR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K1uUgWNFb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"vjZyvq4Ae\\\":\\\"title\\\",\\\"iq0h8Rjbd\\\":\\\"text\\\",\\\"M3Cju7P3f\\\":\\\"priceDev1\\\",\\\"vfWeeNH6O\\\":\\\"price36\\\",\\\"DO9_BT1MQ\\\":\\\"price12\\\",\\\"VIdvUYNg7\\\":\\\"price1\\\",\\\"aSug0UYh2\\\":\\\"pro1\\\",\\\"Yo4gFJgVK\\\":\\\"pro2\\\",\\\"q17haYLIt\\\":\\\"pro3\\\",\\\"O76A4DxIQ\\\":\\\"pro4\\\",\\\"YEQsZTQNk\\\":\\\"pro5\\\",\\\"jA974z8os\\\":\\\"pro6\\\",\\\"gC3Di_3Wm\\\":\\\"pro7\\\",\\\"Ta4fNQewI\\\":\\\"amount36\\\",\\\"hkwYurm6q\\\":\\\"amount12\\\",\\\"RDWiPLjFk\\\":\\\"amount1\\\",\\\"nKB3jPEAS\\\":\\\"image\\\",\\\"wPHWluvTp\\\":\\\"link\\\",\\\"vxgj6oGLf\\\":\\\"cursor\\\",\\\"RQ3iNttL1\\\":\\\"btnText\\\"}\",\"framerIntrinsicHeight\":\"556\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AFuLYa_1V.map", "export const v0=\"Sample price\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cb8fb34)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./g554CgAUH-0.js\";const cycleOrder=[\"Ze8ezQ22a\",\"R_0bIT0kr\",\"nzCEnPovG\"];const serializationHash=\"framer-Ne4Mq\";const variantClassNames={nzCEnPovG:\"framer-v-1tzdwdg\",R_0bIT0kr:\"framer-v-1s7j3o2\",Ze8ezQ22a:\"framer-v-t89aoo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={UTFfW6rvB:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:50,delay:0,mass:5,stiffness:200,type:\"spring\"};const transition2={damping:50,delay:0,mass:5,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2,y:-5};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1 mois\":\"nzCEnPovG\",\"12 mois\":\"R_0bIT0kr\",\"36 mois\":\"Ze8ezQ22a\"};const getProps=({amount1,amount12,amount36,border,cursor,height,id,price1,price12,price36,priceDev1,pro1,pro2,pro3,pro4,pro5,pro6,pro7,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_humanReadableVariantMap_props_variant,_ref12,_ref13,_ref14,_ref15,_ref16;return{...props,A01fuFY57:(_ref=pro4!==null&&pro4!==void 0?pro4:props.A01fuFY57)!==null&&_ref!==void 0?_ref:\"Gallerie photos\",BpxhWnzII:(_ref1=border!==null&&border!==void 0?border:props.BpxhWnzII)!==null&&_ref1!==void 0?_ref1:{borderColor:'var(--token-0b87bf9e-08df-454b-bb9b-03778ed87e82, rgba(227, 228, 232, 0.5)) /* {\"name\":\"gray - 50 - 50%\"} */',borderStyle:\"solid\",borderWidth:1},CHSBUHY5E:(_ref2=price1!==null&&price1!==void 0?price1:props.CHSBUHY5E)!==null&&_ref2!==void 0?_ref2:\"50.-\",EXS5DDcl_:(_ref3=amount36!==null&&amount36!==void 0?amount36:props.EXS5DDcl_)!==null&&_ref3!==void 0?_ref3:\"500.- + 1440.-/36mois\",f_iINw1zE:(_ref4=amount12!==null&&amount12!==void 0?amount12:props.f_iINw1zE)!==null&&_ref4!==void 0?_ref4:\"500.- + 540.-/12 mois\",gZ8gF4xqU:(_ref5=amount1!==null&&amount1!==void 0?amount1:props.gZ8gF4xqU)!==null&&_ref5!==void 0?_ref5:\"500.- + 50/mois*\",HLlT75DSb:(_ref6=pro1!==null&&pro1!==void 0?pro1:props.HLlT75DSb)!==null&&_ref6!==void 0?_ref6:\"Nom de domaine + h\\xe9bergement\",JFcSZgxDi:(_ref7=priceDev1!==null&&priceDev1!==void 0?priceDev1:props.JFcSZgxDi)!==null&&_ref7!==void 0?_ref7:\"500.-\",KUHK_ICTA:(_ref8=pro3!==null&&pro3!==void 0?pro3:props.KUHK_ICTA)!==null&&_ref8!==void 0?_ref8:\"Formulaire d'inscription\",lqW9LvDEv:cursor!==null&&cursor!==void 0?cursor:props.lqW9LvDEv,MVkyZUQc5:(_ref9=price36!==null&&price36!==void 0?price36:props.MVkyZUQc5)!==null&&_ref9!==void 0?_ref9:\"40.-\",RowOiZkTa:(_ref10=pro7!==null&&pro7!==void 0?pro7:props.RowOiZkTa)!==null&&_ref10!==void 0?_ref10:\"Int\\xe9gration du contenu fournit par le client\",u6XjlXe3W:(_ref11=price12!==null&&price12!==void 0?price12:props.u6XjlXe3W)!==null&&_ref11!==void 0?_ref11:\"45.-\",variant:(_ref12=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref12!==void 0?_ref12:\"Ze8ezQ22a\",WC692_UiA:(_ref13=pro2!==null&&pro2!==void 0?pro2:props.WC692_UiA)!==null&&_ref13!==void 0?_ref13:\"Site OnePage\",WNSp7PRHr:(_ref14=pro6!==null&&pro6!==void 0?pro6:props.WNSp7PRHr)!==null&&_ref14!==void 0?_ref14:\"1h/mois offert pour la modification ou l'ajout de contenu\",yBRlZx_KP:(_ref15=pro5!==null&&pro5!==void 0?pro5:props.yBRlZx_KP)!==null&&_ref15!==void 0?_ref15:\"Maintenance & optimisation\",YSFB00kiQ:(_ref16=title!==null&&title!==void 0?title:props.YSFB00kiQ)!==null&&_ref16!==void 0?_ref16:\"Site de mariage\"};};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,YSFB00kiQ,JFcSZgxDi,MVkyZUQc5,u6XjlXe3W,CHSBUHY5E,HLlT75DSb,WC692_UiA,KUHK_ICTA,A01fuFY57,yBRlZx_KP,WNSp7PRHr,RowOiZkTa,EXS5DDcl_,f_iINw1zE,gZ8gF4xqU,BpxhWnzII,lqW9LvDEv,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ze8ezQ22a\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1bwpp7f=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Ze8ezQ22a\"),100);});const onTap1gabmw5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"R_0bIT0kr\"),100);});const onTap7ykjtq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nzCEnPovG\"),100);});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"nzCEnPovG\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"nzCEnPovG\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _BpxhWnzII_borderBottomWidth,_BpxhWnzII_borderLeftWidth,_BpxhWnzII_borderRightWidth,_BpxhWnzII_borderTopWidth,_getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-t89aoo\",className,classNames),\"data-border\":true,\"data-framer-name\":\"36 mois\",layoutDependency:layoutDependency,layoutId:\"Ze8ezQ22a\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":`${(_BpxhWnzII_borderBottomWidth=BpxhWnzII.borderBottomWidth)!==null&&_BpxhWnzII_borderBottomWidth!==void 0?_BpxhWnzII_borderBottomWidth:BpxhWnzII.borderWidth}px`,\"--border-color\":BpxhWnzII.borderColor,\"--border-left-width\":`${(_BpxhWnzII_borderLeftWidth=BpxhWnzII.borderLeftWidth)!==null&&_BpxhWnzII_borderLeftWidth!==void 0?_BpxhWnzII_borderLeftWidth:BpxhWnzII.borderWidth}px`,\"--border-right-width\":`${(_BpxhWnzII_borderRightWidth=BpxhWnzII.borderRightWidth)!==null&&_BpxhWnzII_borderRightWidth!==void 0?_BpxhWnzII_borderRightWidth:BpxhWnzII.borderWidth}px`,\"--border-style\":BpxhWnzII.borderStyle,\"--border-top-width\":`${(_BpxhWnzII_borderTopWidth=BpxhWnzII.borderTopWidth)!==null&&_BpxhWnzII_borderTopWidth!==void 0?_BpxhWnzII_borderTopWidth:BpxhWnzII.borderWidth}px`,backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-0b87bf9e-08df-454b-bb9b-03778ed87e82, rgba(227, 228, 232, 0.5))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({nzCEnPovG:{\"data-framer-name\":\"1 mois\"},R_0bIT0kr:{\"data-framer-name\":\"12 mois\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Site de mariage\"})}),className:\"framer-15z4d40\",fonts:[\"GF;Manrope-800\"],layoutDependency:layoutDependency,layoutId:\"AHjsxc2Ea\",style:{\"--extracted-1eung3n\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:YSFB00kiQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fae3bu\",layoutDependency:layoutDependency,layoutId:\"p4g6xSfK1\",style:{borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ax8hm5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qZGII0cUQ\",onTap:onTap1bwpp7f,style:{backgroundColor:\"var(--token-9f509270-bd69-43ac-bc0d-513dd63d91e9, rgb(199, 201, 209))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"},variants:{nzCEnPovG:{backgroundColor:\"var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244))\"},R_0bIT0kr:{backgroundColor:\"var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244))\"}},whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"36 mois\"})}),className:\"framer-3trrl1\",\"data-framer-cursor\":lqW9LvDEv,fonts:[\"GF;Manrope-800\"],layoutDependency:layoutDependency,layoutId:\"asK8tJy8D\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({nzCEnPovG:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"36 mois\"})}),fonts:[\"GF;Manrope-600\"]},R_0bIT0kr:{children:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"36 mois\"})}),fonts:[\"GF;Manrope-600\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n3jrmh\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"msT7SYun8\",onTap:onTap1gabmw5,style:{backgroundColor:\"var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"},variants:{R_0bIT0kr:{backgroundColor:\"var(--token-9f509270-bd69-43ac-bc0d-513dd63d91e9, rgb(199, 201, 209))\"}},whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"12 mois\"})}),className:\"framer-23flq6\",\"data-framer-cursor\":lqW9LvDEv,fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"R4hSWUvnG\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({R_0bIT0kr:{children:(_getLocalizedValue4=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"12 mois\"})}),fonts:[\"GF;Manrope-800\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1euhc5c\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BxddL3zDz\",onTap:onTap7ykjtq,style:{backgroundColor:\"var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"},variants:{nzCEnPovG:{backgroundColor:\"var(--token-9f509270-bd69-43ac-bc0d-513dd63d91e9, rgb(199, 201, 209))\"}},whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"1 mois\"})}),className:\"framer-my5jad\",\"data-framer-cursor\":lqW9LvDEv,fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"P6DTxYJRI\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({nzCEnPovG:{children:(_getLocalizedValue6=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"1 mois\"})}),fonts:[\"GF;Manrope-800\"]}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nyobr3\",layoutDependency:layoutDependency,layoutId:\"R9qTT4zUm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ppn4wj\",layoutDependency:layoutDependency,layoutId:\"ycraQ_X7O\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ikmou0\",layoutDependency:layoutDependency,layoutId:\"jqUesUwNO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)))\"},children:\"500.-\"})}),className:\"framer-kmr9gx\",fonts:[\"GF;Manrope-700\"],layoutDependency:layoutDependency,layoutId:\"tTVvomSCt\",style:{\"--extracted-r6o4lv\":\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:JFcSZgxDi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"d\\xe9veloppement initial\"})}),className:\"framer-kwebcf\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"fS0z3HHnp\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cnhu2h\",layoutDependency:layoutDependency,layoutId:\"sWhYkxR27\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS0yMDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230)))\"},children:\"+\"})}),className:\"framer-1u7accm\",fonts:[\"GF;Manrope-200\"],layoutDependency:layoutDependency,layoutId:\"laFp8FjF0\",style:{\"--extracted-r6o4lv\":\"var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lmp9d2\",layoutDependency:layoutDependency,layoutId:\"xPesEShp4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4z3hnn\",layoutDependency:layoutDependency,layoutId:\"vSesRvcw7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)))\"},children:\"40.-\"})}),className:\"framer-1eid6cn\",fonts:[\"GF;Manrope-700\"],layoutDependency:layoutDependency,layoutId:\"syt8b6e6H\",style:{\"--extracted-r6o4lv\":\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:MVkyZUQc5,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nzCEnPovG:{text:CHSBUHY5E},R_0bIT0kr:{text:u6XjlXe3W}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"/mois\"})}),className:\"framer-3miae\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"RYptDB5HO\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230)))\"},children:\"30% \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230)))\"},children:\"de rabais\"})]}),className:\"framer-8ret6r\",fonts:[\"GF;Manrope-700\"],layoutDependency:layoutDependency,layoutId:\"ajw_x1jTM\",style:{\"--extracted-2gxw0f\":\"var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230))\",\"--extracted-r6o4lv\":\"var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mpqx9f\",layoutDependency:layoutDependency,layoutId:\"oWT2QQPJz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS0yMDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5608b585-6e6d-465b-99c4-910e8c26a476, rgb(69, 72, 84)))\"},children:\"500.- + 1440.-/36mois\"})}),className:\"framer-irau76\",fonts:[\"GF;Manrope-200\"],layoutDependency:layoutDependency,layoutId:\"BL6s0FJtR\",style:{\"--extracted-r6o4lv\":\"var(--token-5608b585-6e6d-465b-99c4-910e8c26a476, rgb(69, 72, 84))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:EXS5DDcl_,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({nzCEnPovG:{text:gZ8gF4xqU,verticalAlignment:\"bottom\"},R_0bIT0kr:{text:f_iINw1zE}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS0yMDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5608b585-6e6d-465b-99c4-910e8c26a476, rgb(69, 72, 84)))\"},children:\"*12 mois de contrat minimum\"})}),className:\"framer-1dc523w\",fonts:[\"GF;Manrope-200\"],layoutDependency:layoutDependency,layoutId:\"kd4qaG43d\",style:{\"--extracted-r6o4lv\":\"var(--token-5608b585-6e6d-465b-99c4-910e8c26a476, rgb(69, 72, 84))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-104frbt\",layoutDependency:layoutDependency,layoutId:\"FQuYWAeGP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ktez5\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"pcGxny2cv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-iosy1p\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RYZVSW4P6\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)) /* {&quot;name&quot;:&quot;gray - 900&quot;} */\"></path></svg>',svgContentId:12429995956,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Nom de domaine + h\\xe9bergement\"})}),className:\"framer-1qoz9o0\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"b6dYvsibh\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:HLlT75DSb,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qg3fxv\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"aky4rBemb\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10cb8a5\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DWDkcjXJL\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)) /* {&quot;name&quot;:&quot;gray - 900&quot;} */\"></path></svg>',svgContentId:12429995956,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Site OnePage\"})}),className:\"framer-sw8en6\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"r8t88uC5h\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:WC692_UiA,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-147ihhh\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"KvPmgVEXv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wj268o\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UlUYGZOV8\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)) /* {&quot;name&quot;:&quot;gray - 900&quot;} */\"></path></svg>',svgContentId:12429995956,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Site OnePage\"})}),className:\"framer-1nw7xw7\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"cfAdl6Y2k\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:RowOiZkTa,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ag4xh8\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"sa4X16iNo\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3g6x9j\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"EMYT3Ijod\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)) /* {&quot;name&quot;:&quot;gray - 900&quot;} */\"></path></svg>',svgContentId:12429995956,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Formulaire d'inscription\"})}),className:\"framer-3rxgs6\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"oID6mHIyx\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:KUHK_ICTA,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7j97cn\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"PS95jOsH3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3akhcm\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"X13pal9kj\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)) /* {&quot;name&quot;:&quot;gray - 900&quot;} */\"></path></svg>',svgContentId:12429995956,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Gallerie photos\"})}),className:\"framer-1dj1ums\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"Lm46kLgif\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:A01fuFY57,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i2rv03\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"ju9mKfRzd\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6lg26b\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UVQ8RiP69\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)) /* {&quot;name&quot;:&quot;gray - 900&quot;} */\"></path></svg>',svgContentId:12429995956,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Gallerie photos\"})}),className:\"framer-1cjjyen\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"BuGRX4W8A\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:yBRlZx_KP,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nkiokj\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"bgyZREpR6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eo4ul2\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"O9Me9Z7Wo\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)) /* {&quot;name&quot;:&quot;gray - 900&quot;} */\"></path></svg>',svgContentId:12429995956,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"1h/mois offert pour la modification ou l'ajout de contenu\"})}),className:\"framer-1fdnb19\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"YbCF7SNlr\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:WNSp7PRHr,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ne4Mq.framer-ld2c2g, .framer-Ne4Mq .framer-ld2c2g { display: block; }\",\".framer-Ne4Mq.framer-t89aoo { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 66px 22px 22px 22px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ne4Mq .framer-15z4d40 { -webkit-user-select: none; flex: none; height: auto; position: relative; text-wrap: balance; user-select: none; width: 100%; }\",\".framer-Ne4Mq .framer-1fae3bu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: 25px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ne4Mq .framer-1ax8hm5, .framer-Ne4Mq .framer-1n3jrmh, .framer-Ne4Mq .framer-1euhc5c { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ne4Mq .framer-3trrl1, .framer-Ne4Mq .framer-23flq6, .framer-Ne4Mq .framer-my5jad { -webkit-user-select: none; flex: 1 0 0px; height: 100%; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ne4Mq .framer-nyobr3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ne4Mq .framer-ppn4wj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ne4Mq .framer-ikmou0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ne4Mq .framer-kmr9gx, .framer-Ne4Mq .framer-1u7accm, .framer-Ne4Mq .framer-1eid6cn { -webkit-user-select: none; flex: none; height: 48px; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Ne4Mq .framer-kwebcf, .framer-Ne4Mq .framer-3miae { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Ne4Mq .framer-1cnhu2h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ne4Mq .framer-1lmp9d2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ne4Mq .framer-4z3hnn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 77px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ne4Mq .framer-8ret6r { -webkit-user-select: none; align-self: stretch; flex: none; height: auto; position: relative; text-wrap: balance; user-select: none; width: auto; }\",\".framer-Ne4Mq .framer-1mpqx9f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ne4Mq .framer-irau76, .framer-Ne4Mq .framer-1qoz9o0, .framer-Ne4Mq .framer-sw8en6, .framer-Ne4Mq .framer-1nw7xw7, .framer-Ne4Mq .framer-3rxgs6, .framer-Ne4Mq .framer-1dj1ums, .framer-Ne4Mq .framer-1cjjyen, .framer-Ne4Mq .framer-1fdnb19 { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; text-wrap: balance; user-select: none; width: 1px; }\",\".framer-Ne4Mq .framer-1dc523w { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ne4Mq .framer-104frbt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-Ne4Mq .framer-12ktez5, .framer-Ne4Mq .framer-qg3fxv, .framer-Ne4Mq .framer-147ihhh, .framer-Ne4Mq .framer-ag4xh8, .framer-Ne4Mq .framer-7j97cn, .framer-Ne4Mq .framer-1i2rv03, .framer-Ne4Mq .framer-nkiokj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ne4Mq .framer-iosy1p, .framer-Ne4Mq .framer-10cb8a5, .framer-Ne4Mq .framer-1wj268o, .framer-Ne4Mq .framer-3g6x9j, .framer-Ne4Mq .framer-3akhcm, .framer-Ne4Mq .framer-6lg26b, .framer-Ne4Mq .framer-eo4ul2 { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ne4Mq.framer-t89aoo, .framer-Ne4Mq .framer-1fae3bu, .framer-Ne4Mq .framer-1ax8hm5, .framer-Ne4Mq .framer-1n3jrmh, .framer-Ne4Mq .framer-1euhc5c, .framer-Ne4Mq .framer-nyobr3, .framer-Ne4Mq .framer-ppn4wj, .framer-Ne4Mq .framer-ikmou0, .framer-Ne4Mq .framer-1cnhu2h, .framer-Ne4Mq .framer-1lmp9d2, .framer-Ne4Mq .framer-4z3hnn, .framer-Ne4Mq .framer-1mpqx9f, .framer-Ne4Mq .framer-104frbt, .framer-Ne4Mq .framer-12ktez5, .framer-Ne4Mq .framer-qg3fxv, .framer-Ne4Mq .framer-147ihhh, .framer-Ne4Mq .framer-ag4xh8, .framer-Ne4Mq .framer-7j97cn, .framer-Ne4Mq .framer-1i2rv03, .framer-Ne4Mq .framer-nkiokj { gap: 0px; } .framer-Ne4Mq.framer-t89aoo > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-Ne4Mq.framer-t89aoo > :first-child, .framer-Ne4Mq .framer-nyobr3 > :first-child, .framer-Ne4Mq .framer-ikmou0 > :first-child, .framer-Ne4Mq .framer-4z3hnn > :first-child, .framer-Ne4Mq .framer-104frbt > :first-child { margin-top: 0px; } .framer-Ne4Mq.framer-t89aoo > :last-child, .framer-Ne4Mq .framer-nyobr3 > :last-child, .framer-Ne4Mq .framer-ikmou0 > :last-child, .framer-Ne4Mq .framer-4z3hnn > :last-child, .framer-Ne4Mq .framer-104frbt > :last-child { margin-bottom: 0px; } .framer-Ne4Mq .framer-1fae3bu > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-Ne4Mq .framer-1fae3bu > :first-child, .framer-Ne4Mq .framer-1ax8hm5 > :first-child, .framer-Ne4Mq .framer-1n3jrmh > :first-child, .framer-Ne4Mq .framer-1euhc5c > :first-child, .framer-Ne4Mq .framer-ppn4wj > :first-child, .framer-Ne4Mq .framer-1cnhu2h > :first-child, .framer-Ne4Mq .framer-1lmp9d2 > :first-child, .framer-Ne4Mq .framer-1mpqx9f > :first-child, .framer-Ne4Mq .framer-12ktez5 > :first-child, .framer-Ne4Mq .framer-qg3fxv > :first-child, .framer-Ne4Mq .framer-147ihhh > :first-child, .framer-Ne4Mq .framer-ag4xh8 > :first-child, .framer-Ne4Mq .framer-7j97cn > :first-child, .framer-Ne4Mq .framer-1i2rv03 > :first-child, .framer-Ne4Mq .framer-nkiokj > :first-child { margin-left: 0px; } .framer-Ne4Mq .framer-1fae3bu > :last-child, .framer-Ne4Mq .framer-1ax8hm5 > :last-child, .framer-Ne4Mq .framer-1n3jrmh > :last-child, .framer-Ne4Mq .framer-1euhc5c > :last-child, .framer-Ne4Mq .framer-ppn4wj > :last-child, .framer-Ne4Mq .framer-1cnhu2h > :last-child, .framer-Ne4Mq .framer-1lmp9d2 > :last-child, .framer-Ne4Mq .framer-1mpqx9f > :last-child, .framer-Ne4Mq .framer-12ktez5 > :last-child, .framer-Ne4Mq .framer-qg3fxv > :last-child, .framer-Ne4Mq .framer-147ihhh > :last-child, .framer-Ne4Mq .framer-ag4xh8 > :last-child, .framer-Ne4Mq .framer-7j97cn > :last-child, .framer-Ne4Mq .framer-1i2rv03 > :last-child, .framer-Ne4Mq .framer-nkiokj > :last-child { margin-right: 0px; } .framer-Ne4Mq .framer-1ax8hm5 > *, .framer-Ne4Mq .framer-1n3jrmh > *, .framer-Ne4Mq .framer-1euhc5c > *, .framer-Ne4Mq .framer-12ktez5 > *, .framer-Ne4Mq .framer-qg3fxv > *, .framer-Ne4Mq .framer-147ihhh > *, .framer-Ne4Mq .framer-ag4xh8 > *, .framer-Ne4Mq .framer-7j97cn > *, .framer-Ne4Mq .framer-1i2rv03 > *, .framer-Ne4Mq .framer-nkiokj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ne4Mq .framer-nyobr3 > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-Ne4Mq .framer-ppn4wj > *, .framer-Ne4Mq .framer-1cnhu2h > *, .framer-Ne4Mq .framer-1mpqx9f > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Ne4Mq .framer-ikmou0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Ne4Mq .framer-1lmp9d2 > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-Ne4Mq .framer-4z3hnn > *, .framer-Ne4Mq .framer-104frbt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Ne4Mq.framer-v-1tzdwdg .framer-1mpqx9f { flex-direction: column; gap: 11px; }\",\".framer-Ne4Mq.framer-v-1tzdwdg .framer-irau76 { flex: none; height: 33px; width: 100%; }\",\".framer-Ne4Mq.framer-v-1tzdwdg .framer-1dc523w { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ne4Mq.framer-v-1tzdwdg .framer-1mpqx9f { gap: 0px; } .framer-Ne4Mq.framer-v-1tzdwdg .framer-1mpqx9f > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-Ne4Mq.framer-v-1tzdwdg .framer-1mpqx9f > :first-child { margin-top: 0px; } .framer-Ne4Mq.framer-v-1tzdwdg .framer-1mpqx9f > :last-child { margin-bottom: 0px; } }\",'.framer-Ne4Mq[data-border=\"true\"]::after, .framer-Ne4Mq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 741\n * @framerIntrinsicWidth 370\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"R_0bIT0kr\":{\"layout\":[\"fixed\",\"auto\"]},\"nzCEnPovG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YSFB00kiQ\":\"title\",\"JFcSZgxDi\":\"priceDev1\",\"MVkyZUQc5\":\"price36\",\"u6XjlXe3W\":\"price12\",\"CHSBUHY5E\":\"price1\",\"HLlT75DSb\":\"pro1\",\"WC692_UiA\":\"pro2\",\"KUHK_ICTA\":\"pro3\",\"A01fuFY57\":\"pro4\",\"yBRlZx_KP\":\"pro5\",\"WNSp7PRHr\":\"pro6\",\"RowOiZkTa\":\"pro7\",\"EXS5DDcl_\":\"amount36\",\"f_iINw1zE\":\"amount12\",\"gZ8gF4xqU\":\"amount1\",\"BpxhWnzII\":\"border\",\"lqW9LvDEv\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg554CgAUH=withCSS(Component,css,\"framer-Ne4Mq\");export default Framerg554CgAUH;Framerg554CgAUH.displayName=\"priceCard\";Framerg554CgAUH.defaultProps={height:741,width:370};addPropertyControls(Framerg554CgAUH,{variant:{options:[\"Ze8ezQ22a\",\"R_0bIT0kr\",\"nzCEnPovG\"],optionTitles:[\"36 mois\",\"12 mois\",\"1 mois\"],title:\"Variant\",type:ControlType.Enum},YSFB00kiQ:{defaultValue:\"Site de mariage\",displayTextArea:false,title:\"Title\",type:ControlType.String},JFcSZgxDi:{defaultValue:\"500.-\",displayTextArea:false,title:\"PriceDev1\",type:ControlType.String},MVkyZUQc5:{defaultValue:\"40.-\",displayTextArea:false,title:\"Price36\",type:ControlType.String},u6XjlXe3W:{defaultValue:\"45.-\",displayTextArea:false,title:\"Price12\",type:ControlType.String},CHSBUHY5E:{defaultValue:\"50.-\",displayTextArea:false,title:\"Price1\",type:ControlType.String},HLlT75DSb:{defaultValue:\"Nom de domaine + h\\xe9bergement\",displayTextArea:false,title:\"Pro1\",type:ControlType.String},WC692_UiA:{defaultValue:\"Site OnePage\",displayTextArea:false,title:\"Pro2\",type:ControlType.String},KUHK_ICTA:{defaultValue:\"Formulaire d'inscription\",displayTextArea:false,title:\"Pro3\",type:ControlType.String},A01fuFY57:{defaultValue:\"Gallerie photos\",displayTextArea:false,title:\"Pro4\",type:ControlType.String},yBRlZx_KP:{defaultValue:\"Maintenance & optimisation\",displayTextArea:false,title:\"Pro5\",type:ControlType.String},WNSp7PRHr:{defaultValue:\"1h/mois offert pour la modification ou l'ajout de contenu\",displayTextArea:false,title:\"Pro6\",type:ControlType.String},RowOiZkTa:{defaultValue:\"Int\\xe9gration du contenu fournit par le client\",displayTextArea:false,title:\"Pro7\",type:ControlType.String},EXS5DDcl_:{defaultValue:\"500.- + 1440.-/36mois\",displayTextArea:false,title:\"Amount36\",type:ControlType.String},f_iINw1zE:{defaultValue:\"500.- + 540.-/12 mois\",displayTextArea:false,title:\"Amount12\",type:ControlType.String},gZ8gF4xqU:{defaultValue:\"500.- + 50/mois*\",displayTextArea:false,title:\"Amount1\",type:ControlType.String},BpxhWnzII:{defaultValue:{borderColor:'var(--token-0b87bf9e-08df-454b-bb9b-03778ed87e82, rgba(227, 228, 232, 0.5)) /* {\"name\":\"gray - 50 - 50%\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border},lqW9LvDEv:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(Framerg554CgAUH,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_A87jxeN7B.woff2\",weight:\"200\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg554CgAUH\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"370\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R_0bIT0kr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nzCEnPovG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"YSFB00kiQ\\\":\\\"title\\\",\\\"JFcSZgxDi\\\":\\\"priceDev1\\\",\\\"MVkyZUQc5\\\":\\\"price36\\\",\\\"u6XjlXe3W\\\":\\\"price12\\\",\\\"CHSBUHY5E\\\":\\\"price1\\\",\\\"HLlT75DSb\\\":\\\"pro1\\\",\\\"WC692_UiA\\\":\\\"pro2\\\",\\\"KUHK_ICTA\\\":\\\"pro3\\\",\\\"A01fuFY57\\\":\\\"pro4\\\",\\\"yBRlZx_KP\\\":\\\"pro5\\\",\\\"WNSp7PRHr\\\":\\\"pro6\\\",\\\"RowOiZkTa\\\":\\\"pro7\\\",\\\"EXS5DDcl_\\\":\\\"amount36\\\",\\\"f_iINw1zE\\\":\\\"amount12\\\",\\\"gZ8gF4xqU\\\":\\\"amount1\\\",\\\"BpxhWnzII\\\":\\\"border\\\",\\\"lqW9LvDEv\\\":\\\"cursor\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"741\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g554CgAUH.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"36 months\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"36 months\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"12 months\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"12 months\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"1 month\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"1 month\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"initial development\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"/month\"})});export const v8=/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230)))\"},children:\"30% off\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230)))\"},children:\"discount\"})]});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS0yMDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5608b585-6e6d-465b-99c4-910e8c26a476, rgb(69, 72, 84)))\"},children:\"*12 months minimum contract\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7cbec57)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as localizedValues from\"./HCwYqAi67-0.js\";const PhosphorFonts=getFonts(Phosphor);const RichTextWithFX=withFX(RichText);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"iI9v1WysJ\",\"kpr1rUOpt\",\"GIArVxOAb\"];const serializationHash=\"framer-Tfp6k\";const variantClassNames={GIArVxOAb:\"framer-v-1eea09h\",iI9v1WysJ:\"framer-v-1oety55\",kpr1rUOpt:\"framer-v-1htgr47\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={UTFfW6rvB:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"No Border\":\"GIArVxOAb\",Highlight:\"kpr1rUOpt\",Standard:\"iI9v1WysJ\"};const getProps=({description,height,icon,id,title,titleSize,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,fhlVs27SA:(_ref=icon!==null&&icon!==void 0?icon:props.fhlVs27SA)!==null&&_ref!==void 0?_ref:\"House\",gIr0VvvDR:(_ref1=title!==null&&title!==void 0?title:props.gIr0VvvDR)!==null&&_ref1!==void 0?_ref1:\"Title\",QENiZ8anS:(_ref2=description!==null&&description!==void 0?description:props.QENiZ8anS)!==null&&_ref2!==void 0?_ref2:\"Pick a plan and load up as many requests as you like.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"iI9v1WysJ\",zPOpKlYkB:(_ref4=titleSize!==null&&titleSize!==void 0?titleSize:props.zPOpKlYkB)!==null&&_ref4!==void 0?_ref4:48};};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,gIr0VvvDR,QENiZ8anS,fhlVs27SA,zPOpKlYkB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iI9v1WysJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1oety55\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Standard\",layoutDependency:layoutDependency,layoutId:\"iI9v1WysJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-465bc183-3310-4e30-97ae-1de71623d230, rgb(227, 228, 232))\",borderBottomRightRadius:22,borderTopRightRadius:22,...style},variants:{GIArVxOAb:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},kpr1rUOpt:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230))\"}},...addPropertyOverrides({GIArVxOAb:{\"data-framer-name\":\"No Border\"},kpr1rUOpt:{\"data-framer-name\":\"Highlight\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nl1ejm-container\",layoutDependency:layoutDependency,layoutId:\"yY588ST9q-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:fhlVs27SA,id:\"yY588ST9q\",layoutId:\"yY588ST9q\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({kpr1rUOpt:{color:\"var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6xaesu\",layoutDependency:layoutDependency,layoutId:\"wlfp4ss4j\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-zPOpKlYkB-HCwYqAi67) * 1px)\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)) 0%, var(--token-bc9032cd-ea3c-4f6b-a5e2-0835e41d4b60, rgba(23, 24, 28, 0.45)) 100%)\"},children:\"Title\"})})}),className:\"framer-1jbhk\",\"data-framer-name\":\"Benefits of being a member\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"x2yNLdoqu\",style:{\"--extracted-1of0zx5\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-zPOpKlYkB-HCwYqAi67\":zPOpKlYkB,transformPerspective:1200},text:gIr0VvvDR,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kpr1rUOpt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-zPOpKlYkB-HCwYqAi67) * 1px)\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244)) 0%, var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230)) 100%)\"},children:\"Title\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Qml0dGVyLWl0YWxpYw==\",\"--framer-font-family\":'\"Bitter\", \"Bitter Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5608b585-6e6d-465b-99c4-910e8c26a476, rgb(69, 72, 84)))\"},children:\"Pick a plan and load up as many requests as you like.\"})}),className:\"framer-5fmg0s\",fonts:[\"GF;Bitter-italic\"],layoutDependency:layoutDependency,layoutId:\"FopNRyzTt\",style:{\"--extracted-r6o4lv\":\"var(--token-5608b585-6e6d-465b-99c4-910e8c26a476, rgb(69, 72, 84))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",textShadow:\"0px 0px 8px rgba(155, 221, 237, 0)\"},text:QENiZ8anS,variants:{kpr1rUOpt:{\"--extracted-r6o4lv\":\"var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kpr1rUOpt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Qml0dGVyLWl0YWxpYw==\",\"--framer-font-family\":'\"Bitter\", \"Bitter Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-91f0cd3a-77f5-4cd9-b48c-7910ca346dc9, rgb(241, 241, 244)))\"},children:\"Pick a plan and load up as many requests as you like.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Tfp6k.framer-i7z1wo, .framer-Tfp6k .framer-i7z1wo { display: block; }\",\".framer-Tfp6k.framer-1oety55 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 400px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Tfp6k .framer-1nl1ejm-container { flex: none; height: 40px; position: absolute; right: 20px; top: 20px; width: 40px; z-index: 1; }\",\".framer-Tfp6k .framer-6xaesu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Tfp6k .framer-1jbhk, .framer-Tfp6k .framer-5fmg0s { flex: none; height: auto; position: relative; text-wrap: balance; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Tfp6k.framer-1oety55, .framer-Tfp6k .framer-6xaesu { gap: 0px; } .framer-Tfp6k.framer-1oety55 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Tfp6k.framer-1oety55 > :first-child, .framer-Tfp6k .framer-6xaesu > :first-child { margin-top: 0px; } .framer-Tfp6k.framer-1oety55 > :last-child, .framer-Tfp6k .framer-6xaesu > :last-child { margin-bottom: 0px; } .framer-Tfp6k .framer-6xaesu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",'.framer-Tfp6k[data-border=\"true\"]::after, .framer-Tfp6k [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kpr1rUOpt\":{\"layout\":[\"fixed\",\"fixed\"]},\"GIArVxOAb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gIr0VvvDR\":\"title\",\"QENiZ8anS\":\"description\",\"fhlVs27SA\":\"icon\",\"zPOpKlYkB\":\"titleSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHCwYqAi67=withCSS(Component,css,\"framer-Tfp6k\");export default FramerHCwYqAi67;FramerHCwYqAi67.displayName=\"Stack\";FramerHCwYqAi67.defaultProps={height:400,width:300};addPropertyControls(FramerHCwYqAi67,{variant:{options:[\"iI9v1WysJ\",\"kpr1rUOpt\",\"GIArVxOAb\"],optionTitles:[\"Standard\",\"Highlight\",\"No Border\"],title:\"Variant\",type:ControlType.Enum},gIr0VvvDR:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},QENiZ8anS:{defaultValue:\"Pick a plan and load up as many requests as you like.\",displayTextArea:false,title:\"Description\",type:ControlType.String},fhlVs27SA:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"},zPOpKlYkB:{defaultValue:48,title:\"Title Size\",type:ControlType.Number}});addFonts(FramerHCwYqAi67,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Bitter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/bitter/v36/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOXXpzveWxBw.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHCwYqAi67\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"300\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kpr1rUOpt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GIArVxOAb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"gIr0VvvDR\\\":\\\"title\\\",\\\"QENiZ8anS\\\":\\\"description\\\",\\\"fhlVs27SA\\\":\\\"icon\\\",\\\"zPOpKlYkB\\\":\\\"titleSize\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HCwYqAi67.map", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7cbec57)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gk8yDe9OaC34eMSiVYJr/QEKiPAmbSpNs19fiQBCT/xj_Llkh1w.js\";import*as localizedValues from\"./CKqfdmLpZ-0.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={YAihWlWVF:{hover:true}};const cycleOrder=[\"YAihWlWVF\",\"wJuSNdJVJ\"];const serializationHash=\"framer-gr9Kf\";const variantClassNames={wJuSNdJVJ:\"framer-v-lme97c\",YAihWlWVF:\"framer-v-1df7tko\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={UTFfW6rvB:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"YAihWlWVF\",Hover:\"wJuSNdJVJ\"};const getProps=({height,id,mouseEnter,number,text,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,bGh75Xylm:(_ref=title!==null&&title!==void 0?title:props.bGh75Xylm)!==null&&_ref!==void 0?_ref:\"D\\xe9finition d'un projet\",k7HjmP1Z1:mouseEnter!==null&&mouseEnter!==void 0?mouseEnter:props.k7HjmP1Z1,mGyGoG7tV:(_ref1=number!==null&&number!==void 0?number:props.mGyGoG7tV)!==null&&_ref1!==void 0?_ref1:\"01\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"YAihWlWVF\",Vy6UJ_6cJ:(_ref3=text!==null&&text!==void 0?text:props.Vy6UJ_6cJ)!==null&&_ref3!==void 0?_ref3:\"Vos ambitions rencontrent notre expertise. Ensemble, nous \\xe9tablirons une feuille de route claire, d\\xe9finissant vos objectifs et la strat\\xe9gie \\xe0 adopter pour les atteindre. Ce processus initial assure que chaque site web que nous cr\\xe9ons est parfaitement align\\xe9 avec les besoins de nos clients et optimis\\xe9 pour les moteurs de recherche.\"};};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,mGyGoG7tV,bGh75Xylm,Vy6UJ_6cJ,k7HjmP1Z1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YAihWlWVF\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnternr53mb=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(k7HjmP1Z1){const res=await k7HjmP1Z1(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"wJuSNdJVJ\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1df7tko\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YAihWlWVF\",onMouseEnter:onMouseEnternr53mb,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0b87bf9e-08df-454b-bb9b-03778ed87e82, rgba(227, 228, 232, 0.5))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-0b87bf9e-08df-454b-bb9b-03778ed87e82, rgba(227, 228, 232, 0.5))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",filter:\"none\",WebkitFilter:\"none\",...style},variants:{\"YAihWlWVF-hover\":{filter:\"blur(0px)\",WebkitFilter:\"blur(0px)\"}},...addPropertyOverrides({\"YAihWlWVF-hover\":{\"data-framer-name\":undefined},wJuSNdJVJ:{\"data-framer-name\":\"Hover\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-asht4l-container\",layoutDependency:layoutDependency,layoutId:\"g1iHE35KG-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Cursor\",id:\"g1iHE35KG\",layoutId:\"g1iHE35KG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-227grm\",layoutDependency:layoutDependency,layoutId:\"sBk8hK_ES\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z44kxt\",layoutDependency:layoutDependency,layoutId:\"jaBBsDHPO\",style:{borderTopLeftRadius:22,borderTopRightRadius:22},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"180px\",\"--framer-font-weight\":\"800\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)))\"},children:\"01\"})}),className:\"framer-4ju5ar\",fonts:[\"GF;Manrope-800\"],layoutDependency:layoutDependency,layoutId:\"iT0SkDeLy\",style:{\"--extracted-1eung3n\":\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mGyGoG7tV,variants:{\"YAihWlWVF-hover\":{\"--extracted-1eung3n\":\"var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230))\"},wJuSNdJVJ:{\"--extracted-1eung3n\":\"var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"YAihWlWVF-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"180px\",\"--framer-font-weight\":\"800\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230)))\"},children:\"01\"})})},wJuSNdJVJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"180px\",\"--framer-font-weight\":\"800\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-63ed9984-968b-4feb-a471-b1811141de52, rgb(104, 25, 230)))\"},children:\"01\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14aht5i\",layoutDependency:layoutDependency,layoutId:\"n2sqMoC9n\",style:{filter:\"blur(0px)\",WebkitFilter:\"blur(0px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28)))\"},children:\"D\\xe9finition d'un projet\"})}),className:\"framer-7rb7fp\",fonts:[\"GF;Manrope-800\"],layoutDependency:layoutDependency,layoutId:\"S_uDC9KfD\",style:{\"--extracted-1lwpl3i\":\"var(--token-0eec8619-dbf1-45ea-8064-5f81f7bc28ec, rgb(23, 24, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bGh75Xylm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tj1vyk\",\"data-styles-preset\":\"xj_Llkh1w\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112)))\"},children:\"Vos ambitions rencontrent notre expertise. Ensemble, nous \\xe9tablirons une feuille de route claire, d\\xe9finissant vos objectifs et la strat\\xe9gie \\xe0 adopter pour les atteindre. Ce processus initial assure que chaque site web que nous cr\\xe9ons est parfaitement align\\xe9 avec les besoins de nos clients et optimis\\xe9 pour les moteurs de recherche.\"})}),className:\"framer-r3r4o2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TL6wv1evT\",style:{\"--extracted-r6o4lv\":\"var(--token-1c6abcb1-8700-4c2f-aa28-f0fd627b6723, rgb(92, 96, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Vy6UJ_6cJ,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gr9Kf.framer-10lqdwd, .framer-gr9Kf .framer-10lqdwd { display: block; }\",\".framer-gr9Kf.framer-1df7tko { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 300px; }\",\".framer-gr9Kf .framer-asht4l-container { aspect-ratio: 1 / 1; bottom: -46px; flex: none; height: var(--framer-aspect-ratio-supported, 46px); position: absolute; right: -42px; width: 43px; z-index: 1; }\",\".framer-gr9Kf .framer-227grm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gr9Kf .framer-z44kxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 125px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gr9Kf .framer-4ju5ar { -webkit-user-select: none; flex: none; height: auto; left: -45px; position: absolute; top: -59px; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-gr9Kf .framer-14aht5i { 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: 22px; position: relative; width: 100%; }\",\".framer-gr9Kf .framer-7rb7fp { -webkit-user-select: none; flex: none; height: auto; position: relative; text-wrap: balance; user-select: none; width: 169px; }\",\".framer-gr9Kf .framer-r3r4o2 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; 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-gr9Kf.framer-1df7tko, .framer-gr9Kf .framer-227grm, .framer-gr9Kf .framer-z44kxt, .framer-gr9Kf .framer-14aht5i { gap: 0px; } .framer-gr9Kf.framer-1df7tko > *, .framer-gr9Kf .framer-227grm > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-gr9Kf.framer-1df7tko > :first-child, .framer-gr9Kf .framer-227grm > :first-child, .framer-gr9Kf .framer-z44kxt > :first-child, .framer-gr9Kf .framer-14aht5i > :first-child { margin-top: 0px; } .framer-gr9Kf.framer-1df7tko > :last-child, .framer-gr9Kf .framer-227grm > :last-child, .framer-gr9Kf .framer-z44kxt > :last-child, .framer-gr9Kf .framer-14aht5i > :last-child { margin-bottom: 0px; } .framer-gr9Kf .framer-z44kxt > *, .framer-gr9Kf .framer-14aht5i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-gr9Kf.framer-v-lme97c.framer-1df7tko { cursor: unset; }\",...sharedStyle.css,'.framer-gr9Kf[data-border=\"true\"]::after, .framer-gr9Kf [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 575\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wJuSNdJVJ\":{\"layout\":[\"fixed\",\"auto\"]},\"v3QHgg6gU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mGyGoG7tV\":\"number\",\"bGh75Xylm\":\"title\",\"Vy6UJ_6cJ\":\"text\",\"k7HjmP1Z1\":\"mouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCKqfdmLpZ=withCSS(Component,css,\"framer-gr9Kf\");export default FramerCKqfdmLpZ;FramerCKqfdmLpZ.displayName=\"deroulementProjetCard\";FramerCKqfdmLpZ.defaultProps={height:575,width:300};addPropertyControls(FramerCKqfdmLpZ,{variant:{options:[\"YAihWlWVF\",\"wJuSNdJVJ\"],optionTitles:[\"Variant 1\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},mGyGoG7tV:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String},bGh75Xylm:{defaultValue:\"D\\xe9finition d'un projet\",displayTextArea:false,title:\"Title\",type:ControlType.String},Vy6UJ_6cJ:{defaultValue:\"Vos ambitions rencontrent notre expertise. Ensemble, nous \\xe9tablirons une feuille de route claire, d\\xe9finissant vos objectifs et la strat\\xe9gie \\xe0 adopter pour les atteindre. Ce processus initial assure que chaque site web que nous cr\\xe9ons est parfaitement align\\xe9 avec les besoins de nos clients et optimis\\xe9 pour les moteurs de recherche.\",displayTextArea:false,title:\"Text\",type:ControlType.String},k7HjmP1Z1:{title:\"Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramerCKqfdmLpZ,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"},{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/5vvr9Vy74if2I6bQ bJvbw7SY1pQ.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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCKqfdmLpZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"300\",\"framerIntrinsicHeight\":\"575\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"mGyGoG7tV\\\":\\\"number\\\",\\\"bGh75Xylm\\\":\\\"title\\\",\\\"Vy6UJ_6cJ\\\":\\\"text\\\",\\\"k7HjmP1Z1\\\":\\\"mouseEnter\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wJuSNdJVJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v3QHgg6gU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CKqfdmLpZ.map", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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M,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,K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",
  "names": ["init_ssg_sandbox_shims", "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", "isCanvas", "RenderTarget", "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", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "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", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "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", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "init_ssg_sandbox_shims", "Am7SPtrGT_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", "v28", "v29", "v3", "v30", "v31", "v32", "v33", "v34", "v35", "v36", "v37", "v38", "v39", "v4", "v40", "v41", "v42", "v43", "v44", "v45", "v46", "v47", "v48", "v49", "v5", "v50", "v51", "v52", "v53", "v54", "v55", "v56", "v57", "v58", "v59", "v6", "v60", "v7", "v8", "v9", "init_ssg_sandbox_shims", "valuesByLocaleId", "Am7SPtrGT_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "init_ssg_sandbox_shims", "AFuLYa_1V_0_exports", "__export", "__FramerMetadata__", "v0", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "g554CgAUH_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "init_ssg_sandbox_shims", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "u", "v9", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "g554CgAUH_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount1", "amount12", "amount36", "border", "cursor", "height", "id", "price1", "price12", "price36", "priceDev1", "pro1", "pro2", "pro3", "pro4", "pro5", "pro6", "pro7", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "_humanReadableVariantMap_props_variant", "_ref12", "_ref13", "_ref14", "_ref15", "_ref16", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YSFB00kiQ", "JFcSZgxDi", "MVkyZUQc5", "u6XjlXe3W", "CHSBUHY5E", "HLlT75DSb", "WC692_UiA", "KUHK_ICTA", "A01fuFY57", "yBRlZx_KP", "WNSp7PRHr", "RowOiZkTa", "EXS5DDcl_", "f_iINw1zE", "gZ8gF4xqU", "BpxhWnzII", "lqW9LvDEv", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1bwpp7f", "args", "onTap1gabmw5", "onTap7ykjtq", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_BpxhWnzII_borderBottomWidth", "_BpxhWnzII_borderLeftWidth", "_BpxhWnzII_borderRightWidth", "_BpxhWnzII_borderTopWidth", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "Framerg554CgAUH", "withCSS", "g554CgAUH_default", "addPropertyControls", "ControlType", "addFonts", "BtnText2Fonts", "getFonts", "wYEF83i4O_default", "BtnIcon2Fonts", "eR7wc51he_default", "PriceCardFonts", "g554CgAUH_default", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "AFuLYa_1V_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "toResponsiveImage", "transition2", "animation", "animation1", "transition3", "animation2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount1", "amount12", "amount36", "btnText", "cursor", "height", "id", "image", "link", "price1", "price12", "price36", "priceDev1", "pro1", "pro2", "pro3", "pro4", "pro5", "pro6", "pro7", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "_ref12", "_humanReadableVariantMap_props_variant", "_ref13", "_ref14", "_ref15", "_ref16", "_ref17", "_ref18", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vjZyvq4Ae", "iq0h8Rjbd", "M3Cju7P3f", "vfWeeNH6O", "DO9_BT1MQ", "VIdvUYNg7", "aSug0UYh2", "Yo4gFJgVK", "q17haYLIt", "O76A4DxIQ", "YEQsZTQNk", "jA974z8os", "gC3Di_3Wm", "Ta4fNQewI", "hkwYurm6q", "RDWiPLjFk", "nKB3jPEAS", "wPHWluvTp", "vxgj6oGLf", "RQ3iNttL1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "syMduEDNT4td968", "args", "onMouseEnter1q6rq0w", "syMduEDNThh0y8j", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "LayoutGroup", "cx", "u", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerAFuLYa_1V", "withCSS", "AFuLYa_1V_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "DomaineApplicationCardFonts", "getFonts", "AFuLYa_1V_default", "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", "cursor", "height", "id", "title3", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "JhceIrjES", "JQ7hB7PDE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "getLocalizedValue", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "css", "FramerAm7SPtrGT", "withCSS", "Am7SPtrGT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "PhosphorFonts", "getFonts", "Icon", "RichTextWithFX", "withFX", "RichText2", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "icon", "id", "title", "titleSize", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gIr0VvvDR", "QENiZ8anS", "fhlVs27SA", "zPOpKlYkB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "Icon", "RichTextWithFX", "RichText2", "css", "FramerHCwYqAi67", "withCSS", "HCwYqAi67_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "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", "mouseEnter", "number", "text", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "mGyGoG7tV", "bGh75Xylm", "Vy6UJ_6cJ", "k7HjmP1Z1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnternr53mb", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerCKqfdmLpZ", "withCSS", "CKqfdmLpZ_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts"]
}
