{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js", "ssg:https://framerusercontent.com/modules/iQzoGYZSIX55mKjOGf6y/VxDS6eFaRLYdjegjkdL0/PSGrii033.js", "ssg:https://framerusercontent.com/modules/zP1ldHECIFa4p3F0qhzA/1zJ6TfYaw2dzyhDqoZRh/Rj3m9B6oX.js", "ssg:https://framerusercontent.com/modules/xVZeFYm81gnTVE46fiHf/sWLkSduAAwXbcvYfMsEf/bVLX_A7Eq.js", "ssg:https://framerusercontent.com/modules/XSaq01VZIZNlLdYpYUBe/5GcQ7KMaQ8z7rFJEnMuO/QqUBiEye2.js", "ssg:https://framerusercontent.com/modules/Nj6Xq19UfXQGCqMBOQoL/vG1zpsClOXjJcKagCLTL/V5A2dPl0d.js", "ssg:https://framerusercontent.com/modules/euujdmX2lioPjjVSFeLk/D0AuFuIU9Kdn0OUzBFt7/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-regular\",\"FS;Poppins-bold\",\"FS;Poppins-bold italic\",\"FS;Poppins-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7LLTLAW3NRWOADG4II2JGKZC6OSEMBQC/EYFXWX77PEMPU645EAWOTG22E375GULW/SSNNTU67MMJH4CSWT443B4KJ7OB4WFHF.woff2\",weight:\"400\"}]}];export const css=['.framer-1XI1j .framer-styles-preset-o5zqe6:not(.rich-text-wrapper), .framer-1XI1j .framer-styles-preset-o5zqe6.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #272727; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1440px) { .framer-1XI1j .framer-styles-preset-o5zqe6:not(.rich-text-wrapper), .framer-1XI1j .framer-styles-preset-o5zqe6.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #272727; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-1XI1j .framer-styles-preset-o5zqe6:not(.rich-text-wrapper), .framer-1XI1j .framer-styles-preset-o5zqe6.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #272727; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-1XI1j .framer-styles-preset-o5zqe6:not(.rich-text-wrapper), .framer-1XI1j .framer-styles-preset-o5zqe6.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #272727; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-1XI1j .framer-styles-preset-o5zqe6:not(.rich-text-wrapper), .framer-1XI1j .framer-styles-preset-o5zqe6.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #272727; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-1XI1j\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-semibold\",\"FS;Poppins-black\",\"FS;Poppins-black italic\",\"FS;Poppins-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/22GWRXQXMICIWABQXFWKIWZIILKO5JDJ/2BBKMSVLV5CSDOZ7HEEECOTKPOVVJOC3/RNFY4UJD36462ZMGEIC5I7KNE73BPOAU.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2PWH5ACYHQEXIHGDLY5OWYMAC3F65AK5/OD6JOLYDRZZOKZGAPOMF7QEWPC5DTZS6/F5IVXJVPQ2DIFNG5HQZ7NI5VG7P7VDLV.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UIZNW6TUIPHAJY7PGO5Z3D35Q2C3IESY/VMTPLIFREYY73Z7SYHLS2AWXATFX2ZHJ/3Y2FFVDRGJIJT6SO3BLMSB5PFJTFIJG2.woff2\",weight:\"600\"}]}];export const css=['.framer-KPHLH .framer-styles-preset-1kt8flo:not(.rich-text-wrapper), .framer-KPHLH .framer-styles-preset-1kt8flo.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1440px) { .framer-KPHLH .framer-styles-preset-1kt8flo:not(.rich-text-wrapper), .framer-KPHLH .framer-styles-preset-1kt8flo.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 1280px) { .framer-KPHLH .framer-styles-preset-1kt8flo:not(.rich-text-wrapper), .framer-KPHLH .framer-styles-preset-1kt8flo.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1279px) and (min-width: 810px) { .framer-KPHLH .framer-styles-preset-1kt8flo:not(.rich-text-wrapper), .framer-KPHLH .framer-styles-preset-1kt8flo.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-KPHLH .framer-styles-preset-1kt8flo:not(.rich-text-wrapper), .framer-KPHLH .framer-styles-preset-1kt8flo.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-KPHLH\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/iQzoGYZSIX55mKjOGf6y/VxDS6eFaRLYdjegjkdL0/PSGrii033.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zP1ldHECIFa4p3F0qhzA/1zJ6TfYaw2dzyhDqoZRh/Rj3m9B6oX.js\";const enabledGestures={q9yXOrwpw:{hover:true},zRt8Ii2RQ:{hover:true}};const cycleOrder=[\"zRt8Ii2RQ\",\"q9yXOrwpw\"];const serializationHash=\"framer-4IMJh\";const variantClassNames={q9yXOrwpw:\"framer-v-zdsyx9\",zRt8Ii2RQ:\"framer-v-1jgblkq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"zRt8Ii2RQ\",\"Variant 2\":\"q9yXOrwpw\"};const getProps=({height,id,imagePrincipale,link,price,textContent,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,bJtWiCsiz:(_ref=price!==null&&price!==void 0?price:props.bJtWiCsiz)!==null&&_ref!==void 0?_ref:\"1 199,00 \u20AC\",OVJJGQUXm:(_ref1=title!==null&&title!==void 0?title:props.OVJJGQUXm)!==null&&_ref1!==void 0?_ref1:\"Bernina 325\",uw4UVgD6v:(_ref2=textContent!==null&&textContent!==void 0?textContent:props.uw4UVgD6v)!==null&&_ref2!==void 0?_ref2:\"Machine \\xe0 coudre\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"zRt8Ii2RQ\",XfFubO2Ud:imagePrincipale!==null&&imagePrincipale!==void 0?imagePrincipale:props.XfFubO2Ud,xYIZlxJPW:link!==null&&link!==void 0?link:props.xYIZlxJPW};};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,xYIZlxJPW,uw4UVgD6v,XfFubO2Ud,OVJJGQUXm,bJtWiCsiz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zRt8Ii2RQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:xYIZlxJPW,nodeId:\"zRt8Ii2RQ\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1jgblkq\",className,classNames)} framer-qggeeu`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zRt8Ii2RQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-f5b41133-216e-4533-943b-6452e13c8fd8, rgb(237, 233, 225))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:'linear-gradient(47deg, var(--token-67ace149-57bf-4fe8-ae97-301808b0ce71, rgb(255, 250, 245)) /* {\"name\":\"Card\"} */ 0%, rgb(207, 197, 190) 100%)',borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{q9yXOrwpw:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},...addPropertyOverrides({\"q9yXOrwpw-hover\":{\"data-framer-name\":undefined},\"zRt8Ii2RQ-hover\":{\"data-framer-name\":undefined},q9yXOrwpw:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16f6hsh\",\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"KvipNw1Jf\",style:{borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RnJhdW5jZXMtcmVndWxhcg==\",\"--framer-font-family\":'\"Fraunces\", \"Fraunces Placeholder\", serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b71bf358-29d6-48e5-af75-ad03e281a364, rgb(64, 64, 64)))\"},children:\"Machine \\xe0 coudre\"})}),className:\"framer-1asu4o4\",fonts:[\"GF;Fraunces-regular\"],layoutDependency:layoutDependency,layoutId:\"PNEIulNEj\",style:{\"--extracted-r6o4lv\":\"var(--token-b71bf358-29d6-48e5-af75-ad03e281a364, rgb(64, 64, 64))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uw4UVgD6v,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7brqf4\",\"data-framer-name\":\"Image wrapper\",layoutDependency:layoutDependency,layoutId:\"bGgm4rnLF\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+(0+25.6+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32-(25.6+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32)*.65+51))/2*1)+(0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32)*.65-0-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32)*.65-0)*1)/2)),sizes:((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32)*.65-0)*1,...toResponsiveImage(XfFubO2Ud)},className:\"framer-1l4z2ss\",layoutDependency:layoutDependency,layoutId:\"txUZP5xYr\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({\"q9yXOrwpw-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+(0+25.6+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16-(25.6+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16)*.65+45.599999999999994))/2*1)+(0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16)*.65-0-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16)*.65-0)*1.1181988742964353)/2)),sizes:((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16)*.65-0)*1.1181988742964353,...toResponsiveImage(XfFubO2Ud)}},\"zRt8Ii2RQ-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+(0+25.6+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32-(25.6+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32)*.65+51))/2*1)+(0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32)*.65-0-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32)*.65-0)*1.1588089330024813)/2)),sizes:((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||342)-32)*.65-0)*1.1588089330024813,...toResponsiveImage(XfFubO2Ud)}},q9yXOrwpw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+(0+25.6+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16-(25.6+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16)*.65+45.599999999999994))/2*1)+(0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16)*.65-0-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16)*.65-0)*1)/2)),sizes:((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||442)-16)*.65-0)*1,...toResponsiveImage(XfFubO2Ud)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-70wwhz\",\"data-framer-name\":\"name + price\",layoutDependency:layoutDependency,layoutId:\"NnpOLXBUo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o5zqe6\",\"data-styles-preset\":\"PSGrii033\",children:\"Title\"})}),className:\"framer-1c7jgyh\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bHYu4uxho\",text:OVJJGQUXm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kt8flo\",\"data-styles-preset\":\"Rj3m9B6oX\",children:\"1 199,00 \u20AC\"})}),className:\"framer-1n9vq06\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t9ZeTVauF\",text:bJtWiCsiz,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({q9yXOrwpw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"1 199,00 \u20AC\"})}),fonts:[\"FS;Poppins-semibold\"]}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4IMJh.framer-qggeeu, .framer-4IMJh .framer-qggeeu { display: block; }\",\".framer-4IMJh.framer-1jgblkq { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 342px; justify-content: space-between; padding: 16px; position: relative; text-decoration: none; width: 358px; }\",\".framer-4IMJh .framer-16f6hsh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-4IMJh .framer-1asu4o4, .framer-4IMJh .framer-1c7jgyh, .framer-4IMJh .framer-1n9vq06 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4IMJh .framer-7brqf4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 65%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4IMJh .framer-1l4z2ss { aspect-ratio: 1 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 202px); }\",\".framer-4IMJh .framer-70wwhz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 51px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 94px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4IMJh .framer-16f6hsh, .framer-4IMJh .framer-7brqf4, .framer-4IMJh .framer-70wwhz { gap: 0px; } .framer-4IMJh .framer-16f6hsh > *, .framer-4IMJh .framer-7brqf4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4IMJh .framer-16f6hsh > :first-child, .framer-4IMJh .framer-7brqf4 > :first-child { margin-left: 0px; } .framer-4IMJh .framer-16f6hsh > :last-child, .framer-4IMJh .framer-7brqf4 > :last-child { margin-right: 0px; } .framer-4IMJh .framer-70wwhz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-4IMJh .framer-70wwhz > :first-child { margin-top: 0px; } .framer-4IMJh .framer-70wwhz > :last-child { margin-bottom: 0px; } }\",\".framer-4IMJh.framer-v-zdsyx9.framer-1jgblkq { height: 442px; padding: 8px; width: 358px; }\",\".framer-4IMJh.framer-v-zdsyx9 .framer-1l4z2ss { width: var(--framer-aspect-ratio-supported, 277px); }\",\".framer-4IMJh.framer-v-zdsyx9 .framer-70wwhz { gap: 4px; height: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4IMJh.framer-v-zdsyx9 .framer-70wwhz { gap: 0px; } .framer-4IMJh.framer-v-zdsyx9 .framer-70wwhz > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-4IMJh.framer-v-zdsyx9 .framer-70wwhz > :first-child { margin-top: 0px; } .framer-4IMJh.framer-v-zdsyx9 .framer-70wwhz > :last-child { margin-bottom: 0px; } }\",\".framer-4IMJh.framer-v-1jgblkq.hover .framer-1l4z2ss { height: 116%; width: var(--framer-aspect-ratio-supported, 234px); }\",\".framer-4IMJh.framer-v-zdsyx9.hover .framer-1l4z2ss { height: 112%; width: var(--framer-aspect-ratio-supported, 310px); }\",...sharedStyle.css,...sharedStyle1.css,'.framer-4IMJh[data-border=\"true\"]::after, .framer-4IMJh [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 342\n * @framerIntrinsicWidth 358\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"q9yXOrwpw\":{\"layout\":[\"fixed\",\"fixed\"]},\"lgQfKLotw\":{\"layout\":[\"fixed\",\"fixed\"]},\"kLcULrTU7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xYIZlxJPW\":\"link\",\"uw4UVgD6v\":\"textContent\",\"XfFubO2Ud\":\"imagePrincipale\",\"OVJJGQUXm\":\"title\",\"bJtWiCsiz\":\"price\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbVLX_A7Eq=withCSS(Component,css,\"framer-4IMJh\");export default FramerbVLX_A7Eq;FramerbVLX_A7Eq.displayName=\"Card\";FramerbVLX_A7Eq.defaultProps={height:342,width:358};addPropertyControls(FramerbVLX_A7Eq,{variant:{options:[\"zRt8Ii2RQ\",\"q9yXOrwpw\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},xYIZlxJPW:{title:\"Link\",type:ControlType.Link},uw4UVgD6v:{defaultValue:\"Machine \\xe0 coudre\",title:\"Text Content\",type:ControlType.String},XfFubO2Ud:{title:\"Image principale\",type:ControlType.ResponsiveImage},OVJJGQUXm:{defaultValue:\"Bernina 325\",title:\"Title\",type:ControlType.String},bJtWiCsiz:{defaultValue:\"1 199,00 \u20AC\",title:\"Price\",type:ControlType.String}});addFonts(FramerbVLX_A7Eq,[{explicitInter:true,fonts:[{family:\"Fraunces\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fraunces/v31/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujC_TShUtWNg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbVLX_A7Eq\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"342\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"358\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q9yXOrwpw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lgQfKLotw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kLcULrTU7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"xYIZlxJPW\\\":\\\"link\\\",\\\"uw4UVgD6v\\\":\\\"textContent\\\",\\\"XfFubO2Ud\\\":\\\"imagePrincipale\\\",\\\"OVJJGQUXm\\\":\\\"title\\\",\\\"bJtWiCsiz\\\":\\\"price\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bVLX_A7Eq.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qwd5GVstxxWoBpnWyKy2/qgks0Lzszb7Z9RdKjtpt/Tx5VBfyuR.js\";const enabledGestures={lrUYAwPgS:{hover:true}};const serializationHash=\"framer-OlMa3\";const variantClassNames={lrUYAwPgS:\"framer-v-10dl1vp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({grosseImage,height,id,title,width,...props})=>{return{...props,DspQ3QXGZ:title??props.DspQ3QXGZ??\"Mercerie\",Gq7XzuicN:grosseImage??props.Gq7XzuicN};};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,Gq7XzuicN,DspQ3QXGZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"lrUYAwPgS\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:cx(scopingClassNames,\"framer-10dl1vp\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lrUYAwPgS\",ref:ref??ref1,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({\"lrUYAwPgS-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||548)*.5000000000000002-274)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Gq7XzuicN)},className:\"framer-rbay4j\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Uny1wbVTf\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},transformTemplate:transformTemplate1,...addPropertyOverrides({\"lrUYAwPgS-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||548)*.5000000000000002-274)),sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.04)`,...toResponsiveImage(Gq7XzuicN)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mjzbqh\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"hG5FkZlre\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 48.90906531531532%, rgb(0, 0, 0) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mercerie\"})}),className:\"framer-1iuings\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZQyk1A6aC\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:DspQ3QXGZ,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OlMa3.framer-1cnf50h, .framer-OlMa3 .framer-1cnf50h { display: block; }\",\".framer-OlMa3.framer-10dl1vp { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 548px; justify-content: flex-end; overflow: hidden; padding: 16px 0px 16px 16px; position: relative; width: 548px; will-change: var(--framer-will-change-override, transform); }\",\".framer-OlMa3 .framer-rbay4j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 548px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-OlMa3 .framer-1mjzbqh { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-OlMa3 .framer-1iuings { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OlMa3.framer-10dl1vp { gap: 0px; } .framer-OlMa3.framer-10dl1vp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-OlMa3.framer-10dl1vp > :first-child { margin-top: 0px; } .framer-OlMa3.framer-10dl1vp > :last-child { margin-bottom: 0px; } }\",\".framer-OlMa3.framer-v-10dl1vp.hover.framer-10dl1vp { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 548px); }\",\".framer-OlMa3.framer-v-10dl1vp.hover .framer-rbay4j { height: var(--framer-aspect-ratio-supported, 570px); width: 104%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 548\n * @framerIntrinsicWidth 548\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ekfx9q1py\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Gq7XzuicN\":\"grosseImage\",\"DspQ3QXGZ\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQqUBiEye2=withCSS(Component,css,\"framer-OlMa3\");export default FramerQqUBiEye2;FramerQqUBiEye2.displayName=\"Card services big\";FramerQqUBiEye2.defaultProps={height:548,width:548};addPropertyControls(FramerQqUBiEye2,{Gq7XzuicN:{title:\"Grosse image\",type:ControlType.ResponsiveImage},DspQ3QXGZ:{defaultValue:\"Mercerie\",title:\"Title\",type:ControlType.String}});addFonts(FramerQqUBiEye2,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQqUBiEye2\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"548\",\"framerVariables\":\"{\\\"Gq7XzuicN\\\":\\\"grosseImage\\\",\\\"DspQ3QXGZ\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ekfx9q1py\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"548\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QqUBiEye2.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qwd5GVstxxWoBpnWyKy2/qgks0Lzszb7Z9RdKjtpt/Tx5VBfyuR.js\";const enabledGestures={X_KGmYbj7:{hover:true}};const serializationHash=\"framer-VP5Dr\";const variantClassNames={X_KGmYbj7:\"framer-v-3i5rhz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,tickers,title,width,...props})=>{return{...props,GTz7lAeDn:tickers??props.GTz7lAeDn,qq5p0CFki:title??props.qq5p0CFki??\"Atelier couture & machine \\xe0 coudre\"};};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,qq5p0CFki,GTz7lAeDn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"X_KGmYbj7\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:cx(scopingClassNames,\"framer-3i5rhz\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"X_KGmYbj7\",ref:ref??ref1,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({\"X_KGmYbj7-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||653)*.4992343032159267-326.5)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(GTz7lAeDn),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-18zkf3i\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MeFPQ8jeN\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},transformTemplate:transformTemplate1,...addPropertyOverrides({\"X_KGmYbj7-hover\":{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||653)*.4992343032159267-326.5)),sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.04)`,...toResponsiveImage(GTz7lAeDn),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u9jooj\",\"data-framer-name\":\"gradient\",layoutDependency:layoutDependency,layoutId:\"eQOHKOFOd\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 48.90906531531532%, rgb(0, 0, 0) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Atelier couture & machine \\xe0 coudre\"})}),className:\"framer-79hou7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UrgWGVVVA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:qq5p0CFki,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VP5Dr.framer-1n2oxem, .framer-VP5Dr .framer-1n2oxem { display: block; }\",\".framer-VP5Dr.framer-3i5rhz { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 653px; justify-content: flex-end; overflow: hidden; padding: 24px; position: relative; width: 390px; will-change: var(--framer-will-change-override, transform); }\",\".framer-VP5Dr .framer-18zkf3i { aspect-ratio: 0.5620214395099541 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 694px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-VP5Dr .framer-1u9jooj { bottom: 0px; flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-VP5Dr .framer-79hou7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VP5Dr.framer-3i5rhz { gap: 0px; } .framer-VP5Dr.framer-3i5rhz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VP5Dr.framer-3i5rhz > :first-child { margin-top: 0px; } .framer-VP5Dr.framer-3i5rhz > :last-child { margin-bottom: 0px; } }\",\".framer-VP5Dr.framer-v-3i5rhz.hover .framer-18zkf3i { height: var(--framer-aspect-ratio-supported, 722px); width: 104%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 653\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"QpbDFoXci\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qq5p0CFki\":\"title\",\"GTz7lAeDn\":\"tickers\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerV5A2dPl0d=withCSS(Component,css,\"framer-VP5Dr\");export default FramerV5A2dPl0d;FramerV5A2dPl0d.displayName=\"Card services\";FramerV5A2dPl0d.defaultProps={height:653,width:390};addPropertyControls(FramerV5A2dPl0d,{qq5p0CFki:{defaultValue:\"Atelier couture & machine \\xe0 coudre\",title:\"Title\",type:ControlType.String},GTz7lAeDn:{title:\"tickers\",type:ControlType.ResponsiveImage}});addFonts(FramerV5A2dPl0d,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV5A2dPl0d\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerIntrinsicHeight\":\"653\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"qq5p0CFki\\\":\\\"title\\\",\\\"GTz7lAeDn\\\":\\\"tickers\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QpbDFoXci\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./V5A2dPl0d.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/WtTwrQcMhFJpd4DOJv98/Cookies.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import Card from\"#framer/local/canvasComponent/bVLX_A7Eq/bVLX_A7Eq.js\";import Bouton from\"#framer/local/canvasComponent/hvOQCZv32/hvOQCZv32.js\";import CardServicesBig from\"#framer/local/canvasComponent/QqUBiEye2/QqUBiEye2.js\";import CardServices from\"#framer/local/canvasComponent/V5A2dPl0d/V5A2dPl0d.js\";import Footer from\"#framer/local/canvasComponent/whLdtHJu1/whLdtHJu1.js\";import NavBar from\"#framer/local/canvasComponent/yp43HxY57/yp43HxY57.js\";import Services from\"#framer/local/collection/JyNzrCafk/JyNzrCafk.js\";import Machines,{enumToDisplayNameFunctions}from\"#framer/local/collection/oq7msSRXj/oq7msSRXj.js\";import*as sharedStyle1 from\"#framer/local/css/G57EOMvJl/G57EOMvJl.js\";import*as sharedStyle3 from\"#framer/local/css/l5Pxx_A3i/l5Pxx_A3i.js\";import*as sharedStyle4 from\"#framer/local/css/Tx5VBfyuR/Tx5VBfyuR.js\";import*as sharedStyle2 from\"#framer/local/css/U4VzIm82V/U4VzIm82V.js\";import*as sharedStyle from\"#framer/local/css/vQ3yeViSP/vQ3yeViSP.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TickerFonts=getFonts(Ticker);const NavBarFonts=getFonts(NavBar);const NavBarWithVariantAppearEffect=withVariantAppearEffect(NavBar);const VideoFonts=getFonts(Video);const FeatherFonts=getFonts(Feather);const CardFonts=getFonts(Card);const BoutonFonts=getFonts(Bouton);const CardServicesFonts=getFonts(CardServices);const CardServicesBigFonts=getFonts(CardServicesBig);const FooterFonts=getFonts(Footer);const CookieBannerFonts=getFonts(CookieBanner);const breakpoints={berKSwamb:\"(max-width: 809px)\",EI3IaXwlb:\"(min-width: 1920px)\",ibXI_Rg32:\"(min-width: 810px) and (max-width: 1199px)\",iMYUHpfAW:\"(min-width: 1440px) and (max-width: 1919px)\",uh6ApCikD:\"(min-width: 1280px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7mF11\";const variantClassNames={berKSwamb:\"framer-v-1ndz53i\",EI3IaXwlb:\"framer-v-1x9lscy\",ibXI_Rg32:\"framer-v-xy4q99\",iMYUHpfAW:\"framer-v-zoeb5m\",uh6ApCikD:\"framer-v-mk7zmh\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Full HD\":\"EI3IaXwlb\",Desktop:\"WQLkyLRf1\",HD:\"uh6ApCikD\",Phone:\"berKSwamb\",Quad:\"iMYUHpfAW\",Tablet:\"ibXI_Rg32\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,xlf9WE7IWKm85WnU76,USO_ifXYbKm85WnU76,CF2Ac1V0AKm85WnU76,svH4pRk3FKm85WnU76,oHpfM1By4Km85WnU76,idKm85WnU76,mknadLjaHYSJBducAR,AduVjsYHVYSJBducAR,M2eeQLrd8YSJBducAR,idYSJBducAR,mEJrkNAiHtQtpYvPCk,mknadLjaHtQtpYvPCk,M2eeQLrd8tQtpYvPCk,idtQtpYvPCk,mEJrkNAiHRa5XHmqA2,mknadLjaHRa5XHmqA2,M2eeQLrd8Ra5XHmqA2,idRa5XHmqA2,mEJrkNAiHmtFTv2WT2,mknadLjaHmtFTv2WT2,M2eeQLrd8mtFTv2WT2,idmtFTv2WT2,mEJrkNAiHLonRtTMYj,mknadLjaHLonRtTMYj,M2eeQLrd8LonRtTMYj,idLonRtTMYj,mEJrkNAiHVxZgp2Rg8,mknadLjaHVxZgp2Rg8,M2eeQLrd8VxZgp2Rg8,idVxZgp2Rg8,mEJrkNAiHjIqcFC7ZO,mknadLjaHjIqcFC7ZO,M2eeQLrd8jIqcFC7ZO,idjIqcFC7ZO,mEJrkNAiHmitja1NWp,mknadLjaHmitja1NWp,M2eeQLrd8mitja1NWp,idmitja1NWp,mEJrkNAiHgx4jSYnED,mknadLjaHgx4jSYnED,M2eeQLrd8gx4jSYnED,idgx4jSYnED,mEJrkNAiHFyK9jSqbB,mknadLjaHFyK9jSqbB,M2eeQLrd8FyK9jSqbB,idFyK9jSqbB,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"nNSbolru5\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"berKSwamb\")return false;return true;};const elementId1=useRouteElementId(\"fLSbNdaAx\");const router=useRouter();const elementId2=useRouteElementId(\"nDX4ov2lH\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"ibXI_Rg32\",\"berKSwamb\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"ibXI_Rg32\",\"berKSwamb\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"berKSwamb\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"ibXI_Rg32\")return true;return false;};const elementId3=useRouteElementId(\"z0yw28lLz\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"d31waodY1\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"fTPkapWQB\");const ref7=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1e59d2ca-334b-4ee0-ad92-a92fecca69f8, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s6924a\",\"data-framer-name\":\"expend\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d1fiwk\",\"data-framer-name\":\"expend\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mm9lxc\",\"data-framer-name\":\"Banner\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9n9f8v\",\"data-framer-name\":\"Banner\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lkq984-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"HYTygkWhj\",layoutId:\"HYTygkWhj\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vs5bom\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-6jhp2p\",\"data-styles-preset\":\"vQ3yeViSP\",children:[\"Formation\",/*#__PURE__*/_jsx(\"strong\",{children:\" Gratuite\"}),\" \u2013 Offre\",/*#__PURE__*/_jsx(\"strong\",{children:\" Illimit\\xe9e\"}),\" !  \uD83C\uDF81\"]})}),className:\"framer-1m81urg\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{width:\"100vw\",y:41},EI3IaXwlb:{width:\"98.0208vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:\"98vw\",y:51,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xeeowc-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{__framer__targets:[{ref:ref2,target:\"Bb4Nf6Mbp\"}],variant:\"JDgYTwuyw\"},ibXI_Rg32:{__framer__targets:[{ref:ref2,target:\"gh9aAMOT_\"}],variant:\"xYGX9rVRo\"}},children:/*#__PURE__*/_jsx(NavBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"NF95DGGZ6\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"TNFUOMuTl\",layoutId:\"TNFUOMuTl\",style:{width:\"100%\"},variant:\"xV20eA892\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-143rlyz\",\"data-framer-name\":\"Main wrapper\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-zhzcuq\",\"data-framer-name\":\"Section hero\",id:elementId,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+41+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/QWtFd4zOUyCJOBaZ4cttlTWn6s.webp\",srcSet:\"https://framerusercontent.com/images/QWtFd4zOUyCJOBaZ4cttlTWn6s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/QWtFd4zOUyCJOBaZ4cttlTWn6s.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWtFd4zOUyCJOBaZ4cttlTWn6s.webp 1920w\"}},iMYUHpfAW:{background:{alt:\"\",positionX:\"center\",positionY:\"center\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+51+0),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.98)`,src:\"https://framerusercontent.com/images/QWtFd4zOUyCJOBaZ4cttlTWn6s.webp\",srcSet:\"https://framerusercontent.com/images/QWtFd4zOUyCJOBaZ4cttlTWn6s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/QWtFd4zOUyCJOBaZ4cttlTWn6s.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWtFd4zOUyCJOBaZ4cttlTWn6s.webp 1920w\"},className:\"framer-19hnbmm\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2k87t5-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"QFOrpZ1ZP\",isMixedBorderRadius:false,layoutId:\"QFOrpZ1ZP\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/ETR8ehEQwemUQAzH0kvtJfdilDk.webp\",posterEnabled:true,srcType:\"URL\",srcUrl:\"https://res.cloudinary.com/dhzkhtuis/video/upload/f_auto:video,q_auto/tj5pynkbnciyzuciplws\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8tndsc\",\"data-border\":true,\"data-framer-name\":\"Video content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1i6pwkr\",\"data-styles-preset\":\"G57EOMvJl\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Votre mercerie cr\\xe9ative :\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Savoir-faire et passion depuis 1992\"})]})}),className:\"framer-c3shlo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k623qy hidden-1ndz53i\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3uxtn8-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-1e59d2ca-334b-4ee0-ad92-a92fecca69f8, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"chevron\",iconSelection:\"chevron-down\",id:\"nIugKZiJ3\",layoutId:\"nIugKZiJ3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-d74622\",\"data-framer-name\":\"Section Machines\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p9fnjd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8fvdms\",\"data-styles-preset\":\"U4VzIm82V\",children:\"Nos machines\"})}),className:\"framer-mxaj3t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-imv245\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EI3IaXwlb:{query:{from:{alias:\"Km85WnU76\",data:Machines,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},orderBy:[{collection:\"Km85WnU76\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"Km85WnU76\",name:\"xlf9WE7IW\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"USO_ifXYb\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"CF2Ac1V0A\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"svH4pRk3F\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"oHpfM1By4\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"id\",type:\"Identifier\"}]}},iMYUHpfAW:{query:{from:{alias:\"Km85WnU76\",data:Machines,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},orderBy:[{collection:\"Km85WnU76\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"Km85WnU76\",name:\"xlf9WE7IW\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"USO_ifXYb\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"CF2Ac1V0A\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"svH4pRk3F\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"oHpfM1By4\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Km85WnU76\",data:Machines,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"Km85WnU76\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"Km85WnU76\",name:\"xlf9WE7IW\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"USO_ifXYb\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"CF2Ac1V0A\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"svH4pRk3F\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"oHpfM1By4\",type:\"Identifier\"},{collection:\"Km85WnU76\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({CF2Ac1V0A:CF2Ac1V0AKm85WnU76,id:idKm85WnU76,oHpfM1By4:oHpfM1By4Km85WnU76,svH4pRk3F:svH4pRk3FKm85WnU76,USO_ifXYb:USO_ifXYbKm85WnU76,xlf9WE7IW:xlf9WE7IWKm85WnU76},index)=>{xlf9WE7IWKm85WnU76??=\"\";svH4pRk3FKm85WnU76??=\"\";oHpfM1By4Km85WnU76??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Km85WnU76-${idKm85WnU76}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xlf9WE7IW:xlf9WE7IWKm85WnU76},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{xlf9WE7IW:xlf9WE7IWKm85WnU76},webPageId:\"KvYS6saZB\"},implicitPathVariables:undefined},{href:{pathVariables:{xlf9WE7IW:xlf9WE7IWKm85WnU76},webPageId:\"KvYS6saZB\"},implicitPathVariables:undefined},{href:{pathVariables:{xlf9WE7IW:xlf9WE7IWKm85WnU76},webPageId:\"KvYS6saZB\"},implicitPathVariables:undefined},{href:{pathVariables:{xlf9WE7IW:xlf9WE7IWKm85WnU76},webPageId:\"KvYS6saZB\"},implicitPathVariables:undefined},{href:{pathVariables:{xlf9WE7IW:xlf9WE7IWKm85WnU76},webPageId:\"KvYS6saZB\"},implicitPathVariables:undefined},{href:{pathVariables:{xlf9WE7IW:xlf9WE7IWKm85WnU76},webPageId:\"KvYS6saZB\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{height:210,width:`max((min(${componentViewport?.width||\"100vw\"} - 32px, 1600px) - 8px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+800+16+0+0+54.4+0+0},EI3IaXwlb:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) - 72px) / 4, 50px)`},ibXI_Rg32:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1600px) - 48px) / 3, 50px)`},iMYUHpfAW:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) - 72px) / 4, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1600px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+40+0+0+70.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bvjch7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{variant:\"q9yXOrwpw\",xYIZlxJPW:resolvedLinks[5]},EI3IaXwlb:{xYIZlxJPW:resolvedLinks[1]},ibXI_Rg32:{xYIZlxJPW:resolvedLinks[4]},iMYUHpfAW:{xYIZlxJPW:resolvedLinks[2]},uh6ApCikD:{xYIZlxJPW:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Card,{bJtWiCsiz:oHpfM1By4Km85WnU76,height:\"100%\",id:\"pfsXBJDi1\",layoutId:\"pfsXBJDi1\",OVJJGQUXm:svH4pRk3FKm85WnU76,style:{height:\"100%\",width:\"100%\"},uw4UVgD6v:enumToDisplayNameFunctions[\"USO_ifXYb\"]?.(USO_ifXYbKm85WnU76,activeLocale),variant:\"zRt8Ii2RQ\",width:\"100%\",XfFubO2Ud:toResponsiveImage(CF2Ac1V0AKm85WnU76),xYIZlxJPW:resolvedLinks[0]})})})})})})})},idKm85WnU76);})})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uQXkcNFWy\"},implicitPathVariables:undefined},{href:{webPageId:\"uQXkcNFWy\"},implicitPathVariables:undefined},{href:{webPageId:\"uQXkcNFWy\"},implicitPathVariables:undefined},{href:{webPageId:\"uQXkcNFWy\"},implicitPathVariables:undefined},{href:{webPageId:\"uQXkcNFWy\"},implicitPathVariables:undefined},{href:{webPageId:\"uQXkcNFWy\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{y:(componentViewport?.y||0)+0+0+0+800+16+522.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+1e3+40+818.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-42wscc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{YI_yki86_:resolvedLinks1[5]},EI3IaXwlb:{YI_yki86_:resolvedLinks1[1]},ibXI_Rg32:{YI_yki86_:resolvedLinks1[4]},iMYUHpfAW:{YI_yki86_:resolvedLinks1[2]},uh6ApCikD:{YI_yki86_:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Bouton,{height:\"100%\",hJlixreKC:false,id:\"SWePmYZwq\",layoutId:\"SWePmYZwq\",MqrK6VPx6:\"Voir toutes nos machines\",variant:\"lUDqzfbHL\",width:\"100%\",YI_yki86_:resolvedLinks1[0]})})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1tj7ybi\",\"data-framer-name\":\"Section Services\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-curqxy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f2ztqy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{transformTemplate:undefined},ibXI_Rg32:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8fvdms\",\"data-styles-preset\":\"U4VzIm82V\",children:\"Nos services\"})}),className:\"framer-1ghlcr8\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11p8dit-container hidden-xy4q99 hidden-1ndz53i\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:24,height:\"100%\",hoverFactor:1,id:\"sZ7E9v02T\",layoutId:\"sZ7E9v02T\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"atelier-couture-machine-\\xe0-coudre1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"RD5YnMcCl\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"YSJBducAR\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-w4mh13 framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YSJBducAR\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},offset:{type:\"LiteralValue\",value:0},orderBy:[{collection:\"YSJBducAR\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"YSJBducAR\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"YSJBducAR\",name:\"AduVjsYHV\",type:\"Identifier\"},{collection:\"YSJBducAR\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"YSJBducAR\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({AduVjsYHV:AduVjsYHVYSJBducAR,id:idYSJBducAR,M2eeQLrd8:M2eeQLrd8YSJBducAR,mknadLjaH:mknadLjaHYSJBducAR},index1)=>{mknadLjaHYSJBducAR??=\"\";M2eeQLrd8YSJBducAR??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`YSJBducAR-${idYSJBducAR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8YSJBducAR},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:653,width:\"3285px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jjk96d-container\",children:/*#__PURE__*/_jsx(CardServices,{GTz7lAeDn:toResponsiveImage(AduVjsYHVYSJBducAR),height:\"100%\",id:\"Ey9GZUTNd\",layoutId:\"Ey9GZUTNd\",qq5p0CFki:mknadLjaHYSJBducAR,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})},idYSJBducAR);})})})})})})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lgiz4 hidden-72rtr7 hidden-1x9lscy hidden-zoeb5m hidden-mk7zmh\",\"data-framer-name\":\"services wrappers\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"v\\xeatement-sur-mesure1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"nzp40uR59\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"tQtpYvPCk\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-18iwnsf framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tQtpYvPCk\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"tQtpYvPCk\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"tQtpYvPCk\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"tQtpYvPCk\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"tQtpYvPCk\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"tQtpYvPCk\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idtQtpYvPCk,M2eeQLrd8:M2eeQLrd8tQtpYvPCk,mEJrkNAiH:mEJrkNAiHtQtpYvPCk,mknadLjaH:mknadLjaHtQtpYvPCk},index2)=>{mknadLjaHtQtpYvPCk??=\"\";M2eeQLrd8tQtpYvPCk??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tQtpYvPCk-${idtQtpYvPCk}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8tQtpYvPCk},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1418.4+16+0+0+50+0+0+0),sizes:\"289px\",...toResponsiveImage(mEJrkNAiHtQtpYvPCk)}},ibXI_Rg32:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1938.4+40+0+0+71+.5+0+0),sizes:\"338px\",...toResponsiveImage(mEJrkNAiHtQtpYvPCk)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"338px\",...toResponsiveImage(mEJrkNAiHtQtpYvPCk)},className:\"framer-1lyo6ic\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dn811r\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"V\\xeatement sur mesure\"})})},ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"V\\xeatement sur mesure\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-frztrz\",\"data-styles-preset\":\"l5Pxx_A3i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"V\\xeatement sur mesure\"})}),className:\"framer-cko0av\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:mknadLjaHtQtpYvPCk,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idtQtpYvPCk);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"retouche-couture1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"bfMTIUSB6\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"Ra5XHmqA2\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1w0ahja framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Ra5XHmqA2\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},orderBy:[{collection:\"Ra5XHmqA2\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"Ra5XHmqA2\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"Ra5XHmqA2\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"Ra5XHmqA2\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"Ra5XHmqA2\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idRa5XHmqA2,M2eeQLrd8:M2eeQLrd8Ra5XHmqA2,mEJrkNAiH:mEJrkNAiHRa5XHmqA2,mknadLjaH:mknadLjaHRa5XHmqA2},index3)=>{mknadLjaHRa5XHmqA2??=\"\";M2eeQLrd8Ra5XHmqA2??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Ra5XHmqA2-${idRa5XHmqA2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8Ra5XHmqA2},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1418.4+16+0+0+50+0+0+0),sizes:\"289px\",...toResponsiveImage(mEJrkNAiHRa5XHmqA2)}},ibXI_Rg32:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1938.4+40+0+0+71+.5+0+0),sizes:\"338px\",...toResponsiveImage(mEJrkNAiHRa5XHmqA2)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"338px\",...toResponsiveImage(mEJrkNAiHRa5XHmqA2)},className:\"framer-dk9g8l\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yvnii8\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Retouche & couture\"})})},ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Retouche & couture\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-frztrz\",\"data-styles-preset\":\"l5Pxx_A3i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Retouche & couture\"})}),className:\"framer-10vxcpn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:mknadLjaHRa5XHmqA2,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idRa5XHmqA2);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"broderie-personnalis\\xe9e1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"cbv0mdaKl\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"mtFTv2WT2\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1tny4gt framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mtFTv2WT2\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},orderBy:[{collection:\"mtFTv2WT2\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"mtFTv2WT2\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"mtFTv2WT2\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"mtFTv2WT2\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"mtFTv2WT2\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idmtFTv2WT2,M2eeQLrd8:M2eeQLrd8mtFTv2WT2,mEJrkNAiH:mEJrkNAiHmtFTv2WT2,mknadLjaH:mknadLjaHmtFTv2WT2},index4)=>{mknadLjaHmtFTv2WT2??=\"\";M2eeQLrd8mtFTv2WT2??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mtFTv2WT2-${idmtFTv2WT2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8mtFTv2WT2},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1418.4+16+0+0+50+0+0+0),sizes:\"289px\",...toResponsiveImage(mEJrkNAiHmtFTv2WT2)}},ibXI_Rg32:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1938.4+40+0+0+71+.5+0+0),sizes:\"338px\",...toResponsiveImage(mEJrkNAiHmtFTv2WT2)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"338px\",...toResponsiveImage(mEJrkNAiHmtFTv2WT2)},className:\"framer-167yr9k\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uc15k3\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Broderie personnalis\\xe9e\"})})},ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Broderie personnalis\\xe9e\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-frztrz\",\"data-styles-preset\":\"l5Pxx_A3i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Broderie personnalis\\xe9e\"})}),className:\"framer-vte1z4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:mknadLjaHmtFTv2WT2,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idmtFTv2WT2);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"conseils-tricot-et-crochet1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"kk6C34YED\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"LonRtTMYj\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1bwzih0 framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LonRtTMYj\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},orderBy:[{collection:\"LonRtTMYj\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"LonRtTMYj\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"LonRtTMYj\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"LonRtTMYj\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"LonRtTMYj\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idLonRtTMYj,M2eeQLrd8:M2eeQLrd8LonRtTMYj,mEJrkNAiH:mEJrkNAiHLonRtTMYj,mknadLjaH:mknadLjaHLonRtTMYj},index5)=>{mknadLjaHLonRtTMYj??=\"\";M2eeQLrd8LonRtTMYj??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LonRtTMYj-${idLonRtTMYj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8LonRtTMYj},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1418.4+16+0+0+50+0+0+0),sizes:\"289px\",...toResponsiveImage(mEJrkNAiHLonRtTMYj)}},ibXI_Rg32:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1938.4+40+0+0+71+.5+0+0),sizes:\"338px\",...toResponsiveImage(mEJrkNAiHLonRtTMYj)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"338px\",...toResponsiveImage(mEJrkNAiHLonRtTMYj)},className:\"framer-18aa3mz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-awucge\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Conseils tricot et crochet\"})})},ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Conseils tricot et crochet\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-frztrz\",\"data-styles-preset\":\"l5Pxx_A3i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Conseils tricot et crochet\"})}),className:\"framer-15fxe0u\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:mknadLjaHLonRtTMYj,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idLonRtTMYj);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"d\\xe9monstration1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"tQZjKHf0L\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"VxZgp2Rg8\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-13n2r8y framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"VxZgp2Rg8\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},orderBy:[{collection:\"VxZgp2Rg8\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"VxZgp2Rg8\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"VxZgp2Rg8\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"VxZgp2Rg8\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"VxZgp2Rg8\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({id:idVxZgp2Rg8,M2eeQLrd8:M2eeQLrd8VxZgp2Rg8,mEJrkNAiH:mEJrkNAiHVxZgp2Rg8,mknadLjaH:mknadLjaHVxZgp2Rg8},index6)=>{mknadLjaHVxZgp2Rg8??=\"\";M2eeQLrd8VxZgp2Rg8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VxZgp2Rg8-${idVxZgp2Rg8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8VxZgp2Rg8},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1418.4+16+0+0+50+0+0+0),sizes:\"289px\",...toResponsiveImage(mEJrkNAiHVxZgp2Rg8)}},ibXI_Rg32:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1938.4+40+0+0+71+.5+0+0),sizes:\"338px\",...toResponsiveImage(mEJrkNAiHVxZgp2Rg8)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"338px\",...toResponsiveImage(mEJrkNAiHVxZgp2Rg8)},className:\"framer-1kdsecd\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15lnubm\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"D\\xe9monstration\"})})},ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"D\\xe9monstration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-frztrz\",\"data-styles-preset\":\"l5Pxx_A3i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"D\\xe9monstration\"})}),className:\"framer-js4kyu\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:mknadLjaHVxZgp2Rg8,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idVxZgp2Rg8);})})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cg4o8g hidden-72rtr7 hidden-xy4q99\",\"data-framer-name\":\"service wrapper\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"couture-diy1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"fTq8AVrSt\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"jIqcFC7ZO\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-2s4r0v framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jIqcFC7ZO\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},orderBy:[{collection:\"jIqcFC7ZO\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"jIqcFC7ZO\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"jIqcFC7ZO\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"jIqcFC7ZO\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"jIqcFC7ZO\",name:\"id\",type:\"Identifier\"}]},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({id:idjIqcFC7ZO,M2eeQLrd8:M2eeQLrd8jIqcFC7ZO,mEJrkNAiH:mEJrkNAiHjIqcFC7ZO,mknadLjaH:mknadLjaHjIqcFC7ZO},index7)=>{mknadLjaHjIqcFC7ZO??=\"\";M2eeQLrd8jIqcFC7ZO??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`jIqcFC7ZO-${idjIqcFC7ZO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8jIqcFC7ZO},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1418.4+16+0+0+50+0+0+0+0),sizes:\"289px\",...toResponsiveImage(mEJrkNAiHjIqcFC7ZO)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"338px\",...toResponsiveImage(mEJrkNAiHjIqcFC7ZO)},className:\"framer-1a9gvz9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t2octz\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Couture DIY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-frztrz\",\"data-styles-preset\":\"l5Pxx_A3i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Couture DIY\"})}),className:\"framer-12usj8g\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:mknadLjaHjIqcFC7ZO,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idjIqcFC7ZO);})})})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hg9vrv hidden-72rtr7 hidden-1ndz53i\",\"data-framer-name\":\"wrapper sav\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"sav1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"PXYpk9e4N\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"mitja1NWp\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-la271q framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mitja1NWp\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:7},orderBy:[{collection:\"mitja1NWp\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"mitja1NWp\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"mitja1NWp\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"mitja1NWp\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"mitja1NWp\",name:\"id\",type:\"Identifier\"}]},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({id:idmitja1NWp,M2eeQLrd8:M2eeQLrd8mitja1NWp,mEJrkNAiH:mEJrkNAiHmitja1NWp,mknadLjaH:mknadLjaHmitja1NWp},index8)=>{mknadLjaHmitja1NWp??=\"\";M2eeQLrd8mitja1NWp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mitja1NWp-${idmitja1NWp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8mitja1NWp},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ibXI_Rg32:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1938.4+40+0+0+71+.5+0+0+0),sizes:\"338px\",...toResponsiveImage(mEJrkNAiHmitja1NWp)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"338px\",...toResponsiveImage(mEJrkNAiHmitja1NWp)},className:\"framer-ek7h0q\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qj6ado\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SAV\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-frztrz\",\"data-styles-preset\":\"l5Pxx_A3i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SAV\"})}),className:\"framer-fzzc5e\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:mknadLjaHmitja1NWp,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idmitja1NWp);})})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uon1bx hidden-72rtr7\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"atelier-couture-machine-\\xe0-coudre1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"RD5YnMcCl\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"gx4jSYnED\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-nul8yk framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gx4jSYnED\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},orderBy:[{collection:\"gx4jSYnED\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"gx4jSYnED\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"gx4jSYnED\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"gx4jSYnED\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"gx4jSYnED\",name:\"id\",type:\"Identifier\"}]},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({id:idgx4jSYnED,M2eeQLrd8:M2eeQLrd8gx4jSYnED,mEJrkNAiH:mEJrkNAiHgx4jSYnED,mknadLjaH:mknadLjaHgx4jSYnED},index9)=>{mknadLjaHgx4jSYnED??=\"\";M2eeQLrd8gx4jSYnED??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gx4jSYnED-${idgx4jSYnED}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8gx4jSYnED},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1418.4+16+0+0+50+0+0+0+0),sizes:\"289px\",...toResponsiveImage(mEJrkNAiHgx4jSYnED)}},ibXI_Rg32:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1938.4+40+0+0+71+0+.5+0+0),sizes:\"338px\",...toResponsiveImage(mEJrkNAiHgx4jSYnED)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"338px\",...toResponsiveImage(mEJrkNAiHgx4jSYnED)},className:\"framer-aafhb5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lyc3um\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Atelier couture & machine \\xe0 coudre\"})})},ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-86mwra\",\"data-styles-preset\":\"Tx5VBfyuR\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Atelier couture & machine \\xe0 coudre\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-frztrz\",\"data-styles-preset\":\"l5Pxx_A3i\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Atelier couture & machine \\xe0 coudre\"})}),className:\"framer-xoijd0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:mknadLjaHgx4jSYnED,verticalAlignment:\"top\",withExternalLayout:true})})]})})})},idgx4jSYnED);})})})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-aazxji\",\"data-framer-name\":\"Section Domaines\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dgass1\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{M2eeQLrd8:\"mercerie1\"},unresolvedPathSlugs:{M2eeQLrd8:{collectionId:\"JyNzrCafk\",collectionItemId:\"kmOFGpLmK\"}},webPageId:\"EUWtJyjMY\"},nodeId:\"FyK9jSqbB\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-3lgdo framer-lux5qc\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FyK9jSqbB\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:8},orderBy:[{collection:\"FyK9jSqbB\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"FyK9jSqbB\",name:\"mEJrkNAiH\",type:\"Identifier\"},{collection:\"FyK9jSqbB\",name:\"mknadLjaH\",type:\"Identifier\"},{collection:\"FyK9jSqbB\",name:\"M2eeQLrd8\",type:\"Identifier\"},{collection:\"FyK9jSqbB\",name:\"id\",type:\"Identifier\"}]},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({id:idFyK9jSqbB,M2eeQLrd8:M2eeQLrd8FyK9jSqbB,mEJrkNAiH:mEJrkNAiHFyK9jSqbB,mknadLjaH:mknadLjaHFyK9jSqbB},index10)=>{mknadLjaHFyK9jSqbB??=\"\";M2eeQLrd8FyK9jSqbB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FyK9jSqbB-${idFyK9jSqbB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2eeQLrd8:M2eeQLrd8FyK9jSqbB},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1600px), 1px), 50px)`,y:(componentViewport?.y||0)+0+0+0+1652.4+16+0+0+0+0},ibXI_Rg32:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1600px), 1px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+2305.4+40+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:548,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 80px, 1600px), 1px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+2666.4+40+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rh0fop-container\",children:/*#__PURE__*/_jsx(CardServicesBig,{DspQ3QXGZ:mknadLjaHFyK9jSqbB,Gq7XzuicN:toResponsiveImage(mEJrkNAiHFyK9jSqbB),height:\"100%\",id:\"arS1Zis8J\",layoutId:\"arS1Zis8J\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})},idFyK9jSqbB);})})})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-152a5ut\",\"data-framer-name\":\"Section Valeurs\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vhxxuy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167waqb\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1obq388\",\"data-framer-name\":\"Vector\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:58,svg:'<svg width=\"58\" height=\"64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M54.802 24.619c-1.522-1.3-3.283-1.838-5.173-1.897 2.306-1.976 4.532-4.75 5.492-8.495 1.643-6.404-.166-9.881-1.976-11.67C49.598-.945 44.134.04 42.539.428c-4.48 1.09-8.238 4.59-10.46 9.531-1.34-4.025-3.575-6.57-6.2-6.813-2.434-.222-4.261 1.588-5.475 2.791-3.176 3.142-4.656 7.098-5.29 10.725-1.506-2.032-3.395-3.204-5.243-3.156-3.52.077-5.579 4.178-6.567 6.148-4.036 8.044-6.21 24.263 4.611 34.38l-5.651 6.973a1.332 1.332 0 0 0 2.066 1.678l5.62-6.934C14.892 59.477 20.648 61 26.067 61c4.008 0 7.829-.829 10.995-2.205 4.264-1.852 12.035-6.74 10.897-11.983-.36-1.657-1.533-2.916-2.92-3.852 2.414-.576 5.045-1.644 7.483-3.557 2.028-1.588 5.422-4.248 5.388-8.422-.028-3.554-2.594-5.922-3.107-6.362Zm-3.921 12.69c-3.645 2.853-7.826 3.533-10.693 3.599a1.332 1.332 0 0 0-.347 2.61c3.127.923 5.19 2.365 5.513 3.86.665 3.065-5.19 7.166-9.355 8.972-6.483 2.816-16.653 3.062-24.364-2.68l2.663-3.283c.17.132.371.228.597.263 3.148.51 6.355.767 9.541.767h.43a60.257 60.257 0 0 0 13.218-1.575 1.332 1.332 0 0 0-.603-2.593 57.518 57.518 0 0 1-12.631 1.505 58.013 58.013 0 0 1-8.727-.617L26.17 35.74c.035.004.066.01.101.01h.364c2.798 0 5.61-.228 8.366-.68a51.724 51.724 0 0 0 10.375-2.839 1.327 1.327 0 0 0 .756-1.723 1.33 1.33 0 0 0-1.724-.756 49.185 49.185 0 0 1-9.84 2.694 49.143 49.143 0 0 1-6.223.61l17.558-21.655a1.332 1.332 0 0 0-2.067-1.678l-16.102 19.86a34.955 34.955 0 0 1-1.501-5.922 34.826 34.826 0 0 1-.34-8.169 1.332 1.332 0 1 0-2.656-.201 37.675 37.675 0 0 0 .367 8.79 37.647 37.647 0 0 0 2.074 7.641c.035.087.087.156.135.232l-9.531 11.758a44.95 44.95 0 0 1-2.874-6.952 44.877 44.877 0 0 1-2.032-11.15c-.042-.735-.68-1.314-1.4-1.256a1.328 1.328 0 0 0-1.256 1.401 47.732 47.732 0 0 0 2.153 11.81 47.772 47.772 0 0 0 3.589 8.397l-4.865 5.999c-9.614-9.14-7.583-23.806-3.914-31.115.697-1.387 2.326-4.64 4.243-4.681h.042c1.7 0 3.668 2.302 4.799 5.62a1.33 1.33 0 0 0 2.59-.416c.041-4 .929-9.597 4.92-13.543.915-.905 2.153-2.156 3.36-2.032 1.816.167 4.14 3.51 4.87 9.373a1.33 1.33 0 0 0 1.263 1.165 1.322 1.322 0 0 0 1.359-1.047c1.383-6.401 5.229-11.103 10.04-12.27 1.252-.306 5.538-1.103 8.103 1.435 1.883 1.862 2.324 5.013 1.27 9.112-1.963 7.652-10.319 10.582-10.672 10.703a1.334 1.334 0 0 0 .86 2.525h.003c5.336-1.82 8.332-1.859 10.342-.143.222.188 2.157 1.91 2.174 4.362.021 2.86-2.62 4.93-4.368 6.3v-.001Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Respect animal et environnemental\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Respect animal et environnemental\"})}),className:\"framer-1qtdhnu\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b71bf358-29d6-48e5-af75-ad03e281a364, rgb(64, 64, 64))\"},children:\"Des choix \\xe9thiques pour des produits respectueux et durables.\"})}),className:\"framer-59h5zx\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ldu9y4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g953g3\",\"data-framer-name\":\"France\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:70,svg:'<svg width=\"70\" height=\"64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"-.659\" width=\"70\" height=\"64\" fill=\"#000\"><path fill=\"#fff\" d=\"M0-.659h70v64H0z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.157 1.988c-.395.126-.784.418-1.1.934-.324.528-.613 1.389-.846 2.303-.256.993-.448 2.054-.634 2.6-.218.09-.94.383-1.506.53-1.167.298-2.52.537-3.378.749-.546.136-.94.295-1.135.421-.71.463-.914 1.12-.834 1.893.008.112.035.268.064.425-.828-.033-2.42-.124-3.036-.328a1.603 1.603 0 0 1-.2-.091 7.23 7.23 0 0 1 .085-.504c.136-.59-.053-1.22-.793-1.66-.389-.23-1.064-.43-1.81-.53-1.01-.139-2.152-.112-2.7.032-.601.16-1.188.722-1.45 1.639-.23.796-.242 1.88.029 2.795.218.734.616 1.35 1.147 1.733.654.475.855 1.303.91 1.963-.159.047-.359.1-.524.127-1.191.204-2.783.227-3.393.212-.03-.014-.124-.053-.18-.085a4.204 4.204 0 0 1-.61-.442c-.808-.672-1.61-1.557-1.966-1.828-.372-.286-.911-.451-1.542-.401-.982.077-2.258.71-2.978 1.772a1.803 1.803 0 0 1-.197.053 3.11 3.11 0 0 1-.643.006c-.881-.065-1.774-.224-2.222-.145-.737.133-1.256.625-1.524 1.356-.242.664-.233 1.563-.089 2.208.127.572.655 1.132 1.58 1.339.493.112 1.306.144 1.884.153l.012.165c-.245.009-.51.018-.758.032-.519.036-.984.124-1.28.254-.615.274-.872.737-.907 1.23-.06.869.371 1.77 1.259 2.464.987.775 2.588 1.309 4.283 1.188.955-.068 2.134.398 3.163.955 1.017.548 1.901 1.188 2.193 1.636.395.607.879.887 1.368 1.043.139.044.336.089.495.121.098.495.38 1.168.817 1.896.946 1.574 2.567 3.59 3.127 4.368a5.03 5.03 0 0 1 .761 1.71c.059.245.056.631.056.734-.427.404-.678 1.029-.696 1.816-.023 1.052.425 2.523.487 3.375.041.531-.354 2-.717 3.432-.436 1.712-.854 3.378-.854 3.803 0 .277-.23.672-.42 1.105-.312.72-.627 1.486-.704 2.105a1.53 1.53 0 0 0 .28 1.09c.23.334.714.693 1.386.973.77.322 1.851.605 2.72.879.316.1.708.256.841.312.248.325.684.678 1.3.964 1.073.504 2.815.985 3.868 1.418.955.395 1.922.392 2.883.23.74-.124 1.474-.35 2.187-.46.13-.017.277.036.44.092.312.106.642.274.984.462 1.267.705 2.612 1.704 3.396 2.029.678.277 1.547.348 2.423.227 1.226-.168 2.452-.69 3.107-1.244.884-.752.943-1.43.81-2.17-.052-.289-.203-.604-.22-1.008.05-.089.244-.454.424-.696.802-1.09 2.173-2.429 2.541-2.644.124-.074.292-.07.501-.053.407.03.9.168 1.492.407 1.377.56 1.975.241 2.509-.177.2-.16.36-.428.725-.616.144.059.654.27.993.477 1.3.781 2.913 1.949 4.46 2.353 1.23.32 2.577-.006 3.785-.62 1.516-.772 2.79-1.963 3.149-2.255.595-.486 1.695-1.892 2.444-2.827 1.188-1.488.734-3.378-.395-4.15-.782-.537-1.236-.43-1.569-.313a1.53 1.53 0 0 0-.377.195l-.006.006a46.267 46.267 0 0 1-1.374-1.518c.272-.242.419-.522.493-.808.1-.39.053-.834-.183-1.291-.21-.407-.628-.867-1.05-1.28.516-.348 1.22-.831 1.516-1.079.427-.362.59-.76.625-1.017.038-.253-.021-.745-.23-1.326-.29-.793-.84-1.916-1.064-2.462-.03-.076-.003-.17.008-.274.027-.271.089-.56.145-.825.124-.596.182-1.138.124-1.46-.095-.5-.537-1.09-1.26-1.441-.772-.371-1.789-.436-2.46-.139l-.213-.082c.168-.23.357-.486.557-.725.28-.345.563-.678.826-.82.566-.303 1.034-1.029 1.35-1.922.147-.415.277-.866.427-1.256.018-.05.047-.109.077-.165.165.115.371.248.513.301.419.16.979.147 1.51-.171.727-.433 1.488-1.524 1.06-2.983.003-.036.015-.3.047-.48.071-.372.195-.805.354-1.257.298-.846.705-1.75 1.1-2.423.185-.321.345-.586.492-.701.772-.605 1.937-2.087 2.406-3.222.341-.823.306-1.55.076-1.987-.36-.687-.94-1.011-1.692-1.064-.569-.042-1.303.138-2.022.312a2.595 2.595 0 0 1-.254-.07 5.348 5.348 0 0 1-.855-.44c-.769-.466-1.503-.985-1.883-1.138-.678-.268-1.285-.194-1.857.05-.28.121-.549.292-.817.451-.147-.1-.533-.371-.766-.651-.316-.377-.876-.737-1.533-1.005-1.032-.419-2.308-.664-2.6-.714a21.326 21.326 0 0 1-1.539-.468 10.32 10.32 0 0 1-.604-.254c.009-.44.026-1.598-.006-2.002-.068-.922-.678-1.273-1.026-1.35-.242-.053-.758-.032-1.315.16-.651.226-1.353.672-1.663 1.087a1.355 1.355 0 0 1-.218.071l-.056.009-.017-.681-.242.212c.239-.35.324-.784-.11-1.217-.146-.148-.94-.938-2.602-1.026-.867-.047-1.312-.56-1.71-1.08-.245-.318-.701-.677-1.267-1.007-.944-.549-2.244-1.067-2.721-1.339l-.25-.418c-.234-.307-.57-.631-1.404-.778-.466-.083-1.138.038-1.83.344-.844.372-1.76.991-2.173 1.28l-.015-.003Zm3.602.719a2.18 2.18 0 0 0 .86.884c.405.233 1.448.664 2.35 1.135.41.218.805.407.97.622.784 1.017 1.74 1.899 3.45 1.99.276.015.524.086.707.16.003.412.041.91.17 1.293.254.752.785 1.203 1.49 1.265 1.078.094 2.042-.2 2.623-.725 0 .236.006.463.02.634.054.607.266 1.067.502 1.323.21.227.669.513 1.247.749.937.377 2.217.707 2.217.707l.12.027s.962.171 1.74.43c.407.136.828.263 1.017.484.601.716 1.262 1.197 1.842 1.397.634.218 1.226.165 1.73-.118l.688-.404c.038-.017.064-.07.111-.053.481.192 1.566 1.065 2.518 1.483.69.304 1.35.398 1.857.277.277-.068.56-.144.829-.2l-.03.056c-.392.737-1.052 1.571-1.521 1.936-.654.51-1.748 2.433-2.37 4.21-.436 1.244-.602 2.423-.469 3.054-.516-.274-1.14-.407-2.034.174-.486.318-.902 1.04-1.197 1.913-.135.404-.26.834-.418 1.203-.047.112-.145.274-.171.321-1.067.625-2.58 2.854-2.824 3.299-.25.454-.25 1.312.601 1.946.498.371 1.362.734 2.049.787.448.035.843-.05 1.147-.21l.368.112c-.053.28-.13.69-.177.985-.106.663-.088 1.309.103 1.786.195.47.725 1.74.988 2.368-.637.448-1.622 1.014-2.014 1.45-.604.666-.557 1.338-.253 1.822.133.21.421.516.77.846.152.144.365.371.533.56-.383.398-.516.72-.554.985-.053.383.053.866.598 1.597.41.549 1.256 1.66 1.987 2.217.634.484 1.28.607 1.75.486.122-.029.237-.07.343-.114a.812.812 0 0 1-.189.465c-.648.808-1.574 2.052-2.09 2.47-.312.254-1.412 1.313-2.73 1.985-.68.347-1.423.622-2.12.442-1.603-.419-3.26-1.828-4.492-2.459-.946-.483-1.777-.56-2.364-.312-.345.147-.61.318-.831.495-.154.124-.357.31-.466.413a1.787 1.787 0 0 1-.242-.08c-1.963-.793-3.28-.666-4.074-.2-.462.27-2.234 1.907-3.242 3.275-.584.79-.885 1.55-.885 2.022 0 .427.077.796.165 1.126.024.094.056.236.077.324l-.003.003c-.324.274-.899.501-1.503.634-.56.124-1.162.183-1.598.003-.876-.36-2.462-1.615-3.827-2.258-.843-.395-1.636-.572-2.249-.478-.725.112-1.474.34-2.225.466-.531.089-1.067.133-1.595-.085-.89-.369-2.288-.767-3.337-1.188a7.906 7.906 0 0 1-.832-.413c-.18-.274-.53-.593-1.084-.828-.708-.304-1.91-.602-2.904-.935a8.81 8.81 0 0 1-.678-.277c.144-.433.383-.908.572-1.347.274-.646.454-1.25.454-1.68 0-.443.59-2.424 1.02-4.184.345-1.406.584-2.694.548-3.225-.047-.61-.289-1.538-.418-2.402-.05-.324-.039-.831-.036-.961.43-.41.678-1.014.69-1.754.02-1.17-.604-2.777-1.28-3.72-.539-.75-2.107-2.683-3.018-4.204-.265-.448-.51-.817-.522-1.067-.041-.958-.454-1.377-.925-1.642-.233-.133-.516-.212-.829-.268-.136-.027-.333.03-.451-.154-.416-.64-1.6-1.645-3.048-2.426-1.436-.775-3.119-1.326-4.451-1.232-.867.065-1.695-.124-2.309-.463l.042-.003c.68-.03 1.27-.141 1.518-.277.377-.206.56-.501.642-.79.124-.427.11-2.105-.182-2.821-.242-.598-.678-.864-1.04-.94-.184-.042-.79-.039-1.463-.053a8.322 8.322 0 0 1-.834-.08l.006-.112.008-.136.003-.03c.118.018.254.042.404.063.478.062 1.014.132 1.515.127 1.026-.01 1.908-.348 2.406-1.091.218-.33.563-.56.896-.678.106-.041.271-.065.35-.074.46.398 1.392 1.424 2.25 2.046.62.448 1.244.696 1.736.71.917.024 4.045-.076 5.262-.619.826-.371 1.138-.981 1.138-1.536 0-1.185-.371-3.301-1.913-4.416-.16-.112-.224-.333-.28-.557a3.034 3.034 0 0 1-.068-1.114c.015-.106.056-.248.089-.348.398-.041.996-.009 1.538.065.15.018.334.059.493.1-.038.457.006.914.206 1.32.242.484.684.962 1.59 1.265 1.16.387 3.746.679 4.866.399.755-.192 1.14-.643 1.28-1.059.123-.374.123-.816.038-1.273l-.071-.378c.221-.059.522-.135.793-.194 1.09-.236 2.52-.507 3.593-.843.681-.216 1.242-.475 1.58-.737.295-.23.484-.487.593-.734.277-.649.598-2.518 1.038-3.91.088-.282.26-.65.339-.822a1.48 1.48 0 0 0 .303-.17c.133-.098.826-.599 1.551-.982a6.88 6.88 0 0 1 .846-.336l-.003-.012Z\"/></mask><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.157 1.988c-.395.126-.784.418-1.1.934-.324.528-.613 1.389-.846 2.303-.256.993-.448 2.054-.634 2.6-.218.09-.94.383-1.506.53-1.167.298-2.52.537-3.378.749-.546.136-.94.295-1.135.421-.71.463-.914 1.12-.834 1.893.008.112.035.268.064.425-.828-.033-2.42-.124-3.036-.328a1.603 1.603 0 0 1-.2-.091 7.23 7.23 0 0 1 .085-.504c.136-.59-.053-1.22-.793-1.66-.389-.23-1.064-.43-1.81-.53-1.01-.139-2.152-.112-2.7.032-.601.16-1.188.722-1.45 1.639-.23.796-.242 1.88.029 2.795.218.734.616 1.35 1.147 1.733.654.475.855 1.303.91 1.963-.159.047-.359.1-.524.127-1.191.204-2.783.227-3.393.212-.03-.014-.124-.053-.18-.085a4.204 4.204 0 0 1-.61-.442c-.808-.672-1.61-1.557-1.966-1.828-.372-.286-.911-.451-1.542-.401-.982.077-2.258.71-2.978 1.772a1.803 1.803 0 0 1-.197.053 3.11 3.11 0 0 1-.643.006c-.881-.065-1.774-.224-2.222-.145-.737.133-1.256.625-1.524 1.356-.242.664-.233 1.563-.089 2.208.127.572.655 1.132 1.58 1.339.493.112 1.306.144 1.884.153l.012.165c-.245.009-.51.018-.758.032-.519.036-.984.124-1.28.254-.615.274-.872.737-.907 1.23-.06.869.371 1.77 1.259 2.464.987.775 2.588 1.309 4.283 1.188.955-.068 2.134.398 3.163.955 1.017.548 1.901 1.188 2.193 1.636.395.607.879.887 1.368 1.043.139.044.336.089.495.121.098.495.38 1.168.817 1.896.946 1.574 2.567 3.59 3.127 4.368a5.03 5.03 0 0 1 .761 1.71c.059.245.056.631.056.734-.427.404-.678 1.029-.696 1.816-.023 1.052.425 2.523.487 3.375.041.531-.354 2-.717 3.432-.436 1.712-.854 3.378-.854 3.803 0 .277-.23.672-.42 1.105-.312.72-.627 1.486-.704 2.105a1.53 1.53 0 0 0 .28 1.09c.23.334.714.693 1.386.973.77.322 1.851.605 2.72.879.316.1.708.256.841.312.248.325.684.678 1.3.964 1.073.504 2.815.985 3.868 1.418.955.395 1.922.392 2.883.23.74-.124 1.474-.35 2.187-.46.13-.017.277.036.44.092.312.106.642.274.984.462 1.267.705 2.612 1.704 3.396 2.029.678.277 1.547.348 2.423.227 1.226-.168 2.452-.69 3.107-1.244.884-.752.943-1.43.81-2.17-.052-.289-.203-.604-.22-1.008.05-.089.244-.454.424-.696.802-1.09 2.173-2.429 2.541-2.644.124-.074.292-.07.501-.053.407.03.9.168 1.492.407 1.377.56 1.975.241 2.509-.177.2-.16.36-.428.725-.616.144.059.654.27.993.477 1.3.781 2.913 1.949 4.46 2.353 1.23.32 2.577-.006 3.785-.62 1.516-.772 2.79-1.963 3.149-2.255.595-.486 1.695-1.892 2.444-2.827 1.188-1.488.734-3.378-.395-4.15-.782-.537-1.236-.43-1.569-.313a1.53 1.53 0 0 0-.377.195l-.006.006a46.267 46.267 0 0 1-1.374-1.518c.272-.242.419-.522.493-.808.1-.39.053-.834-.183-1.291-.21-.407-.628-.867-1.05-1.28.516-.348 1.22-.831 1.516-1.079.427-.362.59-.76.625-1.017.038-.253-.021-.745-.23-1.326-.29-.793-.84-1.916-1.064-2.462-.03-.076-.003-.17.008-.274.027-.271.089-.56.145-.825.124-.596.182-1.138.124-1.46-.095-.5-.537-1.09-1.26-1.441-.772-.371-1.789-.436-2.46-.139l-.213-.082c.168-.23.357-.486.557-.725.28-.345.563-.678.826-.82.566-.303 1.034-1.029 1.35-1.922.147-.415.277-.866.427-1.256.018-.05.047-.109.077-.165.165.115.371.248.513.301.419.16.979.147 1.51-.171.727-.433 1.488-1.524 1.06-2.983.003-.036.015-.3.047-.48.071-.372.195-.805.354-1.257.298-.846.705-1.75 1.1-2.423.185-.321.345-.586.492-.701.772-.605 1.937-2.087 2.406-3.222.341-.823.306-1.55.076-1.987-.36-.687-.94-1.011-1.692-1.064-.569-.042-1.303.138-2.022.312a2.595 2.595 0 0 1-.254-.07 5.348 5.348 0 0 1-.855-.44c-.769-.466-1.503-.985-1.883-1.138-.678-.268-1.285-.194-1.857.05-.28.121-.549.292-.817.451-.147-.1-.533-.371-.766-.651-.316-.377-.876-.737-1.533-1.005-1.032-.419-2.308-.664-2.6-.714a21.326 21.326 0 0 1-1.539-.468 10.32 10.32 0 0 1-.604-.254c.009-.44.026-1.598-.006-2.002-.068-.922-.678-1.273-1.026-1.35-.242-.053-.758-.032-1.315.16-.651.226-1.353.672-1.663 1.087a1.355 1.355 0 0 1-.218.071l-.056.009-.017-.681-.242.212c.239-.35.324-.784-.11-1.217-.146-.148-.94-.938-2.602-1.026-.867-.047-1.312-.56-1.71-1.08-.245-.318-.701-.677-1.267-1.007-.944-.549-2.244-1.067-2.721-1.339l-.25-.418c-.234-.307-.57-.631-1.404-.778-.466-.083-1.138.038-1.83.344-.844.372-1.76.991-2.173 1.28l-.015-.003Zm3.602.719a2.18 2.18 0 0 0 .86.884c.405.233 1.448.664 2.35 1.135.41.218.805.407.97.622.784 1.017 1.74 1.899 3.45 1.99.276.015.524.086.707.16.003.412.041.91.17 1.293.254.752.785 1.203 1.49 1.265 1.078.094 2.042-.2 2.623-.725 0 .236.006.463.02.634.054.607.266 1.067.502 1.323.21.227.669.513 1.247.749.937.377 2.217.707 2.217.707l.12.027s.962.171 1.74.43c.407.136.828.263 1.017.484.601.716 1.262 1.197 1.842 1.397.634.218 1.226.165 1.73-.118l.688-.404c.038-.017.064-.07.111-.053.481.192 1.566 1.065 2.518 1.483.69.304 1.35.398 1.857.277.277-.068.56-.144.829-.2l-.03.056c-.392.737-1.052 1.571-1.521 1.936-.654.51-1.748 2.433-2.37 4.21-.436 1.244-.602 2.423-.469 3.054-.516-.274-1.14-.407-2.034.174-.486.318-.902 1.04-1.197 1.913-.135.404-.26.834-.418 1.203-.047.112-.145.274-.171.321-1.067.625-2.58 2.854-2.824 3.299-.25.454-.25 1.312.601 1.946.498.371 1.362.734 2.049.787.448.035.843-.05 1.147-.21l.368.112c-.053.28-.13.69-.177.985-.106.663-.088 1.309.103 1.786.195.47.725 1.74.988 2.368-.637.448-1.622 1.014-2.014 1.45-.604.666-.557 1.338-.253 1.822.133.21.421.516.77.846.152.144.365.371.533.56-.383.398-.516.72-.554.985-.053.383.053.866.598 1.597.41.549 1.256 1.66 1.987 2.217.634.484 1.28.607 1.75.486.122-.029.237-.07.343-.114a.812.812 0 0 1-.189.465c-.648.808-1.574 2.052-2.09 2.47-.312.254-1.412 1.313-2.73 1.985-.68.347-1.423.622-2.12.442-1.603-.419-3.26-1.828-4.492-2.459-.946-.483-1.777-.56-2.364-.312-.345.147-.61.318-.831.495-.154.124-.357.31-.466.413a1.787 1.787 0 0 1-.242-.08c-1.963-.793-3.28-.666-4.074-.2-.462.27-2.234 1.907-3.242 3.275-.584.79-.885 1.55-.885 2.022 0 .427.077.796.165 1.126.024.094.056.236.077.324l-.003.003c-.324.274-.899.501-1.503.634-.56.124-1.162.183-1.598.003-.876-.36-2.462-1.615-3.827-2.258-.843-.395-1.636-.572-2.249-.478-.725.112-1.474.34-2.225.466-.531.089-1.067.133-1.595-.085-.89-.369-2.288-.767-3.337-1.188a7.906 7.906 0 0 1-.832-.413c-.18-.274-.53-.593-1.084-.828-.708-.304-1.91-.602-2.904-.935a8.81 8.81 0 0 1-.678-.277c.144-.433.383-.908.572-1.347.274-.646.454-1.25.454-1.68 0-.443.59-2.424 1.02-4.184.345-1.406.584-2.694.548-3.225-.047-.61-.289-1.538-.418-2.402-.05-.324-.039-.831-.036-.961.43-.41.678-1.014.69-1.754.02-1.17-.604-2.777-1.28-3.72-.539-.75-2.107-2.683-3.018-4.204-.265-.448-.51-.817-.522-1.067-.041-.958-.454-1.377-.925-1.642-.233-.133-.516-.212-.829-.268-.136-.027-.333.03-.451-.154-.416-.64-1.6-1.645-3.048-2.426-1.436-.775-3.119-1.326-4.451-1.232-.867.065-1.695-.124-2.309-.463l.042-.003c.68-.03 1.27-.141 1.518-.277.377-.206.56-.501.642-.79.124-.427.11-2.105-.182-2.821-.242-.598-.678-.864-1.04-.94-.184-.042-.79-.039-1.463-.053a8.322 8.322 0 0 1-.834-.08l.006-.112.008-.136.003-.03c.118.018.254.042.404.063.478.062 1.014.132 1.515.127 1.026-.01 1.908-.348 2.406-1.091.218-.33.563-.56.896-.678.106-.041.271-.065.35-.074.46.398 1.392 1.424 2.25 2.046.62.448 1.244.696 1.736.71.917.024 4.045-.076 5.262-.619.826-.371 1.138-.981 1.138-1.536 0-1.185-.371-3.301-1.913-4.416-.16-.112-.224-.333-.28-.557a3.034 3.034 0 0 1-.068-1.114c.015-.106.056-.248.089-.348.398-.041.996-.009 1.538.065.15.018.334.059.493.1-.038.457.006.914.206 1.32.242.484.684.962 1.59 1.265 1.16.387 3.746.679 4.866.399.755-.192 1.14-.643 1.28-1.059.123-.374.123-.816.038-1.273l-.071-.378c.221-.059.522-.135.793-.194 1.09-.236 2.52-.507 3.593-.843.681-.216 1.242-.475 1.58-.737.295-.23.484-.487.593-.734.277-.649.598-2.518 1.038-3.91.088-.282.26-.65.339-.822a1.48 1.48 0 0 0 .303-.17c.133-.098.826-.599 1.551-.982a6.88 6.88 0 0 1 .846-.336l-.003-.012Z\" fill=\"#000\"/><path clip-rule=\"evenodd\" d=\"M34.157 1.988c-.395.126-.784.418-1.1.934-.324.528-.613 1.389-.846 2.303-.256.993-.448 2.054-.634 2.6-.218.09-.94.383-1.506.53-1.167.298-2.52.537-3.378.749-.546.136-.94.295-1.135.421-.71.463-.914 1.12-.834 1.893.008.112.035.268.064.425-.828-.033-2.42-.124-3.036-.328a1.603 1.603 0 0 1-.2-.091 7.23 7.23 0 0 1 .085-.504c.136-.59-.053-1.22-.793-1.66-.389-.23-1.064-.43-1.81-.53-1.01-.139-2.152-.112-2.7.032-.601.16-1.188.722-1.45 1.639-.23.796-.242 1.88.029 2.795.218.734.616 1.35 1.147 1.733.654.475.855 1.303.91 1.963-.159.047-.359.1-.524.127-1.191.204-2.783.227-3.393.212-.03-.014-.124-.053-.18-.085a4.204 4.204 0 0 1-.61-.442c-.808-.672-1.61-1.557-1.966-1.828-.372-.286-.911-.451-1.542-.401-.982.077-2.258.71-2.978 1.772a1.803 1.803 0 0 1-.197.053 3.11 3.11 0 0 1-.643.006c-.881-.065-1.774-.224-2.222-.145-.737.133-1.256.625-1.524 1.356-.242.664-.233 1.563-.089 2.208.127.572.655 1.132 1.58 1.339.493.112 1.306.144 1.884.153l.012.165c-.245.009-.51.018-.758.032-.519.036-.984.124-1.28.254-.615.274-.872.737-.907 1.23-.06.869.371 1.77 1.259 2.464.987.775 2.588 1.309 4.283 1.188.955-.068 2.134.398 3.163.955 1.017.548 1.901 1.188 2.193 1.636.395.607.879.887 1.368 1.043.139.044.336.089.495.121.098.495.38 1.168.817 1.896.946 1.574 2.567 3.59 3.127 4.368a5.03 5.03 0 0 1 .761 1.71c.059.245.056.631.056.734-.427.404-.678 1.029-.696 1.816-.023 1.052.425 2.523.487 3.375.041.531-.354 2-.717 3.432-.436 1.712-.854 3.378-.854 3.803 0 .277-.23.672-.42 1.105-.312.72-.627 1.486-.704 2.105a1.53 1.53 0 0 0 .28 1.09c.23.334.714.693 1.386.973.77.322 1.851.605 2.72.879.316.1.708.256.841.312.248.325.684.678 1.3.964 1.073.504 2.815.985 3.868 1.418.955.395 1.922.392 2.883.23.74-.124 1.474-.35 2.187-.46.13-.017.277.036.44.092.312.106.642.274.984.462 1.267.705 2.612 1.704 3.396 2.029.678.277 1.547.348 2.423.227 1.226-.168 2.452-.69 3.107-1.244.884-.752.943-1.43.81-2.17-.052-.289-.203-.604-.22-1.008.05-.089.244-.454.424-.696.802-1.09 2.173-2.429 2.541-2.644.124-.074.292-.07.501-.053.407.03.9.168 1.492.407 1.377.56 1.975.241 2.509-.177.2-.16.36-.428.725-.616.144.059.654.27.993.477 1.3.781 2.913 1.949 4.46 2.353 1.23.32 2.577-.006 3.785-.62 1.516-.772 2.79-1.963 3.149-2.255.595-.486 1.695-1.892 2.444-2.827 1.188-1.488.734-3.378-.395-4.15-.782-.537-1.236-.43-1.569-.313a1.53 1.53 0 0 0-.377.195l-.006.006a46.267 46.267 0 0 1-1.374-1.518c.272-.242.419-.522.493-.808.1-.39.053-.834-.183-1.291-.21-.407-.628-.867-1.05-1.28.516-.348 1.22-.831 1.516-1.079.427-.362.59-.76.625-1.017.038-.253-.021-.745-.23-1.326-.29-.793-.84-1.916-1.064-2.462-.03-.076-.003-.17.008-.274.027-.271.089-.56.145-.825.124-.596.182-1.138.124-1.46-.095-.5-.537-1.09-1.26-1.441-.772-.371-1.789-.436-2.46-.139l-.213-.082c.168-.23.357-.486.557-.725.28-.345.563-.678.826-.82.566-.303 1.034-1.029 1.35-1.922.147-.415.277-.866.427-1.256.018-.05.047-.109.077-.165.165.115.371.248.513.301.419.16.979.147 1.51-.171.727-.433 1.488-1.524 1.06-2.983.003-.036.015-.3.047-.48.071-.372.195-.805.354-1.257.298-.846.705-1.75 1.1-2.423.185-.321.345-.586.492-.701.772-.605 1.937-2.087 2.406-3.222.341-.823.306-1.55.076-1.987-.36-.687-.94-1.011-1.692-1.064-.569-.042-1.303.138-2.022.312a2.595 2.595 0 0 1-.254-.07 5.348 5.348 0 0 1-.855-.44c-.769-.466-1.503-.985-1.883-1.138-.678-.268-1.285-.194-1.857.05-.28.121-.549.292-.817.451-.147-.1-.533-.371-.766-.651-.316-.377-.876-.737-1.533-1.005-1.032-.419-2.308-.664-2.6-.714a21.326 21.326 0 0 1-1.539-.468 10.32 10.32 0 0 1-.604-.254c.009-.44.026-1.598-.006-2.002-.068-.922-.678-1.273-1.026-1.35-.242-.053-.758-.032-1.315.16-.651.226-1.353.672-1.663 1.087a1.355 1.355 0 0 1-.218.071l-.056.009-.017-.681-.242.212c.239-.35.324-.784-.11-1.217-.146-.148-.94-.938-2.602-1.026-.867-.047-1.312-.56-1.71-1.08-.245-.318-.701-.677-1.267-1.007-.944-.549-2.244-1.067-2.721-1.339l-.25-.418c-.234-.307-.57-.631-1.404-.778-.466-.083-1.138.038-1.83.344-.844.372-1.76.991-2.173 1.28l-.015-.003Zm3.602.719a2.18 2.18 0 0 0 .86.884c.405.233 1.448.664 2.35 1.135.41.218.805.407.97.622.784 1.017 1.74 1.899 3.45 1.99.276.015.524.086.707.16.003.412.041.91.17 1.293.254.752.785 1.203 1.49 1.265 1.078.094 2.042-.2 2.623-.725 0 .236.006.463.02.634.054.607.266 1.067.502 1.323.21.227.669.513 1.247.749.937.377 2.217.707 2.217.707l.12.027s.962.171 1.74.43c.407.136.828.263 1.017.484.601.716 1.262 1.197 1.842 1.397.634.218 1.226.165 1.73-.118l.688-.404c.038-.017.064-.07.111-.053.481.192 1.566 1.065 2.518 1.483.69.304 1.35.398 1.857.277.277-.068.56-.144.829-.2l-.03.056c-.392.737-1.052 1.571-1.521 1.936-.654.51-1.748 2.433-2.37 4.21-.436 1.244-.602 2.423-.469 3.054-.516-.274-1.14-.407-2.034.174-.486.318-.902 1.04-1.197 1.913-.135.404-.26.834-.418 1.203-.047.112-.145.274-.171.321-1.067.625-2.58 2.854-2.824 3.299-.25.454-.25 1.312.601 1.946.498.371 1.362.734 2.049.787.448.035.843-.05 1.147-.21l.368.112c-.053.28-.13.69-.177.985-.106.663-.088 1.309.103 1.786.195.47.725 1.74.988 2.368-.637.448-1.622 1.014-2.014 1.45-.604.666-.557 1.338-.253 1.822.133.21.421.516.77.846.152.144.365.371.533.56-.383.398-.516.72-.554.985-.053.383.053.866.598 1.597.41.549 1.256 1.66 1.987 2.217.634.484 1.28.607 1.75.486.122-.029.237-.07.343-.114a.812.812 0 0 1-.189.465c-.648.808-1.574 2.052-2.09 2.47-.312.254-1.412 1.313-2.73 1.985-.68.347-1.423.622-2.12.442-1.603-.419-3.26-1.828-4.492-2.459-.946-.483-1.777-.56-2.364-.312-.345.147-.61.318-.831.495-.154.124-.357.31-.466.413a1.787 1.787 0 0 1-.242-.08c-1.963-.793-3.28-.666-4.074-.2-.462.27-2.234 1.907-3.242 3.275-.584.79-.885 1.55-.885 2.022 0 .427.077.796.165 1.126.024.094.056.236.077.324l-.003.003c-.324.274-.899.501-1.503.634-.56.124-1.162.183-1.598.003-.876-.36-2.462-1.615-3.827-2.258-.843-.395-1.636-.572-2.249-.478-.725.112-1.474.34-2.225.466-.531.089-1.067.133-1.595-.085-.89-.369-2.288-.767-3.337-1.188a7.906 7.906 0 0 1-.832-.413c-.18-.274-.53-.593-1.084-.828-.708-.304-1.91-.602-2.904-.935a8.81 8.81 0 0 1-.678-.277c.144-.433.383-.908.572-1.347.274-.646.454-1.25.454-1.68 0-.443.59-2.424 1.02-4.184.345-1.406.584-2.694.548-3.225-.047-.61-.289-1.538-.418-2.402-.05-.324-.039-.831-.036-.961.43-.41.678-1.014.69-1.754.02-1.17-.604-2.777-1.28-3.72-.539-.75-2.107-2.683-3.018-4.204-.265-.448-.51-.817-.522-1.067-.041-.958-.454-1.377-.925-1.642-.233-.133-.516-.212-.829-.268-.136-.027-.333.03-.451-.154-.416-.64-1.6-1.645-3.048-2.426-1.436-.775-3.119-1.326-4.451-1.232-.867.065-1.695-.124-2.309-.463l.042-.003c.68-.03 1.27-.141 1.518-.277.377-.206.56-.501.642-.79.124-.427.11-2.105-.182-2.821-.242-.598-.678-.864-1.04-.94-.184-.042-.79-.039-1.463-.053a8.322 8.322 0 0 1-.834-.08l.006-.112.008-.136.003-.03c.118.018.254.042.404.063.478.062 1.014.132 1.515.127 1.026-.01 1.908-.348 2.406-1.091.218-.33.563-.56.896-.678.106-.041.271-.065.35-.074.46.398 1.392 1.424 2.25 2.046.62.448 1.244.696 1.736.71.917.024 4.045-.076 5.262-.619.826-.371 1.138-.981 1.138-1.536 0-1.185-.371-3.301-1.913-4.416-.16-.112-.224-.333-.28-.557a3.034 3.034 0 0 1-.068-1.114c.015-.106.056-.248.089-.348.398-.041.996-.009 1.538.065.15.018.334.059.493.1-.038.457.006.914.206 1.32.242.484.684.962 1.59 1.265 1.16.387 3.746.679 4.866.399.755-.192 1.14-.643 1.28-1.059.123-.374.123-.816.038-1.273l-.071-.378c.221-.059.522-.135.793-.194 1.09-.236 2.52-.507 3.593-.843.681-.216 1.242-.475 1.58-.737.295-.23.484-.487.593-.734.277-.649.598-2.518 1.038-3.91.088-.282.26-.65.339-.822a1.48 1.48 0 0 0 .303-.17c.133-.098.826-.599 1.551-.982a6.88 6.88 0 0 1 .846-.336l-.003-.012Z\" stroke=\"#000\" stroke-width=\".522\" mask=\"url(#a)\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Produits fran\\xe7ais et europ\\xe9ens\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Produits fran\\xe7ais et europ\\xe9ens\"})}),className:\"framer-115w16p\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b71bf358-29d6-48e5-af75-ad03e281a364, rgb(64, 64, 64))\"},children:\"Nous privil\\xe9gions des fournisseurs locaux et europ\\xe9ens pour leur fiabilit\\xe9.\"})}),className:\"framer-1ekbimn\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jria8s\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q178tb\",\"data-framer-name\":\"Diamond\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 64\"><path d=\"M 13.038 8.772 L 2.608 19.202 M 13.038 8.772 L 23.468 19.202 M 13.038 8.772 L 31.291 8.772 M 49.545 8.772 L 59.975 19.202 M 49.545 8.772 L 39.115 19.202 M 49.545 8.772 L 31.29 8.772 M 59.974 19.202 L 31.291 58.318 M 59.975 19.204 L 39.115 19.204 M 2.608 19.204 L 31.29 58.316 M 2.608 19.203 L 23.468 19.203 M 31.291 58.317 L 23.47 19.203 M 31.292 58.317 L 39.115 19.203 M 23.47 19.203 L 39.115 19.203 M 23.47 19.203 L 31.29 8.772 M 39.113 19.202 L 31.291 8.772\" fill=\"transparent\" stroke-width=\"2.608\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11943518361,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ibXI_Rg32:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Qualit\\xe9s et traditions depuis 1992\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\"},children:\"Qualit\\xe9s et traditions depuis 1992\"})}),className:\"framer-1tzg7l3\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b71bf358-29d6-48e5-af75-ad03e281a364, rgb(64, 64, 64))\"},children:\"Plus de 30 ans d\u2019expertise et de passion pour vous servir au mieux.\"})}),className:\"framer-fyr07l\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{y:(componentViewport?.y||0)+0+3083.2},ibXI_Rg32:{y:(componentViewport?.y||0)+0+3371.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:746,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3646,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5pfqiq-container\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{berKSwamb:{variant:\"q7R7rz8Gr\"},EI3IaXwlb:{variant:\"P7cBMBNnU\"},ibXI_Rg32:{variant:\"HNgmke1lK\"},iMYUHpfAW:{variant:\"XFvW7QyIz\"},uh6ApCikD:{variant:\"lhVFTdxN5\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"fTPkapWQB\",layoutId:\"fTPkapWQB\",style:{width:\"100%\"},variant:\"hQUkc4Ha_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-llba2f-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.8,labels:{accept:\"Accepter\",acceptAll:\"Tout accepter\",confirm:\"Confirmer\",customize:\"Personnaliser\",reject:\"Refuser\",rejectAll:\"Tout refuser\",save:\"Sauvegarder\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(0, 0, 0)\",fill:\"var(--token-392ef4df-13ea-4da2-9a54-171f1572c6a0, rgb(207, 197, 190))\"},secondary:{color:\"rgb(0, 0, 0)\",fill:\"var(--token-392ef4df-13ea-4da2-9a54-171f1572c6a0, rgb(207, 197, 190))\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"Nous utilisons des cookies pour assurer le bon fonctionnement du site et analyser notre audience de fa\\xe7on anonyme. Vous pouvez accepter, refuser ou personnaliser vos pr\\xe9f\\xe9rences. \uD83C\uDF6A\",euPolicy:{label:\"Politique de cookie\",link:\"https://www.aupetitfil.com/juridique/politique-de-cookie\",prefix:\"Lire notre\"},euShowReject:true,euTitle:\"Gestion des cookies\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"\",height:\"100%\",id:\"IojjJYUJR\",layoutId:\"IojjJYUJR\",options:{analytics:{description:\"Permet le suivi des performances.\",title:\"Analytics\"},marketing:{description:\"Permet la personnalisation et le suivi des annonces.\",title:\"Marketing\"},necessary:{description:\"Ces cookies sont essentiels au bon fonctionnement du site.\",optional:false,title:\"N\\xe9cessaire\"},preferences:{description:\"Permet de personnaliser le contenu et les param\\xe8tres.\",title:\"Pr\\xe9f\\xe9rences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:true,trigger:{color:\"rgb(0, 0, 0)\",iconImage:addImageAlt({src:\"https://framerusercontent.com/images/qy3YJiaS4hZTrfMEaaiVLvUfxY.svg\"},\"\"),iconSize:48,iconType:\"custom\",text:\"Cookie Settings\",textFont:{},type:\"icon\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7mF11.framer-lux5qc, .framer-7mF11 .framer-lux5qc { display: block; }\",\".framer-7mF11.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-1e59d2ca-334b-4ee0-ad92-a92fecca69f8, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-7mF11 .framer-1s6924a { background-color: #ffffff; flex: none; height: 142px; overflow: hidden; position: fixed; right: 0px; top: 0px; width: 21px; z-index: 2; }\",\".framer-7mF11 .framer-d1fiwk { background-color: #ffffff; flex: none; height: 142px; left: 0px; overflow: hidden; position: fixed; top: 0px; width: 21px; z-index: 2; }\",\".framer-7mF11 .framer-1mm9lxc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 51px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 8px 0px 8px 0px; position: fixed; top: 0px; width: 100%; z-index: 3; }\",\".framer-7mF11 .framer-9n9f8v { align-content: center; align-items: center; background-color: var(--token-f5b41133-216e-4533-943b-6452e13c8fd8, #ede9e1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 8px 0px 8px 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 4; }\",\".framer-7mF11 .framer-lkq984-container { flex: none; height: 25px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-1vs5bom { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 463px; }\",\".framer-7mF11 .framer-1m81urg, .framer-7mF11 .framer-mxaj3t, .framer-7mF11 .framer-1qtdhnu, .framer-7mF11 .framer-115w16p, .framer-7mF11 .framer-1tzg7l3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7mF11 .framer-1xeeowc-container { flex: none; height: auto; left: 50%; position: fixed; top: 51px; transform: translateX(-50%); width: 98%; z-index: 3; }\",\".framer-7mF11 .framer-143rlyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-zhzcuq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 51px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-19hnbmm { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 98%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7mF11 .framer-2k87t5-container { bottom: 0px; flex: none; height: 100%; left: 0px; position: absolute; width: 100%; }\",\".framer-7mF11 .framer-8tndsc { --border-bottom-width: 1px; --border-color: var(--token-1e59d2ca-334b-4ee0-ad92-a92fecca69f8, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.90906531531532%, rgb(0, 0, 0) 100%); bottom: 0px; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; width: 100%; }\",\".framer-7mF11 .framer-c3shlo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 32px; flex: none; height: auto; left: 28px; position: absolute; text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6); white-space: pre; width: auto; }\",\".framer-7mF11 .framer-1k623qy { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; bottom: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 57px); justify-content: center; left: 50%; overflow: hidden; padding: 6px 0px 0px 0px; position: absolute; transform: translateX(-50%); width: 57px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7mF11 .framer-3uxtn8-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 39px; }\",\".framer-7mF11 .framer-d74622 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-p9fnjd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-imv245 { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-1bvjch7-container { align-self: start; aspect-ratio: 1.0453216374269005 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 347px); justify-self: start; position: relative; width: 100%; }\",\".framer-7mF11 .framer-42wscc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7mF11 .framer-1tj7ybi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 48px 40px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-curqxy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-1f2ztqy { flex: none; height: 39px; overflow: hidden; position: relative; width: 187px; }\",\".framer-7mF11 .framer-1ghlcr8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-7mF11 .framer-11p8dit-container { flex: none; height: 569px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-w4mh13 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 653px; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 3285px; }\",\".framer-7mF11 .framer-1jjk96d-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-7mF11 .framer-1lgiz4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-18iwnsf, .framer-7mF11 .framer-1w0ahja, .framer-7mF11 .framer-1tny4gt, .framer-7mF11 .framer-1bwzih0, .framer-7mF11 .framer-13n2r8y, .framer-7mF11 .framer-2s4r0v, .framer-7mF11 .framer-la271q, .framer-7mF11 .framer-nul8yk { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); height: 207px; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 338px; }\",\".framer-7mF11 .framer-1lyo6ic, .framer-7mF11 .framer-dk9g8l, .framer-7mF11 .framer-167yr9k, .framer-7mF11 .framer-18aa3mz, .framer-7mF11 .framer-1kdsecd, .framer-7mF11 .framer-1a9gvz9, .framer-7mF11 .framer-ek7h0q { align-content: flex-start; align-items: flex-start; align-self: start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; padding: 16px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-1dn811r, .framer-7mF11 .framer-yvnii8, .framer-7mF11 .framer-1uc15k3, .framer-7mF11 .framer-awucge, .framer-7mF11 .framer-15lnubm, .framer-7mF11 .framer-1t2octz, .framer-7mF11 .framer-1qj6ado { background-color: #000000; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; flex: none; height: 100%; opacity: 0.35; overflow: hidden; position: absolute; right: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7mF11 .framer-cko0av, .framer-7mF11 .framer-10vxcpn, .framer-7mF11 .framer-vte1z4, .framer-7mF11 .framer-15fxe0u, .framer-7mF11 .framer-js4kyu, .framer-7mF11 .framer-12usj8g, .framer-7mF11 .framer-fzzc5e { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-7mF11 .framer-cg4o8g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 0px; position: relative; width: min-content; }\",\".framer-7mF11 .framer-hg9vrv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 0px; position: relative; width: min-content; }\",\".framer-7mF11 .framer-uon1bx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 208px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 16px; position: relative; width: min-content; }\",\".framer-7mF11 .framer-aafhb5 { align-content: flex-start; align-items: flex-start; align-self: start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; padding: 16px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-1lyc3um { background-color: #000000; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; height: 100%; opacity: 0.35; overflow: hidden; position: absolute; right: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7mF11 .framer-xoijd0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-7mF11 .framer-aazxji { 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: 40px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-dgass1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-3lgdo { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: grid; flex: 1 0 0px; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7mF11 .framer-1rh0fop-container { align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 548px); justify-self: start; position: relative; width: 100%; }\",\".framer-7mF11 .framer-152a5ut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-1vhxxuy { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-167waqb, .framer-7mF11 .framer-ldu9y4, .framer-7mF11 .framer-1jria8s { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7mF11 .framer-1obq388 { aspect-ratio: 0.90625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 58px; }\",\".framer-7mF11 .framer-59h5zx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 357.5px; position: relative; white-space: pre-wrap; width: 363px; word-break: break-word; word-wrap: break-word; }\",\".framer-7mF11 .framer-g953g3 { aspect-ratio: 1.09375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 70px; }\",\".framer-7mF11 .framer-1ekbimn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 357px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7mF11 .framer-1q178tb { flex: none; height: 64px; position: relative; width: 63px; }\",\".framer-7mF11 .framer-fyr07l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 357.5px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7mF11 .framer-5pfqiq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7mF11 .framer-llba2f-container { bottom: 48px; flex: none; height: auto; position: fixed; right: 32px; width: auto; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7mF11.framer-72rtr7, .framer-7mF11 .framer-1mm9lxc, .framer-7mF11 .framer-9n9f8v, .framer-7mF11 .framer-1vs5bom, .framer-7mF11 .framer-143rlyz, .framer-7mF11 .framer-zhzcuq, .framer-7mF11 .framer-1k623qy, .framer-7mF11 .framer-d74622, .framer-7mF11 .framer-p9fnjd, .framer-7mF11 .framer-1tj7ybi, .framer-7mF11 .framer-curqxy, .framer-7mF11 .framer-w4mh13, .framer-7mF11 .framer-1lgiz4, .framer-7mF11 .framer-1lyo6ic, .framer-7mF11 .framer-dk9g8l, .framer-7mF11 .framer-167yr9k, .framer-7mF11 .framer-18aa3mz, .framer-7mF11 .framer-1kdsecd, .framer-7mF11 .framer-cg4o8g, .framer-7mF11 .framer-1a9gvz9, .framer-7mF11 .framer-hg9vrv, .framer-7mF11 .framer-ek7h0q, .framer-7mF11 .framer-uon1bx, .framer-7mF11 .framer-aafhb5, .framer-7mF11 .framer-aazxji, .framer-7mF11 .framer-dgass1, .framer-7mF11 .framer-152a5ut, .framer-7mF11 .framer-167waqb, .framer-7mF11 .framer-ldu9y4, .framer-7mF11 .framer-1jria8s { gap: 0px; } .framer-7mF11.framer-72rtr7 > *, .framer-7mF11 .framer-1mm9lxc > *, .framer-7mF11 .framer-9n9f8v > *, .framer-7mF11 .framer-zhzcuq > *, .framer-7mF11 .framer-1tj7ybi > *, .framer-7mF11 .framer-1lyo6ic > *, .framer-7mF11 .framer-dk9g8l > *, .framer-7mF11 .framer-167yr9k > *, .framer-7mF11 .framer-18aa3mz > *, .framer-7mF11 .framer-1kdsecd > *, .framer-7mF11 .framer-1a9gvz9 > *, .framer-7mF11 .framer-ek7h0q > *, .framer-7mF11 .framer-aafhb5 > *, .framer-7mF11 .framer-aazxji > *, .framer-7mF11 .framer-152a5ut > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7mF11.framer-72rtr7 > :first-child, .framer-7mF11 .framer-1mm9lxc > :first-child, .framer-7mF11 .framer-9n9f8v > :first-child, .framer-7mF11 .framer-143rlyz > :first-child, .framer-7mF11 .framer-zhzcuq > :first-child, .framer-7mF11 .framer-d74622 > :first-child, .framer-7mF11 .framer-p9fnjd > :first-child, .framer-7mF11 .framer-1tj7ybi > :first-child, .framer-7mF11 .framer-curqxy > :first-child, .framer-7mF11 .framer-1lyo6ic > :first-child, .framer-7mF11 .framer-dk9g8l > :first-child, .framer-7mF11 .framer-167yr9k > :first-child, .framer-7mF11 .framer-18aa3mz > :first-child, .framer-7mF11 .framer-1kdsecd > :first-child, .framer-7mF11 .framer-1a9gvz9 > :first-child, .framer-7mF11 .framer-ek7h0q > :first-child, .framer-7mF11 .framer-aafhb5 > :first-child, .framer-7mF11 .framer-aazxji > :first-child, .framer-7mF11 .framer-152a5ut > :first-child, .framer-7mF11 .framer-167waqb > :first-child, .framer-7mF11 .framer-ldu9y4 > :first-child, .framer-7mF11 .framer-1jria8s > :first-child { margin-top: 0px; } .framer-7mF11.framer-72rtr7 > :last-child, .framer-7mF11 .framer-1mm9lxc > :last-child, .framer-7mF11 .framer-9n9f8v > :last-child, .framer-7mF11 .framer-143rlyz > :last-child, .framer-7mF11 .framer-zhzcuq > :last-child, .framer-7mF11 .framer-d74622 > :last-child, .framer-7mF11 .framer-p9fnjd > :last-child, .framer-7mF11 .framer-1tj7ybi > :last-child, .framer-7mF11 .framer-curqxy > :last-child, .framer-7mF11 .framer-1lyo6ic > :last-child, .framer-7mF11 .framer-dk9g8l > :last-child, .framer-7mF11 .framer-167yr9k > :last-child, .framer-7mF11 .framer-18aa3mz > :last-child, .framer-7mF11 .framer-1kdsecd > :last-child, .framer-7mF11 .framer-1a9gvz9 > :last-child, .framer-7mF11 .framer-ek7h0q > :last-child, .framer-7mF11 .framer-aafhb5 > :last-child, .framer-7mF11 .framer-aazxji > :last-child, .framer-7mF11 .framer-152a5ut > :last-child, .framer-7mF11 .framer-167waqb > :last-child, .framer-7mF11 .framer-ldu9y4 > :last-child, .framer-7mF11 .framer-1jria8s > :last-child { margin-bottom: 0px; } .framer-7mF11 .framer-1vs5bom > *, .framer-7mF11 .framer-1k623qy > *, .framer-7mF11 .framer-cg4o8g > *, .framer-7mF11 .framer-hg9vrv > *, .framer-7mF11 .framer-uon1bx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7mF11 .framer-1vs5bom > :first-child, .framer-7mF11 .framer-1k623qy > :first-child, .framer-7mF11 .framer-w4mh13 > :first-child, .framer-7mF11 .framer-1lgiz4 > :first-child, .framer-7mF11 .framer-cg4o8g > :first-child, .framer-7mF11 .framer-hg9vrv > :first-child, .framer-7mF11 .framer-uon1bx > :first-child, .framer-7mF11 .framer-dgass1 > :first-child { margin-left: 0px; } .framer-7mF11 .framer-1vs5bom > :last-child, .framer-7mF11 .framer-1k623qy > :last-child, .framer-7mF11 .framer-w4mh13 > :last-child, .framer-7mF11 .framer-1lgiz4 > :last-child, .framer-7mF11 .framer-cg4o8g > :last-child, .framer-7mF11 .framer-hg9vrv > :last-child, .framer-7mF11 .framer-uon1bx > :last-child, .framer-7mF11 .framer-dgass1 > :last-child { margin-right: 0px; } .framer-7mF11 .framer-143rlyz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7mF11 .framer-d74622 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7mF11 .framer-p9fnjd > *, .framer-7mF11 .framer-curqxy > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7mF11 .framer-w4mh13 > *, .framer-7mF11 .framer-1lgiz4 > *, .framer-7mF11 .framer-dgass1 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-7mF11 .framer-167waqb > *, .framer-7mF11 .framer-ldu9y4 > *, .framer-7mF11 .framer-1jria8s > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-7mF11[data-border=\"true\"]::after, .framer-7mF11 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1920px) { .framer-7mF11.framer-72rtr7 { width: 1920px; } .framer-7mF11 .framer-1xeeowc-container { width: 98%; } .framer-7mF11 .framer-3uxtn8-container { height: var(--framer-aspect-ratio-supported, 39px); } .framer-7mF11 .framer-imv245 { grid-template-columns: repeat(4, minmax(50px, 1fr)); } .framer-7mF11 .framer-1bvjch7-container { height: var(--framer-aspect-ratio-supported, 191px); } .framer-7mF11 .framer-curqxy, .framer-7mF11 .framer-1vhxxuy { max-width: 1600px; } .framer-7mF11 .framer-1rh0fop-container { height: var(--framer-aspect-ratio-supported, 200px); }}\",\"@media (min-width: 1440px) and (max-width: 1919px) { .framer-7mF11.framer-72rtr7 { width: 1440px; } .framer-7mF11 .framer-imv245 { grid-template-columns: repeat(4, minmax(50px, 1fr)); } .framer-7mF11 .framer-1bvjch7-container { height: var(--framer-aspect-ratio-supported, 312px); } .framer-7mF11 .framer-1rh0fop-container { height: var(--framer-aspect-ratio-supported, 668px); }}\",\"@media (min-width: 1280px) and (max-width: 1439px) { .framer-7mF11.framer-72rtr7 { width: 1280px; } .framer-7mF11 .framer-1bvjch7-container { height: var(--framer-aspect-ratio-supported, 372px); } .framer-7mF11 .framer-1rh0fop-container { height: var(--framer-aspect-ratio-supported, 588px); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-7mF11.framer-72rtr7 { width: 810px; } .framer-7mF11 .framer-1k623qy { left: unset; right: 32px; transform: unset; } .framer-7mF11 .framer-d74622, .framer-7mF11 .framer-aazxji { padding: 40px 24px 40px 24px; } .framer-7mF11 .framer-1bvjch7-container { height: var(--framer-aspect-ratio-supported, 231px); } .framer-7mF11 .framer-1tj7ybi { padding: 40px 0px 48px 0px; } .framer-7mF11 .framer-1f2ztqy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; order: 0; padding: 0px 0px 0px 24px; width: 100%; } .framer-7mF11 .framer-1ghlcr8 { left: unset; position: relative; top: unset; transform: unset; } .framer-7mF11 .framer-1lgiz4, .framer-7mF11 .framer-18iwnsf { order: 1; } .framer-7mF11 .framer-1lyo6ic, .framer-7mF11 .framer-dk9g8l, .framer-7mF11 .framer-167yr9k, .framer-7mF11 .framer-18aa3mz, .framer-7mF11 .framer-1kdsecd, .framer-7mF11 .framer-ek7h0q, .framer-7mF11 .framer-aafhb5 { justify-content: flex-end; padding: 16px 0px 16px 16px; } .framer-7mF11 .framer-1dn811r, .framer-7mF11 .framer-yvnii8, .framer-7mF11 .framer-1uc15k3, .framer-7mF11 .framer-awucge, .framer-7mF11 .framer-15lnubm, .framer-7mF11 .framer-1qj6ado, .framer-7mF11 .framer-1lyc3um { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.90906531531532%, rgb(0, 0, 0) 100%); background-color: unset; opacity: unset; } .framer-7mF11 .framer-1w0ahja { order: 2; } .framer-7mF11 .framer-1tny4gt { order: 3; } .framer-7mF11 .framer-1bwzih0 { order: 4; } .framer-7mF11 .framer-13n2r8y { order: 5; } .framer-7mF11 .framer-hg9vrv { order: 7; } .framer-7mF11 .framer-uon1bx { order: 0; padding: 0px 0px 0px 24px; } .framer-7mF11 .framer-1rh0fop-container { height: var(--framer-aspect-ratio-supported, 369px); } .framer-7mF11 .framer-152a5ut { padding: 80px 24px 0px 24px; } .framer-7mF11 .framer-1vhxxuy { overflow: visible; } .framer-7mF11 .framer-167waqb, .framer-7mF11 .framer-1jria8s { align-self: start; } .framer-7mF11 .framer-1qtdhnu, .framer-7mF11 .framer-115w16p, .framer-7mF11 .framer-1tzg7l3 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-7mF11 .framer-59h5zx { width: 100%; } .framer-7mF11 .framer-ldu9y4 { align-self: start; justify-self: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7mF11 .framer-1f2ztqy { gap: 0px; } .framer-7mF11 .framer-1f2ztqy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7mF11 .framer-1f2ztqy > :first-child { margin-left: 0px; } .framer-7mF11 .framer-1f2ztqy > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-7mF11.framer-72rtr7 { width: 390px; } .framer-7mF11 .framer-1s6924a, .framer-7mF11 .framer-d1fiwk { height: 102px; } .framer-7mF11 .framer-1mm9lxc { height: 41px; } .framer-7mF11 .framer-9n9f8v { padding: 4px 0px 4px 0px; } .framer-7mF11 .framer-1xeeowc-container { top: 41px; width: 100%; } .framer-7mF11 .framer-zhzcuq { height: 80vh; padding: 41px 16px 16px 16px; } .framer-7mF11 .framer-19hnbmm { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; width: 100%; } .framer-7mF11 .framer-c3shlo { bottom: 16px; left: 16px; } .framer-7mF11 .framer-d74622, .framer-7mF11 .framer-aazxji { padding: 16px 16px 40px 16px; } .framer-7mF11 .framer-p9fnjd, .framer-7mF11 .framer-curqxy { gap: 16px; } .framer-7mF11 .framer-imv245 { gap: 8px; grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-7mF11 .framer-1bvjch7-container { aspect-ratio: 0.8333333333333334 / 1; height: var(--framer-aspect-ratio-supported, 212px); } .framer-7mF11 .framer-1tj7ybi { padding: 16px 0px 16px 0px; } .framer-7mF11 .framer-1f2ztqy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: flex-start; padding: 0px 0px 0px 16px; width: 100%; } .framer-7mF11 .framer-1ghlcr8 { left: unset; position: relative; top: unset; transform: unset; } .framer-7mF11 .framer-18iwnsf { height: 152px; order: 1; width: 289px; } .framer-7mF11 .framer-1lyo6ic, .framer-7mF11 .framer-dk9g8l, .framer-7mF11 .framer-167yr9k, .framer-7mF11 .framer-18aa3mz, .framer-7mF11 .framer-1kdsecd, .framer-7mF11 .framer-1a9gvz9 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; justify-content: flex-end; padding: 12px; } .framer-7mF11 .framer-1dn811r, .framer-7mF11 .framer-yvnii8, .framer-7mF11 .framer-1uc15k3, .framer-7mF11 .framer-awucge, .framer-7mF11 .framer-15lnubm, .framer-7mF11 .framer-1t2octz { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.90906531531532%, rgb(0, 0, 0) 100%); background-color: unset; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; opacity: unset; } .framer-7mF11 .framer-1w0ahja { height: 152px; order: 2; width: 289px; } .framer-7mF11 .framer-1tny4gt { height: 152px; order: 3; width: 289px; } .framer-7mF11 .framer-1bwzih0 { height: 152px; order: 4; width: 289px; } .framer-7mF11 .framer-13n2r8y { height: 152px; order: 5; width: 289px; } .framer-7mF11 .framer-cg4o8g { order: 6; } .framer-7mF11 .framer-2s4r0v, .framer-7mF11 .framer-nul8yk { height: 152px; width: 289px; } .framer-7mF11 .framer-uon1bx { height: 152px; order: 0; } .framer-7mF11 .framer-aafhb5 { justify-content: flex-end; padding: 12px; } .framer-7mF11 .framer-1lyc3um { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.90906531531532%, rgb(0, 0, 0) 100%); background-color: unset; opacity: unset; } .framer-7mF11 .framer-3lgdo, .framer-7mF11 .framer-1vhxxuy { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-7mF11 .framer-1rh0fop-container { height: var(--framer-aspect-ratio-supported, 358px); } .framer-7mF11 .framer-152a5ut { padding: 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7mF11 .framer-p9fnjd, .framer-7mF11 .framer-imv245, .framer-7mF11 .framer-curqxy, .framer-7mF11 .framer-1f2ztqy { gap: 0px; } .framer-7mF11 .framer-p9fnjd > *, .framer-7mF11 .framer-curqxy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7mF11 .framer-p9fnjd > :first-child, .framer-7mF11 .framer-curqxy > :first-child { margin-top: 0px; } .framer-7mF11 .framer-p9fnjd > :last-child, .framer-7mF11 .framer-curqxy > :last-child { margin-bottom: 0px; } .framer-7mF11 .framer-imv245 > *, .framer-7mF11 .framer-imv245 > :first-child, .framer-7mF11 .framer-imv245 > :last-child { margin: 0px; } .framer-7mF11 .framer-1f2ztqy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7mF11 .framer-1f2ztqy > :first-child { margin-left: 0px; } .framer-7mF11 .framer-1f2ztqy > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4672\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EI3IaXwlb\":{\"layout\":[\"fixed\",\"auto\"]},\"iMYUHpfAW\":{\"layout\":[\"fixed\",\"auto\"]},\"uh6ApCikD\":{\"layout\":[\"fixed\",\"auto\"]},\"ibXI_Rg32\":{\"layout\":[\"fixed\",\"auto\"]},\"berKSwamb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"nNSbolru5\":{\"pattern\":\":nNSbolru5\",\"name\":\"hero\"},\"fLSbNdaAx\":{\"pattern\":\":fLSbNdaAx\",\"name\":\"machines\"},\"nDX4ov2lH\":{\"pattern\":\":nDX4ov2lH\",\"name\":\"services\"},\"z0yw28lLz\":{\"pattern\":\":z0yw28lLz\",\"name\":\"domaines\"},\"d31waodY1\":{\"pattern\":\":d31waodY1\",\"name\":\"valeurs\"},\"fTPkapWQB\":{\"pattern\":\":fTPkapWQB\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-7mF11\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4672,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"}]},...TickerFonts,...NavBarFonts,...VideoFonts,...FeatherFonts,...CardFonts,...BoutonFonts,...CardServicesFonts,...CardServicesBigFonts,...FooterFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EI3IaXwlb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iMYUHpfAW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uh6ApCikD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ibXI_Rg32\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"berKSwamb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"4672\",\"framerScrollSections\":\"{\\\"nNSbolru5\\\":{\\\"pattern\\\":\\\":nNSbolru5\\\",\\\"name\\\":\\\"hero\\\"},\\\"fLSbNdaAx\\\":{\\\"pattern\\\":\\\":fLSbNdaAx\\\",\\\"name\\\":\\\"machines\\\"},\\\"nDX4ov2lH\\\":{\\\"pattern\\\":\\\":nDX4ov2lH\\\",\\\"name\\\":\\\"services\\\"},\\\"z0yw28lLz\\\":{\\\"pattern\\\":\\\":z0yw28lLz\\\",\\\"name\\\":\\\"domaines\\\"},\\\"d31waodY1\\\":{\\\"pattern\\\":\\\":d31waodY1\\\",\\\"name\\\":\\\"valeurs\\\"},\\\"fTPkapWQB\\\":{\\\"pattern\\\":\\\":fTPkapWQB\\\",\\\"name\\\":\\\"footer\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "imagePrincipale", "link", "price", "textContent", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xYIZlxJPW", "uw4UVgD6v", "XfFubO2Ud", "OVJJGQUXm", "bJtWiCsiz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerbVLX_A7Eq", "withCSS", "bVLX_A7Eq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "grosseImage", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Gq7XzuicN", "DspQ3QXGZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerQqUBiEye2", "withCSS", "QqUBiEye2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "tickers", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qq5p0CFki", "GTz7lAeDn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerV5A2dPl0d", "withCSS", "V5A2dPl0d_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TickerFonts", "getFonts", "Ticker", "NavBarFonts", "yp43HxY57_default", "NavBarWithVariantAppearEffect", "withVariantAppearEffect", "VideoFonts", "Video", "FeatherFonts", "Icon", "CardFonts", "bVLX_A7Eq_default", "BoutonFonts", "hvOQCZv32_default", "CardServicesFonts", "V5A2dPl0d_default", "CardServicesBigFonts", "QqUBiEye2_default", "FooterFonts", "whLdtHJu1_default", "CookieBannerFonts", "CookieBanner", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "addImageAlt", "image", "alt", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "xlf9WE7IWKm85WnU76", "USO_ifXYbKm85WnU76", "CF2Ac1V0AKm85WnU76", "svH4pRk3FKm85WnU76", "oHpfM1By4Km85WnU76", "idKm85WnU76", "mknadLjaHYSJBducAR", "AduVjsYHVYSJBducAR", "M2eeQLrd8YSJBducAR", "idYSJBducAR", "mEJrkNAiHtQtpYvPCk", "mknadLjaHtQtpYvPCk", "M2eeQLrd8tQtpYvPCk", "idtQtpYvPCk", "mEJrkNAiHRa5XHmqA2", "mknadLjaHRa5XHmqA2", "M2eeQLrd8Ra5XHmqA2", "idRa5XHmqA2", "mEJrkNAiHmtFTv2WT2", "mknadLjaHmtFTv2WT2", "M2eeQLrd8mtFTv2WT2", "idmtFTv2WT2", "mEJrkNAiHLonRtTMYj", "mknadLjaHLonRtTMYj", "M2eeQLrd8LonRtTMYj", "idLonRtTMYj", "mEJrkNAiHVxZgp2Rg8", "mknadLjaHVxZgp2Rg8", "M2eeQLrd8VxZgp2Rg8", "idVxZgp2Rg8", "mEJrkNAiHjIqcFC7ZO", "mknadLjaHjIqcFC7ZO", "M2eeQLrd8jIqcFC7ZO", "idjIqcFC7ZO", "mEJrkNAiHmitja1NWp", "mknadLjaHmitja1NWp", "M2eeQLrd8mitja1NWp", "idmitja1NWp", "mEJrkNAiHgx4jSYnED", "mknadLjaHgx4jSYnED", "M2eeQLrd8gx4jSYnED", "idgx4jSYnED", "mEJrkNAiHFyK9jSqbB", "mknadLjaHFyK9jSqbB", "M2eeQLrd8FyK9jSqbB", "idFyK9jSqbB", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "elementId", "useRouteElementId", "ref3", "isDisplayed", "elementId1", "router", "useRouter", "elementId2", "ref4", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "RichText2", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ChildrenCanSuspend", "oq7msSRXj_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "enumToDisplayNameFunctions", "resolvedLinks1", "Link", "JyNzrCafk_default", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "collection8", "paginationInfo8", "loadMore8", "index8", "collection9", "paginationInfo9", "loadMore9", "index9", "collection10", "paginationInfo10", "loadMore10", "index10", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
