{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://ga.jspm.io/npm:style-value-types@5.0.0/dist/es/index.mjs", "ssg:https://ga.jspm.io/npm:framesync@6.0.1/dist/es/index.mjs", "ssg:https://ga.jspm.io/npm:popmotion@11.0.3/dist/es/index.mjs", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/PH5dKwV7X6kCySScDT2G/Ticker.js", "ssg:https://framerusercontent.com/modules/pWN0AJPERV6pM78KhVuT/Owl3ofUGgSEr3mxGr7N1/fGHfj5UOW.js", "ssg:https://framerusercontent.com/modules/9jH3MFGtY5ba0TdN5rkx/6vv7GtwIT1ouYsImVd5m/Tn_1Na8Eg.js", "ssg:https://framerusercontent.com/modules/wT8GLWQlXo1BWXUxJSVC/K805mJZREy63dcgE0gVp/wqdB5IV7E.js", "ssg:https://framerusercontent.com/modules/2UKS1jztQTtBT3srbCxx/1oFJWwFErobRFsIN91dR/zDqycBgBC.js", "ssg:https://framerusercontent.com/modules/qbXRiERaENnmjNTAYjra/24I27feRyPRgmE2RiOWh/GOousUbpO.js", "ssg:https://framerusercontent.com/modules/As91bsWrTrsRNE5FBzaI/ahxlhaTHzGVaxi7M9lJY/mtNSpWGzd.js", "ssg:https://framerusercontent.com/modules/3ue3QEU04QM9uocLeCnK/K6gwaNssrzzz23XNUfuw/c39XDipOJ.js", "ssg:https://framerusercontent.com/modules/xAkcwthhgGZIm8lpj6hH/qNT5rxjCUefoP4J0xisF/p0VXkF3hg.js", "ssg:https://framerusercontent.com/modules/szORGznjiTFqc9K7r732/FeZGD9ww6myHpt4tkjdT/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "const clamp=(t,s)=>e=>Math.max(Math.min(e,s),t);const sanitize=t=>t%1?Number(t.toFixed(5)):t;const t=/(-)?([\\d]*\\.?[\\d])+/g;const s=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2,3}\\s*\\/*\\s*[\\d\\.]+%?\\))/gi;const e=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2,3}\\s*\\/*\\s*[\\d\\.]+%?\\))$/i;function isString(t){return\"string\"===typeof t}const r={test:t=>\"number\"===typeof t,parse:parseFloat,transform:t=>t};const n=Object.assign(Object.assign({},r),{transform:clamp(0,1)});const a=Object.assign(Object.assign({},r),{default:1});const createUnitType=t=>({test:s=>isString(s)&&s.endsWith(t)&&1===s.split(\" \").length,parse:parseFloat,transform:s=>`${s}${t}`});const o=createUnitType(\"deg\");const c=createUnitType(\"%\");const l=createUnitType(\"px\");const i=createUnitType(\"vh\");const p=createUnitType(\"vw\");const u=Object.assign(Object.assign({},c),{parse:t=>c.parse(t)/100,transform:t=>c.transform(100*t)});const isColorString=(t,s)=>r=>Boolean(isString(r)&&e.test(r)&&r.startsWith(t)||s&&Object.prototype.hasOwnProperty.call(r,s));const splitColor=(s,e,r)=>n=>{if(!isString(n))return n;const[a,o,c,l]=n.match(t);return{[s]:parseFloat(a),[e]:parseFloat(o),[r]:parseFloat(c),alpha:void 0!==l?parseFloat(l):1}};const f={test:isColorString(\"hsl\",\"hue\"),parse:splitColor(\"hue\",\"saturation\",\"lightness\"),transform:({hue:t,saturation:s,lightness:e,alpha:r=1})=>\"hsla(\"+Math.round(t)+\", \"+c.transform(sanitize(s))+\", \"+c.transform(sanitize(e))+\", \"+sanitize(n.transform(r))+\")\"};const m=clamp(0,255);const g=Object.assign(Object.assign({},r),{transform:t=>Math.round(m(t))});const h={test:isColorString(\"rgb\",\"red\"),parse:splitColor(\"red\",\"green\",\"blue\"),transform:({red:t,green:s,blue:e,alpha:r=1})=>\"rgba(\"+g.transform(t)+\", \"+g.transform(s)+\", \"+g.transform(e)+\", \"+sanitize(n.transform(r))+\")\"};function parseHex(t){let s=\"\";let e=\"\";let r=\"\";let n=\"\";if(t.length>5){s=t.substr(1,2);e=t.substr(3,2);r=t.substr(5,2);n=t.substr(7,2)}else{s=t.substr(1,1);e=t.substr(2,1);r=t.substr(3,1);n=t.substr(4,1);s+=s;e+=e;r+=r;n+=n}return{red:parseInt(s,16),green:parseInt(e,16),blue:parseInt(r,16),alpha:n?parseInt(n,16)/255:1}}const b={test:isColorString(\"#\"),parse:parseHex,transform:h.transform};const d={test:t=>h.test(t)||b.test(t)||f.test(t),parse:t=>h.test(t)?h.parse(t):f.test(t)?f.parse(t):b.parse(t),transform:t=>isString(t)?t:t.hasOwnProperty(\"red\")?h.transform(t):f.transform(t)};const v=\"${c}\";const y=\"${n}\";function test(e){var r,n,a,o;return isNaN(e)&&isString(e)&&(null!==(n=null===(r=e.match(t))||void 0===r?void 0:r.length)&&void 0!==n?n:0)+(null!==(o=null===(a=e.match(s))||void 0===a?void 0:a.length)&&void 0!==o?o:0)>0}function analyse(e){\"number\"===typeof e&&(e=`${e}`);const n=[];let a=0;const o=e.match(s);if(o){a=o.length;e=e.replace(s,v);n.push(...o.map(d.parse))}const c=e.match(t);if(c){e=e.replace(t,y);n.push(...c.map(r.parse))}return{values:n,numColors:a,tokenised:e}}function parse(t){return analyse(t).values}function createTransformer(t){const{values:s,numColors:e,tokenised:r}=analyse(t);const n=s.length;return t=>{let s=r;for(let r=0;r<n;r++)s=s.replace(r<e?v:y,r<e?d.transform(t[r]):sanitize(t[r]));return s}}const convertNumbersToZero=t=>\"number\"===typeof t?0:t;function getAnimatableNone(t){const s=parse(t);const e=createTransformer(t);return e(s.map(convertNumbersToZero))}const O={test:test,parse:parse,createTransformer:createTransformer,getAnimatableNone:getAnimatableNone};const j=new Set([\"brightness\",\"contrast\",\"saturate\",\"opacity\"]);function applyDefaultFilter(s){let[e,r]=s.slice(0,-1).split(\"(\");if(\"drop-shadow\"===e)return s;const[n]=r.match(t)||[];if(!n)return s;const a=r.replace(n,\"\");let o=j.has(e)?1:0;n!==r&&(o*=100);return e+\"(\"+o+a+\")\"}const F=/([a-z-]*)\\(.*?\\)/g;const N=Object.assign(Object.assign({},O),{getAnimatableNone:t=>{const s=t.match(F);return s?s.map(applyDefaultFilter).join(\" \"):t}});export{n as alpha,d as color,O as complex,o as degrees,N as filter,b as hex,f as hsla,r as number,c as percent,u as progressPercentage,l as px,g as rgbUnit,h as rgba,a as scale,i as vh,p as vw};\n\n//# sourceMappingURL=index.mjs.map", "const e=1/60*1e3;const t=\"undefined\"!==typeof performance?()=>performance.now():()=>Date.now();const n=\"undefined\"!==typeof window?e=>window.requestAnimationFrame(e):n=>setTimeout((()=>n(t())),e);function createRenderStep(e){let t=[];let n=[];let s=0;let r=false;let c=false;const o=new WeakSet;const a={schedule:(e,c=false,a=false)=>{const l=a&&r;const f=l?t:n;c&&o.add(e);if(-1===f.indexOf(e)){f.push(e);l&&r&&(s=t.length)}return e},cancel:e=>{const t=n.indexOf(e);-1!==t&&n.splice(t,1);o.delete(e)},process:l=>{if(r)c=true;else{r=true;[t,n]=[n,t];n.length=0;s=t.length;if(s)for(let n=0;n<s;n++){const s=t[n];s(l);if(o.has(s)){a.schedule(s);e()}}r=false;if(c){c=false;a.process(l)}}}};return a}const s=40;let r=true;let c=false;let o=false;const a={delta:0,timestamp:0};const l=[\"read\",\"update\",\"preRender\",\"render\",\"postRender\"];const f=l.reduce(((e,t)=>{e[t]=createRenderStep((()=>c=true));return e}),{});const u=l.reduce(((e,t)=>{const n=f[t];e[t]=(e,t=false,s=false)=>{c||startLoop();return n.schedule(e,t,s)};return e}),{});const d=l.reduce(((e,t)=>{e[t]=f[t].cancel;return e}),{});const i=l.reduce(((e,t)=>{e[t]=()=>f[t].process(a);return e}),{});const processStep=e=>f[e].process(a);const processFrame=t=>{c=false;a.delta=r?e:Math.max(Math.min(t-a.timestamp,s),1);a.timestamp=t;o=true;l.forEach(processStep);o=false;if(c){r=false;n(processFrame)}};const startLoop=()=>{c=true;r=true;o||n(processFrame)};const getFrameData=()=>a;export{d as cancelSync,u as default,i as flushSync,getFrameData};\n\n//# sourceMappingURL=index.mjs.map", "import{__rest as t}from\"tslib\";import{warning as e,invariant as n}from\"hey-listen\";import{hex as o,rgba as s,hsla as r,color as i,complex as u}from\"style-value-types\";import l,{cancelSync as p,getFrameData as f}from\"framesync\";const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const d=.001;const h=.01;const m=10;const y=.05;const g=1;function findSpring({duration:t=800,bounce:n=.25,velocity:o=0,mass:s=1}){let r;let i;e(t<=1e3*m,\"Spring duration must be 10 seconds or less\");let u=1-n;u=clamp(y,g,u);t=clamp(h,m,t/1e3);if(u<1){r=e=>{const n=e*u;const s=n*t;const r=n-o;const i=calcAngularFreq(e,u);const l=Math.exp(-s);return d-r/i*l};i=e=>{const n=e*u;const s=n*t;const i=s*o+o;const l=Math.pow(u,2)*Math.pow(e,2)*t;const p=Math.exp(-s);const f=calcAngularFreq(Math.pow(e,2),u);const h=-r(e)+d>0?-1:1;return h*((i-l)*p)/f}}else{r=e=>{const n=Math.exp(-e*t);const s=(e-o)*t+1;return n*s-d};i=e=>{const n=Math.exp(-e*t);const s=t*t*(o-e);return n*s}}const l=5/t;const p=approximateRoot(r,i,l);t*=1e3;if(isNaN(p))return{stiffness:100,damping:10,duration:t};{const e=Math.pow(p,2)*s;return{stiffness:e,damping:2*u*Math.sqrt(s*e),duration:t}}}const v=12;function approximateRoot(t,e,n){let o=n;for(let n=1;n<v;n++)o-=t(o)/e(o);return o}function calcAngularFreq(t,e){return t*Math.sqrt(1-e*e)}const M=[\"duration\",\"bounce\"];const x=[\"stiffness\",\"damping\",\"mass\"];function isSpringType(t,e){return e.some((e=>void 0!==t[e]))}function getSpringOptions(t){let e=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:false},t);if(!isSpringType(t,x)&&isSpringType(t,M)){const n=findSpring(t);e=Object.assign(Object.assign(Object.assign({},e),n),{velocity:0,mass:1});e.isResolvedFromDuration=true}return e}function spring(e){var{from:n=0,to:o=1,restSpeed:s=2,restDelta:r}=e,i=t(e,[\"from\",\"to\",\"restSpeed\",\"restDelta\"]);const u={done:false,value:n};let{stiffness:l,damping:p,mass:f,velocity:d,duration:h,isResolvedFromDuration:m}=getSpringOptions(i);let y=zero;let g=zero;function createSpring(){const t=d?-d/1e3:0;const e=o-n;const s=p/(2*Math.sqrt(l*f));const i=Math.sqrt(l/f)/1e3;void 0===r&&(r=Math.min(Math.abs(o-n)/100,.4));if(s<1){const n=calcAngularFreq(i,s);y=r=>{const u=Math.exp(-s*i*r);return o-u*((t+s*i*e)/n*Math.sin(n*r)+e*Math.cos(n*r))};g=o=>{const r=Math.exp(-s*i*o);return s*i*r*(Math.sin(n*o)*(t+s*i*e)/n+e*Math.cos(n*o))-r*(Math.cos(n*o)*(t+s*i*e)-n*e*Math.sin(n*o))}}else if(1===s)y=n=>o-Math.exp(-i*n)*(e+(t+i*e)*n);else{const n=i*Math.sqrt(s*s-1);y=r=>{const u=Math.exp(-s*i*r);const l=Math.min(n*r,300);return o-u*((t+s*i*e)*Math.sinh(l)+n*e*Math.cosh(l))/n}}}createSpring();return{next:t=>{const e=y(t);if(m)u.done=t>=h;else{const n=1e3*g(t);const i=Math.abs(n)<=s;const l=Math.abs(o-e)<=r;u.done=i&&l}u.value=u.done?o:e;return u},flipTarget:()=>{d=-d;[n,o]=[o,n];createSpring()}}}spring.needsInterpolation=(t,e)=>\"string\"===typeof t||\"string\"===typeof e;const zero=t=>0;const progress=(t,e,n)=>{const o=e-t;return 0===o?1:(n-t)/o};const mix=(t,e,n)=>-n*t+n*e+t;function hueToRgb(t,e,n){n<0&&(n+=1);n>1&&(n-=1);return n<1/6?t+6*(e-t)*n:n<.5?e:n<2/3?t+(e-t)*(2/3-n)*6:t}function hslaToRgba({hue:t,saturation:e,lightness:n,alpha:o}){t/=360;e/=100;n/=100;let s=0;let r=0;let i=0;if(e){const o=n<.5?n*(1+e):n+e-n*e;const u=2*n-o;s=hueToRgb(u,o,t+1/3);r=hueToRgb(u,o,t);i=hueToRgb(u,o,t-1/3)}else s=r=i=n;return{red:Math.round(255*s),green:Math.round(255*r),blue:Math.round(255*i),alpha:o}}const mixLinearColor=(t,e,n)=>{const o=t*t;const s=e*e;return Math.sqrt(Math.max(0,n*(s-o)+o))};const S=[o,s,r];const getColorType=t=>S.find((e=>e.test(t)));const notAnimatable=t=>`'${t}' is not an animatable color. Use the equivalent color code instead.`;const mixColor=(t,e)=>{let o=getColorType(t);let i=getColorType(e);n(!!o,notAnimatable(t));n(!!i,notAnimatable(e));let u=o.parse(t);let l=i.parse(e);if(o===r){u=hslaToRgba(u);o=s}if(i===r){l=hslaToRgba(l);i=s}const p=Object.assign({},u);return t=>{for(const e in p)\"alpha\"!==e&&(p[e]=mixLinearColor(u[e],l[e],t));p.alpha=mix(u.alpha,l.alpha,t);return o.transform(p)}};const O={x:0,y:0,z:0};const isNum=t=>\"number\"===typeof t;const combineFunctions=(t,e)=>n=>e(t(n));const pipe=(...t)=>t.reduce(combineFunctions);function getMixer(t,e){return isNum(t)?n=>mix(t,e,n):i.test(t)?mixColor(t,e):mixComplex(t,e)}const mixArray=(t,e)=>{const n=[...t];const o=n.length;const s=t.map(((t,n)=>getMixer(t,e[n])));return t=>{for(let e=0;e<o;e++)n[e]=s[e](t);return n}};const mixObject=(t,e)=>{const n=Object.assign(Object.assign({},t),e);const o={};for(const s in n)void 0!==t[s]&&void 0!==e[s]&&(o[s]=getMixer(t[s],e[s]));return t=>{for(const e in o)n[e]=o[e](t);return n}};function analyse(t){const e=u.parse(t);const n=e.length;let o=0;let s=0;let r=0;for(let t=0;t<n;t++)o||\"number\"===typeof e[t]?o++:void 0!==e[t].hue?r++:s++;return{parsed:e,numNumbers:o,numRGB:s,numHSL:r}}const mixComplex=(t,n)=>{const o=u.createTransformer(n);const s=analyse(t);const r=analyse(n);const i=s.numHSL===r.numHSL&&s.numRGB===r.numRGB&&s.numNumbers>=r.numNumbers;if(i)return pipe(mixArray(s.parsed,r.parsed),o);e(true,`Complex values '${t}' and '${n}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`);return e=>`${e>0?n:t}`};const mixNumber=(t,e)=>n=>mix(t,e,n);function detectMixerFactory(t){return\"number\"===typeof t?mixNumber:\"string\"===typeof t?i.test(t)?mixColor:mixComplex:Array.isArray(t)?mixArray:\"object\"===typeof t?mixObject:void 0}function createMixers(t,e,n){const o=[];const s=n||detectMixerFactory(t[0]);const r=t.length-1;for(let n=0;n<r;n++){let r=s(t[n],t[n+1]);if(e){const t=Array.isArray(e)?e[n]:e;r=pipe(t,r)}o.push(r)}return o}function fastInterpolate([t,e],[n]){return o=>n(progress(t,e,o))}function slowInterpolate(t,e){const n=t.length;const o=n-1;return s=>{let r=0;let i=false;if(s<=t[0])i=true;else if(s>=t[o]){r=o-1;i=true}if(!i){let e=1;for(;e<n;e++)if(t[e]>s||e===o)break;r=e-1}const u=progress(t[r],t[r+1],s);return e[r](u)}}function interpolate(t,e,{clamp:o=true,ease:s,mixer:r}={}){const i=t.length;n(i===e.length,\"Both input and output ranges must be the same length\");n(!s||!Array.isArray(s)||s.length===i-1,\"Array of easing functions must be of length `input.length - 1`, as it applies to the transitions **between** the defined values.\");if(t[0]>t[i-1]){t=[].concat(t);e=[].concat(e);t.reverse();e.reverse()}const u=createMixers(e,s,r);const l=2===i?fastInterpolate(t,u):slowInterpolate(t,u);return o?e=>l(clamp(t[0],t[i-1],e)):l}const reverseEasing=t=>e=>1-t(1-e);const mirrorEasing=t=>e=>e<=.5?t(2*e)/2:(2-t(2*(1-e)))/2;const createExpoIn=t=>e=>Math.pow(e,t);const createBackIn=t=>e=>e*e*((t+1)*e-t);const createAnticipate=t=>{const e=createBackIn(t);return t=>(t*=2)<1?.5*e(t):.5*(2-Math.pow(2,-10*(t-1)))};const T=1.525;const w=4/11;const A=8/11;const R=.9;const linear=t=>t;const F=createExpoIn(2);const D=reverseEasing(F);const j=mirrorEasing(F);const circIn=t=>1-Math.sin(Math.acos(t));const q=reverseEasing(circIn);const I=mirrorEasing(q);const P=createBackIn(T);const k=reverseEasing(P);const E=mirrorEasing(P);const B=createAnticipate(T);const C=4356/361;const N=35442/1805;const U=16061/1805;const bounceOut=t=>{if(1===t||0===t)return t;const e=t*t;return t<w?7.5625*e:t<A?9.075*e-9.9*t+3.4:t<R?C*e-N*t+U:10.8*t*t-20.52*t+10.72};const z=reverseEasing(bounceOut);const bounceInOut=t=>t<.5?.5*(1-bounceOut(1-2*t)):.5*bounceOut(2*t-1)+.5;function defaultEasing(t,e){return t.map((()=>e||j)).splice(0,t.length-1)}function defaultOffset(t){const e=t.length;return t.map(((t,n)=>0!==n?n/(e-1):0))}function convertOffsetToTimes(t,e){return t.map((t=>t*e))}function keyframes({from:t=0,to:e=1,ease:n,offset:o,duration:s=300}){const r={done:false,value:t};const i=Array.isArray(e)?e:[t,e];const u=convertOffsetToTimes(o&&o.length===i.length?o:defaultOffset(i),s);function createInterpolator(){return interpolate(u,i,{ease:Array.isArray(n)?n:defaultEasing(i,n)})}let l=createInterpolator();return{next:t=>{r.value=l(t);r.done=t>=s;return r},flipTarget:()=>{i.reverse();l=createInterpolator()}}}function decay({velocity:t=0,from:e=0,power:n=.8,timeConstant:o=350,restDelta:s=.5,modifyTarget:r}){const i={done:false,value:e};let u=n*t;const l=e+u;const p=void 0===r?l:r(l);p!==l&&(u=p-e);return{next:t=>{const e=-u*Math.exp(-t/o);i.done=!(e>s||e<-s);i.value=i.done?p:p+e;return i},flipTarget:()=>{}}}const $={keyframes:keyframes,spring:spring,decay:decay};function detectAnimationFromOptions(t){if(Array.isArray(t.to))return keyframes;if($[t.type])return $[t.type];const e=new Set(Object.keys(t));return e.has(\"ease\")||e.has(\"duration\")&&!e.has(\"dampingRatio\")?keyframes:e.has(\"dampingRatio\")||e.has(\"stiffness\")||e.has(\"mass\")||e.has(\"damping\")||e.has(\"restSpeed\")||e.has(\"restDelta\")?spring:keyframes}function loopElapsed(t,e,n=0){return t-e-n}function reverseElapsed(t,e,n=0,o=true){return o?loopElapsed(e+-t,e,n):e-(t-e)+n}function hasRepeatDelayElapsed(t,e,n,o){return o?t>=e+n:t<=-n}const framesync=t=>{const passTimestamp=({delta:e})=>t(e);return{start:()=>l.update(passTimestamp,true),stop:()=>p.update(passTimestamp)}};function animate(e){var n,o;var{from:s,autoplay:r=true,driver:i=framesync,elapsed:u=0,repeat:l=0,repeatType:p=\"loop\",repeatDelay:f=0,onPlay:d,onStop:h,onComplete:m,onRepeat:y,onUpdate:g}=e,v=t(e,[\"from\",\"autoplay\",\"driver\",\"elapsed\",\"repeat\",\"repeatType\",\"repeatDelay\",\"onPlay\",\"onStop\",\"onComplete\",\"onRepeat\",\"onUpdate\"]);let{to:M}=v;let x;let S=0;let O=v.duration;let T;let w=false;let A=true;let R;const F=detectAnimationFromOptions(v);if(null===(o=(n=F).needsInterpolation)||void 0===o?void 0:o.call(n,s,M)){R=interpolate([0,100],[s,M],{clamp:false});s=0;M=100}const D=F(Object.assign(Object.assign({},v),{from:s,to:M}));function repeat(){S++;if(\"reverse\"===p){A=S%2===0;u=reverseElapsed(u,O,f,A)}else{u=loopElapsed(u,O,f);\"mirror\"===p&&D.flipTarget()}w=false;y&&y()}function complete(){x.stop();m&&m()}function update(t){A||(t=-t);u+=t;if(!w){const t=D.next(Math.max(0,u));T=t.value;R&&(T=R(T));w=A?t.done:u<=0}null===g||void 0===g?void 0:g(T);if(w){0===S&&(null!==O&&void 0!==O?O:O=u);S<l?hasRepeatDelayElapsed(u,O,f,A)&&repeat():complete()}}function play(){null===d||void 0===d?void 0:d();x=i(update);x.start()}r&&play();return{stop:()=>{null===h||void 0===h?void 0:h();x.stop()}}}function velocityPerSecond(t,e){return e?t*(1e3/e):0}function inertia({from:t=0,velocity:e=0,min:n,max:o,power:s=.8,timeConstant:r=750,bounceStiffness:i=500,bounceDamping:u=10,restDelta:l=1,modifyTarget:p,driver:d,onUpdate:h,onComplete:m,onStop:y}){let g;function isOutOfBounds(t){return void 0!==n&&t<n||void 0!==o&&t>o}function boundaryNearest(t){return void 0===n?o:void 0===o||Math.abs(n-t)<Math.abs(o-t)?n:o}function startAnimation(t){null===g||void 0===g?void 0:g.stop();g=animate(Object.assign(Object.assign({},t),{driver:d,onUpdate:e=>{var n;null===h||void 0===h?void 0:h(e);null===(n=t.onUpdate)||void 0===n?void 0:n.call(t,e)},onComplete:m,onStop:y}))}function startSpring(t){startAnimation(Object.assign({type:\"spring\",stiffness:i,damping:u,restDelta:l},t))}if(isOutOfBounds(t))startSpring({from:t,velocity:e,to:boundaryNearest(t)});else{let o=s*e+t;\"undefined\"!==typeof p&&(o=p(o));const i=boundaryNearest(o);const u=i===n?-1:1;let d;let h;const checkBoundary=t=>{d=h;h=t;e=velocityPerSecond(t-d,f().delta);(1===u&&t>i||-1===u&&t<i)&&startSpring({from:t,to:i,velocity:e})};startAnimation({type:\"decay\",from:t,velocity:e,timeConstant:r,power:s,restDelta:l,modifyTarget:p,onUpdate:isOutOfBounds(o)?checkBoundary:void 0})}return{stop:()=>null===g||void 0===g?void 0:g.stop()}}const radiansToDegrees=t=>180*t/Math.PI;const angle=(t,e=O)=>radiansToDegrees(Math.atan2(e.y-t.y,e.x-t.x));const applyOffset=(t,e)=>{let n=true;if(void 0===e){e=t;n=false}return o=>{if(n)return o-t+e;t=o;n=true;return e}};const identity=t=>t;const createAttractor=(t=identity)=>(e,n,o)=>{const s=n-o;const r=-(0-e+1)*(0-t(Math.abs(s)));return s<=0?n+r:n-r};const G=createAttractor();const H=createAttractor(Math.sqrt);const degreesToRadians=t=>t*Math.PI/180;const isPoint=t=>t.hasOwnProperty(\"x\")&&t.hasOwnProperty(\"y\");const isPoint3D=t=>isPoint(t)&&t.hasOwnProperty(\"z\");const distance1D=(t,e)=>Math.abs(t-e);function distance(t,e){if(isNum(t)&&isNum(e))return distance1D(t,e);if(isPoint(t)&&isPoint(e)){const n=distance1D(t.x,e.x);const o=distance1D(t.y,e.y);const s=isPoint3D(t)&&isPoint3D(e)?distance1D(t.z,e.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(o,2)+Math.pow(s,2))}}const pointFromVector=(t,e,n)=>{e=degreesToRadians(e);return{x:n*Math.cos(e)+t.x,y:n*Math.sin(e)+t.y}};const toDecimal=(t,e=2)=>{e=Math.pow(10,e);return Math.round(t*e)/e};const smoothFrame=(t,e,n,o=0)=>toDecimal(t+n*(e-t)/Math.max(o,n));const smooth=(t=50)=>{let e=0;let n=0;return o=>{const s=f().timestamp;const r=s!==n?s-n:0;const i=r?smoothFrame(e,o,r,t):e;n=s;e=i;return i}};const snap=t=>{if(\"number\"===typeof t)return e=>Math.round(e/t)*t;{let e=0;const n=t.length;return o=>{let s=Math.abs(t[0]-o);for(e=1;e<n;e++){const r=t[e];const i=Math.abs(r-o);if(0===i)return r;if(i>s)return t[e-1];if(e===n-1)return r;s=i}}}};function velocityPerFrame(t,e){return t/(1e3/e)}const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};const a=(t,e)=>1-3*e+3*t;const b=(t,e)=>3*e-6*t;const c=t=>3*t;const calcBezier=(t,e,n)=>((a(e,n)*t+b(e,n))*t+c(e))*t;const getSlope=(t,e,n)=>3*a(e,n)*t*t+2*b(e,n)*t+c(e);const L=1e-7;const X=10;function binarySubdivide(t,e,n,o,s){let r;let i;let u=0;do{i=e+(n-e)/2;r=calcBezier(i,o,s)-t;r>0?n=i:e=i}while(Math.abs(r)>L&&++u<X);return i}const J=8;const K=.001;function newtonRaphsonIterate(t,e,n,o){for(let s=0;s<J;++s){const s=getSlope(e,n,o);if(0===s)return e;const r=calcBezier(e,n,o)-t;e-=r/s}return e}const Q=11;const V=1/(Q-1);function cubicBezier(t,e,n,o){if(t===e&&n===o)return linear;const s=new Float32Array(Q);for(let e=0;e<Q;++e)s[e]=calcBezier(e*V,t,n);function getTForX(e){let o=0;let r=1;const i=Q-1;for(;r!==i&&s[r]<=e;++r)o+=V;--r;const u=(e-s[r])/(s[r+1]-s[r]);const l=o+u*V;const p=getSlope(l,t,n);return p>=K?newtonRaphsonIterate(e,l,t,n):0===p?l:binarySubdivide(e,o,o+V,t,n)}return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>n=>{n=\"end\"===e?Math.min(n,.999):Math.max(n,.001);const o=n*t;const s=\"end\"===e?Math.floor(o):Math.ceil(o);return clamp(0,1,s/t)};export{angle,animate,B as anticipate,applyOffset,G as attract,H as attractExpo,P as backIn,E as backInOut,k as backOut,z as bounceIn,bounceInOut,bounceOut,circIn,I as circInOut,q as circOut,clamp,createAnticipate,createAttractor,createBackIn,createExpoIn,cubicBezier,decay,degreesToRadians,distance,F as easeIn,j as easeInOut,D as easeOut,inertia,interpolate,isPoint,isPoint3D,keyframes,linear,mirrorEasing,mix,mixColor,mixComplex,pipe,pointFromVector,progress,radiansToDegrees,reverseEasing,smooth,smoothFrame,snap,spring,steps,toDecimal,velocityPerFrame,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.mjs.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ const{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){useLayoutEffect(()=>{measure();},[]);/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const transformRef=useRef(null);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();useAnimationFrame(t=>{if(isCanvas||!transformRef.current||!animateToValue||isReducedMotion){return;}/**\n         * In case this animation is delayed from starting because we're running a bunch\n         * of other work, we want to set an initial time rather than counting from 0.\n         * That ensures that if the animation is delayed, it starts from the first frame\n         * rather than jumping.\n         */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;/* Direction */ if(direction===\"left\"){transformRef.current.style.transform=`translateX(-${xOrY.current}px)`;}if(direction===\"right\"){transformRef.current.style.transform=`translateX(${xOrY.current}px)`;}if(direction===\"top\"){transformRef.current.style.transform=`translateY(-${xOrY.current}px)`;}if(direction===\"bottom\"){transformRef.current.style.transform=`translateY(${xOrY.current}px)`;}});/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(\"ul\",{style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&-animateToValue,left:direction===\"right\"&&-animateToValue,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",willChange:\"transform\",...style},ref:transformRef,onMouseEnter:()=>isHover.current=true,onMouseLeave:()=>isHover.current=false,children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:.5,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;Satoshi-medium\"]);export const fonts=[{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/fGHfj5UOW:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}];export const css=['.framer-X47fY .framer-styles-preset-sd6way:not(.rich-text-wrapper), .framer-X47fY .framer-styles-preset-sd6way.rich-text-wrapper p { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, #495460); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-X47fY\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;Satoshi-bold\"]);export const fonts=[{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/Tn_1Na8Eg:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}];export const css=['.framer-KI01B .framer-styles-preset-1591n2u:not(.rich-text-wrapper), .framer-KI01B .framer-styles-preset-1591n2u.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: -0.0357143em; --framer-line-height: 1.15em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #171a1f); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 992px) { .framer-KI01B .framer-styles-preset-1591n2u:not(.rich-text-wrapper), .framer-KI01B .framer-styles-preset-1591n2u.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: -0.0357143em; --framer-line-height: 1.15em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #171a1f); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 991px) and (min-width: 768px) { .framer-KI01B .framer-styles-preset-1591n2u:not(.rich-text-wrapper), .framer-KI01B .framer-styles-preset-1591n2u.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: -0.0357143em; --framer-line-height: 1.15em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #171a1f); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-KI01B .framer-styles-preset-1591n2u:not(.rich-text-wrapper), .framer-KI01B .framer-styles-preset-1591n2u.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: -0.0357143em; --framer-line-height: 1.15em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #171a1f); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-KI01B\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;Satoshi-bold\"]);export const fonts=[{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/wqdB5IV7E:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}];export const css=['.framer-Ps2xk .framer-styles-preset-vlhi6s:not(.rich-text-wrapper), .framer-Ps2xk .framer-styles-preset-vlhi6s.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #171a1f); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Ps2xk .framer-styles-preset-vlhi6s:not(.rich-text-wrapper), .framer-Ps2xk .framer-styles-preset-vlhi6s.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #171a1f); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Ps2xk .framer-styles-preset-vlhi6s:not(.rich-text-wrapper), .framer-Ps2xk .framer-styles-preset-vlhi6s.rich-text-wrapper h2 { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #171a1f); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-Ps2xk\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;Satoshi-medium\"]);export const fonts=[{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/zDqycBgBC:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}];export const css=['.framer-O18hT .framer-styles-preset-e9y9wj:not(.rich-text-wrapper), .framer-O18hT .framer-styles-preset-e9y9wj.rich-text-wrapper p { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.4444444em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, #495460); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 991px) and (min-width: 0px) { .framer-O18hT .framer-styles-preset-e9y9wj:not(.rich-text-wrapper), .framer-O18hT .framer-styles-preset-e9y9wj.rich-text-wrapper p { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.4444444em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, #495460); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-O18hT\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b084a7c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/pWN0AJPERV6pM78KhVuT/Owl3ofUGgSEr3mxGr7N1/fGHfj5UOW.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9jH3MFGtY5ba0TdN5rkx/6vv7GtwIT1ouYsImVd5m/Tn_1Na8Eg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wT8GLWQlXo1BWXUxJSVC/K805mJZREy63dcgE0gVp/wqdB5IV7E.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/2UKS1jztQTtBT3srbCxx/1oFJWwFErobRFsIN91dR/zDqycBgBC.js\";const cycleOrder=[\"showOofZ7\",\"dFdQqu9Yd\",\"nochO9AvC\"];const variantClassNames={dFdQqu9Yd:\"framer-v-oxmmen\",nochO9AvC:\"framer-v-1587tqz\",showOofZ7:\"framer-v-nwpm7d\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Large Center\":\"dFdQqu9Yd\",\"Small Center\":\"nochO9AvC\",Small:\"showOofZ7\"};const getProps=({countValue,countValueColor,description,height,id,width,...props})=>{var ref,ref1,_variant,ref2,ref3;return{...props,bQdc2jZn8:(ref=countValue!==null&&countValue!==void 0?countValue:props.bQdc2jZn8)!==null&&ref!==void 0?ref:\"150+\",cekoBzrVQ:(ref1=countValueColor!==null&&countValueColor!==void 0?countValueColor:props.cekoBzrVQ)!==null&&ref1!==void 0?ref1:'var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(12, 41, 193)) /* {\"name\":\"Primary\"} */',variant:(ref2=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref2!==void 0?ref2:\"showOofZ7\",XbB05uPre:(ref3=description!==null&&description!==void 0?description:props.XbB05uPre)!==null&&ref3!==void 0?ref3:\"Finishing success projects\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,bQdc2jZn8,cekoBzrVQ,XbB05uPre,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"showOofZ7\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-0suQs\",sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-nwpm7d\",className),\"data-framer-name\":\"Small\",layoutDependency:layoutDependency,layoutId:\"showOofZ7\",ref:ref,style:{...style},...addPropertyOverrides({dFdQqu9Yd:{\"data-framer-name\":\"Large Center\"},nochO9AvC:{\"data-framer-name\":\"Small Center\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h2,{className:\"framer-styles-preset-vlhi6s\",\"data-styles-preset\":\"wqdB5IV7E\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5)\"},children:\"150+\"})}),className:\"framer-nn3lyi\",\"data-framer-name\":\"Count\",layoutDependency:layoutDependency,layoutId:\"sK_HSDtmD\",style:{\"--extracted-1of0zx5\":\"var(--variable-reference-cekoBzrVQ-GOousUbpO)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-cekoBzrVQ-GOousUbpO\":cekoBzrVQ},text:bQdc2jZn8,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dFdQqu9Yd:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h2,{className:\"framer-styles-preset-1591n2u\",\"data-styles-preset\":\"Tn_1Na8Eg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5)\"},children:\"150+\"})})},nochO9AvC:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h2,{className:\"framer-styles-preset-vlhi6s\",\"data-styles-preset\":\"wqdB5IV7E\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5)\"},children:\"150+\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-sd6way\",\"data-styles-preset\":\"fGHfj5UOW\",children:\"Staff on three continents\"})}),className:\"framer-120yfvy\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Ucwn7YEzb\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:XbB05uPre,variants:{dFdQqu9Yd:{\"--extracted-r6o4lv\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(10, 13, 17))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dFdQqu9Yd:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-e9y9wj\",\"data-styles-preset\":\"zDqycBgBC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Finishing success projects\"})})},nochO9AvC:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-sd6way\",\"data-styles-preset\":\"fGHfj5UOW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Finishing success projects\"})})}},baseVariant,gestureVariant)})]})})})});});const css=['.framer-0suQs [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0suQs .framer-1dtn7vz { display: block; }\",\".framer-0suQs .framer-nwpm7d { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 150px; }\",\".framer-0suQs .framer-nn3lyi, .framer-0suQs .framer-120yfvy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0suQs .framer-nwpm7d { gap: 0px; } .framer-0suQs .framer-nwpm7d > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-0suQs .framer-nwpm7d > :first-child { margin-top: 0px; } .framer-0suQs .framer-nwpm7d > :last-child { margin-bottom: 0px; } }\",\".framer-0suQs.framer-v-oxmmen .framer-nwpm7d { width: 200px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 107\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dFdQqu9Yd\":{\"layout\":[\"fixed\",\"auto\"]},\"nochO9AvC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bQdc2jZn8\":\"countValue\",\"cekoBzrVQ\":\"countValueColor\",\"XbB05uPre\":\"description\"}\n */ const FramerGOousUbpO=withCSS(Component,css,\"framer-0suQs\");export default FramerGOousUbpO;FramerGOousUbpO.displayName=\"Single Stats\";FramerGOousUbpO.defaultProps={height:107,width:150};addPropertyControls(FramerGOousUbpO,{variant:{options:[\"showOofZ7\",\"dFdQqu9Yd\",\"nochO9AvC\"],optionTitles:[\"Small\",\"Large Center\",\"Small Center\"],title:\"Variant\",type:ControlType.Enum},bQdc2jZn8:{defaultValue:\"150+\",title:\"Count Value\",type:ControlType.String},cekoBzrVQ:{defaultValue:'var(--token-f512b2c0-ccff-4c1c-81ef-5b1a68ff0d48, rgb(12, 41, 193)) /* {\"name\":\"Primary\"} */',title:\"Count Value Color\",type:ControlType.Color},XbB05uPre:{defaultValue:\"Finishing success projects\",title:\"Description\",type:ControlType.String}});addFonts(FramerGOousUbpO,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGOousUbpO\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"150\",\"framerIntrinsicHeight\":\"107\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dFdQqu9Yd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nochO9AvC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"bQdc2jZn8\\\":\\\"countValue\\\",\\\"cekoBzrVQ\\\":\\\"countValueColor\\\",\\\"XbB05uPre\\\":\\\"description\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (716ed5b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,PathVariablesContext,ResolveLinks,useActiveVariantCallback,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import LettreInfos from\"https://framerusercontent.com/modules/wSCItJR6yZEZdR0heYDD/XJjs1LOsadP7Y1rYNjOv/hbxBDCKQj.js\";import PostItem from\"https://framerusercontent.com/modules/41gzM27sNfDiikfQEKPN/L768jTbmDf1GNKHP6svq/YdDCfOEko.js\";const PostItemFonts=getFonts(PostItem);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"o1INsETkx\"];const serializationHash=\"framer-2Qqeo\";const variantClassNames={o1INsETkx:\"framer-v-x5mndj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,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 convertFromEnum=(value,activeLocale,{eqTCb_eLDPumtWcHjd})=>{switch(value){case\"CubIH2jZp\":return eqTCb_eLDPumtWcHjd;default:return\"\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const convertFromEnum1=(value,activeLocale,{XUc2tMg1QPumtWcHjd})=>{switch(value){case\"CubIH2jZp\":return XUc2tMg1QPumtWcHjd;default:return\"\";}};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};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(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hWQaFwPy7PumtWcHjd,AY6x9tBtfPumtWcHjd,eqTCb_eLDPumtWcHjd,XUc2tMg1QPumtWcHjd,ey9i_Q5bDPumtWcHjd,idPumtWcHjd,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"o1INsETkx\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1kj77o7=activeVariantCallback(async(...args)=>{setVariant(\"o1INsETkx\");});const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-x5mndj\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"o1INsETkx\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9rmaik-container\",layoutDependency:layoutDependency,layoutId:\"qAyqabJMf-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"qAyqabJMf\",layoutId:\"qAyqabJMf\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5r8nzp\",layoutDependency:layoutDependency,layoutId:\"PumtWcHjd\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:LettreInfos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"hWQaFwPy7\",type:\"Identifier\"},{name:\"AY6x9tBtf\",type:\"Identifier\"},{name:\"eqTCb_eLD\",type:\"Identifier\"},{name:\"XUc2tMg1Q\",type:\"Identifier\"},{name:\"ey9i_Q5bD\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"AY6x9tBtf\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"CubIH2jZp\"},type:\"BinaryOperation\"}},children:collection=>collection.map(({hWQaFwPy7:hWQaFwPy7PumtWcHjd,AY6x9tBtf:AY6x9tBtfPumtWcHjd,eqTCb_eLD:eqTCb_eLDPumtWcHjd,XUc2tMg1Q:XUc2tMg1QPumtWcHjd,ey9i_Q5bD:ey9i_Q5bDPumtWcHjd,id:idPumtWcHjd},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`PumtWcHjd-${idPumtWcHjd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18pajff\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Z9GiQwbnh\",onTap:onTap1kj77o7,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lkb4a-container\",layoutDependency:layoutDependency,layoutId:\"RG3dOh1Ex-container\",children:/*#__PURE__*/_jsx(PostItem,{gyfXGqJIj:toString(convertFromEnum1(AY6x9tBtfPumtWcHjd,activeLocale,{XUc2tMg1QPumtWcHjd})),height:\"100%\",id:\"RG3dOh1Ex\",layoutId:\"RG3dOh1Ex\",rHKeQ5Zko:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\",XEK2hgadJ:toString(convertFromEnum(AY6x9tBtfPumtWcHjd,activeLocale,{eqTCb_eLDPumtWcHjd})),yImfHNR2J:toResponsiveImage(hWQaFwPy7PumtWcHjd)})})})})})},idPumtWcHjd);})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5r8nzp\",layoutDependency:layoutDependency,layoutId:\"PumtWcHjd\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:LettreInfos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"hWQaFwPy7\",type:\"Identifier\"},{name:\"AY6x9tBtf\",type:\"Identifier\"},{name:\"eqTCb_eLD\",type:\"Identifier\"},{name:\"XUc2tMg1Q\",type:\"Identifier\"},{name:\"ey9i_Q5bD\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"AY6x9tBtf\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"CubIH2jZp\"},type:\"BinaryOperation\"}},children:collection1=>collection1.map(({hWQaFwPy7:hWQaFwPy7PumtWcHjd,AY6x9tBtf:AY6x9tBtfPumtWcHjd,eqTCb_eLD:eqTCb_eLDPumtWcHjd,XUc2tMg1Q:XUc2tMg1QPumtWcHjd,ey9i_Q5bD:ey9i_Q5bDPumtWcHjd,id:idPumtWcHjd},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`PumtWcHjd-${idPumtWcHjd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18pajff\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Z9GiQwbnh\",onTap:onTap1kj77o7,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lkb4a-container\",layoutDependency:layoutDependency,layoutId:\"RG3dOh1Ex-container\",children:/*#__PURE__*/_jsx(PostItem,{gyfXGqJIj:toString(convertFromEnum1(AY6x9tBtfPumtWcHjd,activeLocale,{XUc2tMg1QPumtWcHjd})),height:\"100%\",id:\"RG3dOh1Ex\",layoutId:\"RG3dOh1Ex\",rHKeQ5Zko:resolvedLinks[1],style:{width:\"100%\"},width:\"100%\",XEK2hgadJ:toString(convertFromEnum(AY6x9tBtfPumtWcHjd,activeLocale,{eqTCb_eLDPumtWcHjd})),yImfHNR2J:toResponsiveImage(hWQaFwPy7PumtWcHjd)})})})})})},idPumtWcHjd);})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5r8nzp\",layoutDependency:layoutDependency,layoutId:\"PumtWcHjd\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:LettreInfos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"hWQaFwPy7\",type:\"Identifier\"},{name:\"AY6x9tBtf\",type:\"Identifier\"},{name:\"eqTCb_eLD\",type:\"Identifier\"},{name:\"XUc2tMg1Q\",type:\"Identifier\"},{name:\"ey9i_Q5bD\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"AY6x9tBtf\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"CubIH2jZp\"},type:\"BinaryOperation\"}},children:collection2=>collection2.map(({hWQaFwPy7:hWQaFwPy7PumtWcHjd,AY6x9tBtf:AY6x9tBtfPumtWcHjd,eqTCb_eLD:eqTCb_eLDPumtWcHjd,XUc2tMg1Q:XUc2tMg1QPumtWcHjd,ey9i_Q5bD:ey9i_Q5bDPumtWcHjd,id:idPumtWcHjd},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`PumtWcHjd-${idPumtWcHjd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18pajff\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Z9GiQwbnh\",onTap:onTap1kj77o7,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lkb4a-container\",layoutDependency:layoutDependency,layoutId:\"RG3dOh1Ex-container\",children:/*#__PURE__*/_jsx(PostItem,{gyfXGqJIj:toString(convertFromEnum1(AY6x9tBtfPumtWcHjd,activeLocale,{XUc2tMg1QPumtWcHjd})),height:\"100%\",id:\"RG3dOh1Ex\",layoutId:\"RG3dOh1Ex\",rHKeQ5Zko:resolvedLinks[2],style:{width:\"100%\"},width:\"100%\",XEK2hgadJ:toString(convertFromEnum(AY6x9tBtfPumtWcHjd,activeLocale,{eqTCb_eLDPumtWcHjd})),yImfHNR2J:toResponsiveImage(hWQaFwPy7PumtWcHjd)})})})})})},idPumtWcHjd);})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5r8nzp\",layoutDependency:layoutDependency,layoutId:\"PumtWcHjd\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:LettreInfos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"hWQaFwPy7\",type:\"Identifier\"},{name:\"AY6x9tBtf\",type:\"Identifier\"},{name:\"eqTCb_eLD\",type:\"Identifier\"},{name:\"XUc2tMg1Q\",type:\"Identifier\"},{name:\"ey9i_Q5bD\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"AY6x9tBtf\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"CubIH2jZp\"},type:\"BinaryOperation\"}},children:collection3=>collection3.map(({hWQaFwPy7:hWQaFwPy7PumtWcHjd,AY6x9tBtf:AY6x9tBtfPumtWcHjd,eqTCb_eLD:eqTCb_eLDPumtWcHjd,XUc2tMg1Q:XUc2tMg1QPumtWcHjd,ey9i_Q5bD:ey9i_Q5bDPumtWcHjd,id:idPumtWcHjd},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`PumtWcHjd-${idPumtWcHjd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18pajff\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Z9GiQwbnh\",onTap:onTap1kj77o7,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lkb4a-container\",layoutDependency:layoutDependency,layoutId:\"RG3dOh1Ex-container\",children:/*#__PURE__*/_jsx(PostItem,{gyfXGqJIj:toString(convertFromEnum1(AY6x9tBtfPumtWcHjd,activeLocale,{XUc2tMg1QPumtWcHjd})),height:\"100%\",id:\"RG3dOh1Ex\",layoutId:\"RG3dOh1Ex\",rHKeQ5Zko:resolvedLinks[3],style:{width:\"100%\"},width:\"100%\",XEK2hgadJ:toString(convertFromEnum(AY6x9tBtfPumtWcHjd,activeLocale,{eqTCb_eLDPumtWcHjd})),yImfHNR2J:toResponsiveImage(hWQaFwPy7PumtWcHjd)})})})})})},idPumtWcHjd);})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5r8nzp\",layoutDependency:layoutDependency,layoutId:\"PumtWcHjd\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:LettreInfos,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"hWQaFwPy7\",type:\"Identifier\"},{name:\"AY6x9tBtf\",type:\"Identifier\"},{name:\"eqTCb_eLD\",type:\"Identifier\"},{name:\"XUc2tMg1Q\",type:\"Identifier\"},{name:\"ey9i_Q5bD\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"AY6x9tBtf\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"CubIH2jZp\"},type:\"BinaryOperation\"}},children:collection4=>collection4.map(({hWQaFwPy7:hWQaFwPy7PumtWcHjd,AY6x9tBtf:AY6x9tBtfPumtWcHjd,eqTCb_eLD:eqTCb_eLDPumtWcHjd,XUc2tMg1Q:XUc2tMg1QPumtWcHjd,ey9i_Q5bD:ey9i_Q5bDPumtWcHjd,id:idPumtWcHjd},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`PumtWcHjd-${idPumtWcHjd}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18pajff\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Z9GiQwbnh\",onTap:onTap1kj77o7,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined},{href:{pathVariables:{ey9i_Q5bD:ey9i_Q5bDPumtWcHjd},webPageId:\"rrZLu5Xca\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lkb4a-container\",layoutDependency:layoutDependency,layoutId:\"RG3dOh1Ex-container\",children:/*#__PURE__*/_jsx(PostItem,{gyfXGqJIj:toString(convertFromEnum1(AY6x9tBtfPumtWcHjd,activeLocale,{XUc2tMg1QPumtWcHjd})),height:\"100%\",id:\"RG3dOh1Ex\",layoutId:\"RG3dOh1Ex\",rHKeQ5Zko:resolvedLinks[4],style:{width:\"100%\"},width:\"100%\",XEK2hgadJ:toString(convertFromEnum(AY6x9tBtfPumtWcHjd,activeLocale,{eqTCb_eLDPumtWcHjd})),yImfHNR2J:toResponsiveImage(hWQaFwPy7PumtWcHjd)})})})})})},idPumtWcHjd);})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})});});const css=['.framer-2Qqeo[data-border=\"true\"]::after, .framer-2Qqeo [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Qqeo.framer-12h88jp, .framer-2Qqeo .framer-12h88jp { display: block; }\",\".framer-2Qqeo.framer-x5mndj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1280px; }\",\".framer-2Qqeo .framer-9rmaik-container { flex: 1 0 0px; height: 456px; position: relative; width: 1px; }\",\".framer-2Qqeo .framer-5r8nzp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; width: 1280px; }\",\".framer-2Qqeo .framer-18pajff { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: auto; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; width: 31%; }\",\".framer-2Qqeo .framer-1lkb4a-container { flex: none; height: auto; position: relative; width: 94%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2Qqeo.framer-x5mndj, .framer-2Qqeo .framer-5r8nzp, .framer-2Qqeo .framer-18pajff { gap: 0px; } .framer-2Qqeo.framer-x5mndj > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-2Qqeo.framer-x5mndj > :first-child, .framer-2Qqeo .framer-5r8nzp > :first-child { margin-left: 0px; } .framer-2Qqeo.framer-x5mndj > :last-child, .framer-2Qqeo .framer-5r8nzp > :last-child { margin-right: 0px; } .framer-2Qqeo .framer-5r8nzp > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-2Qqeo .framer-18pajff > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2Qqeo .framer-18pajff > :first-child { margin-top: 0px; } .framer-2Qqeo .framer-18pajff > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 456\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramermtNSpWGzd=withCSS(Component,css,\"framer-2Qqeo\");export default FramermtNSpWGzd;FramermtNSpWGzd.displayName=\"List-ticker\";FramermtNSpWGzd.defaultProps={height:456,width:1280};addFonts(FramermtNSpWGzd,[...PostItemFonts,...TickerFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermtNSpWGzd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"456\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1280\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-nEYjJ .framer-styles-preset-ihvsb8:not(.rich-text-wrapper), .framer-nEYjJ .framer-styles-preset-ihvsb8.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-96b7d321-1db4-4c68-880c-42be5183b273, #f7a800) /* {\"name\":\"jaunes\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-fc9c493b-aba9-41e7-979a-d8a1dacc8412, #f15a2b); --framer-link-text-decoration: none; }'];export const className=\"framer-nEYjJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;Satoshi-bold\"]);export const fonts=[{family:\"Satoshi\",moduleAsset:{localModuleIdentifier:\"local-module:css/p0VXkF3hg:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}];export const css=['.framer-qSfv7 .framer-styles-preset-yh7tft:not(.rich-text-wrapper), .framer-qSfv7 .framer-styles-preset-yh7tft.rich-text-wrapper p { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-7e63076d-1112-420c-8a95-53224ce59207, #b99e5a); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-qSfv7\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/PH5dKwV7X6kCySScDT2G/Ticker.js\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import SingleStats from\"https://framerusercontent.com/modules/qbXRiERaENnmjNTAYjra/24I27feRyPRgmE2RiOWh/GOousUbpO.js\";import FooterSection from\"#framer/local/canvasComponent/BYBg0fkPL/BYBg0fkPL.js\";import Navbar from\"#framer/local/canvasComponent/MGkkZRgvW/MGkkZRgvW.js\";import ListTicker from\"#framer/local/canvasComponent/mtNSpWGzd/mtNSpWGzd.js\";import Button from\"#framer/local/canvasComponent/y4RLcLSEO/y4RLcLSEO.js\";import*as sharedStyle4 from\"#framer/local/css/AaHXTSfMY/AaHXTSfMY.js\";import*as sharedStyle5 from\"#framer/local/css/c39XDipOJ/c39XDipOJ.js\";import*as sharedStyle1 from\"#framer/local/css/NDmC3EsjC/NDmC3EsjC.js\";import*as sharedStyle2 from\"#framer/local/css/O2pOsUa1s/O2pOsUa1s.js\";import*as sharedStyle3 from\"#framer/local/css/p0VXkF3hg/p0VXkF3hg.js\";import*as sharedStyle from\"#framer/local/css/xRHOhqJJS/xRHOhqJJS.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const DownloadFonts=getFonts(Download);const ListTickerFonts=getFonts(ListTicker);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const SingleStatsFonts=getFonts(SingleStats);const ContainerWithFX=withFX(Container);const Ticker1Fonts=getFonts(Ticker1);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={eSwUr9hKY:\"(min-width: 1100px) and (max-width: 1439px)\",GTWkC1jUF:\"(min-width: 810px) and (max-width: 1099px)\",hW7wZ6KrU:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NLAuE\";const variantClassNames={eSwUr9hKY:\"framer-v-122b60b\",GTWkC1jUF:\"framer-v-1hlxked\",hW7wZ6KrU:\"framer-v-1643qx\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:60,delay:.3,mass:1.2,stiffness:200,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={damping:60,delay:.6,mass:1.2,stiffness:200,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:60,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-40,y:0};const transition4={damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:-40,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:40,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:40,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition5={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};const transition6={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};const transition7={damping:60,delay:.4,mass:1.2,stiffness:300,type:\"spring\"};const transition8={damping:60,delay:.5,mass:1.2,stiffness:300,type:\"spring\"};const transition9={damping:60,delay:.6,mass:1.2,stiffness:300,type:\"spring\"};const transition10={damping:80,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Display\":\"WQLkyLRf1\",Laptop:\"eSwUr9hKY\",Phone:\"hW7wZ6KrU\",Tablet:\"GTWkC1jUF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"X6Yso3whQ\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1997221e-32bc-4782-b553-3b6602340a1d, rgb(221, 228, 229)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-i3t17n\",\"data-framer-name\":\"Hero-section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s5g32z\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9173, 1320px)`},GTWkC1jUF:{width:`min(${componentViewport?.width||\"100vw\"} - 54px, 1320px)`,y:(componentViewport?.y||0)+0+0+0+0+2},hW7wZ6KrU:{width:`min(${componentViewport?.width||\"100vw\"} - 65px, 1320px)`,y:(componentViewport?.y||0)+0+0+0+0+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:`min(${componentViewport?.width||\"100vw\"} * 0.9028, 1320px)`,y:(componentViewport?.y||0)+0+0+0+0+-56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hg9gnt-container\",nodeId:\"pJ4cy3VVU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GTWkC1jUF:{variant:\"Ux4myH7IR\"},hW7wZ6KrU:{variant:\"SxC9Nylky\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"pJ4cy3VVU\",layoutId:\"pJ4cy3VVU\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"dHU4ezRPY\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kwnfk5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gwlwum\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5acvae\",\"data-border\":true,\"data-framer-name\":\"Hero content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3553,intrinsicWidth:5330,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+-92),pixelHeight:1656,pixelWidth:2646,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px) * 0.8857)`,src:\"https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg\",srcSet:\"https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg 2646w\"}},GTWkC1jUF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3553,intrinsicWidth:5330,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+-92),pixelHeight:1656,pixelWidth:2646,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px) * 1.0519)`,src:\"https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg\",srcSet:\"https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg 2646w\"}},hW7wZ6KrU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3553,intrinsicWidth:5330,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+-92),pixelHeight:1656,pixelWidth:2646,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px) * 1.1143)`,src:\"https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg\",srcSet:\"https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg 2646w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3553,intrinsicWidth:5330,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+-111),pixelHeight:1656,pixelWidth:2646,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px) * 1.1203)`,src:\"https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg\",srcSet:\"https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xY9jZUsl2CoFeJuU6hzEv4v5q3M.jpg 2646w\"},className:\"framer-8yp8bi\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rybqii\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n436yx\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oatpmd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8bor2l\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7Vm9sbGtvcm4tcmVndWxhcg==\",\"--framer-font-family\":'\"Vollkorn\", \"Vollkorn Placeholder\", serif',\"--framer-font-size\":\"69px\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"108%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(234, 78, 26)\"},children:[\"Une Fondation territoriale \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"rochelaise\"]})}),fonts:[\"GF;Vollkorn-regular\"]},GTWkC1jUF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1eh70n0\",\"data-styles-preset\":\"xRHOhqJJS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(234, 78, 26)\"},children:[\"Une Fondation \",/*#__PURE__*/_jsx(\"br\",{}),\"territoriale \",/*#__PURE__*/_jsx(\"br\",{}),\"rochelaise\"]})})},hW7wZ6KrU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1eh70n0\",\"data-styles-preset\":\"xRHOhqJJS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(234, 78, 26)\"},children:[\"Une Fondation territoriale \",/*#__PURE__*/_jsx(\"br\",{}),\"rochelaise\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1eh70n0\",\"data-styles-preset\":\"xRHOhqJJS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(234, 78, 26)\"},children:[\"Une Fondation territoriale \",/*#__PURE__*/_jsx(\"br\",{}),\"rochelaise\"]})}),className:\"framer-5op7b9\",\"data-framer-name\":\"High quality legal services online.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hW7wZ6KrU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1a4bjtb\",\"data-styles-preset\":\"NDmC3EsjC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Soutien financier et relais d'action entre les acteurs des quartiers, au service du bien-e\u0302tre des habitants et a\u0300 l'ouverture de nos quartiers dans le juste respect de nos valeurs.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1a4bjtb\",\"data-styles-preset\":\"NDmC3EsjC\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Soutien financier et relais d'action entre les acteurs des quartiers, au service du bien-e\u0302tre des habitants et a\u0300 l'ouverture de nos quartiers dans le juste respect de nos valeurs.\"})}),className:\"framer-iqyv9g\",\"data-framer-name\":\"We consider all the drivers of change gives you the blocks & we are components you need to change to create veniam of the main term of it bibendum eget.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1llb5l9-container\",isModuleExternal:true,nodeId:\"ybXz3sBbv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"ybXz3sBbv\",layoutId:\"ybXz3sBbv\",padding:5,paddingBottom:5,paddingLeft:5,paddingPerSide:false,paddingRight:5,paddingTop:5,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hfcn3i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Vm9sbGtvcm4tcmVndWxhcg==\",\"--framer-font-family\":'\"Vollkorn\", \"Vollkorn Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"108%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b7d321-1db4-4c68-880c-42be5183b273, rgb(247, 168, 0))\"},children:\" Solidarit\\xe9\"})}),className:\"framer-1686qv8\",fonts:[\"GF;Vollkorn-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k71a7l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Vm9sbGtvcm4tcmVndWxhcg==\",\"--framer-font-family\":'\"Vollkorn\", \"Vollkorn Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"108%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b7d321-1db4-4c68-880c-42be5183b273, rgb(247, 168, 0))\"},children:\" Utilit\\xe9\"})}),className:\"framer-6a22bt\",fonts:[\"GF;Vollkorn-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13l35hk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Vm9sbGtvcm4tcmVndWxhcg==\",\"--framer-font-family\":'\"Vollkorn\", \"Vollkorn Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"108%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b7d321-1db4-4c68-880c-42be5183b273, rgb(247, 168, 0))\"},children:\" Proximit\\xe9\"})}),className:\"framer-1do6rnv\",fonts:[\"GF;Vollkorn-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jw88oi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Vm9sbGtvcm4tcmVndWxhcg==\",\"--framer-font-family\":'\"Vollkorn\", \"Vollkorn Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"108%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b7d321-1db4-4c68-880c-42be5183b273, rgb(247, 168, 0))\"},children:\" Humanisme\"})}),className:\"framer-y8hn1r\",fonts:[\"GF;Vollkorn-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cy1zrn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Vm9sbGtvcm4tcmVndWxhcg==\",\"--framer-font-family\":'\"Vollkorn\", \"Vollkorn Placeholder\", serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"108%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-96b7d321-1db4-4c68-880c-42be5183b273, rgb(247, 168, 0))\"},children:\" Engagement\"})}),className:\"framer-c8j26e\",fonts:[\"GF;Vollkorn-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1af3t1\",\"data-framer-name\":\"Content-section-2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1euojyn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nnmn82\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2gosz9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180do1f\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-265r62-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Q0Qraeaww\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",iconOptions:{alignment:\"end\",color:\"var(--token-fc9c493b-aba9-41e7-979a-d8a1dacc8412, rgb(241, 90, 43))\",size:16,type:\"Default\"},id:\"Q0Qraeaww\",layoutId:\"Q0Qraeaww\",srcFile:\"https://framerusercontent.com/assets/9hSL4nWGuyKpNbDesEyWPoVokU.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgba(17, 17, 17, 0)\",borderRadius:50,color:\"var(--token-fc9c493b-aba9-41e7-979a-d8a1dacc8412, rgb(241, 90, 43))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"Lettre info du mois\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tne9s9\",\"data-styles-preset\":\"O2pOsUa1s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Les actualit\\xe9s \"})})}),className:\"framer-d4gep\",\"data-framer-name\":\"Holding hands of Corporate houses\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kkhqrv-container\",nodeId:\"kRPO1uEgr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListTicker,{height:\"100%\",id:\"kRPO1uEgr\",layoutId:\"kRPO1uEgr\",style:{width:\"100%\"},width:\"100%\"})})})]})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1qmqn2d\",\"data-framer-name\":\"Content-1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-p4eui1\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eclbry\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o33c37\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p7lo2h\",\"data-framer-name\":\"text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lsnukt\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GTWkC1jUF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh7tft\",\"data-styles-preset\":\"p0VXkF3hg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc9c493b-aba9-41e7-979a-d8a1dacc8412, rgb(241, 90, 43))\"},children:\"Qui sommes-nous ?\"})})},hW7wZ6KrU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh7tft\",\"data-styles-preset\":\"p0VXkF3hg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc9c493b-aba9-41e7-979a-d8a1dacc8412, rgb(241, 90, 43))\"},children:\"Qui sommes-nous ?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh7tft\",\"data-styles-preset\":\"p0VXkF3hg\",style:{\"--framer-text-color\":\"var(--token-fc9c493b-aba9-41e7-979a-d8a1dacc8412, rgb(241, 90, 43))\"},children:\"Qui sommes-nous ?\"})}),className:\"framer-1vs1y67\",\"data-framer-name\":\"Industries we work for\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GTWkC1jUF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tne9s9\",\"data-styles-preset\":\"O2pOsUa1s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"La Fondation\"})})},hW7wZ6KrU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tne9s9\",\"data-styles-preset\":\"O2pOsUa1s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"La Fondation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tne9s9\",\"data-styles-preset\":\"O2pOsUa1s\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"La Fondation\"})}),className:\"framer-9swr81\",\"data-framer-name\":\"Lawyer is a modern and vibrant template.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xbifsl\",\"data-styles-preset\":\"AaHXTSfMY\",style:{\"--framer-text-color\":\"rgba(0, 0, 0, 0.68)\"},children:\"La Fondation Fier de nos quartiers est une Fondation Rochelaise cr\\xe9\\xe9e par des entreprises du territoire en 2011. Elle intervient dans les quartiers prioritaires rochelais. Sa raison d\u2019\\xeatre est d\u2019Encourager les initiatives solidaires pour am\\xe9liorer la qualit\\xe9 de vie et \\xeatre utile \\xe0 nos quartiers.\"})})},GTWkC1jUF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xbifsl\",\"data-styles-preset\":\"AaHXTSfMY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.68)\"},children:\"La Fondation Fier de nos quartiers est une Fondation Rochelaise cr\\xe9\\xe9e par des entreprise du territoire en 2011. Elle intervient dans les quartiers prioritaires rochelais. Sa raison d\u2019\\xeatre est d\u2019Encourager les initiatives solidaires pour am\\xe9liorer la qualit\\xe9 de vie et \\xeatre utile \\xe0 nos quartiers.\"})})},hW7wZ6KrU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xbifsl\",\"data-styles-preset\":\"AaHXTSfMY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.68)\"},children:\"La Fondation Fier de nos quartiers est une Fondation Rochelaise cr\\xe9\\xe9e par des entreprises du territoire en 2011. Elle intervient dans les quartiers prioritaires rochelais. Sa raison d\u2019\\xeatre est d\u2019Encourager les initiatives solidaires pour am\\xe9liorer la qualit\\xe9 de vie et \\xeatre utile \\xe0 nos quartiers.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xbifsl\",\"data-styles-preset\":\"AaHXTSfMY\",style:{\"--framer-text-color\":\"rgba(0, 0, 0, 0.68)\"},children:\"La Fondation Fier de nos quartiers est une Fondation Rochelaise cr\\xe9\\xe9e par des entreprise du territoire en 2011. Elle intervient dans les quartiers prioritaires rochelais. Sa raison d\u2019\\xeatre est d\u2019Encourager les initiatives solidaires pour am\\xe9liorer la qualit\\xe9 de vie et \\xeatre utile \\xe0 nos quartiers.\"})}),className:\"framer-pgp637\",\"data-framer-name\":\"We consider all the drivers of change gives you the blocks components you need to change create to the veniam of the bibendum eget.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7cyaik\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UTo_tQUw9\"},implicitPathVariables:undefined},{href:{webPageId:\"UTo_tQUw9\"},implicitPathVariables:undefined},{href:{webPageId:\"UTo_tQUw9\"},implicitPathVariables:undefined},{href:{webPageId:\"UTo_tQUw9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{y:(componentViewport?.y||0)+0+1498.6+115+0+0+0+0+0+65.19999999999999+0+411.6+0},GTWkC1jUF:{y:(componentViewport?.y||0)+0+1495.6+80+0+0+0+0+0+0+686+0+411.6+0},hW7wZ6KrU:{y:(componentViewport?.y||0)+0+1293.6+60+0+0+0+0+0+0+311+0+401.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"164px\",y:(componentViewport?.y||0)+0+1610.6+115+0+0+0+0+0+51.19999999999999+0+411.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mdansr-container\",nodeId:\"TvhOncBv2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{Mw40dH8uc:resolvedLinks[1]},GTWkC1jUF:{Mw40dH8uc:resolvedLinks[2]},hW7wZ6KrU:{Mw40dH8uc:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"TvhOncBv2\",layoutId:\"TvhOncBv2\",Mw40dH8uc:resolvedLinks[0],style:{width:\"100%\"},variant:\"jzBqeW1qf\",width:\"100%\",Zu_U8uvmh:\"En Savoir Plus\"})})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x6wv71\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4016,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1498.6+115+0+0+0+0+0+14+578-540),pixelHeight:4016,pixelWidth:6016,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1320px) - 68px) * 0.3726)`,src:\"https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg\",srcSet:\"https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg 6016w\"}},GTWkC1jUF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4016,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1495.6+80+0+0+0+0+0+0+0+62),pixelHeight:4016,pixelWidth:6016,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px) * 0.5909)`,src:\"https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg\",srcSet:\"https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg 6016w\"}},hW7wZ6KrU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4016,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1293.6+60+0+0+0+0+0+0+0+301-275),pixelHeight:4016,pixelWidth:6016,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px) * 0.9)`,src:\"https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg\",srcSet:\"https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg 6016w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4016,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1610.6+115+0+0+0+0+0+0+578-529),pixelHeight:4016,pixelWidth:6016,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1320px) - 40px) * 0.3081)`,src:\"https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg\",srcSet:\"https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cZP1aUpymW28HaEm2uQiXDl4u10.jpg 6016w\"},className:\"framer-ioeqg5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lfm2lq\",\"data-framer-name\":\"Background-color\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9xr6fc\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cudtgi\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1498.6+115+0+0+0+0+701+67.79999825000004+578-525),pixelHeight:2250,pixelWidth:4e3,src:\"https://framerusercontent.com/images/fibbBQmvRMJ1EMqXCmZ3WfSGaI.jpg\"}},GTWkC1jUF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1495.6+80+0+0+0+0+1211.6+0+0+62),pixelHeight:2250,pixelWidth:4e3,src:\"https://framerusercontent.com/images/fibbBQmvRMJ1EMqXCmZ3WfSGaI.jpg\"}},hW7wZ6KrU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1293.6+60+0+0+0+0+816.6+0+0+301-273),pixelHeight:2250,pixelWidth:4e3,src:\"https://framerusercontent.com/images/fibbBQmvRMJ1EMqXCmZ3WfSGaI.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1610.6+115+0+0+0+0+673+61.799998250000044+578-529),pixelHeight:2250,pixelWidth:4e3,src:\"https://framerusercontent.com/images/fibbBQmvRMJ1EMqXCmZ3WfSGaI.jpg\"},className:\"framer-1rfaq3s\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-go2csj\",\"data-framer-name\":\"text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gannbc\",\"data-framer-name\":\"title\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vy4dqx\",\"data-framer-name\":\"Content Text Block Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1goiqsc\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-e83939\",\"data-framer-name\":\"Section Title Block\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GTWkC1jUF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tne9s9\",\"data-styles-preset\":\"O2pOsUa1s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"L\u2019appel \\xe0 projets\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tne9s9\",\"data-styles-preset\":\"O2pOsUa1s\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"L\u2019appel \\xe0 projets\"})})}),className:\"framer-15awfpk\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3333333em\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(23, 26, 31))\"},children:\"La Fondation anime un Appel \\xe0 projets permanent dans le but de faciliter la prise d\u2019initiatives des acteurs et des habitants des quartiers. \"})})},GTWkC1jUF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3333333em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(23, 26, 31))\"},children:\"La Fondation anime un Appel \\xe0 projet permanent dans le but de faciliter la prise d\u2019initiatives des acteurs et des habitants des quartiers. \"})})},hW7wZ6KrU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3333333em\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(23, 26, 31))\"},children:\"La Fondation anime un Appel \\xe0 projet permanent dans le but de faciliter la prise d\u2019initiatives des acteurs et des habitants des quartiers. \"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3333333em\",\"--framer-text-color\":\"var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, rgb(23, 26, 31))\"},children:\"La Fondation anime un Appel \\xe0 projet permanent dans le but de faciliter la prise d\u2019initiatives des acteurs et des habitants des quartiers. \"})}),className:\"framer-1e2mj5h\",\"data-framer-name\":\"Paragraph\",fonts:[\"FS;Satoshi-bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.68)\"},children:\"Cet appel \\xe0 projets est g\\xe9r\\xe9 par un comit\\xe9 ex\\xe9cutif qui se r\\xe9unit \\xe0 minima 10 fois par an. L\u2019appel \\xe0 projets est ouvert \\xe0 tous les acteurs du vivre ensemble des quartiers du secteur public (except\\xe9es les collectivit\\xe9s territoriales) ou priv\\xe9 r\\xe9pondant \\xe0 des besoins d\u2019int\\xe9r\\xeat g\\xe9n\\xe9ral.\\xa0\"})})},GTWkC1jUF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.68)\"},children:\"Cet appel \\xe0 projets est g\\xe9r\\xe9 par un comit\\xe9 ex\\xe9cutif qui se r\\xe9unit \\xe0 minima 10 fois par an. L\u2019appel \\xe0 projet est ouvert \\xe0 tous les acteurs du vivre ensemble des quartiers du secteur public (except\\xe9es les collectivit\\xe9s territoriales) ou priv\\xe9 r\\xe9pondant \\xe0 des besoins d\u2019int\\xe9r\\xeat g\\xe9n\\xe9ral.\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.68)\"},children:\"Cet appel \\xe0 projets est g\\xe9r\\xe9 par un comit\\xe9 ex\\xe9cutif qui se r\\xe9unit \\xe0 minima 10 fois par an. L\u2019appel \\xe0 projet est ouvert \\xe0 tous les acteurs du vivre ensemble des quartiers du secteur public (except\\xe9es les collectivit\\xe9s territoriales) ou priv\\xe9 r\\xe9pondant \\xe0 des besoins d\u2019int\\xe9r\\xeat g\\xe9n\\xe9ral.\\xa0\"})}),className:\"framer-ntnuqe\",\"data-framer-name\":\"Paragraph\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wHRLfibFk\"},implicitPathVariables:undefined},{href:{webPageId:\"wHRLfibFk\"},implicitPathVariables:undefined},{href:{webPageId:\"wHRLfibFk\"},implicitPathVariables:undefined},{href:{webPageId:\"wHRLfibFk\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{y:(componentViewport?.y||0)+0+1498.6+115+0+0+0+0+701+20+0+40+0+0+0+399.59999650000003},GTWkC1jUF:{y:(componentViewport?.y||0)+0+1495.6+80+0+0+0+0+1211.6+0+607+0+40+0+0+0+376.59999700000003},hW7wZ6KrU:{y:(componentViewport?.y||0)+0+1293.6+60+0+0+0+0+816.6+0+311+0+30+0+0+0+337.59999700000003}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"180px\",y:(componentViewport?.y||0)+0+1610.6+115+0+0+0+0+673+0+0+40+0+0+0+387.59999650000003,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lgox63-container\",nodeId:\"Dkk4HXAVk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{Mw40dH8uc:resolvedLinks1[1]},GTWkC1jUF:{Mw40dH8uc:resolvedLinks1[2]},hW7wZ6KrU:{Mw40dH8uc:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Dkk4HXAVk\",layoutId:\"Dkk4HXAVk\",Mw40dH8uc:resolvedLinks1[0],style:{width:\"100%\"},variant:\"jzBqeW1qf\",width:\"100%\",Zu_U8uvmh:\"En Savoir Plus\"})})})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h9d992\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:474,svg:'<svg width=\"474\" height=\"3\" viewBox=\"-1 -1 474 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"472\" y2=\"0.5\" stroke=\"#CBD2D9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dqsfo8\",\"data-framer-name\":\"Stats Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12c6gcx-container\",isModuleExternal:true,nodeId:\"ZZ5R1veGK\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GTWkC1jUF:{variant:\"nochO9AvC\"},hW7wZ6KrU:{variant:\"nochO9AvC\"}},children:/*#__PURE__*/_jsx(SingleStats,{countValue:\"35\",countValueColor:\"rgb(241, 90, 44)\",description:\"Projets en 2024\",height:\"100%\",id:\"ZZ5R1veGK\",layoutId:\"ZZ5R1veGK\",style:{width:\"100%\"},variant:\"showOofZ7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11xci82-container\",isModuleExternal:true,nodeId:\"WI80oATcS\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GTWkC1jUF:{variant:\"nochO9AvC\"},hW7wZ6KrU:{variant:\"nochO9AvC\"}},children:/*#__PURE__*/_jsx(SingleStats,{countValue:\"290+\",countValueColor:\"rgb(241, 90, 44)\",description:\"Projets r\\xe9alis\\xe9s\",height:\"100%\",id:\"WI80oATcS\",layoutId:\"WI80oATcS\",style:{width:\"100%\"},variant:\"showOofZ7\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xgx21j-container\",isModuleExternal:true,nodeId:\"wPie9efIV\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GTWkC1jUF:{variant:\"nochO9AvC\"},hW7wZ6KrU:{variant:\"nochO9AvC\"}},children:/*#__PURE__*/_jsx(SingleStats,{countValue:\"1000K\u20AC\",countValueColor:\"rgb(241, 90, 44)\",description:\"distribu\\xe9s\",height:\"100%\",id:\"wPie9efIV\",layoutId:\"wPie9efIV\",style:{width:\"100%\"},variant:\"showOofZ7\",width:\"100%\"})})})})]})]})]})]})]})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1mt52cn\",\"data-framer-name\":\"Blog-post\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lrb2ib\",\"data-framer-name\":\"Brand Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f37piy\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m5scao\",\"data-framer-name\":\"Blog Content Wrapper\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iqvvji\",\"data-framer-name\":\"Section Heading Block\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tne9s9\",\"data-styles-preset\":\"O2pOsUa1s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Nos m\\xe9c\\xe8nes\"})}),className:\"framer-1aea2id\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4444444em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, rgb(73, 84, 96))\"},children:\"Nous sommes fiers de collaborer avec des partenaires engag\\xe9s qui partagent notre vision pour des quartiers plus forts, plus unis et plus prosp\\xe8res. Leurs soutiens inestimables nous permettent de soutenir davantage de projets pour le mieux vivre des habitants des quartiers. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4444444em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, rgb(73, 84, 96))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4444444em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc9c493b-aba9-41e7-979a-d8a1dacc8412, rgb(241, 90, 43))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gcJb6B3Gf\"},motionChild:true,nodeId:\"t1yancKmQ\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ihvsb8\",\"data-styles-preset\":\"c39XDipOJ\",children:\"Ensemble, nous cr\\xe9ons un impact positif et durable.\"})})})]})},hW7wZ6KrU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4444444em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, rgb(73, 84, 96))\"},children:\"Nous sommes fiers de collaborer avec des partenaires engag\\xe9s qui partagent notre vision pour des quartiers plus forts, plus unis et plus prosp\\xe8res. Leurs soutiens inestimables nous permettent de soutenir davantage de projets pour le mieux vivre des habitants des quartiers. Ensemble, nous cr\\xe9ons un impact positif et durable.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4444444em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, rgb(73, 84, 96))\"},children:\"Nous sommes fiers de collaborer avec des partenaires engag\\xe9s qui partagent notre vision pour des quartiers plus forts, plus unis et plus prosp\\xe8res. Leur soutien inestimable nous permettent de soutenir davantage de projet pour le mieux vivre des habitants des quartiers. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4444444em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6d05c7e7-3db1-411c-8b7a-d2c7f93bf6a9, rgb(73, 84, 96))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4444444em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fc9c493b-aba9-41e7-979a-d8a1dacc8412, rgb(241, 90, 43))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gcJb6B3Gf\"},motionChild:true,nodeId:\"t1yancKmQ\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ihvsb8\",\"data-styles-preset\":\"c39XDipOJ\",children:\"Ensemble, nous cr\\xe9ons un impact positif et durable.\"})})})]}),className:\"framer-c4zvpv\",\"data-framer-name\":\"Paragraph\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ho73ns-container\",isModuleExternal:true,nodeId:\"FrHRy8Z77\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:50,height:\"100%\",hoverFactor:.5,id:\"FrHRy8Z77\",layoutId:\"FrHRy8Z77\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.enedis.fr/nos-engagements\",motionChild:true,nodeId:\"wJpuH0_sU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1054,intrinsicWidth:2816,pixelHeight:1054,pixelWidth:2816,sizes:\"164px\",src:\"https://framerusercontent.com/images/3vhlRgINwyHFuF7UywVTZ9JT3A.jpg\",srcSet:\"https://framerusercontent.com/images/3vhlRgINwyHFuF7UywVTZ9JT3A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3vhlRgINwyHFuF7UywVTZ9JT3A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3vhlRgINwyHFuF7UywVTZ9JT3A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3vhlRgINwyHFuF7UywVTZ9JT3A.jpg 2816w\"},className:\"framer-vdmclg framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://deltic.fr/\",motionChild:true,nodeId:\"irBFbsiSK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1229,intrinsicWidth:4410,pixelHeight:1229,pixelWidth:4410,sizes:\"164px\",src:\"https://framerusercontent.com/images/WaKzo2hIDoqErSdVBTUki99RJI.png\",srcSet:\"https://framerusercontent.com/images/WaKzo2hIDoqErSdVBTUki99RJI.png?scale-down-to=512 512w,https://framerusercontent.com/images/WaKzo2hIDoqErSdVBTUki99RJI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WaKzo2hIDoqErSdVBTUki99RJI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WaKzo2hIDoqErSdVBTUki99RJI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/WaKzo2hIDoqErSdVBTUki99RJI.png 4410w\"},className:\"framer-e4epku framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.leanature.com/\",motionChild:true,nodeId:\"caXNrzstw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:411,intrinsicWidth:702,pixelHeight:411,pixelWidth:702,positionX:\"center\",positionY:\"center\",sizes:\"234px\",src:\"https://framerusercontent.com/images/SJ4eMABnx0ycujap74gfxt7OKTA.png\",srcSet:\"https://framerusercontent.com/images/SJ4eMABnx0ycujap74gfxt7OKTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/SJ4eMABnx0ycujap74gfxt7OKTA.png 702w\"},className:\"framer-9i1vo5 framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.e.leclerc/mag/e-leclerc-lagord\",motionChild:true,nodeId:\"MhLPQXHLQ\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:111,intrinsicWidth:452,pixelHeight:111,pixelWidth:452,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/taP6VpUhT8oENi93ZCbwxjU4yxc.png\"},className:\"framer-26lkkl framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.groupe-excel-larochelle.fr/\",motionChild:true,nodeId:\"UZeojzLZ3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:349,intrinsicWidth:850,pixelHeight:349,pixelWidth:850,positionX:\"center\",positionY:\"center\",sizes:\"164px\",src:\"https://framerusercontent.com/images/DmXUxwmuT5m0Q0J9nOC3GiqcHQ.png\",srcSet:\"https://framerusercontent.com/images/DmXUxwmuT5m0Q0J9nOC3GiqcHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/DmXUxwmuT5m0Q0J9nOC3GiqcHQ.png 850w\"},className:\"framer-z97d02 framer-lux5qc\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.fountaine-pajot.com/\",motionChild:true,nodeId:\"SGS2jzhdT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:7087,intrinsicWidth:14174,pixelHeight:7087,pixelWidth:14174,sizes:\"164px\",src:\"https://framerusercontent.com/images/RI48ONxZAHXxiHJByp6N8rOS1Q.jpg\",srcSet:\"https://framerusercontent.com/images/RI48ONxZAHXxiHJByp6N8rOS1Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RI48ONxZAHXxiHJByp6N8rOS1Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RI48ONxZAHXxiHJByp6N8rOS1Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RI48ONxZAHXxiHJByp6N8rOS1Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/RI48ONxZAHXxiHJByp6N8rOS1Q.jpg 14174w\"},className:\"framer-1kzz1x1 framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://office-agglo-larochelle.fr/\",motionChild:true,nodeId:\"JeSBMqvwh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:2793,intrinsicWidth:4168,pixelHeight:2793,pixelWidth:4168,positionX:\"center\",positionY:\"center\",sizes:\"305px\",src:\"https://framerusercontent.com/images/o85Fl5eA1C35xlSEhDAiXg45DEQ.png\",srcSet:\"https://framerusercontent.com/images/o85Fl5eA1C35xlSEhDAiXg45DEQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/o85Fl5eA1C35xlSEhDAiXg45DEQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o85Fl5eA1C35xlSEhDAiXg45DEQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o85Fl5eA1C35xlSEhDAiXg45DEQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/o85Fl5eA1C35xlSEhDAiXg45DEQ.png 4168w\"},className:\"framer-1ub9076 framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.yelo-larochelle.fr/\",motionChild:true,nodeId:\"UpJOGIpdW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1060,intrinsicWidth:1500,pixelHeight:1060,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"114px\",src:\"https://framerusercontent.com/images/gmcrWT2kHhHEXlv9LmspsEhtEI0.png\",srcSet:\"https://framerusercontent.com/images/gmcrWT2kHhHEXlv9LmspsEhtEI0.png?scale-down-to=512 512w,https://framerusercontent.com/images/gmcrWT2kHhHEXlv9LmspsEhtEI0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gmcrWT2kHhHEXlv9LmspsEhtEI0.png 1500w\"},className:\"framer-w34po6 framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.solvay.com/en/\",motionChild:true,nodeId:\"QtFMBHSR9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1610,intrinsicWidth:1274,pixelHeight:343,pixelWidth:1693,positionX:\"center\",positionY:\"center\",sizes:\"192px\",src:\"https://framerusercontent.com/images/lNiebPDRQmt72B36D4iF6C94eM.jpg\",srcSet:\"https://framerusercontent.com/images/lNiebPDRQmt72B36D4iF6C94eM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lNiebPDRQmt72B36D4iF6C94eM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lNiebPDRQmt72B36D4iF6C94eM.jpg 1693w\"},className:\"framer-10lg91w framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.larochelle.port.fr/\",motionChild:true,nodeId:\"x8zJxGfUv\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:185,intrinsicWidth:299,pixelHeight:185,pixelWidth:299,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6B5WDpzimsRgzj0Lg7RfMlI6zw.jpg\"},className:\"framer-bn4g9t framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://atlantic-amenagement.com/\",motionChild:true,nodeId:\"NDI8D168K\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:118,intrinsicWidth:428,pixelHeight:118,pixelWidth:428,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CmUCOygCRCroGceM6fFaoOxMzEw.jpg\"},className:\"framer-1w8cnhv framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.groupama.fr/regions/centre-atlantique/\",motionChild:true,nodeId:\"Wd1ySQAhQ\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:614,intrinsicWidth:2333,pixelHeight:614,pixelWidth:2333,positionX:\"center\",positionY:\"center\",sizes:\"164px\",src:\"https://framerusercontent.com/images/zE5Jerrm2KR1zqkCHwNSuBNLUWw.jpg\",srcSet:\"https://framerusercontent.com/images/zE5Jerrm2KR1zqkCHwNSuBNLUWw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zE5Jerrm2KR1zqkCHwNSuBNLUWw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zE5Jerrm2KR1zqkCHwNSuBNLUWw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zE5Jerrm2KR1zqkCHwNSuBNLUWw.jpg 2333w\"},className:\"framer-1h57osw framer-lux5qc\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.semat.com/\",motionChild:true,nodeId:\"FU79J_wfB\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:121,intrinsicWidth:274,pixelHeight:121,pixelWidth:274,src:\"https://framerusercontent.com/images/YpIiZbJ4lFxivPViA9fhYZxbLc.png\"},className:\"framer-18pn83 framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.larochelle-evenements.fr/\",motionChild:true,nodeId:\"WhzkDa0Uj\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tUyMFT9Rs5FqLONBmeZDRzdBs.png\"},className:\"framer-bdyvoj framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.creditmutuel.fr/home/index.html\",motionChild:true,nodeId:\"PVk3RUElX\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:196,pixelWidth:580,positionX:\"center\",positionY:\"center\",sizes:\"278.087px\",src:\"https://framerusercontent.com/images/pDx9h3rBKpksPziqJPgbzz356g.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pDx9h3rBKpksPziqJPgbzz356g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pDx9h3rBKpksPziqJPgbzz356g.jpg 580w\"},className:\"framer-3ukr84 framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://particuliers.sg.fr/\",motionChild:true,nodeId:\"W4leV3evY\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:133,pixelWidth:260,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kZJwcHySAMO8d04rNVlCCSX0Cc.jpg\"},className:\"framer-2or3ca framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"roWA0MevW\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:808,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"278.087px\",src:\"https://framerusercontent.com/images/0O5MjXNmxhIT1YgYry6LQD7ar0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0O5MjXNmxhIT1YgYry6LQD7ar0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0O5MjXNmxhIT1YgYry6LQD7ar0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0O5MjXNmxhIT1YgYry6LQD7ar0.jpg 2000w\"},className:\"framer-ftrx9 framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"m6MiYyen3\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:140,pixelWidth:152,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MYBFxfJTXYz92sDIAXdnmDmN1M.png\"},className:\"framer-1seia9h framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.batisolpeinture.fr/\",motionChild:true,nodeId:\"wfAbBWyso\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:184,pixelWidth:224,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/bxdaLyk9q8ehOEd9qYsDjXHas.jpeg\"},className:\"framer-1r2lyqs framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://arfeb.fr/\",motionChild:true,nodeId:\"BHmXhjpy_\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KpQS2ArwqQoS9Vy0MerM5ZIs2yA.jpg\"},className:\"framer-1m24zpd framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.eqiom.com/trouver-un-site/centre-de-broyage-de-la-rochelle\",motionChild:true,nodeId:\"gYkt5Z_n6\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:72,pixelWidth:159,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AT5ATM8kuaMjMGPkQFAm2UTtSBg.png\"},className:\"framer-1frzmxe framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"cCA7jOaH8\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:212,pixelWidth:878,positionX:\"center\",positionY:\"center\",sizes:\"278.087px\",src:\"https://framerusercontent.com/images/IIQfZesNXeL19ssLGenLtvk96aY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IIQfZesNXeL19ssLGenLtvk96aY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IIQfZesNXeL19ssLGenLtvk96aY.jpg 878w\"},className:\"framer-1fy5n5l framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://fondation-nexity.org/\",motionChild:true,nodeId:\"AxuhK3zWb\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:60,pixelWidth:132,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iMXngJTVep7khmDUXxMabI8Ueo.png\"},className:\"framer-1ycxl7e framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://edouarddenis-immobilier.com/immobilier-neuf/nouvelle-aquitaine/17/la-rochelle\",motionChild:true,nodeId:\"qSc0yYyI5\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:436,pixelWidth:884,positionX:\"center\",positionY:\"center\",sizes:\"278.087px\",src:\"https://framerusercontent.com/images/kZITE9qAXrhffjB8OLOu82BUyZI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kZITE9qAXrhffjB8OLOu82BUyZI.png?scale-down-to=512 512w,https://framerusercontent.com/images/kZITE9qAXrhffjB8OLOu82BUyZI.png 884w\"},className:\"framer-bcwboa framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.nexity.fr/\",motionChild:true,nodeId:\"zhQDWsbOY\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:212,intrinsicWidth:238,pixelHeight:200,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/evEmJfGl1EwLDhafl1qkZulHO0k.png\"},className:\"framer-j508x0 framer-lux5qc\",\"data-framer-name\":\"Brand Single\"})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{y:(componentViewport?.y||0)+0+3985.5777625},GTWkC1jUF:{y:(componentViewport?.y||0)+0+4827.177763},hW7wZ6KrU:{y:(componentViewport?.y||0)+0+3935.177771}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:678,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3786.3555496999998,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i7ekp5-container\",nodeId:\"PvNgjxdaM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eSwUr9hKY:{variant:\"vOH6Dny3a\"},GTWkC1jUF:{variant:\"GKgxWqmms\"},hW7wZ6KrU:{variant:\"KqwBSlf2A\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"PvNgjxdaM\",layoutId:\"PvNgjxdaM\",style:{width:\"100%\"},variant:\"KxY67XOLo\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NLAuE.framer-lux5qc, .framer-NLAuE .framer-lux5qc { display: block; }\",\".framer-NLAuE.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-1997221e-32bc-4782-b553-3b6602340a1d, #dde4e5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-NLAuE .framer-i3t17n { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1s5g32z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 92px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1hg9gnt-container { flex: none; height: auto; left: 51%; max-width: 1320px; position: absolute; top: 61%; transform: translate(-50%, -50%); width: 90%; z-index: 3; }\",\".framer-NLAuE .framer-1kwnfk5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-gwlwum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-5acvae { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 849px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-8yp8bi { flex: none; height: 113%; left: 191px; position: absolute; top: -111px; width: 112%; z-index: 1; }\",\".framer-NLAuE .framer-1rybqii { align-content: center; align-items: center; background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 79.34966216216216%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 569px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-NLAuE .framer-1n436yx { background: linear-gradient(90deg, #000000 0%, rgba(13, 44, 53, 0) 100%); flex: none; height: 111%; left: 191px; position: absolute; top: -92px; width: 31%; z-index: 1; }\",\".framer-NLAuE .framer-oatpmd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-NLAuE .framer-8bor2l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 46%; }\",\".framer-NLAuE .framer-5op7b9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 88%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-iqyv9g { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 73%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-1llb5l9-container { flex: none; height: 82px; position: relative; width: 385px; }\",\".framer-NLAuE .framer-hfcn3i, .framer-NLAuE .framer-1k71a7l, .framer-NLAuE .framer-13l35hk, .framer-NLAuE .framer-1cy1zrn { height: 61px; overflow: hidden; position: relative; width: 295px; }\",\".framer-NLAuE .framer-1686qv8, .framer-NLAuE .framer-6a22bt, .framer-NLAuE .framer-1do6rnv, .framer-NLAuE .framer-c8j26e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 59px; left: calc(49.8305084745763% - 295px / 2); position: absolute; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25); top: 0px; white-space: pre-wrap; width: 295px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-jw88oi { height: 61px; overflow: hidden; position: relative; width: 382px; }\",\".framer-NLAuE .framer-y8hn1r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 61px; left: calc(52.879581151832475% - 331px / 2); position: absolute; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25); top: 0px; white-space: pre-wrap; width: 331px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-1af3t1 { align-content: center; align-items: center; background-color: #ececec; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1euojyn, .framer-NLAuE .framer-p4eui1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1nnmn82, .framer-NLAuE .framer-eclbry { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 95px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-2gosz9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-180do1f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 89%; }\",\".framer-NLAuE .framer-265r62-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NLAuE .framer-d4gep, .framer-NLAuE .framer-9swr81, .framer-NLAuE .framer-1e2mj5h, .framer-NLAuE .framer-ntnuqe, .framer-NLAuE .framer-1aea2id { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-kkhqrv-container, .framer-NLAuE .framer-1i7ekp5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1qmqn2d { align-content: center; align-items: center; background-color: var(--token-a0178d2c-6fab-49c7-864f-ebf3d9858e07, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 115px 0px 147px 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-o33c37, .framer-NLAuE .framer-9xr6fc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1p7lo2h, .framer-NLAuE .framer-go2csj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 49%; }\",\".framer-NLAuE .framer-1lsnukt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1vs1y67 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 46%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-pgp637 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 76%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-7cyaik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 164px; }\",\".framer-NLAuE .framer-mdansr-container, .framer-NLAuE .framer-12c6gcx-container, .framer-NLAuE .framer-11xci82-container, .framer-NLAuE .framer-1xgx21j-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-NLAuE .framer-1x6wv71, .framer-NLAuE .framer-cudtgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 578px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 38%; }\",\".framer-NLAuE .framer-ioeqg5 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 89px; flex: none; height: 440px; left: 43px; position: absolute; width: 81%; z-index: 1; }\",\".framer-NLAuE .framer-1lfm2lq { background-color: rgba(241, 90, 43, 0.53); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 460px; position: absolute; right: 0px; top: 0px; width: 375px; z-index: 0; }\",\".framer-NLAuE .framer-1rfaq3s { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 56px; flex: none; height: 473px; left: 43px; position: absolute; width: 84%; z-index: 1; }\",\".framer-NLAuE .framer-1gannbc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 30px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-vy4dqx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 569px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1goiqsc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-e83939 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-15awfpk { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-1lgox63-container { flex: none; height: auto; position: relative; width: 180px; }\",\".framer-NLAuE .framer-1h9d992 { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-dqsfo8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 516px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1mt52cn { align-content: center; align-items: center; background-color: #ececec; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-lrb2ib { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 104px 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-f37piy { 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; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-m5scao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 81px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-1iqvvji { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLAuE .framer-c4zvpv { flex: none; height: auto; max-width: 610px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-NLAuE .framer-1ho73ns-container { flex: none; height: 192px; position: relative; width: 111%; }\",\".framer-NLAuE .framer-vdmclg, .framer-NLAuE .framer-1kzz1x1, .framer-NLAuE .framer-18pn83 { aspect-ratio: 3.5652173913043477 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; text-decoration: none; width: 164px; }\",\".framer-NLAuE .framer-e4epku { aspect-ratio: 4.40625 / 1; height: var(--framer-aspect-ratio-supported, 37px); overflow: visible; position: relative; text-decoration: none; width: 164px; }\",\".framer-NLAuE .framer-9i1vo5 { aspect-ratio: 2.8214285714285716 / 1; height: var(--framer-aspect-ratio-supported, 83px); overflow: visible; position: relative; text-decoration: none; width: 234px; }\",\".framer-NLAuE .framer-26lkkl { aspect-ratio: 2.8636363636363638 / 1; height: var(--framer-aspect-ratio-supported, 57px); overflow: visible; position: relative; text-decoration: none; width: 163px; }\",\".framer-NLAuE .framer-z97d02, .framer-NLAuE .framer-1h57osw { height: 92px; position: relative; text-decoration: none; width: 164px; }\",\".framer-NLAuE .framer-1ub9076 { aspect-ratio: 4.40625 / 1; height: var(--framer-aspect-ratio-supported, 69px); overflow: visible; position: relative; text-decoration: none; width: 305px; }\",\".framer-NLAuE .framer-w34po6 { aspect-ratio: 1.2941176470588236 / 1; height: var(--framer-aspect-ratio-supported, 88px); overflow: visible; position: relative; text-decoration: none; width: 114px; }\",\".framer-NLAuE .framer-10lg91w { aspect-ratio: 2.8214285714285716 / 1; height: var(--framer-aspect-ratio-supported, 68px); overflow: visible; position: relative; text-decoration: none; width: 192px; }\",\".framer-NLAuE .framer-bn4g9t { aspect-ratio: 2.8636363636363638 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; text-decoration: none; width: 186px; }\",\".framer-NLAuE .framer-1w8cnhv { aspect-ratio: 2.8636363636363638 / 1; height: var(--framer-aspect-ratio-supported, 67px); overflow: visible; position: relative; text-decoration: none; width: 192px; }\",\".framer-NLAuE .framer-bdyvoj { aspect-ratio: 3.5652173913043477 / 1; height: var(--framer-aspect-ratio-supported, 78px); overflow: visible; position: relative; text-decoration: none; width: 278px; }\",\".framer-NLAuE .framer-3ukr84, .framer-NLAuE .framer-2or3ca, .framer-NLAuE .framer-ftrx9, .framer-NLAuE .framer-1seia9h, .framer-NLAuE .framer-1r2lyqs, .framer-NLAuE .framer-1m24zpd, .framer-NLAuE .framer-1frzmxe, .framer-NLAuE .framer-1fy5n5l, .framer-NLAuE .framer-1ycxl7e, .framer-NLAuE .framer-bcwboa, .framer-NLAuE .framer-j508x0 { aspect-ratio: 3.5652173913043477 / 1; height: var(--framer-aspect-ratio-supported, 78px); overflow: visible; position: relative; text-decoration: none; width: 277px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLAuE.framer-72rtr7, .framer-NLAuE .framer-i3t17n, .framer-NLAuE .framer-1s5g32z, .framer-NLAuE .framer-1kwnfk5, .framer-NLAuE .framer-gwlwum, .framer-NLAuE .framer-5acvae, .framer-NLAuE .framer-1rybqii, .framer-NLAuE .framer-oatpmd, .framer-NLAuE .framer-8bor2l, .framer-NLAuE .framer-1af3t1, .framer-NLAuE .framer-1euojyn, .framer-NLAuE .framer-1nnmn82, .framer-NLAuE .framer-2gosz9, .framer-NLAuE .framer-180do1f, .framer-NLAuE .framer-1qmqn2d, .framer-NLAuE .framer-p4eui1, .framer-NLAuE .framer-eclbry, .framer-NLAuE .framer-1p7lo2h, .framer-NLAuE .framer-1lsnukt, .framer-NLAuE .framer-7cyaik, .framer-NLAuE .framer-1x6wv71, .framer-NLAuE .framer-cudtgi, .framer-NLAuE .framer-go2csj, .framer-NLAuE .framer-1gannbc, .framer-NLAuE .framer-vy4dqx, .framer-NLAuE .framer-1goiqsc, .framer-NLAuE .framer-e83939, .framer-NLAuE .framer-dqsfo8, .framer-NLAuE .framer-1mt52cn, .framer-NLAuE .framer-lrb2ib, .framer-NLAuE .framer-f37piy, .framer-NLAuE .framer-m5scao, .framer-NLAuE .framer-1iqvvji { gap: 0px; } .framer-NLAuE.framer-72rtr7 > *, .framer-NLAuE .framer-i3t17n > *, .framer-NLAuE .framer-5acvae > *, .framer-NLAuE .framer-1x6wv71 > *, .framer-NLAuE .framer-cudtgi > *, .framer-NLAuE .framer-lrb2ib > *, .framer-NLAuE .framer-f37piy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NLAuE.framer-72rtr7 > :first-child, .framer-NLAuE .framer-i3t17n > :first-child, .framer-NLAuE .framer-1kwnfk5 > :first-child, .framer-NLAuE .framer-5acvae > :first-child, .framer-NLAuE .framer-oatpmd > :first-child, .framer-NLAuE .framer-8bor2l > :first-child, .framer-NLAuE .framer-1af3t1 > :first-child, .framer-NLAuE .framer-1euojyn > :first-child, .framer-NLAuE .framer-1nnmn82 > :first-child, .framer-NLAuE .framer-2gosz9 > :first-child, .framer-NLAuE .framer-180do1f > :first-child, .framer-NLAuE .framer-1qmqn2d > :first-child, .framer-NLAuE .framer-p4eui1 > :first-child, .framer-NLAuE .framer-eclbry > :first-child, .framer-NLAuE .framer-1p7lo2h > :first-child, .framer-NLAuE .framer-1lsnukt > :first-child, .framer-NLAuE .framer-1x6wv71 > :first-child, .framer-NLAuE .framer-cudtgi > :first-child, .framer-NLAuE .framer-go2csj > :first-child, .framer-NLAuE .framer-1gannbc > :first-child, .framer-NLAuE .framer-vy4dqx > :first-child, .framer-NLAuE .framer-1goiqsc > :first-child, .framer-NLAuE .framer-1mt52cn > :first-child, .framer-NLAuE .framer-lrb2ib > :first-child, .framer-NLAuE .framer-f37piy > :first-child, .framer-NLAuE .framer-m5scao > :first-child, .framer-NLAuE .framer-1iqvvji > :first-child { margin-top: 0px; } .framer-NLAuE.framer-72rtr7 > :last-child, .framer-NLAuE .framer-i3t17n > :last-child, .framer-NLAuE .framer-1kwnfk5 > :last-child, .framer-NLAuE .framer-5acvae > :last-child, .framer-NLAuE .framer-oatpmd > :last-child, .framer-NLAuE .framer-8bor2l > :last-child, .framer-NLAuE .framer-1af3t1 > :last-child, .framer-NLAuE .framer-1euojyn > :last-child, .framer-NLAuE .framer-1nnmn82 > :last-child, .framer-NLAuE .framer-2gosz9 > :last-child, .framer-NLAuE .framer-180do1f > :last-child, .framer-NLAuE .framer-1qmqn2d > :last-child, .framer-NLAuE .framer-p4eui1 > :last-child, .framer-NLAuE .framer-eclbry > :last-child, .framer-NLAuE .framer-1p7lo2h > :last-child, .framer-NLAuE .framer-1lsnukt > :last-child, .framer-NLAuE .framer-1x6wv71 > :last-child, .framer-NLAuE .framer-cudtgi > :last-child, .framer-NLAuE .framer-go2csj > :last-child, .framer-NLAuE .framer-1gannbc > :last-child, .framer-NLAuE .framer-vy4dqx > :last-child, .framer-NLAuE .framer-1goiqsc > :last-child, .framer-NLAuE .framer-1mt52cn > :last-child, .framer-NLAuE .framer-lrb2ib > :last-child, .framer-NLAuE .framer-f37piy > :last-child, .framer-NLAuE .framer-m5scao > :last-child, .framer-NLAuE .framer-1iqvvji > :last-child { margin-bottom: 0px; } .framer-NLAuE .framer-1s5g32z > *, .framer-NLAuE .framer-gwlwum > *, .framer-NLAuE .framer-1rybqii > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NLAuE .framer-1s5g32z > :first-child, .framer-NLAuE .framer-gwlwum > :first-child, .framer-NLAuE .framer-1rybqii > :first-child, .framer-NLAuE .framer-7cyaik > :first-child, .framer-NLAuE .framer-e83939 > :first-child, .framer-NLAuE .framer-dqsfo8 > :first-child { margin-left: 0px; } .framer-NLAuE .framer-1s5g32z > :last-child, .framer-NLAuE .framer-gwlwum > :last-child, .framer-NLAuE .framer-1rybqii > :last-child, .framer-NLAuE .framer-7cyaik > :last-child, .framer-NLAuE .framer-e83939 > :last-child, .framer-NLAuE .framer-dqsfo8 > :last-child { margin-right: 0px; } .framer-NLAuE .framer-1kwnfk5 > *, .framer-NLAuE .framer-1euojyn > *, .framer-NLAuE .framer-p4eui1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NLAuE .framer-oatpmd > *, .framer-NLAuE .framer-1p7lo2h > *, .framer-NLAuE .framer-go2csj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NLAuE .framer-8bor2l > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NLAuE .framer-1af3t1 > *, .framer-NLAuE .framer-1qmqn2d > *, .framer-NLAuE .framer-1lsnukt > *, .framer-NLAuE .framer-1gannbc > *, .framer-NLAuE .framer-1mt52cn > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NLAuE .framer-1nnmn82 > *, .framer-NLAuE .framer-eclbry > * { margin: 0px; margin-bottom: calc(95px / 2); margin-top: calc(95px / 2); } .framer-NLAuE .framer-2gosz9 > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-NLAuE .framer-180do1f > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-NLAuE .framer-7cyaik > *, .framer-NLAuE .framer-e83939 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NLAuE .framer-vy4dqx > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-NLAuE .framer-1goiqsc > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-NLAuE .framer-dqsfo8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-NLAuE .framer-m5scao > * { margin: 0px; margin-bottom: calc(81px / 2); margin-top: calc(81px / 2); } .framer-NLAuE .framer-1iqvvji > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-NLAuE[data-border=\"true\"]::after, .framer-NLAuE [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: 1100px) and (max-width: 1439px) { .framer-NLAuE.framer-72rtr7 { width: 1100px; } .framer-NLAuE .framer-i3t17n { overflow: visible; } .framer-NLAuE .framer-1s5g32z { padding: 0px 20px 0px 0px; } .framer-NLAuE .framer-1hg9gnt-container { left: 54%; width: 92%; } .framer-NLAuE .framer-5acvae { height: 737px; order: 0; width: 93%; } .framer-NLAuE .framer-8yp8bi { height: 112%; left: 189px; top: -92px; width: 95%; } .framer-NLAuE .framer-1rybqii { height: 330px; left: -246px; } .framer-NLAuE .framer-1n436yx { height: 112%; left: 189px; width: 33%; } .framer-NLAuE .framer-8bor2l { order: 0; width: 74%; } .framer-NLAuE .framer-5op7b9 { order: 0; width: 56%; } .framer-NLAuE .framer-iqyv9g { order: 1; width: 50%; } .framer-NLAuE .framer-1llb5l9-container { order: 1; width: 399px; } .framer-NLAuE .framer-o33c37 { padding: 14px; } .framer-NLAuE .framer-1p7lo2h, .framer-NLAuE .framer-go2csj { width: 49%; } .framer-NLAuE .framer-1vs1y67 { order: 0; } .framer-NLAuE .framer-9swr81 { order: 1; } .framer-NLAuE .framer-pgp637 { order: 2; width: 90%; } .framer-NLAuE .framer-1x6wv71, .framer-NLAuE .framer-cudtgi { width: 38%; } .framer-NLAuE .framer-ioeqg5 { bottom: 56px; height: 484px; left: -71px; width: 98%; } .framer-NLAuE .framer-1lfm2lq { height: 497px; right: 28px; } .framer-NLAuE .framer-9xr6fc { padding: 20px; } .framer-NLAuE .framer-1rfaq3s { bottom: 13px; height: 512px; left: 40px; width: 98%; } .framer-NLAuE .framer-vy4dqx { gap: 30px; max-width: 485px; } .framer-NLAuE .framer-1goiqsc { gap: 26px; } .framer-NLAuE .framer-15awfpk { max-width: 525px; } .framer-NLAuE .framer-1h9d992 { width: 420px; } .framer-NLAuE .framer-dqsfo8 { align-content: center; align-items: center; } .framer-NLAuE .framer-lrb2ib { order: 0; padding: 0px 0px 90px 0px; } .framer-NLAuE .framer-f37piy { gap: 65px; max-width: 1000px; } .framer-NLAuE .framer-m5scao { gap: 60px; } .framer-NLAuE .framer-c4zvpv { width: 57%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLAuE .framer-vy4dqx, .framer-NLAuE .framer-1goiqsc, .framer-NLAuE .framer-f37piy, .framer-NLAuE .framer-m5scao { gap: 0px; } .framer-NLAuE .framer-vy4dqx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NLAuE .framer-vy4dqx > :first-child, .framer-NLAuE .framer-1goiqsc > :first-child, .framer-NLAuE .framer-f37piy > :first-child, .framer-NLAuE .framer-m5scao > :first-child { margin-top: 0px; } .framer-NLAuE .framer-vy4dqx > :last-child, .framer-NLAuE .framer-1goiqsc > :last-child, .framer-NLAuE .framer-f37piy > :last-child, .framer-NLAuE .framer-m5scao > :last-child { margin-bottom: 0px; } .framer-NLAuE .framer-1goiqsc > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-NLAuE .framer-f37piy > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-NLAuE .framer-m5scao > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1099px) { .framer-NLAuE.framer-72rtr7 { width: 810px; } .framer-NLAuE .framer-1hg9gnt-container { left: 54px; right: 0px; top: 2px; transform: unset; width: unset; } .framer-NLAuE .framer-5acvae { height: 627px; } .framer-NLAuE .framer-8yp8bi { height: 115%; left: -20px; top: -92px; width: 105%; } .framer-NLAuE .framer-1rybqii { height: 406px; } .framer-NLAuE .framer-1n436yx { height: 115%; left: -20px; width: 65%; } .framer-NLAuE .framer-8bor2l { width: 60%; } .framer-NLAuE .framer-5op7b9 { width: 61%; } .framer-NLAuE .framer-1llb5l9-container { width: 333px; } .framer-NLAuE .framer-1af3t1, .framer-NLAuE .framer-1qmqn2d { gap: 0px; padding: 80px 0px 80px 0px; } .framer-NLAuE .framer-1nnmn82, .framer-NLAuE .framer-eclbry { gap: 50px; } .framer-NLAuE .framer-2gosz9 { gap: 45px; } .framer-NLAuE .framer-d4gep { width: 75%; } .framer-NLAuE .framer-o33c37 { flex-direction: column; gap: 79px; justify-content: center; } .framer-NLAuE .framer-1p7lo2h, .framer-NLAuE .framer-go2csj { align-content: center; align-items: center; order: 1; width: 100%; } .framer-NLAuE .framer-1lsnukt { align-content: center; align-items: center; } .framer-NLAuE .framer-9swr81, .framer-NLAuE .framer-pgp637 { width: 78%; } .framer-NLAuE .framer-1x6wv71, .framer-NLAuE .framer-cudtgi { height: 607px; order: 0; width: 75%; } .framer-NLAuE .framer-ioeqg5, .framer-NLAuE .framer-1rfaq3s { bottom: 40px; height: unset; left: 63px; top: 62px; width: 79%; } .framer-NLAuE .framer-9xr6fc { flex-direction: column; gap: 0px; justify-content: center; } .framer-NLAuE .framer-1gannbc { align-content: center; align-items: center; order: 0; } .framer-NLAuE .framer-vy4dqx { gap: 30px; order: 1; width: 67%; } .framer-NLAuE .framer-1goiqsc { align-content: center; align-items: center; gap: 25px; } .framer-NLAuE .framer-1e2mj5h, .framer-NLAuE .framer-ntnuqe { max-width: 425px; } .framer-NLAuE .framer-1h9d992 { height: 5px; width: 519px; } .framer-NLAuE .framer-dqsfo8 { gap: 0px; max-width: unset; } .framer-NLAuE .framer-12c6gcx-container, .framer-NLAuE .framer-11xci82-container, .framer-NLAuE .framer-1xgx21j-container { flex: none; width: 33%; } .framer-NLAuE .framer-1mt52cn { gap: 0px; } .framer-NLAuE .framer-lrb2ib { padding: 0px; } .framer-NLAuE .framer-f37piy { max-width: 720px; padding: 0px 24px 0px 24px; } .framer-NLAuE .framer-m5scao { gap: 40px; } .framer-NLAuE .framer-c4zvpv { width: 70%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLAuE .framer-1af3t1, .framer-NLAuE .framer-1nnmn82, .framer-NLAuE .framer-2gosz9, .framer-NLAuE .framer-1qmqn2d, .framer-NLAuE .framer-eclbry, .framer-NLAuE .framer-o33c37, .framer-NLAuE .framer-9xr6fc, .framer-NLAuE .framer-vy4dqx, .framer-NLAuE .framer-1goiqsc, .framer-NLAuE .framer-dqsfo8, .framer-NLAuE .framer-1mt52cn, .framer-NLAuE .framer-m5scao { gap: 0px; } .framer-NLAuE .framer-1af3t1 > *, .framer-NLAuE .framer-1qmqn2d > *, .framer-NLAuE .framer-9xr6fc > *, .framer-NLAuE .framer-1mt52cn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NLAuE .framer-1af3t1 > :first-child, .framer-NLAuE .framer-1nnmn82 > :first-child, .framer-NLAuE .framer-2gosz9 > :first-child, .framer-NLAuE .framer-1qmqn2d > :first-child, .framer-NLAuE .framer-eclbry > :first-child, .framer-NLAuE .framer-o33c37 > :first-child, .framer-NLAuE .framer-9xr6fc > :first-child, .framer-NLAuE .framer-vy4dqx > :first-child, .framer-NLAuE .framer-1goiqsc > :first-child, .framer-NLAuE .framer-1mt52cn > :first-child, .framer-NLAuE .framer-m5scao > :first-child { margin-top: 0px; } .framer-NLAuE .framer-1af3t1 > :last-child, .framer-NLAuE .framer-1nnmn82 > :last-child, .framer-NLAuE .framer-2gosz9 > :last-child, .framer-NLAuE .framer-1qmqn2d > :last-child, .framer-NLAuE .framer-eclbry > :last-child, .framer-NLAuE .framer-o33c37 > :last-child, .framer-NLAuE .framer-9xr6fc > :last-child, .framer-NLAuE .framer-vy4dqx > :last-child, .framer-NLAuE .framer-1goiqsc > :last-child, .framer-NLAuE .framer-1mt52cn > :last-child, .framer-NLAuE .framer-m5scao > :last-child { margin-bottom: 0px; } .framer-NLAuE .framer-1nnmn82 > *, .framer-NLAuE .framer-eclbry > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-NLAuE .framer-2gosz9 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-NLAuE .framer-o33c37 > * { margin: 0px; margin-bottom: calc(79px / 2); margin-top: calc(79px / 2); } .framer-NLAuE .framer-vy4dqx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NLAuE .framer-1goiqsc > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-NLAuE .framer-dqsfo8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NLAuE .framer-dqsfo8 > :first-child { margin-left: 0px; } .framer-NLAuE .framer-dqsfo8 > :last-child { margin-right: 0px; } .framer-NLAuE .framer-m5scao > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-NLAuE.framer-72rtr7 { width: 390px; } .framer-NLAuE .framer-1hg9gnt-container { left: 65px; right: 0px; top: 2px; transform: unset; width: unset; } .framer-NLAuE .framer-5acvae { height: 475px; } .framer-NLAuE .framer-8yp8bi { height: 119%; left: -20px; top: -92px; width: 111%; } .framer-NLAuE .framer-1n436yx { height: 121%; left: -20px; width: 111%; } .framer-NLAuE .framer-8bor2l { align-content: center; align-items: center; width: 100%; } .framer-NLAuE .framer-5op7b9 { order: 0; width: 95%; } .framer-NLAuE .framer-iqyv9g { order: 1; width: 96%; } .framer-NLAuE .framer-1llb5l9-container { width: 349px; } .framer-NLAuE .framer-1af3t1, .framer-NLAuE .framer-1qmqn2d, .framer-NLAuE .framer-lrb2ib { padding: 60px 0px 60px 0px; } .framer-NLAuE .framer-1nnmn82, .framer-NLAuE .framer-eclbry { gap: 40px; } .framer-NLAuE .framer-2gosz9 { gap: 35px; } .framer-NLAuE .framer-180do1f { width: 100%; } .framer-NLAuE .framer-o33c37, .framer-NLAuE .framer-9xr6fc { flex-direction: column; gap: 10px; justify-content: center; } .framer-NLAuE .framer-1p7lo2h, .framer-NLAuE .framer-go2csj { align-content: center; align-items: center; gap: 30px; order: 1; width: 100%; } .framer-NLAuE .framer-1lsnukt, .framer-NLAuE .framer-1gannbc { align-content: center; align-items: center; justify-content: center; } .framer-NLAuE .framer-1vs1y67 { width: 64%; } .framer-NLAuE .framer-1x6wv71, .framer-NLAuE .framer-cudtgi { height: 301px; order: 0; width: 100%; } .framer-NLAuE .framer-ioeqg5 { bottom: 0px; height: 275px; left: 9px; width: 90%; } .framer-NLAuE .framer-1lfm2lq { height: 229px; width: 257px; } .framer-NLAuE .framer-1rfaq3s { bottom: -25px; height: 298px; left: 39px; width: 81%; } .framer-NLAuE .framer-vy4dqx { align-content: center; align-items: center; gap: 24px; max-width: unset; } .framer-NLAuE .framer-1goiqsc { align-content: center; align-items: center; gap: 12px; justify-content: center; } .framer-NLAuE .framer-e83939 { justify-content: center; } .framer-NLAuE .framer-dqsfo8 { align-content: center; align-items: center; flex-direction: column; flex-wrap: wrap; justify-content: center; max-width: unset; } .framer-NLAuE .framer-12c6gcx-container, .framer-NLAuE .framer-11xci82-container, .framer-NLAuE .framer-1xgx21j-container { flex: none; width: 100%; } .framer-NLAuE .framer-f37piy { justify-content: center; max-width: 520px; padding: 0px 24px 0px 24px; } .framer-NLAuE .framer-m5scao { gap: 34px; } .framer-NLAuE .framer-1iqvvji { gap: 20px; } .framer-NLAuE .framer-c4zvpv { max-width: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLAuE .framer-1nnmn82, .framer-NLAuE .framer-2gosz9, .framer-NLAuE .framer-eclbry, .framer-NLAuE .framer-o33c37, .framer-NLAuE .framer-1p7lo2h, .framer-NLAuE .framer-9xr6fc, .framer-NLAuE .framer-go2csj, .framer-NLAuE .framer-vy4dqx, .framer-NLAuE .framer-1goiqsc, .framer-NLAuE .framer-dqsfo8, .framer-NLAuE .framer-m5scao, .framer-NLAuE .framer-1iqvvji { gap: 0px; } .framer-NLAuE .framer-1nnmn82 > *, .framer-NLAuE .framer-eclbry > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NLAuE .framer-1nnmn82 > :first-child, .framer-NLAuE .framer-2gosz9 > :first-child, .framer-NLAuE .framer-eclbry > :first-child, .framer-NLAuE .framer-o33c37 > :first-child, .framer-NLAuE .framer-1p7lo2h > :first-child, .framer-NLAuE .framer-9xr6fc > :first-child, .framer-NLAuE .framer-go2csj > :first-child, .framer-NLAuE .framer-vy4dqx > :first-child, .framer-NLAuE .framer-1goiqsc > :first-child, .framer-NLAuE .framer-dqsfo8 > :first-child, .framer-NLAuE .framer-m5scao > :first-child, .framer-NLAuE .framer-1iqvvji > :first-child { margin-top: 0px; } .framer-NLAuE .framer-1nnmn82 > :last-child, .framer-NLAuE .framer-2gosz9 > :last-child, .framer-NLAuE .framer-eclbry > :last-child, .framer-NLAuE .framer-o33c37 > :last-child, .framer-NLAuE .framer-1p7lo2h > :last-child, .framer-NLAuE .framer-9xr6fc > :last-child, .framer-NLAuE .framer-go2csj > :last-child, .framer-NLAuE .framer-vy4dqx > :last-child, .framer-NLAuE .framer-1goiqsc > :last-child, .framer-NLAuE .framer-dqsfo8 > :last-child, .framer-NLAuE .framer-m5scao > :last-child, .framer-NLAuE .framer-1iqvvji > :last-child { margin-bottom: 0px; } .framer-NLAuE .framer-2gosz9 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-NLAuE .framer-o33c37 > *, .framer-NLAuE .framer-9xr6fc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NLAuE .framer-1p7lo2h > *, .framer-NLAuE .framer-go2csj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NLAuE .framer-vy4dqx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NLAuE .framer-1goiqsc > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-NLAuE .framer-dqsfo8 > *, .framer-NLAuE .framer-1iqvvji > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NLAuE .framer-m5scao > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4492\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eSwUr9hKY\":{\"layout\":[\"fixed\",\"auto\"]},\"GTWkC1jUF\":{\"layout\":[\"fixed\",\"auto\"]},\"hW7wZ6KrU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"X6Yso3whQ\":{\"pattern\":\":X6Yso3whQ\",\"name\":\"brand\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-NLAuE\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4492,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Vollkorn\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/vollkorn/v27/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuHGOdEbD63w.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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavbarFonts,...TickerFonts,...DownloadFonts,...ListTickerFonts,...ButtonFonts,...SingleStatsFonts,...Ticker1Fonts,...FooterSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eSwUr9hKY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GTWkC1jUF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hW7wZ6KrU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4492\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"X6Yso3whQ\\\":{\\\"pattern\\\":\\\":X6Yso3whQ\\\",\\\"name\\\":\\\"brand\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "clamp", "t", "s", "e", "sanitize", "isString", "r", "n", "a", "createUnitType", "o", "c", "l", "i", "p", "u", "isColorString", "splitColor", "f", "m", "g", "h", "parseHex", "b", "d", "v", "y", "test", "analyse", "parse", "createTransformer", "convertNumbersToZero", "getAnimatableNone", "O", "j", "applyDefaultFilter", "F", "N", "e", "t", "n", "window", "createRenderStep", "s", "r", "c", "o", "a", "l", "f", "u", "startLoop", "d", "i", "processStep", "processFrame", "clamp", "t", "e", "n", "d", "h", "m", "y", "g", "findSpring", "o", "s", "r", "i", "u", "calcAngularFreq", "l", "p", "f", "approximateRoot", "v", "M", "x", "isSpringType", "getSpringOptions", "spring", "__rest", "zero", "createSpring", "reverseEasing", "t", "e", "mirrorEasing", "createExpoIn", "createBackIn", "createAnticipate", "T", "w", "A", "R", "F", "createExpoIn", "D", "reverseEasing", "j", "mirrorEasing", "circIn", "t", "q", "I", "P", "createBackIn", "T", "k", "E", "B", "createAnticipate", "C", "N", "U", "bounceOut", "e", "w", "A", "R", "z", "identity", "t", "createAttractor", "e", "n", "o", "s", "r", "G", "H", "wrap", "t", "e", "n", "o", "Q", "V", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "fe", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "transformRef", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "countValue", "countValueColor", "description", "height", "id", "width", "props", "ref", "ref1", "_variant", "ref2", "ref3", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "bQdc2jZn8", "cekoBzrVQ", "XbB05uPre", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramerGOousUbpO", "withCSS", "GOousUbpO_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "PostItemFonts", "getFonts", "YdDCfOEko_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "toResponsiveImage", "value", "convertFromEnum", "activeLocale", "eqTCb_eLDPumtWcHjd", "toString", "convertFromEnum1", "XUc2tMg1QPumtWcHjd", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "hWQaFwPy7PumtWcHjd", "AY6x9tBtfPumtWcHjd", "ey9i_Q5bDPumtWcHjd", "idPumtWcHjd", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1kj77o7", "args", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "serializationHash", "Ticker", "hbxBDCKQj_default", "collection", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "YdDCfOEko_default", "collection1", "collection2", "collection3", "collection4", "css", "FramermtNSpWGzd", "withCSS", "mtNSpWGzd_default", "addFonts", "PostItemFonts", "TickerFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "MGkkZRgvW_default", "RichTextWithFX", "withFX", "RichText2", "TickerFonts", "Ticker", "DownloadFonts", "Download", "ListTickerFonts", "mtNSpWGzd_default", "ButtonFonts", "y4RLcLSEO_default", "MotionDivWithFX", "motion", "SingleStatsFonts", "GOousUbpO_default", "ContainerWithFX", "Container", "Ticker1Fonts", "FooterSectionFonts", "BYBg0fkPL_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "animation7", "animation8", "transition5", "transition6", "transition7", "transition8", "transition9", "transition10", "animation9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "MGkkZRgvW_default", "getLoadingLazyAtYPosition", "Image2", "x", "RichTextWithFX", "Ticker", "RichText2", "Download", "mtNSpWGzd_default", "MotionDivWithFX", "ResolveLinks", "resolvedLinks", "y4RLcLSEO_default", "resolvedLinks1", "SVG", "ContainerWithFX", "GOousUbpO_default", "Link", "BYBg0fkPL_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavbarFonts", "TickerFonts", "DownloadFonts", "ListTickerFonts", "ButtonFonts", "SingleStatsFonts", "Ticker1Fonts", "FooterSectionFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
