{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/types@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/o9J0h07hen4PBfnKB9O4/qwZr2PA5Kwt78GDtQqOC/aEFcfSjg_.js", "ssg:https://framerusercontent.com/modules/0t2yVHayvORB6KLi5Uyk/rfxNilLH2kC7PLsrE2rH/C4Bsykkym.js", "ssg:https://framerusercontent.com/modules/sQB5kzPhwdtrSRURtKAR/gLJUfkqSjLTH6htdjglz/FeeRnXUrw.js", "ssg:https://framerusercontent.com/modules/4wLOFkV5VmNfGa16Wac0/yIxHLkWlmV1xQMw2nlr1/NVgXGH5ON.js", "ssg:https://framerusercontent.com/modules/cazgPZU2f8wkKVHnjo28/dpd7KcFJc1drC6QCPRfM/oK7nhTueM.js", "ssg:https://framerusercontent.com/modules/GmlibjqWiUy95vU8cyAK/sCsEQ7CloKWycVFssIyu/rjuoNCGia.js", "ssg:https://framerusercontent.com/modules/bf5pUXHh5pa7wzFqomje/VZVgRMwr6TlOB0IDmEGB/rmtP5JYRB.js", "ssg:https://framerusercontent.com/modules/fcsLGoPEsYWaVV7TgoU7/lhrQKxhIYJjwWhlndPY7/wQwvveKfy.js", "ssg:https://framerusercontent.com/modules/nYoAnbvglJf1r66hvXFJ/LmafV6bFtCeGkzBVadEb/ZAqjQHs2Y.js", "ssg:https://framerusercontent.com/modules/zzcXSOCW2zVUri1n2uKr/fUdBA83UXGPrgA7dsG6U/ZJGWOsNjf.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "class MotionValue{setAnimation(i){this.animation=i;null===i||void 0===i?void 0:i.finished.then((()=>this.clearAnimation())).catch((()=>{}))}clearAnimation(){this.animation=this.generator=void 0}}export{MotionValue};\n\n//# sourceMappingURL=index.es.js.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-kenHz\";const variantClassNames={Atu7QYNPF:\"framer-v-yhpjti\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Atu7QYNPF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-yhpjti\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Atu7QYNPF\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y1iflx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CbY4rYOCR-container\",nodeId:\"CbY4rYOCR\",rendersWithMotion:true,scopeId:\"aEFcfSjg_\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"CbY4rYOCR\",layoutId:\"CbY4rYOCR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-131ly1\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"B8uZC1txJ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/JJb3DzSD7c2zL0bu4Zjaw1ubbE.jpg\",srcSet:\"https://framerusercontent.com/images/JJb3DzSD7c2zL0bu4Zjaw1ubbE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JJb3DzSD7c2zL0bu4Zjaw1ubbE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JJb3DzSD7c2zL0bu4Zjaw1ubbE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JJb3DzSD7c2zL0bu4Zjaw1ubbE.jpg 3000w\"},className:\"framer-4q3trv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"etTYrPk_i\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"195px\",src:\"https://framerusercontent.com/images/587ZvJpsYNEy1Ei3MQZS7wT4xY.jpg\",srcSet:\"https://framerusercontent.com/images/587ZvJpsYNEy1Ei3MQZS7wT4xY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/587ZvJpsYNEy1Ei3MQZS7wT4xY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/587ZvJpsYNEy1Ei3MQZS7wT4xY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/587ZvJpsYNEy1Ei3MQZS7wT4xY.jpg 3000w\"},className:\"framer-1wa4vlr\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"D5X65rFWR\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg\",srcSet:\"https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg 3000w\"},className:\"framer-11oj4rz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VOje3iwhQ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/kaDUUwNNLBEFo8r19gNsp71xBw.jpg\",srcSet:\"https://framerusercontent.com/images/kaDUUwNNLBEFo8r19gNsp71xBw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kaDUUwNNLBEFo8r19gNsp71xBw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kaDUUwNNLBEFo8r19gNsp71xBw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kaDUUwNNLBEFo8r19gNsp71xBw.jpg 3000w\"},className:\"framer-e4bml6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UWVNNpAvL\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/0s2Nfo8TdufD8ZxnvIChMEoJ2Sg.jpg\",srcSet:\"https://framerusercontent.com/images/0s2Nfo8TdufD8ZxnvIChMEoJ2Sg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0s2Nfo8TdufD8ZxnvIChMEoJ2Sg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0s2Nfo8TdufD8ZxnvIChMEoJ2Sg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0s2Nfo8TdufD8ZxnvIChMEoJ2Sg.jpg 3000w\"},className:\"framer-1wp21fy\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"phV3eukSO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/iVfu0GXic6LTgBB6w7QEjZjeQ.jpg\",srcSet:\"https://framerusercontent.com/images/iVfu0GXic6LTgBB6w7QEjZjeQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iVfu0GXic6LTgBB6w7QEjZjeQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iVfu0GXic6LTgBB6w7QEjZjeQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iVfu0GXic6LTgBB6w7QEjZjeQ.jpg 3000w\"},className:\"framer-1ecjr8n\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"g0Yfe72Zx\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"155px\",src:\"https://framerusercontent.com/images/7Qz6nWAJJzuRkIm33Q985J4dMg.jpg\",srcSet:\"https://framerusercontent.com/images/7Qz6nWAJJzuRkIm33Q985J4dMg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/7Qz6nWAJJzuRkIm33Q985J4dMg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/7Qz6nWAJJzuRkIm33Q985J4dMg.jpg 2000w\"},className:\"framer-1aahwoo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"So5nd_Z5N\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/mtVtuCs2r5ertKe5EFqxXtdmbrU.jpg\",srcSet:\"https://framerusercontent.com/images/mtVtuCs2r5ertKe5EFqxXtdmbrU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mtVtuCs2r5ertKe5EFqxXtdmbrU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mtVtuCs2r5ertKe5EFqxXtdmbrU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mtVtuCs2r5ertKe5EFqxXtdmbrU.jpg 3000w\"},className:\"framer-143gcxm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"T076jOYaO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/iNyHtHiJF1YTNkhXWcE2jy9pUAk.jpg\",srcSet:\"https://framerusercontent.com/images/iNyHtHiJF1YTNkhXWcE2jy9pUAk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iNyHtHiJF1YTNkhXWcE2jy9pUAk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iNyHtHiJF1YTNkhXWcE2jy9pUAk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iNyHtHiJF1YTNkhXWcE2jy9pUAk.jpg 3000w\"},className:\"framer-pj5i8u\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"miatAZ5h4\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/zUzWFd9g2rz9p6HYprwpUpO89A.jpg\",srcSet:\"https://framerusercontent.com/images/zUzWFd9g2rz9p6HYprwpUpO89A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zUzWFd9g2rz9p6HYprwpUpO89A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zUzWFd9g2rz9p6HYprwpUpO89A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zUzWFd9g2rz9p6HYprwpUpO89A.jpg 3000w\"},className:\"framer-uuwl1p\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PvzehJoHm\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/yR6wJ9m2E6C11kl4ySQastRad8s.jpg\",srcSet:\"https://framerusercontent.com/images/yR6wJ9m2E6C11kl4ySQastRad8s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yR6wJ9m2E6C11kl4ySQastRad8s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yR6wJ9m2E6C11kl4ySQastRad8s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yR6wJ9m2E6C11kl4ySQastRad8s.jpg 3000w\"},className:\"framer-1oc2dc6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yNtEaKokA\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/TSHsdtHH2dVN6bwF309rZP9F3bs.jpg\",srcSet:\"https://framerusercontent.com/images/TSHsdtHH2dVN6bwF309rZP9F3bs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TSHsdtHH2dVN6bwF309rZP9F3bs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TSHsdtHH2dVN6bwF309rZP9F3bs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TSHsdtHH2dVN6bwF309rZP9F3bs.jpg 3000w\"},className:\"framer-1jlfjjz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Ukjcty8dC\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"233px\",src:\"https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg\",srcSet:\"https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg 3000w\"},className:\"framer-1p5lfya\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ywGDKQn0o\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/KkceCVFzhR6XkSvkSgRyDE414I.jpg\",srcSet:\"https://framerusercontent.com/images/KkceCVFzhR6XkSvkSgRyDE414I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KkceCVFzhR6XkSvkSgRyDE414I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KkceCVFzhR6XkSvkSgRyDE414I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KkceCVFzhR6XkSvkSgRyDE414I.jpg 3000w\"},className:\"framer-1npl25g\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eqhOrkS9D\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"164px\",src:\"https://framerusercontent.com/images/WlfQUgCFb6l0CI9i4metCnDZ5N8.jpg\",srcSet:\"https://framerusercontent.com/images/WlfQUgCFb6l0CI9i4metCnDZ5N8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/WlfQUgCFb6l0CI9i4metCnDZ5N8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/WlfQUgCFb6l0CI9i4metCnDZ5N8.jpg 2000w\"},className:\"framer-2m3ff1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"dH6NWfpF9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/XLhwie7Z9Zd0dHXoWfw77x775nM.jpg\",srcSet:\"https://framerusercontent.com/images/XLhwie7Z9Zd0dHXoWfw77x775nM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XLhwie7Z9Zd0dHXoWfw77x775nM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XLhwie7Z9Zd0dHXoWfw77x775nM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XLhwie7Z9Zd0dHXoWfw77x775nM.jpg 3000w\"},className:\"framer-zpi6fq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tus2fwbHY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Wp1uHXnyCVPKkAonvwBkbre2g.jpg\",srcSet:\"https://framerusercontent.com/images/Wp1uHXnyCVPKkAonvwBkbre2g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wp1uHXnyCVPKkAonvwBkbre2g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wp1uHXnyCVPKkAonvwBkbre2g.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Wp1uHXnyCVPKkAonvwBkbre2g.jpg 3000w\"},className:\"framer-1gzt1sw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"DUj0M95MS\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/uYJiNuQYfkptdt0oZjFH8gveS0w.jpg\",srcSet:\"https://framerusercontent.com/images/uYJiNuQYfkptdt0oZjFH8gveS0w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uYJiNuQYfkptdt0oZjFH8gveS0w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uYJiNuQYfkptdt0oZjFH8gveS0w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uYJiNuQYfkptdt0oZjFH8gveS0w.jpg 3000w\"},className:\"framer-1kqt7oz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZpFhzNAk1\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/e5ORTE0FXpJS6QHqPfIBWiy4VJY.jpg\",srcSet:\"https://framerusercontent.com/images/e5ORTE0FXpJS6QHqPfIBWiy4VJY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/e5ORTE0FXpJS6QHqPfIBWiy4VJY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/e5ORTE0FXpJS6QHqPfIBWiy4VJY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/e5ORTE0FXpJS6QHqPfIBWiy4VJY.jpg 3000w\"},className:\"framer-1kmlvdj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"epVzBcTcn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/37dTVgc4xaPbiiqymDZXtTxCm8w.jpg\",srcSet:\"https://framerusercontent.com/images/37dTVgc4xaPbiiqymDZXtTxCm8w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/37dTVgc4xaPbiiqymDZXtTxCm8w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/37dTVgc4xaPbiiqymDZXtTxCm8w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/37dTVgc4xaPbiiqymDZXtTxCm8w.jpg 3000w\"},className:\"framer-19q9sm3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kkvXfm9Nb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/sLBY1L0yKoYz04Y5ElJAZ9CE.jpg\",srcSet:\"https://framerusercontent.com/images/sLBY1L0yKoYz04Y5ElJAZ9CE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sLBY1L0yKoYz04Y5ElJAZ9CE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sLBY1L0yKoYz04Y5ElJAZ9CE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sLBY1L0yKoYz04Y5ElJAZ9CE.jpg 3000w\"},className:\"framer-l3j47i\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LkoNYAEzY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9tqu8v-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YDv0mzZfT-container\",nodeId:\"YDv0mzZfT\",rendersWithMotion:true,scopeId:\"aEFcfSjg_\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"YDv0mzZfT\",layoutId:\"YDv0mzZfT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mz8vja\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"z63YmAyoi\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"173px\",src:\"https://framerusercontent.com/images/bjhJnEb9IjIBEp4DnaNfytcIpc.jpg\",srcSet:\"https://framerusercontent.com/images/bjhJnEb9IjIBEp4DnaNfytcIpc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bjhJnEb9IjIBEp4DnaNfytcIpc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bjhJnEb9IjIBEp4DnaNfytcIpc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bjhJnEb9IjIBEp4DnaNfytcIpc.jpg 3000w\"},className:\"framer-isjva9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"losIqc15W\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Tz5Gk1D6o2zbIctrQzkWx4uN4b4.jpg\",srcSet:\"https://framerusercontent.com/images/Tz5Gk1D6o2zbIctrQzkWx4uN4b4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Tz5Gk1D6o2zbIctrQzkWx4uN4b4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Tz5Gk1D6o2zbIctrQzkWx4uN4b4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Tz5Gk1D6o2zbIctrQzkWx4uN4b4.jpg 3000w\"},className:\"framer-fvl1ks\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"gOnWRfDOc\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"195px\",src:\"https://framerusercontent.com/images/scy4KZET4P0pTiX07Goc3IegY.jpg\",srcSet:\"https://framerusercontent.com/images/scy4KZET4P0pTiX07Goc3IegY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/scy4KZET4P0pTiX07Goc3IegY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/scy4KZET4P0pTiX07Goc3IegY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/scy4KZET4P0pTiX07Goc3IegY.jpg 3000w\"},className:\"framer-1qwi9aj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"dVkGoIEan\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/AA41SI4nZbbuU91yIb9ISLcTts.jpg\",srcSet:\"https://framerusercontent.com/images/AA41SI4nZbbuU91yIb9ISLcTts.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AA41SI4nZbbuU91yIb9ISLcTts.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AA41SI4nZbbuU91yIb9ISLcTts.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AA41SI4nZbbuU91yIb9ISLcTts.jpg 3000w\"},className:\"framer-1lwyqy5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VOwCbn8hP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"232px\",src:\"https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg\",srcSet:\"https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg 3000w\"},className:\"framer-1gz4tj7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"oC1OImp3F\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"184px\",src:\"https://framerusercontent.com/images/kIQq70EGjIJvhwiDiwEXVrne0A.jpg\",srcSet:\"https://framerusercontent.com/images/kIQq70EGjIJvhwiDiwEXVrne0A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kIQq70EGjIJvhwiDiwEXVrne0A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kIQq70EGjIJvhwiDiwEXVrne0A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kIQq70EGjIJvhwiDiwEXVrne0A.jpg 3000w\"},className:\"framer-3wtauh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ARgF53AH6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/aygN3vTDxV7C2N27ozsGNhi8DeA.jpg\",srcSet:\"https://framerusercontent.com/images/aygN3vTDxV7C2N27ozsGNhi8DeA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aygN3vTDxV7C2N27ozsGNhi8DeA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aygN3vTDxV7C2N27ozsGNhi8DeA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aygN3vTDxV7C2N27ozsGNhi8DeA.jpg 3000w\"},className:\"framer-1k9gqw9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Kz2CTtW0K\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/DE6K3oseUXqLI5POQSiL2cxo5Ko.jpg\",srcSet:\"https://framerusercontent.com/images/DE6K3oseUXqLI5POQSiL2cxo5Ko.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DE6K3oseUXqLI5POQSiL2cxo5Ko.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DE6K3oseUXqLI5POQSiL2cxo5Ko.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DE6K3oseUXqLI5POQSiL2cxo5Ko.jpg 3000w\"},className:\"framer-tf4662\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GLaRFa7UV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/yIQo4sDev3ZUwpiwEF1fDIW6EA.jpg\",srcSet:\"https://framerusercontent.com/images/yIQo4sDev3ZUwpiwEF1fDIW6EA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yIQo4sDev3ZUwpiwEF1fDIW6EA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yIQo4sDev3ZUwpiwEF1fDIW6EA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yIQo4sDev3ZUwpiwEF1fDIW6EA.jpg 3000w\"},className:\"framer-1kqnoan\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Msobf0Yqh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"237px\",src:\"https://framerusercontent.com/images/TKfiPAgPa2Rp7srkpQ0jmIcilpI.jpg\",srcSet:\"https://framerusercontent.com/images/TKfiPAgPa2Rp7srkpQ0jmIcilpI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TKfiPAgPa2Rp7srkpQ0jmIcilpI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TKfiPAgPa2Rp7srkpQ0jmIcilpI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TKfiPAgPa2Rp7srkpQ0jmIcilpI.jpg 3000w\"},className:\"framer-lpxspo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tYnbqmhQX\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"170px\",src:\"https://framerusercontent.com/images/8LNr7y1ia2S0F11haqwQoFPQFE.jpg\",srcSet:\"https://framerusercontent.com/images/8LNr7y1ia2S0F11haqwQoFPQFE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8LNr7y1ia2S0F11haqwQoFPQFE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8LNr7y1ia2S0F11haqwQoFPQFE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8LNr7y1ia2S0F11haqwQoFPQFE.jpg 3000w\"},className:\"framer-1hnt0l1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NjIb08CKN\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"184px\",src:\"https://framerusercontent.com/images/2ggGj90BElPJhTARbx4yiuxalE.jpg\",srcSet:\"https://framerusercontent.com/images/2ggGj90BElPJhTARbx4yiuxalE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2ggGj90BElPJhTARbx4yiuxalE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ggGj90BElPJhTARbx4yiuxalE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2ggGj90BElPJhTARbx4yiuxalE.jpg 3000w\"},className:\"framer-rkjqpt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"POpXug7kE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"213px\",src:\"https://framerusercontent.com/images/6iu1OuLYAG1LSaeWMT6AAtMx0.jpg\",srcSet:\"https://framerusercontent.com/images/6iu1OuLYAG1LSaeWMT6AAtMx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6iu1OuLYAG1LSaeWMT6AAtMx0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6iu1OuLYAG1LSaeWMT6AAtMx0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6iu1OuLYAG1LSaeWMT6AAtMx0.jpg 3000w\"},className:\"framer-efhgbm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Wv_ZR5r7g\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/lklrsUoVdzkkBHZFVsLPwUimZ0.jpg\",srcSet:\"https://framerusercontent.com/images/lklrsUoVdzkkBHZFVsLPwUimZ0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lklrsUoVdzkkBHZFVsLPwUimZ0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lklrsUoVdzkkBHZFVsLPwUimZ0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lklrsUoVdzkkBHZFVsLPwUimZ0.jpg 3000w\"},className:\"framer-1g4dnze\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yuU6kdpV6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"253px\",src:\"https://framerusercontent.com/images/Q3xv0GO2UKNIaU7GyUDUuRc.jpg\",srcSet:\"https://framerusercontent.com/images/Q3xv0GO2UKNIaU7GyUDUuRc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Q3xv0GO2UKNIaU7GyUDUuRc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q3xv0GO2UKNIaU7GyUDUuRc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Q3xv0GO2UKNIaU7GyUDUuRc.jpg 3000w\"},className:\"framer-10246ff\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"f7GonedUb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/7GkJRU92myPQpIpa8WMoVNTfSk.jpg\",srcSet:\"https://framerusercontent.com/images/7GkJRU92myPQpIpa8WMoVNTfSk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7GkJRU92myPQpIpa8WMoVNTfSk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7GkJRU92myPQpIpa8WMoVNTfSk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7GkJRU92myPQpIpa8WMoVNTfSk.jpg 3000w\"},className:\"framer-gfemwh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"H7_cQi0xD\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/hks2qNLZtpOdjVIL10cC3yJKdlY.jpg\",srcSet:\"https://framerusercontent.com/images/hks2qNLZtpOdjVIL10cC3yJKdlY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hks2qNLZtpOdjVIL10cC3yJKdlY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hks2qNLZtpOdjVIL10cC3yJKdlY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hks2qNLZtpOdjVIL10cC3yJKdlY.jpg 3000w\"},className:\"framer-jr0ax6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YCpQPDmOu\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"273px\",src:\"https://framerusercontent.com/images/3dPZ8ixV6wfjKd5Dg2SPccHY0.jpg\",srcSet:\"https://framerusercontent.com/images/3dPZ8ixV6wfjKd5Dg2SPccHY0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3dPZ8ixV6wfjKd5Dg2SPccHY0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3dPZ8ixV6wfjKd5Dg2SPccHY0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3dPZ8ixV6wfjKd5Dg2SPccHY0.jpg 3000w\"},className:\"framer-16noa0x\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"aPOL6Zhy1\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/EniMvg1MPx1N5eXrFst57mLMUQ.jpg\",srcSet:\"https://framerusercontent.com/images/EniMvg1MPx1N5eXrFst57mLMUQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EniMvg1MPx1N5eXrFst57mLMUQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EniMvg1MPx1N5eXrFst57mLMUQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EniMvg1MPx1N5eXrFst57mLMUQ.jpg 3000w\"},className:\"framer-xox19f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GhqkoKuLp\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/B1rgnAhZPQwpalcQ0rcEZ18p0pg.jpg\",srcSet:\"https://framerusercontent.com/images/B1rgnAhZPQwpalcQ0rcEZ18p0pg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/B1rgnAhZPQwpalcQ0rcEZ18p0pg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/B1rgnAhZPQwpalcQ0rcEZ18p0pg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/B1rgnAhZPQwpalcQ0rcEZ18p0pg.jpg 3000w\"},className:\"framer-187i8m6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"W6ryKL2T1\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/7r8lfo3CKvPRlMHO9397qFwKN7I.jpg\",srcSet:\"https://framerusercontent.com/images/7r8lfo3CKvPRlMHO9397qFwKN7I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7r8lfo3CKvPRlMHO9397qFwKN7I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7r8lfo3CKvPRlMHO9397qFwKN7I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7r8lfo3CKvPRlMHO9397qFwKN7I.jpg 3000w\"},className:\"framer-1vrbily\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"lHz3APInv\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kenHz.framer-kaaqu8, .framer-kenHz .framer-kaaqu8 { display: block; }\",\".framer-kenHz.framer-yhpjti { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-kenHz .framer-1y1iflx-container, .framer-kenHz .framer-9tqu8v-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-kenHz .framer-131ly1, .framer-kenHz .framer-1mz8vja { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-kenHz .framer-4q3trv, .framer-kenHz .framer-1jlfjjz, .framer-kenHz .framer-1kqt7oz { aspect-ratio: 0.8043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-1wa4vlr, .framer-kenHz .framer-1qwi9aj { flex: none; height: 184px; overflow: hidden; position: relative; width: 195px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-11oj4rz { flex: none; height: 184px; overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-e4bml6, .framer-kenHz .framer-1wp21fy { flex: none; height: 184px; overflow: hidden; position: relative; width: 221px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-1ecjr8n, .framer-kenHz .framer-143gcxm, .framer-kenHz .framer-pj5i8u, .framer-kenHz .framer-uuwl1p, .framer-kenHz .framer-1oc2dc6, .framer-kenHz .framer-zpi6fq, .framer-kenHz .framer-1gzt1sw, .framer-kenHz .framer-1kmlvdj, .framer-kenHz .framer-19q9sm3, .framer-kenHz .framer-l3j47i, .framer-kenHz .framer-fvl1ks, .framer-kenHz .framer-1lwyqy5, .framer-kenHz .framer-1k9gqw9, .framer-kenHz .framer-tf4662, .framer-kenHz .framer-1kqnoan, .framer-kenHz .framer-gfemwh, .framer-kenHz .framer-jr0ax6, .framer-kenHz .framer-xox19f { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-1aahwoo { flex: none; height: 184px; overflow: hidden; position: relative; width: 155px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-1p5lfya { flex: none; height: 184px; overflow: hidden; position: relative; width: 233px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-1npl25g { flex: none; height: 184px; overflow: hidden; position: relative; width: 275px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-2m3ff1 { flex: none; height: 184px; overflow: hidden; position: relative; width: 164px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-isjva9 { flex: none; height: 184px; overflow: hidden; position: relative; width: 173px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-1gz4tj7 { flex: none; height: 184px; overflow: hidden; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-3wtauh, .framer-kenHz .framer-rkjqpt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-lpxspo { flex: none; height: 184px; overflow: hidden; position: relative; width: 237px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-1hnt0l1 { flex: none; height: 184px; overflow: hidden; position: relative; width: 170px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-efhgbm { flex: none; height: 184px; overflow: hidden; position: relative; width: 213px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-1g4dnze { flex: none; height: 184px; overflow: hidden; position: relative; width: 207px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-10246ff { flex: none; height: 184px; overflow: hidden; position: relative; width: 253px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-16noa0x { flex: none; height: 184px; overflow: hidden; position: relative; width: 273px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kenHz .framer-187i8m6, .framer-kenHz .framer-1vrbily { flex: none; height: 184px; overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kenHz.framer-yhpjti, .framer-kenHz .framer-131ly1, .framer-kenHz .framer-1mz8vja { gap: 0px; } .framer-kenHz.framer-yhpjti > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-kenHz.framer-yhpjti > :first-child { margin-top: 0px; } .framer-kenHz.framer-yhpjti > :last-child { margin-bottom: 0px; } .framer-kenHz .framer-131ly1 > *, .framer-kenHz .framer-1mz8vja > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-kenHz .framer-131ly1 > :first-child, .framer-kenHz .framer-1mz8vja > :first-child { margin-left: 0px; } .framer-kenHz .framer-131ly1 > :last-child, .framer-kenHz .framer-1mz8vja > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraEFcfSjg_=withCSS(Component,css,\"framer-kenHz\");export default FrameraEFcfSjg_;FrameraEFcfSjg_.displayName=\"KBW Afterparty\";FrameraEFcfSjg_.defaultProps={height:388,width:1148};addFonts(FrameraEFcfSjg_,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraEFcfSjg_\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"388\",\"framerIntrinsicWidth\":\"1148\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aEFcfSjg_.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-tLwOl\";const variantClassNames={gBsxfTWbB:\"framer-v-ap8ja8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"gBsxfTWbB\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ap8ja8\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"gBsxfTWbB\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p2d667-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZBrWdHJHS-container\",nodeId:\"ZBrWdHJHS\",rendersWithMotion:true,scopeId:\"C4Bsykkym\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"ZBrWdHJHS\",layoutId:\"ZBrWdHJHS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uumed7\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"WeiAbEMue\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/uvlzczRPvQUkbeF9PjTSkNhyKY.jpg\",srcSet:\"https://framerusercontent.com/images/uvlzczRPvQUkbeF9PjTSkNhyKY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uvlzczRPvQUkbeF9PjTSkNhyKY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uvlzczRPvQUkbeF9PjTSkNhyKY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uvlzczRPvQUkbeF9PjTSkNhyKY.jpg 3000w\"},className:\"framer-1gpxxap\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"biXp3YG91\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/rPj6OXwiAiRU6TViO8yEMCnzKLk.jpg\",srcSet:\"https://framerusercontent.com/images/rPj6OXwiAiRU6TViO8yEMCnzKLk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rPj6OXwiAiRU6TViO8yEMCnzKLk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rPj6OXwiAiRU6TViO8yEMCnzKLk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rPj6OXwiAiRU6TViO8yEMCnzKLk.jpg 3000w\"},className:\"framer-h0b7fb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sfB5M7MJ1\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/PlMjS9WFBK6pv0nwc7IFMKc5UkI.jpg\",srcSet:\"https://framerusercontent.com/images/PlMjS9WFBK6pv0nwc7IFMKc5UkI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PlMjS9WFBK6pv0nwc7IFMKc5UkI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PlMjS9WFBK6pv0nwc7IFMKc5UkI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PlMjS9WFBK6pv0nwc7IFMKc5UkI.jpg 3000w\"},className:\"framer-1k5p9hz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IBRvfBwXd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/ZFyzDjCOxaYR12kYOiur99Ciw0s.jpg\",srcSet:\"https://framerusercontent.com/images/ZFyzDjCOxaYR12kYOiur99Ciw0s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZFyzDjCOxaYR12kYOiur99Ciw0s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZFyzDjCOxaYR12kYOiur99Ciw0s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZFyzDjCOxaYR12kYOiur99Ciw0s.jpg 3000w\"},className:\"framer-1usg6p\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XqpUiZCSr\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/bUk0EUzTrerGaKFvoD4aMEKI.jpg\",srcSet:\"https://framerusercontent.com/images/bUk0EUzTrerGaKFvoD4aMEKI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bUk0EUzTrerGaKFvoD4aMEKI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bUk0EUzTrerGaKFvoD4aMEKI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bUk0EUzTrerGaKFvoD4aMEKI.jpg 3000w\"},className:\"framer-rrhr4a\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XnRw33EqR\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/rd43o9EQYurFTa5Uy8NqZlyFkI.jpg\",srcSet:\"https://framerusercontent.com/images/rd43o9EQYurFTa5Uy8NqZlyFkI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rd43o9EQYurFTa5Uy8NqZlyFkI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rd43o9EQYurFTa5Uy8NqZlyFkI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rd43o9EQYurFTa5Uy8NqZlyFkI.jpg 3000w\"},className:\"framer-1mg8gv5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NsNuDvBEx\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"216px\",src:\"https://framerusercontent.com/images/T5CYNGfsL2ejGEQfvT53FERTio.jpg\",srcSet:\"https://framerusercontent.com/images/T5CYNGfsL2ejGEQfvT53FERTio.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/T5CYNGfsL2ejGEQfvT53FERTio.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/T5CYNGfsL2ejGEQfvT53FERTio.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/T5CYNGfsL2ejGEQfvT53FERTio.jpg 3000w\"},className:\"framer-1av3282\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"n0p5TCRv9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"298px\",src:\"https://framerusercontent.com/images/T7HBUlp7ZB2cpUR5asjvR7dwdw.jpg\",srcSet:\"https://framerusercontent.com/images/T7HBUlp7ZB2cpUR5asjvR7dwdw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/T7HBUlp7ZB2cpUR5asjvR7dwdw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/T7HBUlp7ZB2cpUR5asjvR7dwdw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/T7HBUlp7ZB2cpUR5asjvR7dwdw.jpg 3000w\"},className:\"framer-3dixzw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YV2t4wlWc\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/76CwYTeZ05SpvzzTRsAMRdMkWs.jpg\",srcSet:\"https://framerusercontent.com/images/76CwYTeZ05SpvzzTRsAMRdMkWs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/76CwYTeZ05SpvzzTRsAMRdMkWs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/76CwYTeZ05SpvzzTRsAMRdMkWs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/76CwYTeZ05SpvzzTRsAMRdMkWs.jpg 3000w\"},className:\"framer-pb2lky\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iDLgrO7rX\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/xthJC9J2I96fzgRRf7nzaxZJf5o.jpg\",srcSet:\"https://framerusercontent.com/images/xthJC9J2I96fzgRRf7nzaxZJf5o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xthJC9J2I96fzgRRf7nzaxZJf5o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xthJC9J2I96fzgRRf7nzaxZJf5o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xthJC9J2I96fzgRRf7nzaxZJf5o.jpg 3000w\"},className:\"framer-1d30qyh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PHvnHXnyQ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/eH2rlMhQPi5LaPPl4TuCp80dYoo.jpg\",srcSet:\"https://framerusercontent.com/images/eH2rlMhQPi5LaPPl4TuCp80dYoo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eH2rlMhQPi5LaPPl4TuCp80dYoo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eH2rlMhQPi5LaPPl4TuCp80dYoo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eH2rlMhQPi5LaPPl4TuCp80dYoo.jpg 3000w\"},className:\"framer-47splb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YN54237AT\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"195px\",src:\"https://framerusercontent.com/images/b1fTUNAeKqkIFcLPyNVHBDIXK3M.jpg\",srcSet:\"https://framerusercontent.com/images/b1fTUNAeKqkIFcLPyNVHBDIXK3M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/b1fTUNAeKqkIFcLPyNVHBDIXK3M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/b1fTUNAeKqkIFcLPyNVHBDIXK3M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/b1fTUNAeKqkIFcLPyNVHBDIXK3M.jpg 3000w\"},className:\"framer-jjk72\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KfrZPhVZp\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/PAaYCo1idd5amFdmwFbJzY7fok.jpg\",srcSet:\"https://framerusercontent.com/images/PAaYCo1idd5amFdmwFbJzY7fok.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PAaYCo1idd5amFdmwFbJzY7fok.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PAaYCo1idd5amFdmwFbJzY7fok.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PAaYCo1idd5amFdmwFbJzY7fok.jpg 3000w\"},className:\"framer-dcs130\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"h6DOgxjy5\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/QrgkT5PMMlNkgFX0yhkmO9RO6Vk.jpg\",srcSet:\"https://framerusercontent.com/images/QrgkT5PMMlNkgFX0yhkmO9RO6Vk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QrgkT5PMMlNkgFX0yhkmO9RO6Vk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QrgkT5PMMlNkgFX0yhkmO9RO6Vk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QrgkT5PMMlNkgFX0yhkmO9RO6Vk.jpg 3000w\"},className:\"framer-1rsqws9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"d3ZeRRmVN\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"233px\",src:\"https://framerusercontent.com/images/ZlcwVhavQBEbpcBu96Z0PKYwF0.jpg\",srcSet:\"https://framerusercontent.com/images/ZlcwVhavQBEbpcBu96Z0PKYwF0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZlcwVhavQBEbpcBu96Z0PKYwF0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZlcwVhavQBEbpcBu96Z0PKYwF0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZlcwVhavQBEbpcBu96Z0PKYwF0.jpg 3000w\"},className:\"framer-1ud9wvb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nmRG76WBU\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/0RhbJRJfclKGwVx9RmT5GwOfXA.jpg\",srcSet:\"https://framerusercontent.com/images/0RhbJRJfclKGwVx9RmT5GwOfXA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0RhbJRJfclKGwVx9RmT5GwOfXA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0RhbJRJfclKGwVx9RmT5GwOfXA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0RhbJRJfclKGwVx9RmT5GwOfXA.jpg 3000w\"},className:\"framer-3p6cxb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JTftwQUd6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/EdlBmhrSl3yPRHfwDA6JVwcNl8.jpg\",srcSet:\"https://framerusercontent.com/images/EdlBmhrSl3yPRHfwDA6JVwcNl8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EdlBmhrSl3yPRHfwDA6JVwcNl8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EdlBmhrSl3yPRHfwDA6JVwcNl8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EdlBmhrSl3yPRHfwDA6JVwcNl8.jpg 3000w\"},className:\"framer-1kcvh6g\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Th62ePMAQ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"164px\",src:\"https://framerusercontent.com/images/E9esd4QjU4j6BaZoCk2YgIWbbk.jpg\",srcSet:\"https://framerusercontent.com/images/E9esd4QjU4j6BaZoCk2YgIWbbk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/E9esd4QjU4j6BaZoCk2YgIWbbk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E9esd4QjU4j6BaZoCk2YgIWbbk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/E9esd4QjU4j6BaZoCk2YgIWbbk.jpg 3000w\"},className:\"framer-jt7v7l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"g8QGZfdoW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"278px\",src:\"https://framerusercontent.com/images/jIo2WnQ5cyr2zNZwhmyQzeNsY.jpg\",srcSet:\"https://framerusercontent.com/images/jIo2WnQ5cyr2zNZwhmyQzeNsY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jIo2WnQ5cyr2zNZwhmyQzeNsY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jIo2WnQ5cyr2zNZwhmyQzeNsY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jIo2WnQ5cyr2zNZwhmyQzeNsY.jpg 3000w\"},className:\"framer-1ysm4tz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YTw1e49Q7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"278px\",src:\"https://framerusercontent.com/images/RImszOpocZLZl41c7sjyQKEIt1c.jpg\",srcSet:\"https://framerusercontent.com/images/RImszOpocZLZl41c7sjyQKEIt1c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RImszOpocZLZl41c7sjyQKEIt1c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RImszOpocZLZl41c7sjyQKEIt1c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RImszOpocZLZl41c7sjyQKEIt1c.jpg 3000w\"},className:\"framer-165ilg3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"usOgc1Hmh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"278px\",src:\"https://framerusercontent.com/images/vYFbP6jEMOSqVYYfPzNJjmHaZg.jpg\",srcSet:\"https://framerusercontent.com/images/vYFbP6jEMOSqVYYfPzNJjmHaZg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vYFbP6jEMOSqVYYfPzNJjmHaZg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vYFbP6jEMOSqVYYfPzNJjmHaZg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vYFbP6jEMOSqVYYfPzNJjmHaZg.jpg 3000w\"},className:\"framer-1nbiiun\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qnMReZF5t\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"278px\",src:\"https://framerusercontent.com/images/z4Ig04uZtNnUgkIbTBuZgVRl8Nw.jpg\",srcSet:\"https://framerusercontent.com/images/z4Ig04uZtNnUgkIbTBuZgVRl8Nw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z4Ig04uZtNnUgkIbTBuZgVRl8Nw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z4Ig04uZtNnUgkIbTBuZgVRl8Nw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/z4Ig04uZtNnUgkIbTBuZgVRl8Nw.jpg 3000w\"},className:\"framer-ej24al\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yT4mJBpMa\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"265px\",src:\"https://framerusercontent.com/images/oJXLrZmhTbJNp6lOAMBVBN7Wo0.jpg\",srcSet:\"https://framerusercontent.com/images/oJXLrZmhTbJNp6lOAMBVBN7Wo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oJXLrZmhTbJNp6lOAMBVBN7Wo0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oJXLrZmhTbJNp6lOAMBVBN7Wo0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oJXLrZmhTbJNp6lOAMBVBN7Wo0.jpg 3000w\"},className:\"framer-1y7i8lb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"C29Iq_RSQ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/36h9RVTdbId6LiTxw3mb0K2f9s.jpg\",srcSet:\"https://framerusercontent.com/images/36h9RVTdbId6LiTxw3mb0K2f9s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/36h9RVTdbId6LiTxw3mb0K2f9s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/36h9RVTdbId6LiTxw3mb0K2f9s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/36h9RVTdbId6LiTxw3mb0K2f9s.jpg 3000w\"},className:\"framer-1rbos4l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"prJyqhrw2\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/kmApI0dRUwZxGmdI6AcndKsDIE.jpg\",srcSet:\"https://framerusercontent.com/images/kmApI0dRUwZxGmdI6AcndKsDIE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kmApI0dRUwZxGmdI6AcndKsDIE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kmApI0dRUwZxGmdI6AcndKsDIE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kmApI0dRUwZxGmdI6AcndKsDIE.jpg 3000w\"},className:\"framer-1cp5a2a\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zskZzjLwL\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"297px\",src:\"https://framerusercontent.com/images/kU6Kg2mpLLYevN1lGqHoqgQPdyo.jpg\",srcSet:\"https://framerusercontent.com/images/kU6Kg2mpLLYevN1lGqHoqgQPdyo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kU6Kg2mpLLYevN1lGqHoqgQPdyo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kU6Kg2mpLLYevN1lGqHoqgQPdyo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kU6Kg2mpLLYevN1lGqHoqgQPdyo.jpg 3000w\"},className:\"framer-1aqos9h\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BwBER27st\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/IO758ZdEwXdJoP8efzwBjg2Y98.jpg\",srcSet:\"https://framerusercontent.com/images/IO758ZdEwXdJoP8efzwBjg2Y98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IO758ZdEwXdJoP8efzwBjg2Y98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IO758ZdEwXdJoP8efzwBjg2Y98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IO758ZdEwXdJoP8efzwBjg2Y98.jpg 3000w\"},className:\"framer-cuat5x\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ouNif1Zra\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",src:\"https://framerusercontent.com/images/iINRAY7wwh2agUsrHvOfgdxSKg.jpg\",srcSet:\"https://framerusercontent.com/images/iINRAY7wwh2agUsrHvOfgdxSKg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iINRAY7wwh2agUsrHvOfgdxSKg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iINRAY7wwh2agUsrHvOfgdxSKg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iINRAY7wwh2agUsrHvOfgdxSKg.jpg 3000w\"},className:\"framer-v0ltku\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UUb3iO8Z7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"241px\",src:\"https://framerusercontent.com/images/C2AJNJ7xd013GkjZoLJ988ux4GQ.jpg\",srcSet:\"https://framerusercontent.com/images/C2AJNJ7xd013GkjZoLJ988ux4GQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/C2AJNJ7xd013GkjZoLJ988ux4GQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C2AJNJ7xd013GkjZoLJ988ux4GQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/C2AJNJ7xd013GkjZoLJ988ux4GQ.jpg 3000w\"},className:\"framer-pbqlup\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"R5QU0nwPI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"231px\",src:\"https://framerusercontent.com/images/klMYdFs0zvB8iLu2o2hnHlf78a0.jpg\",srcSet:\"https://framerusercontent.com/images/klMYdFs0zvB8iLu2o2hnHlf78a0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/klMYdFs0zvB8iLu2o2hnHlf78a0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/klMYdFs0zvB8iLu2o2hnHlf78a0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/klMYdFs0zvB8iLu2o2hnHlf78a0.jpg 3000w\"},className:\"framer-79b7k5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BLZNzLIM0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Xh5Xoxijj9mQQ0JpUL0RSMgql8.jpg\",srcSet:\"https://framerusercontent.com/images/Xh5Xoxijj9mQQ0JpUL0RSMgql8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Xh5Xoxijj9mQQ0JpUL0RSMgql8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xh5Xoxijj9mQQ0JpUL0RSMgql8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xh5Xoxijj9mQQ0JpUL0RSMgql8.jpg 3000w\"},className:\"framer-12guovb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YVABdrxV0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"253px\",src:\"https://framerusercontent.com/images/M6C4dNRQlwlM2iGi3Pm23TlMLw.jpg\",srcSet:\"https://framerusercontent.com/images/M6C4dNRQlwlM2iGi3Pm23TlMLw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/M6C4dNRQlwlM2iGi3Pm23TlMLw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/M6C4dNRQlwlM2iGi3Pm23TlMLw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/M6C4dNRQlwlM2iGi3Pm23TlMLw.jpg 3000w\"},className:\"framer-1uax2j3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"aySNjsMqP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/7wb9hbYIRobYQODvG2DLLJWhU.jpg\",srcSet:\"https://framerusercontent.com/images/7wb9hbYIRobYQODvG2DLLJWhU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7wb9hbYIRobYQODvG2DLLJWhU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7wb9hbYIRobYQODvG2DLLJWhU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7wb9hbYIRobYQODvG2DLLJWhU.jpg 3000w\"},className:\"framer-1y9hehs\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cJpBHy5Dc\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/BtjvlQUkZL7remBY4IGIh1iPg.jpg\",srcSet:\"https://framerusercontent.com/images/BtjvlQUkZL7remBY4IGIh1iPg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BtjvlQUkZL7remBY4IGIh1iPg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BtjvlQUkZL7remBY4IGIh1iPg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BtjvlQUkZL7remBY4IGIh1iPg.jpg 3000w\"},className:\"framer-1m0e0mo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jhYZS1GfC\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u9j5cx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HIeMsw7Is-container\",nodeId:\"HIeMsw7Is\",rendersWithMotion:true,scopeId:\"C4Bsykkym\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"HIeMsw7Is\",layoutId:\"HIeMsw7Is\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a2yxsw\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"o0Xe7ax2L\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"342px\",src:\"https://framerusercontent.com/images/YTsoIsn6xpWRjUk0VpQAk1NrZAg.jpg\",srcSet:\"https://framerusercontent.com/images/YTsoIsn6xpWRjUk0VpQAk1NrZAg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YTsoIsn6xpWRjUk0VpQAk1NrZAg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YTsoIsn6xpWRjUk0VpQAk1NrZAg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YTsoIsn6xpWRjUk0VpQAk1NrZAg.jpg 3000w\"},className:\"framer-11ye8e0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"DqaH8MpIk\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Ao4wZTcYqm0nRMaJWRDZPfjqRXw.jpg\",srcSet:\"https://framerusercontent.com/images/Ao4wZTcYqm0nRMaJWRDZPfjqRXw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ao4wZTcYqm0nRMaJWRDZPfjqRXw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ao4wZTcYqm0nRMaJWRDZPfjqRXw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ao4wZTcYqm0nRMaJWRDZPfjqRXw.jpg 3000w\"},className:\"framer-x0wjnq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"E47yKU7dV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"173px\",src:\"https://framerusercontent.com/images/f1vGuxOVay7T311HDUfVFapyg.jpg\",srcSet:\"https://framerusercontent.com/images/f1vGuxOVay7T311HDUfVFapyg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f1vGuxOVay7T311HDUfVFapyg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f1vGuxOVay7T311HDUfVFapyg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/f1vGuxOVay7T311HDUfVFapyg.jpg 3000w\"},className:\"framer-13grvy6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"lAe5fXC54\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/sgVCVFTMXIgVt0tB3sxlrBd6I.jpg\",srcSet:\"https://framerusercontent.com/images/sgVCVFTMXIgVt0tB3sxlrBd6I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sgVCVFTMXIgVt0tB3sxlrBd6I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sgVCVFTMXIgVt0tB3sxlrBd6I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sgVCVFTMXIgVt0tB3sxlrBd6I.jpg 3000w\"},className:\"framer-idhgx7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IJSiqDdln\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/h9gNilHWicQ925l0aqDaphJY.jpg\",srcSet:\"https://framerusercontent.com/images/h9gNilHWicQ925l0aqDaphJY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/h9gNilHWicQ925l0aqDaphJY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/h9gNilHWicQ925l0aqDaphJY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/h9gNilHWicQ925l0aqDaphJY.jpg 3000w\"},className:\"framer-ooqyjp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SAO98Y4bR\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"195px\",src:\"https://framerusercontent.com/images/IULfo1eW20bzawnoWCKb6kokwA.jpg\",srcSet:\"https://framerusercontent.com/images/IULfo1eW20bzawnoWCKb6kokwA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IULfo1eW20bzawnoWCKb6kokwA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IULfo1eW20bzawnoWCKb6kokwA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IULfo1eW20bzawnoWCKb6kokwA.jpg 3000w\"},className:\"framer-1yj7ol5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rnCCq886F\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"195px\",src:\"https://framerusercontent.com/images/qXzpGit1U6sUb8c8ytXbHt5A7U.jpg\",srcSet:\"https://framerusercontent.com/images/qXzpGit1U6sUb8c8ytXbHt5A7U.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/qXzpGit1U6sUb8c8ytXbHt5A7U.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/qXzpGit1U6sUb8c8ytXbHt5A7U.jpg 2000w\"},className:\"framer-3u8vcx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ggcKWtpdq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,positionX:\"right\",positionY:\"center\",sizes:\"231px\",src:\"https://framerusercontent.com/images/UE64zzEPG4lAbC6LCB4aaR3X54.jpg\",srcSet:\"https://framerusercontent.com/images/UE64zzEPG4lAbC6LCB4aaR3X54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UE64zzEPG4lAbC6LCB4aaR3X54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UE64zzEPG4lAbC6LCB4aaR3X54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UE64zzEPG4lAbC6LCB4aaR3X54.jpg 3000w\"},className:\"framer-14ptgtt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"uEAxZUgdO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"184px\",src:\"https://framerusercontent.com/images/0KzymO3A37iQGdhlaA26jbFhxQ.jpg\",srcSet:\"https://framerusercontent.com/images/0KzymO3A37iQGdhlaA26jbFhxQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0KzymO3A37iQGdhlaA26jbFhxQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0KzymO3A37iQGdhlaA26jbFhxQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0KzymO3A37iQGdhlaA26jbFhxQ.jpg 3000w\"},className:\"framer-1b6k5xw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HuJh_0yW3\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"232px\",src:\"https://framerusercontent.com/images/xSM1CS9DRxuVHsFgWxoySRZwUg.jpg\",srcSet:\"https://framerusercontent.com/images/xSM1CS9DRxuVHsFgWxoySRZwUg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xSM1CS9DRxuVHsFgWxoySRZwUg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xSM1CS9DRxuVHsFgWxoySRZwUg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xSM1CS9DRxuVHsFgWxoySRZwUg.jpg 3000w\"},className:\"framer-119w4b\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GPRLJElVa\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"281px\",src:\"https://framerusercontent.com/images/A57v1S5ooNfDqlZ6NNPrK34uqIg.jpg\",srcSet:\"https://framerusercontent.com/images/A57v1S5ooNfDqlZ6NNPrK34uqIg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/A57v1S5ooNfDqlZ6NNPrK34uqIg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/A57v1S5ooNfDqlZ6NNPrK34uqIg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/A57v1S5ooNfDqlZ6NNPrK34uqIg.jpg 3000w\"},className:\"framer-1q7pvr3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HMpO3_zMq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/WlxsscOcusDrMJyzpzTYsEDohc0.jpg\",srcSet:\"https://framerusercontent.com/images/WlxsscOcusDrMJyzpzTYsEDohc0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WlxsscOcusDrMJyzpzTYsEDohc0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WlxsscOcusDrMJyzpzTYsEDohc0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WlxsscOcusDrMJyzpzTYsEDohc0.jpg 3000w\"},className:\"framer-n1iupa\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Ot0hVL13P\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"227px\",src:\"https://framerusercontent.com/images/Bmn200Qd8kdsF9UjdCeRDXxV7M.jpg\",srcSet:\"https://framerusercontent.com/images/Bmn200Qd8kdsF9UjdCeRDXxV7M.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Bmn200Qd8kdsF9UjdCeRDXxV7M.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Bmn200Qd8kdsF9UjdCeRDXxV7M.jpg 2000w\"},className:\"framer-gq2rx2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cBZveGv8Y\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/MInEiWJX1pZRI3kObO0gq84Vvc.jpg\",srcSet:\"https://framerusercontent.com/images/MInEiWJX1pZRI3kObO0gq84Vvc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/MInEiWJX1pZRI3kObO0gq84Vvc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/MInEiWJX1pZRI3kObO0gq84Vvc.jpg 2000w\"},className:\"framer-12xso7l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wKDvhrp0T\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"237px\",src:\"https://framerusercontent.com/images/xLuEwmeP2w4m6KMcirLbiVew7Ng.jpg\",srcSet:\"https://framerusercontent.com/images/xLuEwmeP2w4m6KMcirLbiVew7Ng.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xLuEwmeP2w4m6KMcirLbiVew7Ng.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xLuEwmeP2w4m6KMcirLbiVew7Ng.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xLuEwmeP2w4m6KMcirLbiVew7Ng.jpg 3000w\"},className:\"framer-1jl1kp4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"vrZJ1AOYl\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"237px\",src:\"https://framerusercontent.com/images/whrq3dQfr2H1AOsk723y2ufms9o.jpg\",srcSet:\"https://framerusercontent.com/images/whrq3dQfr2H1AOsk723y2ufms9o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/whrq3dQfr2H1AOsk723y2ufms9o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/whrq3dQfr2H1AOsk723y2ufms9o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/whrq3dQfr2H1AOsk723y2ufms9o.jpg 3000w\"},className:\"framer-swters\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FOlSSDVv0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"184px\",src:\"https://framerusercontent.com/images/ifYvVAzxHAfBQl2xonuQbL6KCsQ.jpg\",srcSet:\"https://framerusercontent.com/images/ifYvVAzxHAfBQl2xonuQbL6KCsQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ifYvVAzxHAfBQl2xonuQbL6KCsQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ifYvVAzxHAfBQl2xonuQbL6KCsQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ifYvVAzxHAfBQl2xonuQbL6KCsQ.jpg 3000w\"},className:\"framer-1s0j3pp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hClDrZHHR\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"247px\",src:\"https://framerusercontent.com/images/0pRcYFimXbKqlUlw5EtOBJECVt4.jpg\",srcSet:\"https://framerusercontent.com/images/0pRcYFimXbKqlUlw5EtOBJECVt4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0pRcYFimXbKqlUlw5EtOBJECVt4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0pRcYFimXbKqlUlw5EtOBJECVt4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0pRcYFimXbKqlUlw5EtOBJECVt4.jpg 3000w\"},className:\"framer-jonmco\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"AtOd5Efjn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/Q3RjH5dzmqGyTckKEeAYUWv7Fr8.jpg\",srcSet:\"https://framerusercontent.com/images/Q3RjH5dzmqGyTckKEeAYUWv7Fr8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Q3RjH5dzmqGyTckKEeAYUWv7Fr8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q3RjH5dzmqGyTckKEeAYUWv7Fr8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Q3RjH5dzmqGyTckKEeAYUWv7Fr8.jpg 3000w\"},className:\"framer-1qx6qrc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rfqqb52jB\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,positionX:\"right\",positionY:\"center\",sizes:\"235px\",src:\"https://framerusercontent.com/images/YxV8sSyKvZ8SJUsmY21gtx0.jpg\",srcSet:\"https://framerusercontent.com/images/YxV8sSyKvZ8SJUsmY21gtx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YxV8sSyKvZ8SJUsmY21gtx0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YxV8sSyKvZ8SJUsmY21gtx0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YxV8sSyKvZ8SJUsmY21gtx0.jpg 3000w\"},className:\"framer-lamu2k\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"aici1UB_o\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/1c9XQC1CZrQ8BeHvTQXVxrRcOGE.jpg\",srcSet:\"https://framerusercontent.com/images/1c9XQC1CZrQ8BeHvTQXVxrRcOGE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1c9XQC1CZrQ8BeHvTQXVxrRcOGE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1c9XQC1CZrQ8BeHvTQXVxrRcOGE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1c9XQC1CZrQ8BeHvTQXVxrRcOGE.jpg 3000w\"},className:\"framer-1vb2g9j\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CRmNn5wsu\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"215px\",src:\"https://framerusercontent.com/images/nSAba7jvjsGDNzl8042iguaZnqM.jpg\",srcSet:\"https://framerusercontent.com/images/nSAba7jvjsGDNzl8042iguaZnqM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/nSAba7jvjsGDNzl8042iguaZnqM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/nSAba7jvjsGDNzl8042iguaZnqM.jpg 2000w\"},className:\"framer-1xs2jtw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"czOumxnX1\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"215px\",src:\"https://framerusercontent.com/images/lYozcXrzYSaO4bJOsCcMio5nuAY.jpg\",srcSet:\"https://framerusercontent.com/images/lYozcXrzYSaO4bJOsCcMio5nuAY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lYozcXrzYSaO4bJOsCcMio5nuAY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lYozcXrzYSaO4bJOsCcMio5nuAY.jpg 2000w\"},className:\"framer-29yfoa\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NHtC_Wpa8\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"317px\",src:\"https://framerusercontent.com/images/CqgftnOAR8rfrkwkOl1fJohcND0.jpg\",srcSet:\"https://framerusercontent.com/images/CqgftnOAR8rfrkwkOl1fJohcND0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CqgftnOAR8rfrkwkOl1fJohcND0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CqgftnOAR8rfrkwkOl1fJohcND0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CqgftnOAR8rfrkwkOl1fJohcND0.jpg 3000w\"},className:\"framer-19h2301\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IJ90NzDEG\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/6vj3MvOHx8d3RQcprf2MW4mTvxo.jpg\",srcSet:\"https://framerusercontent.com/images/6vj3MvOHx8d3RQcprf2MW4mTvxo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6vj3MvOHx8d3RQcprf2MW4mTvxo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6vj3MvOHx8d3RQcprf2MW4mTvxo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6vj3MvOHx8d3RQcprf2MW4mTvxo.jpg 3000w\"},className:\"framer-nrcxfj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BjUntK_i6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/URlmRyxiTkKlwsAgVkVBQOCfE.jpg\",srcSet:\"https://framerusercontent.com/images/URlmRyxiTkKlwsAgVkVBQOCfE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/URlmRyxiTkKlwsAgVkVBQOCfE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/URlmRyxiTkKlwsAgVkVBQOCfE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/URlmRyxiTkKlwsAgVkVBQOCfE.jpg 3000w\"},className:\"framer-16p2hez\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"f4wSzaf50\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/m0Eql4smrYtsykTcyuARyCWNyA.jpg\",srcSet:\"https://framerusercontent.com/images/m0Eql4smrYtsykTcyuARyCWNyA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m0Eql4smrYtsykTcyuARyCWNyA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m0Eql4smrYtsykTcyuARyCWNyA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m0Eql4smrYtsykTcyuARyCWNyA.jpg 3000w\"},className:\"framer-4aoay2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bjp4fQ3jd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",src:\"https://framerusercontent.com/images/gjfiRMzrxlPp9CJaosUz1Dize0.jpg\",srcSet:\"https://framerusercontent.com/images/gjfiRMzrxlPp9CJaosUz1Dize0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gjfiRMzrxlPp9CJaosUz1Dize0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gjfiRMzrxlPp9CJaosUz1Dize0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gjfiRMzrxlPp9CJaosUz1Dize0.jpg 3000w\"},className:\"framer-1mg6c98\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"H6Ko4Oeid\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/QEiEpxWNcSq5rtTqRToBElx2M.jpg\",srcSet:\"https://framerusercontent.com/images/QEiEpxWNcSq5rtTqRToBElx2M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QEiEpxWNcSq5rtTqRToBElx2M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QEiEpxWNcSq5rtTqRToBElx2M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QEiEpxWNcSq5rtTqRToBElx2M.jpg 3000w\"},className:\"framer-1719lux\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eMU_vn92R\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"215px\",src:\"https://framerusercontent.com/images/on4wDcAo5Ay433E1lNlFPppvM.jpg\",srcSet:\"https://framerusercontent.com/images/on4wDcAo5Ay433E1lNlFPppvM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/on4wDcAo5Ay433E1lNlFPppvM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/on4wDcAo5Ay433E1lNlFPppvM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/on4wDcAo5Ay433E1lNlFPppvM.jpg 3000w\"},className:\"framer-1og9khw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"B7G8iteSE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",src:\"https://framerusercontent.com/images/s5iLRCT7jrTnfO7QLDPDh3cO0kc.jpg\",srcSet:\"https://framerusercontent.com/images/s5iLRCT7jrTnfO7QLDPDh3cO0kc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s5iLRCT7jrTnfO7QLDPDh3cO0kc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s5iLRCT7jrTnfO7QLDPDh3cO0kc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s5iLRCT7jrTnfO7QLDPDh3cO0kc.jpg 3000w\"},className:\"framer-58lvml\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"i4b7fQKdd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",src:\"https://framerusercontent.com/images/Po6fUsOEyUrn6ufp35hLwlWCnoc.jpg\",srcSet:\"https://framerusercontent.com/images/Po6fUsOEyUrn6ufp35hLwlWCnoc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Po6fUsOEyUrn6ufp35hLwlWCnoc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Po6fUsOEyUrn6ufp35hLwlWCnoc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Po6fUsOEyUrn6ufp35hLwlWCnoc.jpg 3000w\"},className:\"framer-1xmeuzh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"vZUj0R1se\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/eQ5ngXGWkfFfZScC8lfH4LQOU.jpg\",srcSet:\"https://framerusercontent.com/images/eQ5ngXGWkfFfZScC8lfH4LQOU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eQ5ngXGWkfFfZScC8lfH4LQOU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eQ5ngXGWkfFfZScC8lfH4LQOU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eQ5ngXGWkfFfZScC8lfH4LQOU.jpg 3000w\"},className:\"framer-1vxwb9p\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"gJwZYDDUg\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tLwOl.framer-4qsqr3, .framer-tLwOl .framer-4qsqr3 { display: block; }\",\".framer-tLwOl.framer-ap8ja8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-tLwOl .framer-p2d667-container, .framer-tLwOl .framer-1u9j5cx-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-tLwOl .framer-1uumed7, .framer-tLwOl .framer-a2yxsw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tLwOl .framer-1gpxxap, .framer-tLwOl .framer-1rsqws9, .framer-tLwOl .framer-cuat5x { aspect-ratio: 0.8043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-h0b7fb, .framer-tLwOl .framer-1k5p9hz, .framer-tLwOl .framer-1usg6p, .framer-tLwOl .framer-1kcvh6g { flex: none; height: 184px; overflow: hidden; position: relative; width: 221px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-rrhr4a, .framer-tLwOl .framer-1mg8gv5, .framer-tLwOl .framer-pb2lky, .framer-tLwOl .framer-1d30qyh, .framer-tLwOl .framer-47splb, .framer-tLwOl .framer-dcs130, .framer-tLwOl .framer-1rbos4l, .framer-tLwOl .framer-1cp5a2a, .framer-tLwOl .framer-12guovb, .framer-tLwOl .framer-1y9hehs, .framer-tLwOl .framer-1m0e0mo, .framer-tLwOl .framer-x0wjnq, .framer-tLwOl .framer-idhgx7, .framer-tLwOl .framer-ooqyjp, .framer-tLwOl .framer-n1iupa, .framer-tLwOl .framer-12xso7l, .framer-tLwOl .framer-1vb2g9j, .framer-tLwOl .framer-16p2hez, .framer-tLwOl .framer-4aoay2, .framer-tLwOl .framer-1719lux, .framer-tLwOl .framer-1vxwb9p { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1av3282 { flex: none; height: 184px; overflow: hidden; position: relative; width: 216px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-3dixzw { flex: none; height: 184px; overflow: hidden; position: relative; width: 298px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-jjk72, .framer-tLwOl .framer-1yj7ol5, .framer-tLwOl .framer-3u8vcx { flex: none; height: 184px; overflow: hidden; position: relative; width: 195px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1ud9wvb { flex: none; height: 184px; overflow: hidden; position: relative; width: 233px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-3p6cxb { flex: none; height: 184px; overflow: hidden; position: relative; width: 275px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-jt7v7l { flex: none; height: 184px; overflow: hidden; position: relative; width: 164px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1ysm4tz, .framer-tLwOl .framer-165ilg3, .framer-tLwOl .framer-1nbiiun, .framer-tLwOl .framer-ej24al { flex: none; height: 184px; overflow: hidden; position: relative; width: 278px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1y7i8lb { flex: none; height: 184px; overflow: hidden; position: relative; width: 265px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1aqos9h { flex: none; height: 184px; overflow: hidden; position: relative; width: 297px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-v0ltku { flex: none; height: 184px; overflow: hidden; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-pbqlup { flex: none; height: 184px; overflow: hidden; position: relative; width: 241px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-79b7k5, .framer-tLwOl .framer-14ptgtt { flex: none; height: 184px; overflow: hidden; position: relative; width: 231px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1uax2j3 { flex: none; height: 184px; overflow: hidden; position: relative; width: 253px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-11ye8e0 { flex: none; height: 184px; overflow: hidden; position: relative; width: 342px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-13grvy6 { flex: none; height: 184px; overflow: hidden; position: relative; width: 173px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1b6k5xw, .framer-tLwOl .framer-1s0j3pp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-119w4b { flex: none; height: 184px; overflow: hidden; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1q7pvr3 { flex: none; height: 184px; overflow: hidden; position: relative; width: 281px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-gq2rx2 { flex: none; height: 184px; overflow: hidden; position: relative; width: 227px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1jl1kp4, .framer-tLwOl .framer-swters { flex: none; height: 184px; overflow: hidden; position: relative; width: 237px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-jonmco { flex: none; height: 184px; overflow: hidden; position: relative; width: 247px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1qx6qrc { flex: none; height: 184px; overflow: hidden; position: relative; width: 207px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-lamu2k { flex: none; height: 184px; overflow: hidden; position: relative; width: 235px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1xs2jtw, .framer-tLwOl .framer-29yfoa, .framer-tLwOl .framer-1og9khw { flex: none; height: 184px; overflow: hidden; position: relative; width: 215px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-19h2301 { flex: none; height: 184px; overflow: hidden; position: relative; width: 317px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-nrcxfj { flex: none; height: 184px; overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tLwOl .framer-1mg6c98, .framer-tLwOl .framer-58lvml, .framer-tLwOl .framer-1xmeuzh { flex: none; height: 184px; overflow: hidden; position: relative; width: 337px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tLwOl.framer-ap8ja8, .framer-tLwOl .framer-1uumed7, .framer-tLwOl .framer-a2yxsw { gap: 0px; } .framer-tLwOl.framer-ap8ja8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tLwOl.framer-ap8ja8 > :first-child { margin-top: 0px; } .framer-tLwOl.framer-ap8ja8 > :last-child { margin-bottom: 0px; } .framer-tLwOl .framer-1uumed7 > *, .framer-tLwOl .framer-a2yxsw > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-tLwOl .framer-1uumed7 > :first-child, .framer-tLwOl .framer-a2yxsw > :first-child { margin-left: 0px; } .framer-tLwOl .framer-1uumed7 > :last-child, .framer-tLwOl .framer-a2yxsw > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC4Bsykkym=withCSS(Component,css,\"framer-tLwOl\");export default FramerC4Bsykkym;FramerC4Bsykkym.displayName=\"KBW\";FramerC4Bsykkym.defaultProps={height:388,width:1148};addFonts(FramerC4Bsykkym,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC4Bsykkym\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1148\",\"framerIntrinsicHeight\":\"388\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C4Bsykkym.map", "// Generated by Framer (63ecd5c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-Rfn5s\";const variantClassNames={UBSEuQk3R:\"framer-v-6kck1n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"UBSEuQk3R\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-6kck1n\",className,classNames),\"data-framer-name\":\"Super AI Singapore\",layoutDependency:layoutDependency,layoutId:\"UBSEuQk3R\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vz05l1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UhxtI4rFb-container\",nodeId:\"UhxtI4rFb\",rendersWithMotion:true,scopeId:\"FeeRnXUrw\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"UhxtI4rFb\",layoutId:\"UhxtI4rFb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10k1rb8\",\"data-framer-name\":\"Super AI Singapore Gallery Row\",layoutDependency:layoutDependency,layoutId:\"t3fzSFEuX\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/uBU5q05dmuWRDVdJ9GsRpM5PU.webp\"},className:\"framer-1q90ucm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GoCVCzo4h\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/xvgVSZH30It8UZxzU6b0e3k0WY0.webp\"},className:\"framer-njts4z\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SU2HA1i7p\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/OwDsnYj3EwNUJGy3PvBem8B2pyM.webp\"},className:\"framer-c9wr3d\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fpALNE1Ln\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/V3L63hEqjU63C7mZ1or24jDrm8A.webp\"},className:\"framer-7shwkp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"gvflA030O\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,src:\"https://framerusercontent.com/images/BLjLiitj6nnzh5MJLf7KCPa2w.webp\"},className:\"framer-1murm0o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Exdu3AM_G\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/ZzVSpxRYv44ZxUJxOVfuF2vgys.webp\"},className:\"framer-tnlrk2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"o6OACpKkV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,src:\"https://framerusercontent.com/images/pmIysUdQGXmE5lqqdeDu9KpwbV8.webp\"},className:\"framer-bi6r0i\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pUXNS4yJF\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/0qO2UcV9joKuBh3rw2zfACkJfc4.webp\"},className:\"framer-xty3vl\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qTQEZhIyb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/SlUJRya5KUADxWOUzYbMFlyA4.webp\"},className:\"framer-13jb8k8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XZaQSCiRx\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/V9m3Dw3cLzBvG3sC3AcEj9UWI.webp\"},className:\"framer-128zdxe\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XSlBf7OqN\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/ylVagTHKgrpM4Olg7qYEfod8Cww.webp\"},className:\"framer-1x851mv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qzjavzZqK\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/h0YTTI4HRfMmZqoLWMW30M1ea8.webp\"},className:\"framer-pb4k5q\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"DkAOEDjgj\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/wCHPJx5xz943vcCC06xCN2sMuGk.webp\"},className:\"framer-h7uuqn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GdwlG9NUN\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,src:\"https://framerusercontent.com/images/O1QTfR96zIzGEKKqFh5ZkyDL18.webp\"},className:\"framer-4axib0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xsw7AolMj\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/qoOhgwOvsLIWxHFlgVPdHVPea00.webp\"},className:\"framer-1t4450p\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FZtWcNSQU\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:44,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lt9wll-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Cb5s2oFmv-container\",nodeId:\"Cb5s2oFmv\",rendersWithMotion:true,scopeId:\"FeeRnXUrw\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"Cb5s2oFmv\",layoutId:\"Cb5s2oFmv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-da3ysz\",\"data-framer-name\":\"Super AI Singapore Gallery Row2\",layoutDependency:layoutDependency,layoutId:\"hsGOpp_GI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/grfmoz1gIZIhxoNMpJC4zzfc.webp\"},className:\"framer-19ju01f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KjKpd1LWS\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,src:\"https://framerusercontent.com/images/531H6WxI4BHkbKWpErrhJAAiaFQ.webp\"},className:\"framer-1tl3h5f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JjmOVNm3p\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/NAGCYTY8rRKX5KIUpG6SqmVKN4.webp\"},className:\"framer-jibrn8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BRqSKTobI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/QzRTc7I4PG58gIqiyyrqKFbMeD8.webp\"},className:\"framer-ih08e2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SbX4uLbtf\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/M9x04daZsInO8JKAmA3Q5RVk7S4.webp\"},className:\"framer-c0ulf9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"i4zOEn4zi\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/BRrcV2rfSzyeZOfYkILFmBgBhLM.webp\"},className:\"framer-ygl55v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"o8A2miuA6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,src:\"https://framerusercontent.com/images/Q7YfHPY3jzlXEHqxPJxUot1RWls.webp\"},className:\"framer-3uwnfh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wHcV9S_wE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/h4QClFVRgUaNEWj6dq9PKe9UE.webp\"},className:\"framer-19z3g2b\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YkfztmrMA\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/nNpGxIJWs3ysQ3TWOS5oMShHGAE.webp\"},className:\"framer-1bnmlq8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"f3TPmT29B\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/p9YKrjyWzxaJCosJznZYiQr45M.webp\"},className:\"framer-1xdvve2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VZIrqweFw\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/ht4lJwi0lTBXYSNsJAKYvQzdRY.webp\"},className:\"framer-jpcbrl\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SuXnLfaHo\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/tQGD4IwPqtaeve9Lc3hKskRvE.webp\"},className:\"framer-1nyw62l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QK3mvFYX_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/0HKJEQG2rB2bHrfoNPhdJ9vs0.webp\"},className:\"framer-1w9eexl\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tLhA0sKy5\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/u58KlP2h0JE1Wo6AVLYI4ckcTFs.webp\"},className:\"framer-oss0qv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"H6_DWgrXL\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,src:\"https://framerusercontent.com/images/FK8PnAJvJmE6nT4CbfyJknnmnHg.webp\"},className:\"framer-1npdk4q\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"DzweAx4yo\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:44,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rfn5s.framer-1qbmvac, .framer-Rfn5s .framer-1qbmvac { display: block; }\",\".framer-Rfn5s.framer-6kck1n { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-Rfn5s .framer-vz05l1-container, .framer-Rfn5s .framer-lt9wll-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-Rfn5s .framer-10k1rb8, .framer-Rfn5s .framer-da3ysz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Rfn5s .framer-1q90ucm, .framer-Rfn5s .framer-njts4z, .framer-Rfn5s .framer-c9wr3d, .framer-Rfn5s .framer-7shwkp, .framer-Rfn5s .framer-tnlrk2, .framer-Rfn5s .framer-xty3vl, .framer-Rfn5s .framer-13jb8k8, .framer-Rfn5s .framer-128zdxe, .framer-Rfn5s .framer-1x851mv, .framer-Rfn5s .framer-pb4k5q, .framer-Rfn5s .framer-h7uuqn, .framer-Rfn5s .framer-1t4450p, .framer-Rfn5s .framer-19ju01f, .framer-Rfn5s .framer-jibrn8, .framer-Rfn5s .framer-ih08e2, .framer-Rfn5s .framer-c0ulf9, .framer-Rfn5s .framer-ygl55v, .framer-Rfn5s .framer-19z3g2b, .framer-Rfn5s .framer-1bnmlq8, .framer-Rfn5s .framer-1xdvve2, .framer-Rfn5s .framer-jpcbrl, .framer-Rfn5s .framer-1nyw62l, .framer-Rfn5s .framer-1w9eexl, .framer-Rfn5s .framer-oss0qv { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rfn5s .framer-1murm0o, .framer-Rfn5s .framer-bi6r0i, .framer-Rfn5s .framer-4axib0, .framer-Rfn5s .framer-1tl3h5f, .framer-Rfn5s .framer-3uwnfh, .framer-Rfn5s .framer-1npdk4q { aspect-ratio: 0.8043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rfn5s.framer-6kck1n, .framer-Rfn5s .framer-10k1rb8, .framer-Rfn5s .framer-da3ysz { gap: 0px; } .framer-Rfn5s.framer-6kck1n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Rfn5s.framer-6kck1n > :first-child { margin-top: 0px; } .framer-Rfn5s.framer-6kck1n > :last-child { margin-bottom: 0px; } .framer-Rfn5s .framer-10k1rb8 > *, .framer-Rfn5s .framer-da3ysz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Rfn5s .framer-10k1rb8 > :first-child, .framer-Rfn5s .framer-da3ysz > :first-child { margin-left: 0px; } .framer-Rfn5s .framer-10k1rb8 > :last-child, .framer-Rfn5s .framer-da3ysz > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFeeRnXUrw=withCSS(Component,css,\"framer-Rfn5s\");export default FramerFeeRnXUrw;FramerFeeRnXUrw.displayName=\"Gallery / Token2049 Ticker\";FramerFeeRnXUrw.defaultProps={height:388,width:1148};addFonts(FramerFeeRnXUrw,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFeeRnXUrw\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1148\",\"framerIntrinsicHeight\":\"388\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FeeRnXUrw.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-m5hLI\";const variantClassNames={U1Pwbbjkl:\"framer-v-14crhld\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"U1Pwbbjkl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-14crhld\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"U1Pwbbjkl\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-838aml-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"GAInuh6m8-container\",nodeId:\"GAInuh6m8\",rendersWithMotion:true,scopeId:\"NVgXGH5ON\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"GAInuh6m8\",layoutId:\"GAInuh6m8\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-szv34e\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"HiDXX9G2y\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/yGHvn16RB4YLMk2C0C7zLZVHQ.jpg\",srcSet:\"https://framerusercontent.com/images/yGHvn16RB4YLMk2C0C7zLZVHQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yGHvn16RB4YLMk2C0C7zLZVHQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yGHvn16RB4YLMk2C0C7zLZVHQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yGHvn16RB4YLMk2C0C7zLZVHQ.jpg 3000w\"},className:\"framer-1mef2f6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Dfnbb8VsM\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg\",srcSet:\"https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3TYYzxwlOiVQtKjo6Lt4QKJXqE.jpg 3000w\"},className:\"framer-489io6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"D_f0LCdlj\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/q6dZFKFitmj6F8h2WqB8vnbvds.jpg\",srcSet:\"https://framerusercontent.com/images/q6dZFKFitmj6F8h2WqB8vnbvds.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/q6dZFKFitmj6F8h2WqB8vnbvds.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/q6dZFKFitmj6F8h2WqB8vnbvds.jpg 2000w\"},className:\"framer-hfptw8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"k33O6abwD\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg\",srcSet:\"https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg 3000w\"},className:\"framer-1omowbk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"p12ge44ZK\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"189px\",src:\"https://framerusercontent.com/images/MBhNAP2249ZuXlHEq7Dzt7vOlk.jpg\",srcSet:\"https://framerusercontent.com/images/MBhNAP2249ZuXlHEq7Dzt7vOlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MBhNAP2249ZuXlHEq7Dzt7vOlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MBhNAP2249ZuXlHEq7Dzt7vOlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MBhNAP2249ZuXlHEq7Dzt7vOlk.jpg 3000w\"},className:\"framer-139jp85\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"i7yQObj3R\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/l3b9JY6ByESW7BeLP8yB3yong.jpg\",srcSet:\"https://framerusercontent.com/images/l3b9JY6ByESW7BeLP8yB3yong.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l3b9JY6ByESW7BeLP8yB3yong.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l3b9JY6ByESW7BeLP8yB3yong.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/l3b9JY6ByESW7BeLP8yB3yong.jpg 3000w\"},className:\"framer-a7v9im\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qbcZfAeyU\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/AtWqLsAZfH8dN4kGN6QznHDLGo.jpg\",srcSet:\"https://framerusercontent.com/images/AtWqLsAZfH8dN4kGN6QznHDLGo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AtWqLsAZfH8dN4kGN6QznHDLGo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AtWqLsAZfH8dN4kGN6QznHDLGo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AtWqLsAZfH8dN4kGN6QznHDLGo.jpg 3000w\"},className:\"framer-yg4t9e\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"gEgt_vSHZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg\",srcSet:\"https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xxg2bs0LL5pAhtQeltWlhpQW7KQ.jpg 3000w\"},className:\"framer-1eoqv0r\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"URqYbkoGj\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"155px\",src:\"https://framerusercontent.com/images/Wglhm4MmRdw1mBsg7knwOGJMgs.jpg\",srcSet:\"https://framerusercontent.com/images/Wglhm4MmRdw1mBsg7knwOGJMgs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wglhm4MmRdw1mBsg7knwOGJMgs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wglhm4MmRdw1mBsg7knwOGJMgs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Wglhm4MmRdw1mBsg7knwOGJMgs.jpg 3000w\"},className:\"framer-293vrl\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nisCKBpec\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/Asiz9a8ttArkpBC3ei0CXl5B0.jpg\",srcSet:\"https://framerusercontent.com/images/Asiz9a8ttArkpBC3ei0CXl5B0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Asiz9a8ttArkpBC3ei0CXl5B0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Asiz9a8ttArkpBC3ei0CXl5B0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Asiz9a8ttArkpBC3ei0CXl5B0.jpg 3000w\"},className:\"framer-11ytrij\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sjDav_42s\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/SxzoJPMT6hSXzQvBtJX6sRDRefI.jpg\",srcSet:\"https://framerusercontent.com/images/SxzoJPMT6hSXzQvBtJX6sRDRefI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SxzoJPMT6hSXzQvBtJX6sRDRefI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SxzoJPMT6hSXzQvBtJX6sRDRefI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SxzoJPMT6hSXzQvBtJX6sRDRefI.jpg 3000w\"},className:\"framer-1l97vog\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cff0mmkUV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"233px\",src:\"https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg\",srcSet:\"https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cQds1HDmw8AT2zDV7bPLA6g46tE.jpg 3000w\"},className:\"framer-d0qkj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iJwQwGFNY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/PH1CRghMSwDUzq86x6XvgXe47c.jpg\",srcSet:\"https://framerusercontent.com/images/PH1CRghMSwDUzq86x6XvgXe47c.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/PH1CRghMSwDUzq86x6XvgXe47c.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/PH1CRghMSwDUzq86x6XvgXe47c.jpg 2000w\"},className:\"framer-va36pn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qLRoOkSZT\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/YGFAPzjSUIcWXwWPpfo3VP0c3k.jpg\",srcSet:\"https://framerusercontent.com/images/YGFAPzjSUIcWXwWPpfo3VP0c3k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YGFAPzjSUIcWXwWPpfo3VP0c3k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YGFAPzjSUIcWXwWPpfo3VP0c3k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YGFAPzjSUIcWXwWPpfo3VP0c3k.jpg 3000w\"},className:\"framer-1t19n0a\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zF2ZwjFEq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1306n2j\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fR7s2KQ_s\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ysvQBL984P9AmrBWhSn7Qb0FQ.jpg\",srcSet:\"https://framerusercontent.com/images/ysvQBL984P9AmrBWhSn7Qb0FQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ysvQBL984P9AmrBWhSn7Qb0FQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ysvQBL984P9AmrBWhSn7Qb0FQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ysvQBL984P9AmrBWhSn7Qb0FQ.jpg 3000w\"},className:\"framer-26azfn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QZJwrUB6a\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/BwnpQYDoCWpVgZMDgGmZgjhk75Y.jpg\",srcSet:\"https://framerusercontent.com/images/BwnpQYDoCWpVgZMDgGmZgjhk75Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BwnpQYDoCWpVgZMDgGmZgjhk75Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BwnpQYDoCWpVgZMDgGmZgjhk75Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BwnpQYDoCWpVgZMDgGmZgjhk75Y.jpg 3000w\"},className:\"framer-1hn2nx6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"banFCVgv7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/gt0BEDwvnx3Ilo9jz4KdxULdjHk.jpg\",srcSet:\"https://framerusercontent.com/images/gt0BEDwvnx3Ilo9jz4KdxULdjHk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gt0BEDwvnx3Ilo9jz4KdxULdjHk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gt0BEDwvnx3Ilo9jz4KdxULdjHk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gt0BEDwvnx3Ilo9jz4KdxULdjHk.jpg 3000w\"},className:\"framer-16mie9k\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VEMTYQy5o\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/qwGqdegvefnDXhOjhtGdY2XYr4o.jpg\",srcSet:\"https://framerusercontent.com/images/qwGqdegvefnDXhOjhtGdY2XYr4o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qwGqdegvefnDXhOjhtGdY2XYr4o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qwGqdegvefnDXhOjhtGdY2XYr4o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qwGqdegvefnDXhOjhtGdY2XYr4o.jpg 3000w\"},className:\"framer-5snhd7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eS_dnIwGK\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/5ynqjOpdC2HlqeIz4FO2LP6E.jpg\",srcSet:\"https://framerusercontent.com/images/5ynqjOpdC2HlqeIz4FO2LP6E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5ynqjOpdC2HlqeIz4FO2LP6E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5ynqjOpdC2HlqeIz4FO2LP6E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5ynqjOpdC2HlqeIz4FO2LP6E.jpg 3000w\"},className:\"framer-124gqig\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MbvEYE8es\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/2sQTLZVSaJQJ2KacxvNM1pbB7C8.jpg\",srcSet:\"https://framerusercontent.com/images/2sQTLZVSaJQJ2KacxvNM1pbB7C8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/2sQTLZVSaJQJ2KacxvNM1pbB7C8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/2sQTLZVSaJQJ2KacxvNM1pbB7C8.jpg 2000w\"},className:\"framer-ddpw2o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Zi8XHq32P\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/GmjWbKSPi9dJDz9vTBtvUt36NQ.jpg\",srcSet:\"https://framerusercontent.com/images/GmjWbKSPi9dJDz9vTBtvUt36NQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GmjWbKSPi9dJDz9vTBtvUt36NQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GmjWbKSPi9dJDz9vTBtvUt36NQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GmjWbKSPi9dJDz9vTBtvUt36NQ.jpg 3000w\"},className:\"framer-ya0w55\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SSx0WUi8_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/oYZLRLArGUKZnDzDnMc2JzjDZ78.jpg\",srcSet:\"https://framerusercontent.com/images/oYZLRLArGUKZnDzDnMc2JzjDZ78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oYZLRLArGUKZnDzDnMc2JzjDZ78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oYZLRLArGUKZnDzDnMc2JzjDZ78.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oYZLRLArGUKZnDzDnMc2JzjDZ78.jpg 3000w\"},className:\"framer-4wglgj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Qjke5qwEu\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/wH050JvT1NxxhX78Mo4cnnpTyY.jpg\",srcSet:\"https://framerusercontent.com/images/wH050JvT1NxxhX78Mo4cnnpTyY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wH050JvT1NxxhX78Mo4cnnpTyY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wH050JvT1NxxhX78Mo4cnnpTyY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wH050JvT1NxxhX78Mo4cnnpTyY.jpg 3000w\"},className:\"framer-jlz3kp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rWFVM_2Oo\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/cGzxVMrz51RQt4H2eguQwMsDtU.jpg\",srcSet:\"https://framerusercontent.com/images/cGzxVMrz51RQt4H2eguQwMsDtU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cGzxVMrz51RQt4H2eguQwMsDtU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cGzxVMrz51RQt4H2eguQwMsDtU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cGzxVMrz51RQt4H2eguQwMsDtU.jpg 3000w\"},className:\"framer-19bol35\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kjq5ZEdIt\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/zhmfDeANU396GarUmYHlYDV8yDQ.jpg\",srcSet:\"https://framerusercontent.com/images/zhmfDeANU396GarUmYHlYDV8yDQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zhmfDeANU396GarUmYHlYDV8yDQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zhmfDeANU396GarUmYHlYDV8yDQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zhmfDeANU396GarUmYHlYDV8yDQ.jpg 3000w\"},className:\"framer-edcmza\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PMI974MW0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/7tFGQpIGlqomxHrQYt2VOH9jMc.jpg\",srcSet:\"https://framerusercontent.com/images/7tFGQpIGlqomxHrQYt2VOH9jMc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7tFGQpIGlqomxHrQYt2VOH9jMc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7tFGQpIGlqomxHrQYt2VOH9jMc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7tFGQpIGlqomxHrQYt2VOH9jMc.jpg 3000w\"},className:\"framer-memoh2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Ft5zch5Bc\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/kj01IYMnb45DejWp6KcoRxik8.jpg\",srcSet:\"https://framerusercontent.com/images/kj01IYMnb45DejWp6KcoRxik8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kj01IYMnb45DejWp6KcoRxik8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kj01IYMnb45DejWp6KcoRxik8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kj01IYMnb45DejWp6KcoRxik8.jpg 3000w\"},className:\"framer-mnmwcw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"D199nrUuW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/uFtqVvTM0KzafrOjyPKJjQ8G4.jpg\",srcSet:\"https://framerusercontent.com/images/uFtqVvTM0KzafrOjyPKJjQ8G4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uFtqVvTM0KzafrOjyPKJjQ8G4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uFtqVvTM0KzafrOjyPKJjQ8G4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uFtqVvTM0KzafrOjyPKJjQ8G4.jpg 3000w\"},className:\"framer-wyuu8n\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sjVRB1gXq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/VzJjxBfUOHKuN7h5hMKke2gQYM.jpg\",srcSet:\"https://framerusercontent.com/images/VzJjxBfUOHKuN7h5hMKke2gQYM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VzJjxBfUOHKuN7h5hMKke2gQYM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VzJjxBfUOHKuN7h5hMKke2gQYM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VzJjxBfUOHKuN7h5hMKke2gQYM.jpg 3000w\"},className:\"framer-1831lyv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GLpxlrQ8f\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/pKVjng3o9UmRyVCdSIRCPbvYJk.jpg\",srcSet:\"https://framerusercontent.com/images/pKVjng3o9UmRyVCdSIRCPbvYJk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pKVjng3o9UmRyVCdSIRCPbvYJk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pKVjng3o9UmRyVCdSIRCPbvYJk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pKVjng3o9UmRyVCdSIRCPbvYJk.jpg 3000w\"},className:\"framer-16ckm6r\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"r0HiEciG7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/Od73FjoK8W0pmTxfH7zwMxGX0ZI.jpg\",srcSet:\"https://framerusercontent.com/images/Od73FjoK8W0pmTxfH7zwMxGX0ZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Od73FjoK8W0pmTxfH7zwMxGX0ZI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Od73FjoK8W0pmTxfH7zwMxGX0ZI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Od73FjoK8W0pmTxfH7zwMxGX0ZI.jpg 3000w\"},className:\"framer-1deuy2x\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CK1vqQaHO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"347px\",src:\"https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg\",srcSet:\"https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg 3000w\"},className:\"framer-5kiaqg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jO3Sm_NbZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-8r2yup\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ivrDrOdef\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/L3kPGXzVRIB2K1x661wsvrcgcg.jpg\",srcSet:\"https://framerusercontent.com/images/L3kPGXzVRIB2K1x661wsvrcgcg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L3kPGXzVRIB2K1x661wsvrcgcg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/L3kPGXzVRIB2K1x661wsvrcgcg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/L3kPGXzVRIB2K1x661wsvrcgcg.jpg 3000w\"},className:\"framer-11os3sh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Bfc0FIEBx\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1octhmp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QH9z76YqS\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/sSaestF7NPUH5TTpHUAbYRbN6w.jpg\",srcSet:\"https://framerusercontent.com/images/sSaestF7NPUH5TTpHUAbYRbN6w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sSaestF7NPUH5TTpHUAbYRbN6w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sSaestF7NPUH5TTpHUAbYRbN6w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sSaestF7NPUH5TTpHUAbYRbN6w.jpg 3000w\"},className:\"framer-5dzod4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QBe1LE3D_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/KifWctEILVYxzm09vDNtORV4PY.jpg\",srcSet:\"https://framerusercontent.com/images/KifWctEILVYxzm09vDNtORV4PY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KifWctEILVYxzm09vDNtORV4PY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KifWctEILVYxzm09vDNtORV4PY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KifWctEILVYxzm09vDNtORV4PY.jpg 3000w\"},className:\"framer-rrb2bn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Z13EK6lku\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/P4H20cAwqf0R0feRD5bs8vrL4rM.jpg\",srcSet:\"https://framerusercontent.com/images/P4H20cAwqf0R0feRD5bs8vrL4rM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P4H20cAwqf0R0feRD5bs8vrL4rM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P4H20cAwqf0R0feRD5bs8vrL4rM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/P4H20cAwqf0R0feRD5bs8vrL4rM.jpg 3000w\"},className:\"framer-1j33bog\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hvdG80f2z\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-9c4clq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bbBA4ZtJM\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/XZOc0dwA7603ic5rSv4txiWCXBo.jpg\",srcSet:\"https://framerusercontent.com/images/XZOc0dwA7603ic5rSv4txiWCXBo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XZOc0dwA7603ic5rSv4txiWCXBo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XZOc0dwA7603ic5rSv4txiWCXBo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XZOc0dwA7603ic5rSv4txiWCXBo.jpg 3000w\"},className:\"framer-17r1rov\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Us1uXFhMI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1parqrn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"n6TyktaWw\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/tek6oDod7lzuXG7qJ0GFK8H5ms.jpg\",srcSet:\"https://framerusercontent.com/images/tek6oDod7lzuXG7qJ0GFK8H5ms.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tek6oDod7lzuXG7qJ0GFK8H5ms.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tek6oDod7lzuXG7qJ0GFK8H5ms.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tek6oDod7lzuXG7qJ0GFK8H5ms.jpg 3000w\"},className:\"framer-jkoly9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FJlhV4PpF\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/LTJe54dFjiEe0uXKxpbss2UOFH4.jpg\",srcSet:\"https://framerusercontent.com/images/LTJe54dFjiEe0uXKxpbss2UOFH4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LTJe54dFjiEe0uXKxpbss2UOFH4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LTJe54dFjiEe0uXKxpbss2UOFH4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LTJe54dFjiEe0uXKxpbss2UOFH4.jpg 3000w\"},className:\"framer-1o57f1a\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KfQAPlbrh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/b7xh8V6C6O0ykZqOvwrmwdfV2oc.jpg\",srcSet:\"https://framerusercontent.com/images/b7xh8V6C6O0ykZqOvwrmwdfV2oc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/b7xh8V6C6O0ykZqOvwrmwdfV2oc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/b7xh8V6C6O0ykZqOvwrmwdfV2oc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/b7xh8V6C6O0ykZqOvwrmwdfV2oc.jpg 3000w\"},className:\"framer-1ugj265\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OYg_7soJZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/yoFGW5KFCsq5MQf2ym3YWPz21qE.jpg\",srcSet:\"https://framerusercontent.com/images/yoFGW5KFCsq5MQf2ym3YWPz21qE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/yoFGW5KFCsq5MQf2ym3YWPz21qE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/yoFGW5KFCsq5MQf2ym3YWPz21qE.jpg 2000w\"},className:\"framer-p1gsqm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KsvxU6ZvY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-7igcm9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QX9ArmJM0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"168px\",src:\"https://framerusercontent.com/images/9zxVEIg8gc05V3KvmMXwRKWU84.jpg\",srcSet:\"https://framerusercontent.com/images/9zxVEIg8gc05V3KvmMXwRKWU84.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9zxVEIg8gc05V3KvmMXwRKWU84.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9zxVEIg8gc05V3KvmMXwRKWU84.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9zxVEIg8gc05V3KvmMXwRKWU84.jpg 3000w\"},className:\"framer-1o92kiu\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cWkgDmQsB\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/knOTcQPZn7EPV1qYIw19hh5yX8o.jpg\",srcSet:\"https://framerusercontent.com/images/knOTcQPZn7EPV1qYIw19hh5yX8o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/knOTcQPZn7EPV1qYIw19hh5yX8o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/knOTcQPZn7EPV1qYIw19hh5yX8o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/knOTcQPZn7EPV1qYIw19hh5yX8o.jpg 3000w\"},className:\"framer-1cu92n2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IsmeSP_Hd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-5lpsv2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RSbDURUvq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/v9c3aV3veFcnLrsD1ug4XzUSR0s.jpg\",srcSet:\"https://framerusercontent.com/images/v9c3aV3veFcnLrsD1ug4XzUSR0s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v9c3aV3veFcnLrsD1ug4XzUSR0s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v9c3aV3veFcnLrsD1ug4XzUSR0s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/v9c3aV3veFcnLrsD1ug4XzUSR0s.jpg 3000w\"},className:\"framer-1nlyjl9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BTTvFjFw6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1gb4ek1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"svfpQzzuF\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/171l4wGIGqeLS5lNENk85BMJsU.jpg\",srcSet:\"https://framerusercontent.com/images/171l4wGIGqeLS5lNENk85BMJsU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/171l4wGIGqeLS5lNENk85BMJsU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/171l4wGIGqeLS5lNENk85BMJsU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/171l4wGIGqeLS5lNENk85BMJsU.jpg 3000w\"},className:\"framer-qqmx2w\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"WZVIKrDEO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-3qvfwo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ytcVj9QB3\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/4cDmjcOhBRR4uiRTTaGYOkqFnyY.jpg\",srcSet:\"https://framerusercontent.com/images/4cDmjcOhBRR4uiRTTaGYOkqFnyY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4cDmjcOhBRR4uiRTTaGYOkqFnyY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4cDmjcOhBRR4uiRTTaGYOkqFnyY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4cDmjcOhBRR4uiRTTaGYOkqFnyY.jpg 3000w\"},className:\"framer-t8kog9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BOdqUbH7S\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1usr1rg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"akYTOJkGM\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1win7xx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pjLlgehiH-container\",nodeId:\"pjLlgehiH\",rendersWithMotion:true,scopeId:\"NVgXGH5ON\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"pjLlgehiH\",layoutId:\"pjLlgehiH\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3gwodz\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"ZuAj68kVm\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"339px\",src:\"https://framerusercontent.com/images/NQHicWORiH84JXVlfT13PCDGvD8.jpg\",srcSet:\"https://framerusercontent.com/images/NQHicWORiH84JXVlfT13PCDGvD8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NQHicWORiH84JXVlfT13PCDGvD8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NQHicWORiH84JXVlfT13PCDGvD8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NQHicWORiH84JXVlfT13PCDGvD8.jpg 3000w\"},className:\"framer-12x7y62\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wI2c_VGpU\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"232px\",src:\"https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg\",srcSet:\"https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VLsb9R5syi4yO730ReGwzsnlV8.jpg 3000w\"},className:\"framer-ym1uw8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HP35lFDMn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/vja9zaFtQZG1CAJw2BAXsuuzs.jpg\",srcSet:\"https://framerusercontent.com/images/vja9zaFtQZG1CAJw2BAXsuuzs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vja9zaFtQZG1CAJw2BAXsuuzs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vja9zaFtQZG1CAJw2BAXsuuzs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vja9zaFtQZG1CAJw2BAXsuuzs.jpg 3000w\"},className:\"framer-keigt3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"chQ1voI_S\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"184px\",src:\"https://framerusercontent.com/images/TtUNL42hQ1Jcd2XSi2GOhAB5A.jpg\",srcSet:\"https://framerusercontent.com/images/TtUNL42hQ1Jcd2XSi2GOhAB5A.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/TtUNL42hQ1Jcd2XSi2GOhAB5A.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/TtUNL42hQ1Jcd2XSi2GOhAB5A.jpg 2000w\"},className:\"framer-181ne50\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QshhHsNI8\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Yg0lFcArDGWKZRdq9xB8ppWnM.jpg\",srcSet:\"https://framerusercontent.com/images/Yg0lFcArDGWKZRdq9xB8ppWnM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Yg0lFcArDGWKZRdq9xB8ppWnM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Yg0lFcArDGWKZRdq9xB8ppWnM.jpg 2000w\"},className:\"framer-lh0wzj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Gvx_Qc2UW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg\",srcSet:\"https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg 3000w\"},className:\"framer-18h542j\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KdBAdh1O6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/eidM7tIOaLIwSuISmeampzVP94.jpg\",srcSet:\"https://framerusercontent.com/images/eidM7tIOaLIwSuISmeampzVP94.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eidM7tIOaLIwSuISmeampzVP94.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eidM7tIOaLIwSuISmeampzVP94.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eidM7tIOaLIwSuISmeampzVP94.jpg 3000w\"},className:\"framer-99fauy\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FNiWcTtxn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/s9hHbGI6rrkn5yv7DR64wF8Q2Zc.jpg\",srcSet:\"https://framerusercontent.com/images/s9hHbGI6rrkn5yv7DR64wF8Q2Zc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s9hHbGI6rrkn5yv7DR64wF8Q2Zc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s9hHbGI6rrkn5yv7DR64wF8Q2Zc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s9hHbGI6rrkn5yv7DR64wF8Q2Zc.jpg 3000w\"},className:\"framer-1a5y4mz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TYMhm_TAN\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/tQThy60uApVHNciBaPCadCfdL8M.jpg\",srcSet:\"https://framerusercontent.com/images/tQThy60uApVHNciBaPCadCfdL8M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tQThy60uApVHNciBaPCadCfdL8M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tQThy60uApVHNciBaPCadCfdL8M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tQThy60uApVHNciBaPCadCfdL8M.jpg 3000w\"},className:\"framer-179b5mj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iR2Xa5wLk\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1n2eqt0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bw49Aumfx\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/VznnYIikYUFQmsmCw9kAzKJNkk.jpg\",srcSet:\"https://framerusercontent.com/images/VznnYIikYUFQmsmCw9kAzKJNkk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VznnYIikYUFQmsmCw9kAzKJNkk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VznnYIikYUFQmsmCw9kAzKJNkk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VznnYIikYUFQmsmCw9kAzKJNkk.jpg 3000w\"},className:\"framer-1o5inyq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XHafvUh5_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/n3Gw1ouAnA35um1TWpldSc9cjU.jpg\",srcSet:\"https://framerusercontent.com/images/n3Gw1ouAnA35um1TWpldSc9cjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n3Gw1ouAnA35um1TWpldSc9cjU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n3Gw1ouAnA35um1TWpldSc9cjU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n3Gw1ouAnA35um1TWpldSc9cjU.jpg 3000w\"},className:\"framer-1kd2hin\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"dLqQVeHF7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/GGwmr6hNCPwexf5EpNIqT9Ry1w.jpg\",srcSet:\"https://framerusercontent.com/images/GGwmr6hNCPwexf5EpNIqT9Ry1w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GGwmr6hNCPwexf5EpNIqT9Ry1w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GGwmr6hNCPwexf5EpNIqT9Ry1w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GGwmr6hNCPwexf5EpNIqT9Ry1w.jpg 3000w\"},className:\"framer-11ai2gf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Fm2kFefdi\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/yWlphAQx9nVswKJEysVAGu4jDGg.jpg\",srcSet:\"https://framerusercontent.com/images/yWlphAQx9nVswKJEysVAGu4jDGg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/yWlphAQx9nVswKJEysVAGu4jDGg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/yWlphAQx9nVswKJEysVAGu4jDGg.jpg 2000w\"},className:\"framer-xsj1sn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nGlC9LvEJ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/NUpRG66jRBwLkUOAAI1aA5Ujs.jpg\",srcSet:\"https://framerusercontent.com/images/NUpRG66jRBwLkUOAAI1aA5Ujs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NUpRG66jRBwLkUOAAI1aA5Ujs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUpRG66jRBwLkUOAAI1aA5Ujs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NUpRG66jRBwLkUOAAI1aA5Ujs.jpg 3000w\"},className:\"framer-1nydufc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hUzNKOzAu\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/q0HAqmkTRo4maIVRJz42avypEM.jpg\",srcSet:\"https://framerusercontent.com/images/q0HAqmkTRo4maIVRJz42avypEM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q0HAqmkTRo4maIVRJz42avypEM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q0HAqmkTRo4maIVRJz42avypEM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q0HAqmkTRo4maIVRJz42avypEM.jpg 3000w\"},className:\"framer-1v4y9gh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"K2Jp4WkW2\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/AmXQ5WiBHEjLftlHF8hhB4VsegE.jpg\",srcSet:\"https://framerusercontent.com/images/AmXQ5WiBHEjLftlHF8hhB4VsegE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AmXQ5WiBHEjLftlHF8hhB4VsegE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AmXQ5WiBHEjLftlHF8hhB4VsegE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AmXQ5WiBHEjLftlHF8hhB4VsegE.jpg 3000w\"},className:\"framer-coojd9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pz_j6_nnM\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg\",srcSet:\"https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JiA45UU1bYOyQgWtQwitfADhCyE.jpg 3000w\"},className:\"framer-1stv362\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SxG1_rduD\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/boX26m9tEFPQZ2qZPR0j5XYaYI.jpg\",srcSet:\"https://framerusercontent.com/images/boX26m9tEFPQZ2qZPR0j5XYaYI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/boX26m9tEFPQZ2qZPR0j5XYaYI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/boX26m9tEFPQZ2qZPR0j5XYaYI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/boX26m9tEFPQZ2qZPR0j5XYaYI.jpg 3000w\"},className:\"framer-g6z42r\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OZuDGZOOa\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/cB6wmG68V3QaVZpWughg6IYSDMo.jpg\",srcSet:\"https://framerusercontent.com/images/cB6wmG68V3QaVZpWughg6IYSDMo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cB6wmG68V3QaVZpWughg6IYSDMo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cB6wmG68V3QaVZpWughg6IYSDMo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cB6wmG68V3QaVZpWughg6IYSDMo.jpg 3000w\"},className:\"framer-16lxkzb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FhKmkO0fu\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/YMGtPDbzs5o4zJaEQXtBjBgBMg.jpg\",srcSet:\"https://framerusercontent.com/images/YMGtPDbzs5o4zJaEQXtBjBgBMg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YMGtPDbzs5o4zJaEQXtBjBgBMg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YMGtPDbzs5o4zJaEQXtBjBgBMg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YMGtPDbzs5o4zJaEQXtBjBgBMg.jpg 3000w\"},className:\"framer-1d5gvio\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"giWVaVuMP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/c3xrCGF0oGNP2NRppOlDZbsko5Q.jpg\",srcSet:\"https://framerusercontent.com/images/c3xrCGF0oGNP2NRppOlDZbsko5Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/c3xrCGF0oGNP2NRppOlDZbsko5Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/c3xrCGF0oGNP2NRppOlDZbsko5Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/c3xrCGF0oGNP2NRppOlDZbsko5Q.jpg 3000w\"},className:\"framer-1mtifgu\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SlGQpfxjI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/21hitrdPcth2FfN1urUYo7iZaCw.jpg\",srcSet:\"https://framerusercontent.com/images/21hitrdPcth2FfN1urUYo7iZaCw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/21hitrdPcth2FfN1urUYo7iZaCw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/21hitrdPcth2FfN1urUYo7iZaCw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/21hitrdPcth2FfN1urUYo7iZaCw.jpg 3000w\"},className:\"framer-14ix0ge\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hgzufXf7L\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/3ls8P5irBrr16sjAwoPwJVopU.jpg\",srcSet:\"https://framerusercontent.com/images/3ls8P5irBrr16sjAwoPwJVopU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3ls8P5irBrr16sjAwoPwJVopU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3ls8P5irBrr16sjAwoPwJVopU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3ls8P5irBrr16sjAwoPwJVopU.jpg 3000w\"},className:\"framer-1pb59iv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wD583FzMU\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/v0fH9BY8SlavVMpigqM1VsYK78.jpg\",srcSet:\"https://framerusercontent.com/images/v0fH9BY8SlavVMpigqM1VsYK78.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v0fH9BY8SlavVMpigqM1VsYK78.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0fH9BY8SlavVMpigqM1VsYK78.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/v0fH9BY8SlavVMpigqM1VsYK78.jpg 3000w\"},className:\"framer-17l7vkl\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fuAgxUN3z\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/Np4bocqCab1Hp4pue06w9mJ7ko.jpg\",srcSet:\"https://framerusercontent.com/images/Np4bocqCab1Hp4pue06w9mJ7ko.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Np4bocqCab1Hp4pue06w9mJ7ko.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Np4bocqCab1Hp4pue06w9mJ7ko.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Np4bocqCab1Hp4pue06w9mJ7ko.jpg 3000w\"},className:\"framer-oqnhbo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GQPtSDlXx\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/4lgg5s1yrDTALiTqRVXX2GXvmA.jpg\",srcSet:\"https://framerusercontent.com/images/4lgg5s1yrDTALiTqRVXX2GXvmA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4lgg5s1yrDTALiTqRVXX2GXvmA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4lgg5s1yrDTALiTqRVXX2GXvmA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4lgg5s1yrDTALiTqRVXX2GXvmA.jpg 3000w\"},className:\"framer-em8v0j\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YJdWD_YkK\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/NKtQ8xoFTXYHOTfaDluojotHzOs.jpg\",srcSet:\"https://framerusercontent.com/images/NKtQ8xoFTXYHOTfaDluojotHzOs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NKtQ8xoFTXYHOTfaDluojotHzOs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NKtQ8xoFTXYHOTfaDluojotHzOs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NKtQ8xoFTXYHOTfaDluojotHzOs.jpg 3000w\"},className:\"framer-14588za\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KfEIGQOnA\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/PlOyPvvjrxjjKx67r0Hj4jl2c.jpg\",srcSet:\"https://framerusercontent.com/images/PlOyPvvjrxjjKx67r0Hj4jl2c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PlOyPvvjrxjjKx67r0Hj4jl2c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PlOyPvvjrxjjKx67r0Hj4jl2c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PlOyPvvjrxjjKx67r0Hj4jl2c.jpg 3000w\"},className:\"framer-73h1be\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yvc4S_uPR\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/2IdQulsKKXzcp80x08lHZLvUBRQ.jpg\",srcSet:\"https://framerusercontent.com/images/2IdQulsKKXzcp80x08lHZLvUBRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2IdQulsKKXzcp80x08lHZLvUBRQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2IdQulsKKXzcp80x08lHZLvUBRQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2IdQulsKKXzcp80x08lHZLvUBRQ.jpg 3000w\"},className:\"framer-t6slez\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"a0c3MuxSe\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/28kraXEeqfHfsUhAn8aCbleJBY.jpg\",srcSet:\"https://framerusercontent.com/images/28kraXEeqfHfsUhAn8aCbleJBY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/28kraXEeqfHfsUhAn8aCbleJBY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/28kraXEeqfHfsUhAn8aCbleJBY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/28kraXEeqfHfsUhAn8aCbleJBY.jpg 3000w\"},className:\"framer-v742v3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NhQueIW1J\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/OdQyxPhngmVWnK6TbmHn5f91cgY.jpg\",srcSet:\"https://framerusercontent.com/images/OdQyxPhngmVWnK6TbmHn5f91cgY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OdQyxPhngmVWnK6TbmHn5f91cgY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OdQyxPhngmVWnK6TbmHn5f91cgY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OdQyxPhngmVWnK6TbmHn5f91cgY.jpg 3000w\"},className:\"framer-oj9ceb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tSaLFNs1Q\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-12lrlek\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fndyIJN9q\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/ZvAkau0CgUqeG6JgSOu7nQO4NI.jpg\",srcSet:\"https://framerusercontent.com/images/ZvAkau0CgUqeG6JgSOu7nQO4NI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZvAkau0CgUqeG6JgSOu7nQO4NI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZvAkau0CgUqeG6JgSOu7nQO4NI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZvAkau0CgUqeG6JgSOu7nQO4NI.jpg 3000w\"},className:\"framer-vx5zac\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LDD5DV1Py\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-5i31cf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PwQG8xARC\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/bCTsAt6bIslNAK42g5jikjBbvC8.jpg\",srcSet:\"https://framerusercontent.com/images/bCTsAt6bIslNAK42g5jikjBbvC8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bCTsAt6bIslNAK42g5jikjBbvC8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bCTsAt6bIslNAK42g5jikjBbvC8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bCTsAt6bIslNAK42g5jikjBbvC8.jpg 3000w\"},className:\"framer-14wtxxw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kBJQF6LEj\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-o43wdj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mXVByfK45\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/KH7aTCaj7FydyhfLz7FIK9AmJQ.jpg\",srcSet:\"https://framerusercontent.com/images/KH7aTCaj7FydyhfLz7FIK9AmJQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KH7aTCaj7FydyhfLz7FIK9AmJQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KH7aTCaj7FydyhfLz7FIK9AmJQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KH7aTCaj7FydyhfLz7FIK9AmJQ.jpg 3000w\"},className:\"framer-19gudh1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"a3sCraKKA\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1ehwo7n\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nwDKgh3WN\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/IW26nYS24VMQ6ekGr0QMl01EM.jpg\",srcSet:\"https://framerusercontent.com/images/IW26nYS24VMQ6ekGr0QMl01EM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IW26nYS24VMQ6ekGr0QMl01EM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IW26nYS24VMQ6ekGr0QMl01EM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IW26nYS24VMQ6ekGr0QMl01EM.jpg 3000w\"},className:\"framer-s3fo8o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mvTYgj3cb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-tp77pb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Fvotv70bY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg\",srcSet:\"https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MDqrMFlsB95ifWRapwR6yPOUAY.jpg 3000w\"},className:\"framer-1l8pmer\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"we1fwN5Vg\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-16djocp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"dBQVglZbd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/SK5CzWzpnAqHsGKiYbpb3FvO5EY.jpg\",srcSet:\"https://framerusercontent.com/images/SK5CzWzpnAqHsGKiYbpb3FvO5EY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/SK5CzWzpnAqHsGKiYbpb3FvO5EY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/SK5CzWzpnAqHsGKiYbpb3FvO5EY.jpg 2000w\"},className:\"framer-si5i6e\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iKGwKkEpc\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-b3dh01\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"T558GCAvO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/rTJe5K8l8rXuBhZ64OvZvBQhtb0.jpg\",srcSet:\"https://framerusercontent.com/images/rTJe5K8l8rXuBhZ64OvZvBQhtb0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rTJe5K8l8rXuBhZ64OvZvBQhtb0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rTJe5K8l8rXuBhZ64OvZvBQhtb0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rTJe5K8l8rXuBhZ64OvZvBQhtb0.jpg 3000w\"},className:\"framer-1bwkeo9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GmqEod2HL\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1isf0st\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JmybwS3Ah\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/NGynt2SdSr4wjwimmIvLzEtFDxQ.jpg\",srcSet:\"https://framerusercontent.com/images/NGynt2SdSr4wjwimmIvLzEtFDxQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NGynt2SdSr4wjwimmIvLzEtFDxQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NGynt2SdSr4wjwimmIvLzEtFDxQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NGynt2SdSr4wjwimmIvLzEtFDxQ.jpg 3000w\"},className:\"framer-1sry951\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XWZBO0tZ3\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-n1qxgt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tXzniXKx6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/h1dq4urPTYQIDMXyF69iNn1LfV8.jpg\",srcSet:\"https://framerusercontent.com/images/h1dq4urPTYQIDMXyF69iNn1LfV8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/h1dq4urPTYQIDMXyF69iNn1LfV8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/h1dq4urPTYQIDMXyF69iNn1LfV8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/h1dq4urPTYQIDMXyF69iNn1LfV8.jpg 3000w\"},className:\"framer-wbn5hy\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RXV1RN30_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-25jc7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"btbeeq4EA\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/4fQx9K7dXr2lHB1dQVYgKp88Nw.jpg\",srcSet:\"https://framerusercontent.com/images/4fQx9K7dXr2lHB1dQVYgKp88Nw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4fQx9K7dXr2lHB1dQVYgKp88Nw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4fQx9K7dXr2lHB1dQVYgKp88Nw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4fQx9K7dXr2lHB1dQVYgKp88Nw.jpg 3000w\"},className:\"framer-1c4mj2o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"t6LsayWno\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-ow56ti\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MFig9aTRQ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/brUjIEo1nv4of2PYw1wv6QKTs.jpg\",srcSet:\"https://framerusercontent.com/images/brUjIEo1nv4of2PYw1wv6QKTs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/brUjIEo1nv4of2PYw1wv6QKTs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/brUjIEo1nv4of2PYw1wv6QKTs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/brUjIEo1nv4of2PYw1wv6QKTs.jpg 3000w\"},className:\"framer-1sf702v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MMgxZZ_EW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1qi5a6v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Rp1yZA93H\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"256px\",src:\"https://framerusercontent.com/images/GgzwTqgctaIEtaTWUofNUZBQwV0.jpg\",srcSet:\"https://framerusercontent.com/images/GgzwTqgctaIEtaTWUofNUZBQwV0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GgzwTqgctaIEtaTWUofNUZBQwV0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GgzwTqgctaIEtaTWUofNUZBQwV0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GgzwTqgctaIEtaTWUofNUZBQwV0.jpg 3000w\"},className:\"framer-1m00pef\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Pt4W4UyI6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-1u83tb8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"v7rsdrtBM\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"195px\",src:\"https://framerusercontent.com/images/bMzizcYd39LUE5Yv2BGYkJE6GXc.jpg\",srcSet:\"https://framerusercontent.com/images/bMzizcYd39LUE5Yv2BGYkJE6GXc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/bMzizcYd39LUE5Yv2BGYkJE6GXc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/bMzizcYd39LUE5Yv2BGYkJE6GXc.jpg 2000w\"},className:\"framer-1abmpnv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jdbVobWHZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-nmhnzh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KaxS4PY6g\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"283px\",src:\"https://framerusercontent.com/images/ftTigbbEEAT1Ph8F3URd53LEouA.jpg\",srcSet:\"https://framerusercontent.com/images/ftTigbbEEAT1Ph8F3URd53LEouA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ftTigbbEEAT1Ph8F3URd53LEouA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ftTigbbEEAT1Ph8F3URd53LEouA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ftTigbbEEAT1Ph8F3URd53LEouA.jpg 3000w\"},className:\"framer-yj3h9r\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VdIMCpXRu\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg\",srcSet:\"https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZbN2VTMMJna2dsJiQagX4o3dTI.jpg 3000w\"},className:\"framer-11sbd3o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"EuCY2iKfH\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m5hLI.framer-1ipf5sw, .framer-m5hLI .framer-1ipf5sw { display: block; }\",\".framer-m5hLI.framer-14crhld { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-m5hLI .framer-838aml-container, .framer-m5hLI .framer-1win7xx-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-m5hLI .framer-szv34e, .framer-m5hLI .framer-3gwodz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-m5hLI .framer-1mef2f6, .framer-m5hLI .framer-hfptw8, .framer-m5hLI .framer-1eoqv0r, .framer-m5hLI .framer-va36pn, .framer-m5hLI .framer-1t19n0a, .framer-m5hLI .framer-1306n2j, .framer-m5hLI .framer-26azfn, .framer-m5hLI .framer-1hn2nx6, .framer-m5hLI .framer-16mie9k, .framer-m5hLI .framer-5snhd7, .framer-m5hLI .framer-124gqig, .framer-m5hLI .framer-ddpw2o, .framer-m5hLI .framer-ya0w55, .framer-m5hLI .framer-4wglgj, .framer-m5hLI .framer-jlz3kp, .framer-m5hLI .framer-19bol35, .framer-m5hLI .framer-edcmza, .framer-m5hLI .framer-memoh2, .framer-m5hLI .framer-mnmwcw, .framer-m5hLI .framer-wyuu8n, .framer-m5hLI .framer-1831lyv, .framer-m5hLI .framer-16ckm6r, .framer-m5hLI .framer-1deuy2x { flex: none; height: 184px; overflow: hidden; position: relative; width: 275px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-489io6 { flex: none; height: 184px; overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-1omowbk, .framer-m5hLI .framer-8r2yup, .framer-m5hLI .framer-1octhmp, .framer-m5hLI .framer-9c4clq, .framer-m5hLI .framer-1parqrn, .framer-m5hLI .framer-7igcm9, .framer-m5hLI .framer-5lpsv2, .framer-m5hLI .framer-1gb4ek1, .framer-m5hLI .framer-3qvfwo, .framer-m5hLI .framer-1usr1rg, .framer-m5hLI .framer-1n2eqt0, .framer-m5hLI .framer-12lrlek, .framer-m5hLI .framer-5i31cf, .framer-m5hLI .framer-o43wdj, .framer-m5hLI .framer-1ehwo7n, .framer-m5hLI .framer-tp77pb, .framer-m5hLI .framer-16djocp, .framer-m5hLI .framer-b3dh01, .framer-m5hLI .framer-1isf0st, .framer-m5hLI .framer-n1qxgt, .framer-m5hLI .framer-25jc7, .framer-m5hLI .framer-ow56ti, .framer-m5hLI .framer-1qi5a6v, .framer-m5hLI .framer-1u83tb8, .framer-m5hLI .framer-nmhnzh, .framer-m5hLI .framer-11sbd3o { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 703px; top: 0px; width: 275px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-139jp85 { flex: none; height: 184px; overflow: hidden; position: relative; width: 189px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-a7v9im { flex: none; height: 184px; overflow: hidden; position: relative; width: 221px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-yg4t9e, .framer-m5hLI .framer-11ytrij, .framer-m5hLI .framer-5dzod4, .framer-m5hLI .framer-rrb2bn, .framer-m5hLI .framer-1o57f1a, .framer-m5hLI .framer-1ugj265, .framer-m5hLI .framer-lh0wzj, .framer-m5hLI .framer-99fauy { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-293vrl { flex: none; height: 184px; overflow: hidden; position: relative; width: 155px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-1l97vog { aspect-ratio: 0.8043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-d0qkj { flex: none; height: 184px; overflow: hidden; position: relative; width: 233px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-5kiaqg { flex: none; height: 184px; overflow: hidden; position: relative; width: 347px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-11os3sh, .framer-m5hLI .framer-1j33bog, .framer-m5hLI .framer-17r1rov, .framer-m5hLI .framer-jkoly9, .framer-m5hLI .framer-p1gsqm, .framer-m5hLI .framer-1cu92n2, .framer-m5hLI .framer-1nlyjl9, .framer-m5hLI .framer-qqmx2w, .framer-m5hLI .framer-t8kog9, .framer-m5hLI .framer-oj9ceb, .framer-m5hLI .framer-vx5zac, .framer-m5hLI .framer-14wtxxw, .framer-m5hLI .framer-19gudh1, .framer-m5hLI .framer-s3fo8o, .framer-m5hLI .framer-1l8pmer, .framer-m5hLI .framer-si5i6e, .framer-m5hLI .framer-1bwkeo9, .framer-m5hLI .framer-1sry951, .framer-m5hLI .framer-wbn5hy, .framer-m5hLI .framer-1c4mj2o, .framer-m5hLI .framer-1sf702v, .framer-m5hLI .framer-yj3h9r { flex: none; height: 184px; overflow: hidden; position: relative; width: 283px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-1o92kiu { flex: none; height: 184px; overflow: hidden; position: relative; width: 168px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-12x7y62 { flex: none; height: 184px; overflow: hidden; position: relative; width: 339px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-ym1uw8 { flex: none; height: 184px; overflow: hidden; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-keigt3, .framer-m5hLI .framer-18h542j, .framer-m5hLI .framer-179b5mj, .framer-m5hLI .framer-1o5inyq, .framer-m5hLI .framer-1kd2hin, .framer-m5hLI .framer-11ai2gf, .framer-m5hLI .framer-xsj1sn, .framer-m5hLI .framer-1nydufc, .framer-m5hLI .framer-1v4y9gh, .framer-m5hLI .framer-coojd9, .framer-m5hLI .framer-1stv362, .framer-m5hLI .framer-g6z42r, .framer-m5hLI .framer-16lxkzb, .framer-m5hLI .framer-1d5gvio, .framer-m5hLI .framer-1mtifgu, .framer-m5hLI .framer-14ix0ge, .framer-m5hLI .framer-1pb59iv, .framer-m5hLI .framer-17l7vkl, .framer-m5hLI .framer-oqnhbo, .framer-m5hLI .framer-em8v0j, .framer-m5hLI .framer-14588za, .framer-m5hLI .framer-73h1be, .framer-m5hLI .framer-t6slez, .framer-m5hLI .framer-v742v3 { flex: none; height: 184px; overflow: hidden; position: relative; width: 265px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-181ne50 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-1a5y4mz { flex: none; height: 184px; overflow: hidden; position: relative; width: 207px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-1m00pef { flex: none; height: 184px; overflow: hidden; position: relative; width: 256px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m5hLI .framer-1abmpnv { flex: none; height: 184px; overflow: hidden; position: relative; width: 195px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-m5hLI.framer-14crhld, .framer-m5hLI .framer-szv34e, .framer-m5hLI .framer-3gwodz { gap: 0px; } .framer-m5hLI.framer-14crhld > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-m5hLI.framer-14crhld > :first-child { margin-top: 0px; } .framer-m5hLI.framer-14crhld > :last-child { margin-bottom: 0px; } .framer-m5hLI .framer-szv34e > *, .framer-m5hLI .framer-3gwodz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-m5hLI .framer-szv34e > :first-child, .framer-m5hLI .framer-3gwodz > :first-child { margin-left: 0px; } .framer-m5hLI .framer-szv34e > :last-child, .framer-m5hLI .framer-3gwodz > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNVgXGH5ON=withCSS(Component,css,\"framer-m5hLI\");export default FramerNVgXGH5ON;FramerNVgXGH5ON.displayName=\"<AI/ALL>Summit Singapore\";FramerNVgXGH5ON.defaultProps={height:388,width:1148};addFonts(FramerNVgXGH5ON,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNVgXGH5ON\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1148\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"388\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NVgXGH5ON.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-HNOa9\";const variantClassNames={bD27i3pu6:\"framer-v-fboc2f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"bD27i3pu6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-fboc2f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bD27i3pu6\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14ts8nf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QIkYIIAJ6-container\",nodeId:\"QIkYIIAJ6\",rendersWithMotion:true,scopeId:\"oK7nhTueM\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"QIkYIIAJ6\",layoutId:\"QIkYIIAJ6\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oui8tp\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"CWuipged5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"301px\",src:\"https://framerusercontent.com/images/aPb7H1KGwgWL2JZJHZOydM0vo.jpg\",srcSet:\"https://framerusercontent.com/images/aPb7H1KGwgWL2JZJHZOydM0vo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aPb7H1KGwgWL2JZJHZOydM0vo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aPb7H1KGwgWL2JZJHZOydM0vo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aPb7H1KGwgWL2JZJHZOydM0vo.jpg 4032w\"},className:\"framer-ic3w89\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"flxBaplfK\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/oYl3ic1KqTXVMqnOWuLeS5bDSs.jpg\",srcSet:\"https://framerusercontent.com/images/oYl3ic1KqTXVMqnOWuLeS5bDSs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oYl3ic1KqTXVMqnOWuLeS5bDSs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oYl3ic1KqTXVMqnOWuLeS5bDSs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oYl3ic1KqTXVMqnOWuLeS5bDSs.jpg 4032w\"},className:\"framer-i4jzti\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IS2UbErH9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/o7EjlbJHwad7SJUUoN5qyo5Gqc.jpg\",srcSet:\"https://framerusercontent.com/images/o7EjlbJHwad7SJUUoN5qyo5Gqc.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/o7EjlbJHwad7SJUUoN5qyo5Gqc.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/o7EjlbJHwad7SJUUoN5qyo5Gqc.jpg 3024w\"},className:\"framer-1mu6mxt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"I0uWPCz3a\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"401px\",src:\"https://framerusercontent.com/images/VjoRRUUBbfQOiwJap91rs4wbdk.jpg\",srcSet:\"https://framerusercontent.com/images/VjoRRUUBbfQOiwJap91rs4wbdk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VjoRRUUBbfQOiwJap91rs4wbdk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VjoRRUUBbfQOiwJap91rs4wbdk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VjoRRUUBbfQOiwJap91rs4wbdk.jpg 4032w\"},className:\"framer-1m7l3p3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"vGQCYLMWU\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/5z9z6eHVzNxcNerj8ZI7bx5jvAw.jpg\",srcSet:\"https://framerusercontent.com/images/5z9z6eHVzNxcNerj8ZI7bx5jvAw.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/5z9z6eHVzNxcNerj8ZI7bx5jvAw.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/5z9z6eHVzNxcNerj8ZI7bx5jvAw.jpg 3024w\"},className:\"framer-1wzq4cj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qzPYvtJAy\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/k71loj92nVuOvetKvJb5ypwGwT8.png\",srcSet:\"https://framerusercontent.com/images/k71loj92nVuOvetKvJb5ypwGwT8.png?scale-down-to=512 512w,https://framerusercontent.com/images/k71loj92nVuOvetKvJb5ypwGwT8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k71loj92nVuOvetKvJb5ypwGwT8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/k71loj92nVuOvetKvJb5ypwGwT8.png 4032w\"},className:\"framer-10l3yb7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MG2z8W2hd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"155px\",src:\"https://framerusercontent.com/images/dc30L4WIMmkv2XuEpBgZTYEw8E.jpg\",srcSet:\"https://framerusercontent.com/images/dc30L4WIMmkv2XuEpBgZTYEw8E.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/dc30L4WIMmkv2XuEpBgZTYEw8E.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/dc30L4WIMmkv2XuEpBgZTYEw8E.jpg 3024w\"},className:\"framer-1n88yti\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LPtgPclQV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/bPQhQq03pq7IueelrfSAhMJ9w.jpg\",srcSet:\"https://framerusercontent.com/images/bPQhQq03pq7IueelrfSAhMJ9w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bPQhQq03pq7IueelrfSAhMJ9w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bPQhQq03pq7IueelrfSAhMJ9w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bPQhQq03pq7IueelrfSAhMJ9w.jpg 4032w\"},className:\"framer-1fsnrf5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xTVdb0koV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qkzr68-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KzkVM46L_-container\",nodeId:\"KzkVM46L_\",rendersWithMotion:true,scopeId:\"oK7nhTueM\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"KzkVM46L_\",layoutId:\"KzkVM46L_\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jy9f2q\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"a9pXiMqhF\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"173px\",src:\"https://framerusercontent.com/images/04jpKBJPQPk72RriV4xuk2GRiuE.jpg\",srcSet:\"https://framerusercontent.com/images/04jpKBJPQPk72RriV4xuk2GRiuE.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/04jpKBJPQPk72RriV4xuk2GRiuE.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/04jpKBJPQPk72RriV4xuk2GRiuE.jpg 3024w\"},className:\"framer-cqyiny\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ix0Xor2o7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"366px\",src:\"https://framerusercontent.com/images/SRjbG1rv3OaW4oK7SpZJ62a9l0.jpg\",srcSet:\"https://framerusercontent.com/images/SRjbG1rv3OaW4oK7SpZJ62a9l0.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/SRjbG1rv3OaW4oK7SpZJ62a9l0.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/SRjbG1rv3OaW4oK7SpZJ62a9l0.jpg 3024w\"},className:\"framer-1ngovyz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"R59rjdjRZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"266px\",src:\"https://framerusercontent.com/images/0wvzL4jtwblBRE8lUbIA4JxO9M.jpg\",srcSet:\"https://framerusercontent.com/images/0wvzL4jtwblBRE8lUbIA4JxO9M.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/0wvzL4jtwblBRE8lUbIA4JxO9M.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/0wvzL4jtwblBRE8lUbIA4JxO9M.jpg 3024w\"},className:\"framer-81ysgw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SeDLs4QXJ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"373px\",src:\"https://framerusercontent.com/images/BuMBoNWx5eK48Ga2F1B9Svlk.jpg\",srcSet:\"https://framerusercontent.com/images/BuMBoNWx5eK48Ga2F1B9Svlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BuMBoNWx5eK48Ga2F1B9Svlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BuMBoNWx5eK48Ga2F1B9Svlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BuMBoNWx5eK48Ga2F1B9Svlk.jpg 4032w\"},className:\"framer-iarly2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hKkcTGbHm\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"232px\",src:\"https://framerusercontent.com/images/vOvtDAuV6bPidwJeyMCtX3Jaek.jpg\",srcSet:\"https://framerusercontent.com/images/vOvtDAuV6bPidwJeyMCtX3Jaek.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/vOvtDAuV6bPidwJeyMCtX3Jaek.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/vOvtDAuV6bPidwJeyMCtX3Jaek.jpg 3024w\"},className:\"framer-1k0uwiq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"z8fe__yGn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"270px\",src:\"https://framerusercontent.com/images/mP0X7KM6G8Pv4xRIZgnM112gruM.jpg\",srcSet:\"https://framerusercontent.com/images/mP0X7KM6G8Pv4xRIZgnM112gruM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/mP0X7KM6G8Pv4xRIZgnM112gruM.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/mP0X7KM6G8Pv4xRIZgnM112gruM.jpg 3024w\"},className:\"framer-1m7le5r\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Ygs9IbVf5\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"407px\",src:\"https://framerusercontent.com/images/8yNsS0CRSaEJQ99sZToZCL1V6c8.jpg\",srcSet:\"https://framerusercontent.com/images/8yNsS0CRSaEJQ99sZToZCL1V6c8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8yNsS0CRSaEJQ99sZToZCL1V6c8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8yNsS0CRSaEJQ99sZToZCL1V6c8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8yNsS0CRSaEJQ99sZToZCL1V6c8.jpg 4032w\"},className:\"framer-1wawpwe\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BhebTDZDc\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/bbW0LduDkOxFG6gZZCeowkO4sqo.jpg\",srcSet:\"https://framerusercontent.com/images/bbW0LduDkOxFG6gZZCeowkO4sqo.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/bbW0LduDkOxFG6gZZCeowkO4sqo.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/bbW0LduDkOxFG6gZZCeowkO4sqo.jpg 3024w\"},className:\"framer-5wjy1s\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PgUR4qhFq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HNOa9.framer-17a05p0, .framer-HNOa9 .framer-17a05p0 { display: block; }\",\".framer-HNOa9.framer-fboc2f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-HNOa9 .framer-14ts8nf-container, .framer-HNOa9 .framer-qkzr68-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-HNOa9 .framer-1oui8tp, .framer-HNOa9 .framer-jy9f2q { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HNOa9 .framer-ic3w89 { flex: none; height: 184px; overflow: hidden; position: relative; width: 301px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-i4jzti, .framer-HNOa9 .framer-1mu6mxt { flex: none; height: 184px; overflow: hidden; position: relative; width: 221px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-1m7l3p3 { flex: none; height: 184px; overflow: hidden; position: relative; width: 401px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-1wzq4cj, .framer-HNOa9 .framer-10l3yb7, .framer-HNOa9 .framer-1fsnrf5 { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-1n88yti { flex: none; height: 184px; overflow: hidden; position: relative; width: 155px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-cqyiny { flex: none; height: 184px; overflow: hidden; position: relative; width: 173px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-1ngovyz { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 207px); overflow: hidden; position: relative; width: 366px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-81ysgw { flex: none; height: 184px; overflow: hidden; position: relative; width: 266px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-iarly2 { flex: none; height: 184px; overflow: hidden; position: relative; width: 373px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-1k0uwiq { flex: none; height: 184px; overflow: hidden; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-1m7le5r { flex: none; height: 184px; overflow: hidden; position: relative; width: 270px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-1wawpwe { flex: none; height: 184px; overflow: hidden; position: relative; width: 407px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HNOa9 .framer-5wjy1s { aspect-ratio: 0.8043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HNOa9.framer-fboc2f, .framer-HNOa9 .framer-1oui8tp, .framer-HNOa9 .framer-jy9f2q { gap: 0px; } .framer-HNOa9.framer-fboc2f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-HNOa9.framer-fboc2f > :first-child { margin-top: 0px; } .framer-HNOa9.framer-fboc2f > :last-child { margin-bottom: 0px; } .framer-HNOa9 .framer-1oui8tp > *, .framer-HNOa9 .framer-jy9f2q > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-HNOa9 .framer-1oui8tp > :first-child, .framer-HNOa9 .framer-jy9f2q > :first-child { margin-left: 0px; } .framer-HNOa9 .framer-1oui8tp > :last-child, .framer-HNOa9 .framer-jy9f2q > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameroK7nhTueM=withCSS(Component,css,\"framer-HNOa9\");export default FrameroK7nhTueM;FrameroK7nhTueM.displayName=\"NeurlPS\";FrameroK7nhTueM.defaultProps={height:388,width:1148};addFonts(FrameroK7nhTueM,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroK7nhTueM\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"388\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1148\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oK7nhTueM.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-7d1Mp\";const variantClassNames={tyRciUx_W:\"framer-v-jzphf8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"tyRciUx_W\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jzphf8\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tyRciUx_W\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-139v74j-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"u_SocJI3x-container\",nodeId:\"u_SocJI3x\",rendersWithMotion:true,scopeId:\"rjuoNCGia\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"u_SocJI3x\",layoutId:\"u_SocJI3x\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hpzmo4\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"M3avNcg4J\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/qnI58098ncwGjJPBsD8qZsQCeo.jpg\",srcSet:\"https://framerusercontent.com/images/qnI58098ncwGjJPBsD8qZsQCeo.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/qnI58098ncwGjJPBsD8qZsQCeo.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/qnI58098ncwGjJPBsD8qZsQCeo.jpg 2000w\"},className:\"framer-1pw7eq1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pCETi7Iqo\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"195px\",src:\"https://framerusercontent.com/images/SyT1JmVmmq7IA4PFh0LM33RxUPI.jpg\",srcSet:\"https://framerusercontent.com/images/SyT1JmVmmq7IA4PFh0LM33RxUPI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SyT1JmVmmq7IA4PFh0LM33RxUPI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SyT1JmVmmq7IA4PFh0LM33RxUPI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SyT1JmVmmq7IA4PFh0LM33RxUPI.jpg 3000w\"},className:\"framer-b2yl62\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IYdN30DxV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/8pYaEYeDNDl8QrCibyw2p9oANf0.jpg\",srcSet:\"https://framerusercontent.com/images/8pYaEYeDNDl8QrCibyw2p9oANf0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8pYaEYeDNDl8QrCibyw2p9oANf0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8pYaEYeDNDl8QrCibyw2p9oANf0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8pYaEYeDNDl8QrCibyw2p9oANf0.jpg 3000w\"},className:\"framer-a4l4x0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LBR5pm5F4\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/58KuZZQ5l5V3iYqEphklITQbFs.jpg\",srcSet:\"https://framerusercontent.com/images/58KuZZQ5l5V3iYqEphklITQbFs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/58KuZZQ5l5V3iYqEphklITQbFs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/58KuZZQ5l5V3iYqEphklITQbFs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/58KuZZQ5l5V3iYqEphklITQbFs.jpg 3000w\"},className:\"framer-apumst\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SMkQHClGl\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/mkttlH8fhZ2Uq3f9oSHW9MUbJ8.jpg\",srcSet:\"https://framerusercontent.com/images/mkttlH8fhZ2Uq3f9oSHW9MUbJ8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mkttlH8fhZ2Uq3f9oSHW9MUbJ8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkttlH8fhZ2Uq3f9oSHW9MUbJ8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mkttlH8fhZ2Uq3f9oSHW9MUbJ8.jpg 3000w\"},className:\"framer-1kettdt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qF8gtzmWW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/rpk7K2ttWWLCCnt4JtchTv2SrQ.jpg\",srcSet:\"https://framerusercontent.com/images/rpk7K2ttWWLCCnt4JtchTv2SrQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rpk7K2ttWWLCCnt4JtchTv2SrQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rpk7K2ttWWLCCnt4JtchTv2SrQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rpk7K2ttWWLCCnt4JtchTv2SrQ.jpg 3000w\"},className:\"framer-lkr7m1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zH1Ek4Nrc\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"155px\",src:\"https://framerusercontent.com/images/E2dUr28GWJMPPwDU5bCBfye2Q.jpg\",srcSet:\"https://framerusercontent.com/images/E2dUr28GWJMPPwDU5bCBfye2Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/E2dUr28GWJMPPwDU5bCBfye2Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E2dUr28GWJMPPwDU5bCBfye2Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/E2dUr28GWJMPPwDU5bCBfye2Q.jpg 3000w\"},className:\"framer-bkc787\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"B0eOXN3Z4\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/bLqL4JEOPeIg74YlZt4c61cOIp0.jpg\",srcSet:\"https://framerusercontent.com/images/bLqL4JEOPeIg74YlZt4c61cOIp0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bLqL4JEOPeIg74YlZt4c61cOIp0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bLqL4JEOPeIg74YlZt4c61cOIp0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bLqL4JEOPeIg74YlZt4c61cOIp0.jpg 3000w\"},className:\"framer-38v40d\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"O6GMfV00e\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/BBSkpioWnePRtLHWQYG91GDFDqs.jpg\",srcSet:\"https://framerusercontent.com/images/BBSkpioWnePRtLHWQYG91GDFDqs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BBSkpioWnePRtLHWQYG91GDFDqs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BBSkpioWnePRtLHWQYG91GDFDqs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BBSkpioWnePRtLHWQYG91GDFDqs.jpg 3000w\"},className:\"framer-k0lwkl\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ty96D6PxM\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg\",srcSet:\"https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg 3000w\"},className:\"framer-k6cjb1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"EZwg2dS2_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/i01NNqpEHJvsGSWBPIwyTzQOfoA.jpg\",srcSet:\"https://framerusercontent.com/images/i01NNqpEHJvsGSWBPIwyTzQOfoA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/i01NNqpEHJvsGSWBPIwyTzQOfoA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/i01NNqpEHJvsGSWBPIwyTzQOfoA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/i01NNqpEHJvsGSWBPIwyTzQOfoA.jpg 3000w\"},className:\"framer-vyzuy4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YMW6sqkMf\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/qnI58098ncwGjJPBsD8qZsQCeo.jpg\",srcSet:\"https://framerusercontent.com/images/qnI58098ncwGjJPBsD8qZsQCeo.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/qnI58098ncwGjJPBsD8qZsQCeo.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/qnI58098ncwGjJPBsD8qZsQCeo.jpg 2000w\"},className:\"framer-1un1dez\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bewMKWnGC\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"233px\",src:\"https://framerusercontent.com/images/6AytvvRMo4wW3XVCr6FFI9KxQ28.jpg\",srcSet:\"https://framerusercontent.com/images/6AytvvRMo4wW3XVCr6FFI9KxQ28.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6AytvvRMo4wW3XVCr6FFI9KxQ28.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6AytvvRMo4wW3XVCr6FFI9KxQ28.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6AytvvRMo4wW3XVCr6FFI9KxQ28.jpg 3000w\"},className:\"framer-13qzmq0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CdogkztXP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/OlOX05pj5gduXgOlbUdeeZbAsRY.jpg\",srcSet:\"https://framerusercontent.com/images/OlOX05pj5gduXgOlbUdeeZbAsRY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OlOX05pj5gduXgOlbUdeeZbAsRY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OlOX05pj5gduXgOlbUdeeZbAsRY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OlOX05pj5gduXgOlbUdeeZbAsRY.jpg 3000w\"},className:\"framer-3wibyo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"z4jfCDUBq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/aEZiA4cz9YCnptzJuGKilmT20.jpg\",srcSet:\"https://framerusercontent.com/images/aEZiA4cz9YCnptzJuGKilmT20.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aEZiA4cz9YCnptzJuGKilmT20.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aEZiA4cz9YCnptzJuGKilmT20.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aEZiA4cz9YCnptzJuGKilmT20.jpg 3000w\"},className:\"framer-1jtarxj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Uru997Pa7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"164px\",src:\"https://framerusercontent.com/images/0pdC0PY7crX5bFpoD8WWsksfpA.jpg\",srcSet:\"https://framerusercontent.com/images/0pdC0PY7crX5bFpoD8WWsksfpA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0pdC0PY7crX5bFpoD8WWsksfpA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0pdC0PY7crX5bFpoD8WWsksfpA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0pdC0PY7crX5bFpoD8WWsksfpA.jpg 3000w\"},className:\"framer-gqfqcg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yD30SlYBD\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"278px\",src:\"https://framerusercontent.com/images/6Dd2WmRvORmwHpYy8c0coPLwbY.jpg\",srcSet:\"https://framerusercontent.com/images/6Dd2WmRvORmwHpYy8c0coPLwbY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6Dd2WmRvORmwHpYy8c0coPLwbY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6Dd2WmRvORmwHpYy8c0coPLwbY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6Dd2WmRvORmwHpYy8c0coPLwbY.jpg 3000w\"},className:\"framer-duav2o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Tl5etJiW7\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"278px\",src:\"https://framerusercontent.com/images/W9LAqXTUmKpcKdSmBgeICbjVDIw.jpg\",srcSet:\"https://framerusercontent.com/images/W9LAqXTUmKpcKdSmBgeICbjVDIw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/W9LAqXTUmKpcKdSmBgeICbjVDIw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W9LAqXTUmKpcKdSmBgeICbjVDIw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W9LAqXTUmKpcKdSmBgeICbjVDIw.jpg 3000w\"},className:\"framer-1fs4m9g\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"B3wZmCnCE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/4mbfQaEicKF9pecJpIfq7EOSf2Y.jpg\",srcSet:\"https://framerusercontent.com/images/4mbfQaEicKF9pecJpIfq7EOSf2Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4mbfQaEicKF9pecJpIfq7EOSf2Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4mbfQaEicKF9pecJpIfq7EOSf2Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4mbfQaEicKF9pecJpIfq7EOSf2Y.jpg 3000w\"},className:\"framer-itqfed\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"l7YdmM2mo\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Zf4zCrBoiaSMGcy9CJL5XLPCi4Q.jpg\",srcSet:\"https://framerusercontent.com/images/Zf4zCrBoiaSMGcy9CJL5XLPCi4Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Zf4zCrBoiaSMGcy9CJL5XLPCi4Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zf4zCrBoiaSMGcy9CJL5XLPCi4Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Zf4zCrBoiaSMGcy9CJL5XLPCi4Q.jpg 3000w\"},className:\"framer-1wktwg5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pZpsD2b97\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/K3Y8QoVJeUdjODYXXIYw71fVnR0.jpg\",srcSet:\"https://framerusercontent.com/images/K3Y8QoVJeUdjODYXXIYw71fVnR0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K3Y8QoVJeUdjODYXXIYw71fVnR0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K3Y8QoVJeUdjODYXXIYw71fVnR0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/K3Y8QoVJeUdjODYXXIYw71fVnR0.jpg 3000w\"},className:\"framer-1mv21x6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RczkE1i8L\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/UhSjlJQ2NknnkErY4UP2kuXYUew.jpg\",srcSet:\"https://framerusercontent.com/images/UhSjlJQ2NknnkErY4UP2kuXYUew.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UhSjlJQ2NknnkErY4UP2kuXYUew.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhSjlJQ2NknnkErY4UP2kuXYUew.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UhSjlJQ2NknnkErY4UP2kuXYUew.jpg 3000w\"},className:\"framer-1vyuo84\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Le9DzBg_G\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/kM2MkuC0e6Kffxry5UQSiwhuhI.jpg\",srcSet:\"https://framerusercontent.com/images/kM2MkuC0e6Kffxry5UQSiwhuhI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kM2MkuC0e6Kffxry5UQSiwhuhI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kM2MkuC0e6Kffxry5UQSiwhuhI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kM2MkuC0e6Kffxry5UQSiwhuhI.jpg 3000w\"},className:\"framer-1g3j2mj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"k0Am1VIWh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/P3U1nEDQeMmqJnbjvvVjyncdh8.jpg\",srcSet:\"https://framerusercontent.com/images/P3U1nEDQeMmqJnbjvvVjyncdh8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P3U1nEDQeMmqJnbjvvVjyncdh8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3U1nEDQeMmqJnbjvvVjyncdh8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/P3U1nEDQeMmqJnbjvvVjyncdh8.jpg 3000w\"},className:\"framer-1n4qxry\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nvQPr5I6A\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"253px\",src:\"https://framerusercontent.com/images/nXAhmQ9gdWDkk5nutHUw06CEVUk.jpg\",srcSet:\"https://framerusercontent.com/images/nXAhmQ9gdWDkk5nutHUw06CEVUk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nXAhmQ9gdWDkk5nutHUw06CEVUk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nXAhmQ9gdWDkk5nutHUw06CEVUk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nXAhmQ9gdWDkk5nutHUw06CEVUk.jpg 3000w\"},className:\"framer-daci1a\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"frS2cxDBw\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/iFzuHkffy1JIUEHEsBWzf4R6Xxc.jpg\",srcSet:\"https://framerusercontent.com/images/iFzuHkffy1JIUEHEsBWzf4R6Xxc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iFzuHkffy1JIUEHEsBWzf4R6Xxc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iFzuHkffy1JIUEHEsBWzf4R6Xxc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iFzuHkffy1JIUEHEsBWzf4R6Xxc.jpg 3000w\"},className:\"framer-1weca0p\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"vzMNsVLg6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c5lkb2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sHhbZ3UzM-container\",nodeId:\"sHhbZ3UzM\",rendersWithMotion:true,scopeId:\"rjuoNCGia\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"sHhbZ3UzM\",layoutId:\"sHhbZ3UzM\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fy8exy\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"vTHUfkCVB\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"173px\",src:\"https://framerusercontent.com/images/5K6MWpe0rVSxqW0chdayCJoRT8.jpg\",srcSet:\"https://framerusercontent.com/images/5K6MWpe0rVSxqW0chdayCJoRT8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5K6MWpe0rVSxqW0chdayCJoRT8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5K6MWpe0rVSxqW0chdayCJoRT8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5K6MWpe0rVSxqW0chdayCJoRT8.jpg 3000w\"},className:\"framer-qsflx8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Z5fnLk5xn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/B01njt5FFDDh4N15pO9V1f83OXc.jpg\",srcSet:\"https://framerusercontent.com/images/B01njt5FFDDh4N15pO9V1f83OXc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/B01njt5FFDDh4N15pO9V1f83OXc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/B01njt5FFDDh4N15pO9V1f83OXc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/B01njt5FFDDh4N15pO9V1f83OXc.jpg 3000w\"},className:\"framer-17d77q6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pGzVvTEpp\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"195px\",src:\"https://framerusercontent.com/images/VdalJOowrhjjYzC6PQoCrQdxBHs.jpg\",srcSet:\"https://framerusercontent.com/images/VdalJOowrhjjYzC6PQoCrQdxBHs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VdalJOowrhjjYzC6PQoCrQdxBHs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VdalJOowrhjjYzC6PQoCrQdxBHs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VdalJOowrhjjYzC6PQoCrQdxBHs.jpg 3000w\"},className:\"framer-8sj33t\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HGR77XO8c\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/G7KWC5rQgVUfI6m5Dj9ouWGK8o.jpg\",srcSet:\"https://framerusercontent.com/images/G7KWC5rQgVUfI6m5Dj9ouWGK8o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G7KWC5rQgVUfI6m5Dj9ouWGK8o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G7KWC5rQgVUfI6m5Dj9ouWGK8o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G7KWC5rQgVUfI6m5Dj9ouWGK8o.jpg 3000w\"},className:\"framer-18bqqw8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pQJD9yaEp\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/7Xzzsn8JWX0emtPZfNDKQqDExrA.jpg\",srcSet:\"https://framerusercontent.com/images/7Xzzsn8JWX0emtPZfNDKQqDExrA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7Xzzsn8JWX0emtPZfNDKQqDExrA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7Xzzsn8JWX0emtPZfNDKQqDExrA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7Xzzsn8JWX0emtPZfNDKQqDExrA.jpg 3000w\"},className:\"framer-1h46c6o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"c_mgVzcfk\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"232px\",src:\"https://framerusercontent.com/images/eBnr8j1zYXcyg4iU7jdOt0Q.jpg\",srcSet:\"https://framerusercontent.com/images/eBnr8j1zYXcyg4iU7jdOt0Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eBnr8j1zYXcyg4iU7jdOt0Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eBnr8j1zYXcyg4iU7jdOt0Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eBnr8j1zYXcyg4iU7jdOt0Q.jpg 3000w\"},className:\"framer-172iqfc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"esdpo8IVc\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"184px\",src:\"https://framerusercontent.com/images/w3FpDKduZ1TdDoAQNHCPeMs.jpg\",srcSet:\"https://framerusercontent.com/images/w3FpDKduZ1TdDoAQNHCPeMs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w3FpDKduZ1TdDoAQNHCPeMs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w3FpDKduZ1TdDoAQNHCPeMs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/w3FpDKduZ1TdDoAQNHCPeMs.jpg 3000w\"},className:\"framer-9io0gc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"H2Ac23S0f\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/RTEsRUuCr06TJEqUxLnUBk8lOEA.jpg\",srcSet:\"https://framerusercontent.com/images/RTEsRUuCr06TJEqUxLnUBk8lOEA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RTEsRUuCr06TJEqUxLnUBk8lOEA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RTEsRUuCr06TJEqUxLnUBk8lOEA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RTEsRUuCr06TJEqUxLnUBk8lOEA.jpg 3000w\"},className:\"framer-1nb0vkt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"p_hkB4QsI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/4P5ONFmMlI6eGC85NA6k3GceCkw.jpg\",srcSet:\"https://framerusercontent.com/images/4P5ONFmMlI6eGC85NA6k3GceCkw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4P5ONFmMlI6eGC85NA6k3GceCkw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4P5ONFmMlI6eGC85NA6k3GceCkw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4P5ONFmMlI6eGC85NA6k3GceCkw.jpg 3000w\"},className:\"framer-1feaog2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"akaT6o0Xy\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"237px\",src:\"https://framerusercontent.com/images/xYtsSWLpR6C7hUGlotdEFRrWtN4.jpg\",srcSet:\"https://framerusercontent.com/images/xYtsSWLpR6C7hUGlotdEFRrWtN4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xYtsSWLpR6C7hUGlotdEFRrWtN4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xYtsSWLpR6C7hUGlotdEFRrWtN4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xYtsSWLpR6C7hUGlotdEFRrWtN4.jpg 3000w\"},className:\"framer-z3gg5d\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pBCwc4ws6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"170px\",src:\"https://framerusercontent.com/images/HycxaqxyEPtGQeIhfg385XFU1s.jpg\",srcSet:\"https://framerusercontent.com/images/HycxaqxyEPtGQeIhfg385XFU1s.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HycxaqxyEPtGQeIhfg385XFU1s.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HycxaqxyEPtGQeIhfg385XFU1s.jpg 2000w\"},className:\"framer-wfq10o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rwkbBnqC0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"184px\",src:\"https://framerusercontent.com/images/Te9Ia18B74H934cdSJrE17ngxg.jpg\",srcSet:\"https://framerusercontent.com/images/Te9Ia18B74H934cdSJrE17ngxg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Te9Ia18B74H934cdSJrE17ngxg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Te9Ia18B74H934cdSJrE17ngxg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Te9Ia18B74H934cdSJrE17ngxg.jpg 3000w\"},className:\"framer-b9f42n\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"s5cpakwNH\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"213px\",src:\"https://framerusercontent.com/images/TrlAf1kEborRj2P1CwLNTiu8mJc.jpg\",srcSet:\"https://framerusercontent.com/images/TrlAf1kEborRj2P1CwLNTiu8mJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TrlAf1kEborRj2P1CwLNTiu8mJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TrlAf1kEborRj2P1CwLNTiu8mJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TrlAf1kEborRj2P1CwLNTiu8mJc.jpg 3000w\"},className:\"framer-1yuslot\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zWLzPMZpv\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/GZRaxth1onAg592NrhbQ8BOsb4.jpg\",srcSet:\"https://framerusercontent.com/images/GZRaxth1onAg592NrhbQ8BOsb4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GZRaxth1onAg592NrhbQ8BOsb4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GZRaxth1onAg592NrhbQ8BOsb4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GZRaxth1onAg592NrhbQ8BOsb4.jpg 3000w\"},className:\"framer-1kujxux\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xopdKaH3V\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/eUnFSnlF7FGeWFqmw6B4Ifk0L0.jpg\",srcSet:\"https://framerusercontent.com/images/eUnFSnlF7FGeWFqmw6B4Ifk0L0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eUnFSnlF7FGeWFqmw6B4Ifk0L0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eUnFSnlF7FGeWFqmw6B4Ifk0L0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eUnFSnlF7FGeWFqmw6B4Ifk0L0.jpg 3000w\"},className:\"framer-6i547f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"t4nvfG9GU\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/AFVERtLGq5f1IlhQn6fkJGBvo.jpg\",srcSet:\"https://framerusercontent.com/images/AFVERtLGq5f1IlhQn6fkJGBvo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AFVERtLGq5f1IlhQn6fkJGBvo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AFVERtLGq5f1IlhQn6fkJGBvo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AFVERtLGq5f1IlhQn6fkJGBvo.jpg 3000w\"},className:\"framer-35fbem\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XV1NVu3KY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"215px\",src:\"https://framerusercontent.com/images/VOvMFez1hBR8T5PwEQkgwy1dE.jpg\",srcSet:\"https://framerusercontent.com/images/VOvMFez1hBR8T5PwEQkgwy1dE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VOvMFez1hBR8T5PwEQkgwy1dE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VOvMFez1hBR8T5PwEQkgwy1dE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VOvMFez1hBR8T5PwEQkgwy1dE.jpg 3000w\"},className:\"framer-1t75844\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"WvZ7MPZ5b\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"215px\",src:\"https://framerusercontent.com/images/Qi4cQZIBanEVU0wU3VBfWxTLhw.jpg\",srcSet:\"https://framerusercontent.com/images/Qi4cQZIBanEVU0wU3VBfWxTLhw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Qi4cQZIBanEVU0wU3VBfWxTLhw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qi4cQZIBanEVU0wU3VBfWxTLhw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Qi4cQZIBanEVU0wU3VBfWxTLhw.jpg 3000w\"},className:\"framer-1fl2yiz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jWC9bESiN\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/uRVdXCfcYm11PNsvTDl3842Wfw.jpg\",srcSet:\"https://framerusercontent.com/images/uRVdXCfcYm11PNsvTDl3842Wfw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uRVdXCfcYm11PNsvTDl3842Wfw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uRVdXCfcYm11PNsvTDl3842Wfw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uRVdXCfcYm11PNsvTDl3842Wfw.jpg 3000w\"},className:\"framer-hxjswk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"lgaCl5PEe\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"273px\",src:\"https://framerusercontent.com/images/8wCpXZtfm4mS0LgTHTSfJvzDENk.jpg\",srcSet:\"https://framerusercontent.com/images/8wCpXZtfm4mS0LgTHTSfJvzDENk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8wCpXZtfm4mS0LgTHTSfJvzDENk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8wCpXZtfm4mS0LgTHTSfJvzDENk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8wCpXZtfm4mS0LgTHTSfJvzDENk.jpg 3000w\"},className:\"framer-9dnflg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"N8KjtTk15\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/ob5wCzo7KUped0OhMo4D1MrY9A.jpg\",srcSet:\"https://framerusercontent.com/images/ob5wCzo7KUped0OhMo4D1MrY9A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ob5wCzo7KUped0OhMo4D1MrY9A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ob5wCzo7KUped0OhMo4D1MrY9A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ob5wCzo7KUped0OhMo4D1MrY9A.jpg 3000w\"},className:\"framer-146uwol\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"A9GL4baRI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/YfY93FcezbHEUoIww1kGI9hg628.jpg\",srcSet:\"https://framerusercontent.com/images/YfY93FcezbHEUoIww1kGI9hg628.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/YfY93FcezbHEUoIww1kGI9hg628.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/YfY93FcezbHEUoIww1kGI9hg628.jpg 2000w\"},className:\"framer-1gj15tj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eCVuabilt\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",src:\"https://framerusercontent.com/images/K3zSCFbXORCxWb32EG2qOtUXisI.jpg\",srcSet:\"https://framerusercontent.com/images/K3zSCFbXORCxWb32EG2qOtUXisI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/K3zSCFbXORCxWb32EG2qOtUXisI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/K3zSCFbXORCxWb32EG2qOtUXisI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/K3zSCFbXORCxWb32EG2qOtUXisI.jpg 3000w\"},className:\"framer-xl1c32\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HHcyG5KhQ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/jgvlYNzWnKn0aVCnHMHs9rOohE.jpg\",srcSet:\"https://framerusercontent.com/images/jgvlYNzWnKn0aVCnHMHs9rOohE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jgvlYNzWnKn0aVCnHMHs9rOohE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jgvlYNzWnKn0aVCnHMHs9rOohE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jgvlYNzWnKn0aVCnHMHs9rOohE.jpg 3000w\"},className:\"framer-jm6kzd\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZuZkOGhji\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"215px\",src:\"https://framerusercontent.com/images/oxYJ5j4qOIOb57vI7XF4lBgAQU.jpg\",srcSet:\"https://framerusercontent.com/images/oxYJ5j4qOIOb57vI7XF4lBgAQU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oxYJ5j4qOIOb57vI7XF4lBgAQU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxYJ5j4qOIOb57vI7XF4lBgAQU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oxYJ5j4qOIOb57vI7XF4lBgAQU.jpg 3000w\"},className:\"framer-1qnynpz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TpYCclCg4\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",src:\"https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg\",srcSet:\"https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5g8rdhr6eHay8lVQqatuUxaz4I.jpg 3000w\"},className:\"framer-1a9lad5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"gi_VE40WO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7d1Mp.framer-s5diaa, .framer-7d1Mp .framer-s5diaa { display: block; }\",\".framer-7d1Mp.framer-jzphf8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-7d1Mp .framer-139v74j-container, .framer-7d1Mp .framer-c5lkb2-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-7d1Mp .framer-1hpzmo4, .framer-7d1Mp .framer-fy8exy { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7d1Mp .framer-1pw7eq1, .framer-7d1Mp .framer-1un1dez, .framer-7d1Mp .framer-1mv21x6 { aspect-ratio: 0.8043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-b2yl62, .framer-7d1Mp .framer-8sj33t { flex: none; height: 184px; overflow: hidden; position: relative; width: 195px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-a4l4x0 { flex: none; height: 184px; overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-apumst, .framer-7d1Mp .framer-1kettdt, .framer-7d1Mp .framer-1jtarxj { flex: none; height: 184px; overflow: hidden; position: relative; width: 221px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-lkr7m1, .framer-7d1Mp .framer-38v40d, .framer-7d1Mp .framer-k0lwkl, .framer-7d1Mp .framer-k6cjb1, .framer-7d1Mp .framer-vyzuy4, .framer-7d1Mp .framer-itqfed, .framer-7d1Mp .framer-1wktwg5, .framer-7d1Mp .framer-1vyuo84, .framer-7d1Mp .framer-1g3j2mj, .framer-7d1Mp .framer-1n4qxry, .framer-7d1Mp .framer-1weca0p, .framer-7d1Mp .framer-17d77q6, .framer-7d1Mp .framer-18bqqw8, .framer-7d1Mp .framer-1h46c6o, .framer-7d1Mp .framer-1nb0vkt, .framer-7d1Mp .framer-1feaog2, .framer-7d1Mp .framer-6i547f, .framer-7d1Mp .framer-35fbem, .framer-7d1Mp .framer-hxjswk, .framer-7d1Mp .framer-146uwol, .framer-7d1Mp .framer-jm6kzd { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-bkc787 { flex: none; height: 184px; overflow: hidden; position: relative; width: 155px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-13qzmq0 { flex: none; height: 184px; overflow: hidden; position: relative; width: 233px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-3wibyo { flex: none; height: 184px; overflow: hidden; position: relative; width: 275px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-gqfqcg { flex: none; height: 184px; overflow: hidden; position: relative; width: 164px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-duav2o, .framer-7d1Mp .framer-1fs4m9g { flex: none; height: 184px; overflow: hidden; position: relative; width: 278px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-daci1a { flex: none; height: 184px; overflow: hidden; position: relative; width: 253px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-qsflx8 { flex: none; height: 184px; overflow: hidden; position: relative; width: 173px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-172iqfc { flex: none; height: 184px; overflow: hidden; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-9io0gc, .framer-7d1Mp .framer-b9f42n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-z3gg5d { flex: none; height: 184px; overflow: hidden; position: relative; width: 237px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-wfq10o { flex: none; height: 184px; overflow: hidden; position: relative; width: 170px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-1yuslot { flex: none; height: 184px; overflow: hidden; position: relative; width: 213px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-1kujxux { flex: none; height: 184px; overflow: hidden; position: relative; width: 207px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-1t75844, .framer-7d1Mp .framer-1fl2yiz, .framer-7d1Mp .framer-1qnynpz { flex: none; height: 184px; overflow: hidden; position: relative; width: 215px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-9dnflg { flex: none; height: 184px; overflow: hidden; position: relative; width: 273px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-1gj15tj { flex: none; height: 184px; overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7d1Mp .framer-xl1c32, .framer-7d1Mp .framer-1a9lad5 { flex: none; height: 184px; overflow: hidden; position: relative; width: 337px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7d1Mp.framer-jzphf8, .framer-7d1Mp .framer-1hpzmo4, .framer-7d1Mp .framer-fy8exy { gap: 0px; } .framer-7d1Mp.framer-jzphf8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-7d1Mp.framer-jzphf8 > :first-child { margin-top: 0px; } .framer-7d1Mp.framer-jzphf8 > :last-child { margin-bottom: 0px; } .framer-7d1Mp .framer-1hpzmo4 > *, .framer-7d1Mp .framer-fy8exy > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-7d1Mp .framer-1hpzmo4 > :first-child, .framer-7d1Mp .framer-fy8exy > :first-child { margin-left: 0px; } .framer-7d1Mp .framer-1hpzmo4 > :last-child, .framer-7d1Mp .framer-fy8exy > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrjuoNCGia=withCSS(Component,css,\"framer-7d1Mp\");export default FramerrjuoNCGia;FramerrjuoNCGia.displayName=\"WEBX\";FramerrjuoNCGia.defaultProps={height:388,width:1148};addFonts(FramerrjuoNCGia,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrjuoNCGia\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"388\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1148\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rjuoNCGia.map", "// Generated by Framer (63ecd5c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-EZLJM\";const variantClassNames={vB45I1XO5:\"framer-v-1hseh70\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"vB45I1XO5\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hseh70\",className,classNames),\"data-framer-name\":\"Token2049 Dubai \",layoutDependency:layoutDependency,layoutId:\"vB45I1XO5\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10gb33w-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ektxpozs5-container\",nodeId:\"Ektxpozs5\",rendersWithMotion:true,scopeId:\"rmtP5JYRB\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"Ektxpozs5\",layoutId:\"Ektxpozs5\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hlb57a\",\"data-framer-name\":\"Token2049 Dubai  Gallery Row\",layoutDependency:layoutDependency,layoutId:\"qfvgxzH9m\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/HujWK6I4w6ym5GzvfjJiZ5U6WZ0.webp\"},className:\"framer-chs3bn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ufJLFQWCZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/vt2SkCip2MstWNGvg2rq3ddBXDg.webp\"},className:\"framer-1ewp11n\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HsP5s4OAv\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/U7RaAMJIvaMA142XWlOaZoRAmkI.webp\"},className:\"framer-1x0fkdu\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"J7x_36o3J\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/jEcYGCUISCVw5mT0ZIicX614oNQ.webp\"},className:\"framer-eg2l8m\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cBmNVrogW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/OuaIidhy1TJXbPjJHkuNmJeaGWU.webp\"},className:\"framer-uf4x62\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HJTtfy_fl\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/HujWK6I4w6ym5GzvfjJiZ5U6WZ0.webp\"},className:\"framer-u5ltex\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fccNmdV8m\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/vt2SkCip2MstWNGvg2rq3ddBXDg.webp\"},className:\"framer-1g2arqb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hDK10K2vT\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/U7RaAMJIvaMA142XWlOaZoRAmkI.webp\"},className:\"framer-1l1mst9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"vEkx6rhpv\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/jEcYGCUISCVw5mT0ZIicX614oNQ.webp\"},className:\"framer-1redwbj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"z_rnyFmSh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19ltxks-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XLFBLepsj-container\",nodeId:\"XLFBLepsj\",rendersWithMotion:true,scopeId:\"rmtP5JYRB\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"XLFBLepsj\",layoutId:\"XLFBLepsj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j7y0p8\",\"data-framer-name\":\"Token2049 Dubai  Gallery Row2\",layoutDependency:layoutDependency,layoutId:\"EAPYzGIiU\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/63MpHOJ56ba1qSMQusIeKCsh1E8.webp\"},className:\"framer-3rleye\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Pl8i9HBMJ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/2Sgd34WbzdXS90Bfr44Zy18CHA.webp\"},className:\"framer-agxal4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZsiNUd4Kr\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/pvwCLszteOmnGVY5pGy6833d38.webp\"},className:\"framer-1hfelb1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Pno8Xju0Q\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/tXTt7emQp6N6uw0LRGcOohutW4.webp\"},className:\"framer-8eosgo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"EaQscUiO_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/OuaIidhy1TJXbPjJHkuNmJeaGWU.webp\"},className:\"framer-cior08\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mv_FygmFZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/63MpHOJ56ba1qSMQusIeKCsh1E8.webp\"},className:\"framer-c0oy4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RZ4UKnsnk\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/2Sgd34WbzdXS90Bfr44Zy18CHA.webp\"},className:\"framer-17ukwol\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"a3i3qw7mD\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/pvwCLszteOmnGVY5pGy6833d38.webp\"},className:\"framer-k35ddm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Yf4wCQ75c\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/tXTt7emQp6N6uw0LRGcOohutW4.webp\"},className:\"framer-1kbrgc2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tiqrPiOcj\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/HujWK6I4w6ym5GzvfjJiZ5U6WZ0.webp\"},className:\"framer-fdz11j\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"W8wIVq6gq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EZLJM.framer-13pk6dx, .framer-EZLJM .framer-13pk6dx { display: block; }\",\".framer-EZLJM.framer-1hseh70 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-EZLJM .framer-10gb33w-container, .framer-EZLJM .framer-19ltxks-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-EZLJM .framer-1hlb57a, .framer-EZLJM .framer-1j7y0p8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-EZLJM .framer-chs3bn, .framer-EZLJM .framer-1x0fkdu, .framer-EZLJM .framer-eg2l8m, .framer-EZLJM .framer-uf4x62, .framer-EZLJM .framer-u5ltex { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-1ewp11n, .framer-EZLJM .framer-1g2arqb, .framer-EZLJM .framer-8eosgo { flex: none; height: 184px; overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-1l1mst9 { flex: none; height: 184px; overflow: hidden; position: relative; width: 309px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-1redwbj { flex: none; height: 184px; overflow: hidden; position: relative; width: 376px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-3rleye { flex: none; height: 184px; overflow: hidden; position: relative; width: 381px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-agxal4 { flex: none; height: 184px; overflow: hidden; position: relative; width: 363px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-1hfelb1 { flex: none; height: 184px; overflow: hidden; position: relative; width: 371px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-cior08 { flex: none; height: 184px; overflow: hidden; position: relative; width: 367px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-c0oy4 { flex: none; height: 184px; overflow: hidden; position: relative; width: 382px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-17ukwol { flex: none; height: 184px; overflow: hidden; position: relative; width: 412px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-k35ddm { flex: none; height: 184px; overflow: hidden; position: relative; width: 372px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-1kbrgc2 { flex: none; height: 184px; overflow: hidden; position: relative; width: 422px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EZLJM .framer-fdz11j { flex: none; height: 184px; overflow: hidden; position: relative; width: 177px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EZLJM.framer-1hseh70, .framer-EZLJM .framer-1hlb57a, .framer-EZLJM .framer-1j7y0p8 { gap: 0px; } .framer-EZLJM.framer-1hseh70 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-EZLJM.framer-1hseh70 > :first-child { margin-top: 0px; } .framer-EZLJM.framer-1hseh70 > :last-child { margin-bottom: 0px; } .framer-EZLJM .framer-1hlb57a > *, .framer-EZLJM .framer-1j7y0p8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-EZLJM .framer-1hlb57a > :first-child, .framer-EZLJM .framer-1j7y0p8 > :first-child { margin-left: 0px; } .framer-EZLJM .framer-1hlb57a > :last-child, .framer-EZLJM .framer-1j7y0p8 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrmtP5JYRB=withCSS(Component,css,\"framer-EZLJM\");export default FramerrmtP5JYRB;FramerrmtP5JYRB.displayName=\"Gallery / <AI - ALL> Summit Ticker\";FramerrmtP5JYRB.defaultProps={height:388,width:1148};addFonts(FramerrmtP5JYRB,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrmtP5JYRB\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1148\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"388\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rmtP5JYRB.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-5v9bz\";const variantClassNames={DqWbL3_s7:\"framer-v-z3wbwg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"DqWbL3_s7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-z3wbwg\",className,classNames),\"data-framer-name\":\"ACL\",layoutDependency:layoutDependency,layoutId:\"DqWbL3_s7\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ve6gu9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KKVTUZuvn-container\",nodeId:\"KKVTUZuvn\",rendersWithMotion:true,scopeId:\"wQwvveKfy\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"KKVTUZuvn\",layoutId:\"KKVTUZuvn\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fij42p\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"pZ7YgMu2z\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,src:\"https://framerusercontent.com/images/vkwYijfmgPEjZrAgXPWcHXRvGkU.jpg\"},className:\"framer-118o38u\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ChUtcO3rz\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/1YggyPpvtxvIoGxRnmkw9HWUTU.jpg\",srcSet:\"https://framerusercontent.com/images/1YggyPpvtxvIoGxRnmkw9HWUTU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1YggyPpvtxvIoGxRnmkw9HWUTU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1YggyPpvtxvIoGxRnmkw9HWUTU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1YggyPpvtxvIoGxRnmkw9HWUTU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/1YggyPpvtxvIoGxRnmkw9HWUTU.jpg 7008w\"},className:\"framer-1jwvh5v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eP7c43mJ5\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3072,pixelWidth:4608,sizes:\"326px\",src:\"https://framerusercontent.com/images/ti8d34gHCAINRPkHoZ6cjsRHcI.jpg\",srcSet:\"https://framerusercontent.com/images/ti8d34gHCAINRPkHoZ6cjsRHcI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ti8d34gHCAINRPkHoZ6cjsRHcI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ti8d34gHCAINRPkHoZ6cjsRHcI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ti8d34gHCAINRPkHoZ6cjsRHcI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ti8d34gHCAINRPkHoZ6cjsRHcI.jpg 4608w\"},className:\"framer-17pwyjy\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SFEGJ5zOq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"170px\",src:\"https://framerusercontent.com/images/Wn6Nx6ol0FK9Whaofx3KMki79U.jpg\",srcSet:\"https://framerusercontent.com/images/Wn6Nx6ol0FK9Whaofx3KMki79U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Wn6Nx6ol0FK9Whaofx3KMki79U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wn6Nx6ol0FK9Whaofx3KMki79U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Wn6Nx6ol0FK9Whaofx3KMki79U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Wn6Nx6ol0FK9Whaofx3KMki79U.jpg 7008w\"},className:\"framer-184vtix\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"aIjeEXh1q\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/os23WdWeG7fG5TPlbmWq4BQNnjg.jpg\",srcSet:\"https://framerusercontent.com/images/os23WdWeG7fG5TPlbmWq4BQNnjg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/os23WdWeG7fG5TPlbmWq4BQNnjg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/os23WdWeG7fG5TPlbmWq4BQNnjg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/os23WdWeG7fG5TPlbmWq4BQNnjg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/os23WdWeG7fG5TPlbmWq4BQNnjg.jpg 4240w\"},className:\"framer-dgjrdy\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Kh5iD2t5I\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,positionX:\"left\",positionY:\"center\",sizes:\"221px\",src:\"https://framerusercontent.com/images/SsMaOygI476RCgw5EK4N3t8m8Yo.jpg\",srcSet:\"https://framerusercontent.com/images/SsMaOygI476RCgw5EK4N3t8m8Yo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SsMaOygI476RCgw5EK4N3t8m8Yo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SsMaOygI476RCgw5EK4N3t8m8Yo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SsMaOygI476RCgw5EK4N3t8m8Yo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/SsMaOygI476RCgw5EK4N3t8m8Yo.jpg 7008w\"},className:\"framer-1hns97\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"m94HiJ9gF\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/0odZLVFqVnHTXOSQju3Kx3cgxc.jpg\",srcSet:\"https://framerusercontent.com/images/0odZLVFqVnHTXOSQju3Kx3cgxc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0odZLVFqVnHTXOSQju3Kx3cgxc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0odZLVFqVnHTXOSQju3Kx3cgxc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0odZLVFqVnHTXOSQju3Kx3cgxc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0odZLVFqVnHTXOSQju3Kx3cgxc.jpg 7008w\"},className:\"framer-909sye\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CnGKKyCvB\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/0FQZSClqzn8JXnHPSfYZQJFSk.jpg\",srcSet:\"https://framerusercontent.com/images/0FQZSClqzn8JXnHPSfYZQJFSk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0FQZSClqzn8JXnHPSfYZQJFSk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0FQZSClqzn8JXnHPSfYZQJFSk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0FQZSClqzn8JXnHPSfYZQJFSk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/0FQZSClqzn8JXnHPSfYZQJFSk.jpg 4240w\"},className:\"framer-155k7wn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"WG97q2htR\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg\",srcSet:\"https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg 7008w\"},className:\"framer-1rp5pkw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nf9qgyrjA\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/lgm3Oc80QC1JBfXdDisiHnzmnU.jpg\",srcSet:\"https://framerusercontent.com/images/lgm3Oc80QC1JBfXdDisiHnzmnU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lgm3Oc80QC1JBfXdDisiHnzmnU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lgm3Oc80QC1JBfXdDisiHnzmnU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/lgm3Oc80QC1JBfXdDisiHnzmnU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/lgm3Oc80QC1JBfXdDisiHnzmnU.jpg 7008w\"},className:\"framer-q2bdtd\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"oSe6D5LcC\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"148px\",src:\"https://framerusercontent.com/images/LPqz8XfCmOMUup6pKvCAoEmbKDw.jpg\",srcSet:\"https://framerusercontent.com/images/LPqz8XfCmOMUup6pKvCAoEmbKDw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LPqz8XfCmOMUup6pKvCAoEmbKDw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LPqz8XfCmOMUup6pKvCAoEmbKDw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LPqz8XfCmOMUup6pKvCAoEmbKDw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/LPqz8XfCmOMUup6pKvCAoEmbKDw.jpg 7008w\"},className:\"framer-1c8hxka\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jIgDaeC9R\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg\",srcSet:\"https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg 7008w\"},className:\"framer-fvf72k\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZIy9Dof2M\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"237px\",src:\"https://framerusercontent.com/images/LSsRf5W5xMHHxBrtuQ7Fu8WZgM.jpg\",srcSet:\"https://framerusercontent.com/images/LSsRf5W5xMHHxBrtuQ7Fu8WZgM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LSsRf5W5xMHHxBrtuQ7Fu8WZgM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LSsRf5W5xMHHxBrtuQ7Fu8WZgM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LSsRf5W5xMHHxBrtuQ7Fu8WZgM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/LSsRf5W5xMHHxBrtuQ7Fu8WZgM.jpg 4240w\"},className:\"framer-6pjl88\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"l1KRZaFrY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5wnri7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DzHlthXAR-container\",nodeId:\"DzHlthXAR\",rendersWithMotion:true,scopeId:\"wQwvveKfy\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"DzHlthXAR\",layoutId:\"DzHlthXAR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18ag07u\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"zn_t7geIP\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/ZuTcFGWxylTbMcf6Q3FWmzdlSrI.jpg\",srcSet:\"https://framerusercontent.com/images/ZuTcFGWxylTbMcf6Q3FWmzdlSrI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZuTcFGWxylTbMcf6Q3FWmzdlSrI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZuTcFGWxylTbMcf6Q3FWmzdlSrI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZuTcFGWxylTbMcf6Q3FWmzdlSrI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ZuTcFGWxylTbMcf6Q3FWmzdlSrI.jpg 7008w\"},className:\"framer-1sx26ca\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xAb_a_NCb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"148px\",src:\"https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg\",srcSet:\"https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/uyH0CIWPZoWNTtF4THLZDP2pY5c.jpg 7008w\"},className:\"framer-moq81o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OJq1PFHwk\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/zg8LWfOQh0TUIy7Job7EwvcC4yE.jpg\",srcSet:\"https://framerusercontent.com/images/zg8LWfOQh0TUIy7Job7EwvcC4yE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zg8LWfOQh0TUIy7Job7EwvcC4yE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zg8LWfOQh0TUIy7Job7EwvcC4yE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zg8LWfOQh0TUIy7Job7EwvcC4yE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zg8LWfOQh0TUIy7Job7EwvcC4yE.jpg 7008w\"},className:\"framer-8x5qh7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"bGZJehK_W\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"184px\",src:\"https://framerusercontent.com/images/P0iH7ULC37vU3IfsZTitDdGKCxE.jpg\",srcSet:\"https://framerusercontent.com/images/P0iH7ULC37vU3IfsZTitDdGKCxE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P0iH7ULC37vU3IfsZTitDdGKCxE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P0iH7ULC37vU3IfsZTitDdGKCxE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/P0iH7ULC37vU3IfsZTitDdGKCxE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/P0iH7ULC37vU3IfsZTitDdGKCxE.jpg 7008w\"},className:\"framer-gnc0e3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"AZ8VQxPL9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/AzZbrNjeaveP0byIj95eHU7aJjU.jpg\",srcSet:\"https://framerusercontent.com/images/AzZbrNjeaveP0byIj95eHU7aJjU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AzZbrNjeaveP0byIj95eHU7aJjU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AzZbrNjeaveP0byIj95eHU7aJjU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AzZbrNjeaveP0byIj95eHU7aJjU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/AzZbrNjeaveP0byIj95eHU7aJjU.jpg 7008w\"},className:\"framer-3q2ch0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CQ5xcc4Om\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3072,pixelWidth:4608,positionX:\"left\",positionY:\"center\",sizes:\"237px\",src:\"https://framerusercontent.com/images/O71H1NKCj2KCPK1zqmQ0cMN8.jpg\",srcSet:\"https://framerusercontent.com/images/O71H1NKCj2KCPK1zqmQ0cMN8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O71H1NKCj2KCPK1zqmQ0cMN8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O71H1NKCj2KCPK1zqmQ0cMN8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O71H1NKCj2KCPK1zqmQ0cMN8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/O71H1NKCj2KCPK1zqmQ0cMN8.jpg 4608w\"},className:\"framer-9m9psk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sppda0XJy\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/gZISg0OL8joWBzTwunV9hEk6sU.jpg\",srcSet:\"https://framerusercontent.com/images/gZISg0OL8joWBzTwunV9hEk6sU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gZISg0OL8joWBzTwunV9hEk6sU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gZISg0OL8joWBzTwunV9hEk6sU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gZISg0OL8joWBzTwunV9hEk6sU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/gZISg0OL8joWBzTwunV9hEk6sU.jpg 7008w\"},className:\"framer-1hlmk8l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qlVR3_2GY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,src:\"https://framerusercontent.com/images/eezYNu4dRSd6MqDpyVEp22VDWk.jpg\"},className:\"framer-3hxw81\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Moh8bACAE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"170px\",src:\"https://framerusercontent.com/images/WK1bHegLJ6CkCXYOLzYVhM1XOc.jpg\",srcSet:\"https://framerusercontent.com/images/WK1bHegLJ6CkCXYOLzYVhM1XOc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WK1bHegLJ6CkCXYOLzYVhM1XOc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WK1bHegLJ6CkCXYOLzYVhM1XOc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WK1bHegLJ6CkCXYOLzYVhM1XOc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/WK1bHegLJ6CkCXYOLzYVhM1XOc.jpg 4240w\"},className:\"framer-tnyzph\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"I7sa0kHoI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg\",srcSet:\"https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/4W3aGm7nMaacqcQTDSa1sbE.jpg 7008w\"},className:\"framer-1u71y19\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tz5wsGU_2\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/zz0X7azw9if5umFs1ytbgygkk.jpg\",srcSet:\"https://framerusercontent.com/images/zz0X7azw9if5umFs1ytbgygkk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zz0X7azw9if5umFs1ytbgygkk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zz0X7azw9if5umFs1ytbgygkk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zz0X7azw9if5umFs1ytbgygkk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zz0X7azw9if5umFs1ytbgygkk.jpg 4240w\"},className:\"framer-dvlkpe\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"boVsOemqI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,sizes:\"326px\",src:\"https://framerusercontent.com/images/dSSENhaa6T0leQuccBb0Unkr2Q.jpg\",srcSet:\"https://framerusercontent.com/images/dSSENhaa6T0leQuccBb0Unkr2Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dSSENhaa6T0leQuccBb0Unkr2Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dSSENhaa6T0leQuccBb0Unkr2Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dSSENhaa6T0leQuccBb0Unkr2Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dSSENhaa6T0leQuccBb0Unkr2Q.jpg 7008w\"},className:\"framer-fgxw64\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xMIJD0KHW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3072,pixelWidth:4608,sizes:\"326px\",src:\"https://framerusercontent.com/images/xW5znG1YFekaUe3HOgq3Wj4xOno.jpg\",srcSet:\"https://framerusercontent.com/images/xW5znG1YFekaUe3HOgq3Wj4xOno.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xW5znG1YFekaUe3HOgq3Wj4xOno.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xW5znG1YFekaUe3HOgq3Wj4xOno.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xW5znG1YFekaUe3HOgq3Wj4xOno.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/xW5znG1YFekaUe3HOgq3Wj4xOno.jpg 4608w\"},className:\"framer-bvcrk7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"w_gvAKXt2\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5v9bz.framer-1iapdwt, .framer-5v9bz .framer-1iapdwt { display: block; }\",\".framer-5v9bz.framer-z3wbwg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-5v9bz .framer-ve6gu9-container, .framer-5v9bz .framer-5wnri7-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-5v9bz .framer-fij42p, .framer-5v9bz .framer-18ag07u { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5v9bz .framer-118o38u, .framer-5v9bz .framer-3hxw81 { flex: none; height: 184px; overflow: hidden; position: relative; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5v9bz .framer-1jwvh5v, .framer-5v9bz .framer-17pwyjy, .framer-5v9bz .framer-dgjrdy, .framer-5v9bz .framer-909sye, .framer-5v9bz .framer-155k7wn, .framer-5v9bz .framer-1rp5pkw, .framer-5v9bz .framer-q2bdtd, .framer-5v9bz .framer-fvf72k, .framer-5v9bz .framer-1sx26ca, .framer-5v9bz .framer-8x5qh7, .framer-5v9bz .framer-3q2ch0, .framer-5v9bz .framer-1hlmk8l, .framer-5v9bz .framer-1u71y19, .framer-5v9bz .framer-dvlkpe, .framer-5v9bz .framer-fgxw64, .framer-5v9bz .framer-bvcrk7 { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5v9bz .framer-184vtix, .framer-5v9bz .framer-tnyzph { flex: none; height: 184px; overflow: hidden; position: relative; width: 170px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5v9bz .framer-1hns97 { flex: none; height: 184px; overflow: hidden; position: relative; width: 221px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5v9bz .framer-1c8hxka, .framer-5v9bz .framer-moq81o { aspect-ratio: 0.8043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5v9bz .framer-6pjl88, .framer-5v9bz .framer-9m9psk { flex: none; height: 184px; overflow: hidden; position: relative; width: 237px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5v9bz .framer-gnc0e3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5v9bz.framer-z3wbwg, .framer-5v9bz .framer-fij42p, .framer-5v9bz .framer-18ag07u { gap: 0px; } .framer-5v9bz.framer-z3wbwg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5v9bz.framer-z3wbwg > :first-child { margin-top: 0px; } .framer-5v9bz.framer-z3wbwg > :last-child { margin-bottom: 0px; } .framer-5v9bz .framer-fij42p > *, .framer-5v9bz .framer-18ag07u > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-5v9bz .framer-fij42p > :first-child, .framer-5v9bz .framer-18ag07u > :first-child { margin-left: 0px; } .framer-5v9bz .framer-fij42p > :last-child, .framer-5v9bz .framer-18ag07u > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwQwvveKfy=withCSS(Component,css,\"framer-5v9bz\");export default FramerwQwvveKfy;FramerwQwvveKfy.displayName=\"Gallery / Singularity: AI x Crypto Convergence\\xa0 Ticker\";FramerwQwvveKfy.defaultProps={height:388,width:1148};addFonts(FramerwQwvveKfy,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwQwvveKfy\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1148\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"388\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wQwvveKfy.map", "// Generated by Framer (63ecd5c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-HZH87\";const variantClassNames={LgDQU0DlF:\"framer-v-ng9dci\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LgDQU0DlF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ng9dci\",className,classNames),\"data-framer-name\":\"<AI All Summit> Dubai\",layoutDependency:layoutDependency,layoutId:\"LgDQU0DlF\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rstlrw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"scGnVpGOQ-container\",nodeId:\"scGnVpGOQ\",rendersWithMotion:true,scopeId:\"ZAqjQHs2Y\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"scGnVpGOQ\",layoutId:\"scGnVpGOQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-160no0e\",\"data-framer-name\":\"AIALL A| Submit Gallery Row\",layoutDependency:layoutDependency,layoutId:\"A0xOT6VNr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/TIzgbaMvti38xCxEtNulw0YZBxk.webp\"},className:\"framer-1aory9m\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HwzEWdRqB\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/cPkgoOto6tnTNT5rfXKI43TCPyA.webp\"},className:\"framer-u74buf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"N7CW3GOKP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/8fywvPMDvu99W5lyM4l4iudBXQ.webp\"},className:\"framer-1qbtlgk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"R5cUg8Pzw\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/OCro3cizxNVcDjb5ApvwIiVh70.webp\"},className:\"framer-yvna5j\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"p3rQIPsUz\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/x7ZzMMPdHvKPJE4BE2mTrIukTE.webp\"},className:\"framer-1e4avg2\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iwXr3OM5J\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/f1Ol7GKBkG4iEYdMT07rssZafg.webp\"},className:\"framer-138xmtn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"c_Matgali\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/GYjyYKy1wjA6tbF5LShIhCywuE.webp\"},className:\"framer-15y534t\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IBf_Q56Fh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/G8HYabSe9a1gVUd9mzznKZmK5Y.webp\"},className:\"framer-ciotv8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LDRfuPPiV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/IMmRCq1BeePIZMabfSUDjQz0RA.webp\"},className:\"framer-d8tser\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OWWh74UgW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/fyHCyWmwQkGqdEudVh0jhXWMFs.webp\"},className:\"framer-1jbim4f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wOa2Mr4Ft\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/vkioCRcAa3rTGKak51S6SlF9hlk.webp\"},className:\"framer-1ln723t\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"o2hfr8FZt\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/0zwgLTiJb7lQ6Uu8fh5fNxaoTrg.webp\"},className:\"framer-lo76d6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"c78wG5DS9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/uu7P49IXMYYH1OfIyKSSZACbH9o.webp\"},className:\"framer-19tbv99\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ORNJzKrNq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/r7WjPMc9FPhGY7mGASgJTHM58ac.webp\"},className:\"framer-kr2k5o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HJiv9Z21N\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/CzfZYAE5Kdpgkuq8vc1IrPOQzio.webp\"},className:\"framer-1uwqqqf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JpdBlOpCm\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vtvkro-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Y7ESKhRcT-container\",nodeId:\"Y7ESKhRcT\",rendersWithMotion:true,scopeId:\"ZAqjQHs2Y\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"Y7ESKhRcT\",layoutId:\"Y7ESKhRcT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ba9afv\",\"data-framer-name\":\"AIALL A| Submit Gallery Row2\",layoutDependency:layoutDependency,layoutId:\"MyKnaEJJF\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/g2lfx20c5f5psZDdi2mP8BHPzk.webp\"},className:\"framer-x4tho4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PCXmh_H2N\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/A64Cyf0zmrbz3QFht4xei3k4Z1E.webp\"},className:\"framer-10wt1yz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rPTVMj4kh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/9xqDnG9Fb4hL86gSwVMIM7wpk.webp\"},className:\"framer-cwul3y\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"u17aHT30N\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/mirot92VBEIhVmCsYX6h2EoM70.webp\"},className:\"framer-4p1eo1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"U2F0G1xGW\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/9hipWJ7RabNPqBaScIo2XaSJs0.webp\"},className:\"framer-1lsih2j\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"c1AaPDNMb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/OBbiRIuUxNS5aMPTCICYFgUKXg.webp\"},className:\"framer-p7bpzc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FK4qsvEIS\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/qJxgDYOb0hMt3PnedX96qf9KhU8.webp\"},className:\"framer-zavsse\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kAmwBKseS\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/Ufzsg4lcOEEMADG37VWpR9WHs.webp\"},className:\"framer-1q3z9eq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XsUqJvRyg\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/VuwSvNI0xnCUjtb7Qcz55HhPo.webp\"},className:\"framer-1cdlasp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rKK9NrmPd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/oEEIt1jVIqwOhwMkdHrS27FDEHs.webp\"},className:\"framer-z5vz7v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UBD7hM5AZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/Z4oxT21m5Q7c5eVex4ahDHgJs.webp\"},className:\"framer-vdnflz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jcfq_fNoT\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/8OzbVITWoxJkNjoNNdWVodHaTGY.webp\"},className:\"framer-ndqzib\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RCm79wLYE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/43gyF19hlwdXMZJoaBLzjMdCvqE.webp\"},className:\"framer-80m5na\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Pj2CYCtCO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/hDDbIL7CByDWRJGnnTn0KQtZEYQ.webp\"},className:\"framer-41lazf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"srWU6Tk9j\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,src:\"https://framerusercontent.com/images/xCAGK60haegOtMKpJKX7JnP3Zo.webp\"},className:\"framer-oeh45c\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Kqb3mk39E\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:36,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HZH87.framer-kntye4, .framer-HZH87 .framer-kntye4 { display: block; }\",\".framer-HZH87.framer-ng9dci { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1148px; }\",\".framer-HZH87 .framer-rstlrw-container, .framer-HZH87 .framer-1vtvkro-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-HZH87 .framer-160no0e, .framer-HZH87 .framer-1ba9afv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HZH87 .framer-1aory9m, .framer-HZH87 .framer-u74buf, .framer-HZH87 .framer-1qbtlgk, .framer-HZH87 .framer-yvna5j, .framer-HZH87 .framer-1e4avg2, .framer-HZH87 .framer-138xmtn, .framer-HZH87 .framer-15y534t, .framer-HZH87 .framer-ciotv8, .framer-HZH87 .framer-d8tser, .framer-HZH87 .framer-1jbim4f, .framer-HZH87 .framer-1ln723t, .framer-HZH87 .framer-lo76d6, .framer-HZH87 .framer-19tbv99, .framer-HZH87 .framer-kr2k5o, .framer-HZH87 .framer-1uwqqqf, .framer-HZH87 .framer-x4tho4, .framer-HZH87 .framer-10wt1yz, .framer-HZH87 .framer-cwul3y, .framer-HZH87 .framer-4p1eo1, .framer-HZH87 .framer-1lsih2j, .framer-HZH87 .framer-p7bpzc, .framer-HZH87 .framer-zavsse, .framer-HZH87 .framer-1q3z9eq, .framer-HZH87 .framer-1cdlasp, .framer-HZH87 .framer-z5vz7v, .framer-HZH87 .framer-vdnflz, .framer-HZH87 .framer-ndqzib, .framer-HZH87 .framer-80m5na, .framer-HZH87 .framer-41lazf, .framer-HZH87 .framer-oeh45c { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HZH87.framer-ng9dci, .framer-HZH87 .framer-160no0e, .framer-HZH87 .framer-1ba9afv { gap: 0px; } .framer-HZH87.framer-ng9dci > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-HZH87.framer-ng9dci > :first-child { margin-top: 0px; } .framer-HZH87.framer-ng9dci > :last-child { margin-bottom: 0px; } .framer-HZH87 .framer-160no0e > *, .framer-HZH87 .framer-1ba9afv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-HZH87 .framer-160no0e > :first-child, .framer-HZH87 .framer-1ba9afv > :first-child { margin-left: 0px; } .framer-HZH87 .framer-160no0e > :last-child, .framer-HZH87 .framer-1ba9afv > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZAqjQHs2Y=withCSS(Component,css,\"framer-HZH87\");export default FramerZAqjQHs2Y;FramerZAqjQHs2Y.displayName=\"Gallery / Super AI Ticker\";FramerZAqjQHs2Y.defaultProps={height:388,width:1148};addFonts(FramerZAqjQHs2Y,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZAqjQHs2Y\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"388\",\"framerIntrinsicWidth\":\"1148\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZAqjQHs2Y.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-oZagz\";const variantClassNames={D0ITXwli2:\"framer-v-xv8y5f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"D0ITXwli2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-xv8y5f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D0ITXwli2\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qsqx44-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"V0CCopnEu-container\",nodeId:\"V0CCopnEu\",rendersWithMotion:true,scopeId:\"ZJGWOsNjf\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"V0CCopnEu\",layoutId:\"V0CCopnEu\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4epwnk\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"Ci5wdDxQO\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"282px\",src:\"https://framerusercontent.com/images/O253mPZAQol2xGcJj9U4LNHO4U.jpg\",srcSet:\"https://framerusercontent.com/images/O253mPZAQol2xGcJj9U4LNHO4U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O253mPZAQol2xGcJj9U4LNHO4U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O253mPZAQol2xGcJj9U4LNHO4U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O253mPZAQol2xGcJj9U4LNHO4U.jpg 3000w\"},className:\"framer-14s8oqt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CGIT3tlxX\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/Jk4ZMTmFPpRF8cjciyAedKNp1M.jpg\",srcSet:\"https://framerusercontent.com/images/Jk4ZMTmFPpRF8cjciyAedKNp1M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Jk4ZMTmFPpRF8cjciyAedKNp1M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jk4ZMTmFPpRF8cjciyAedKNp1M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Jk4ZMTmFPpRF8cjciyAedKNp1M.jpg 3000w\"},className:\"framer-c2hld9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"V9ghjoaDV\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/BPqwTOnNWMyABNPW8q5sNWOzk.jpg\",srcSet:\"https://framerusercontent.com/images/BPqwTOnNWMyABNPW8q5sNWOzk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BPqwTOnNWMyABNPW8q5sNWOzk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BPqwTOnNWMyABNPW8q5sNWOzk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BPqwTOnNWMyABNPW8q5sNWOzk.jpg 3000w\"},className:\"framer-i3dn3f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yPXcTP8h2\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"373px\",src:\"https://framerusercontent.com/images/nKFPbBMSgBQG3vDb0Kfi6d6kbY8.jpg\",srcSet:\"https://framerusercontent.com/images/nKFPbBMSgBQG3vDb0Kfi6d6kbY8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKFPbBMSgBQG3vDb0Kfi6d6kbY8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nKFPbBMSgBQG3vDb0Kfi6d6kbY8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nKFPbBMSgBQG3vDb0Kfi6d6kbY8.jpg 3000w\"},className:\"framer-1lulca8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"awHQtzm3C\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"282px\",src:\"https://framerusercontent.com/images/W3mT0V4OoiJCccRquZateFFTy0o.jpg\",srcSet:\"https://framerusercontent.com/images/W3mT0V4OoiJCccRquZateFFTy0o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/W3mT0V4OoiJCccRquZateFFTy0o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W3mT0V4OoiJCccRquZateFFTy0o.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W3mT0V4OoiJCccRquZateFFTy0o.jpg 3000w\"},className:\"framer-ni65us\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qzu74ZFbq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"248px\",src:\"https://framerusercontent.com/images/Genz4MUkYn7ucfZudVB3fFfuSo.jpg\",srcSet:\"https://framerusercontent.com/images/Genz4MUkYn7ucfZudVB3fFfuSo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Genz4MUkYn7ucfZudVB3fFfuSo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Genz4MUkYn7ucfZudVB3fFfuSo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Genz4MUkYn7ucfZudVB3fFfuSo.jpg 3000w\"},className:\"framer-11nup42\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"a_GniLHd_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/rIKgkpa6syBOLApUlvGTio5Y.jpg\",srcSet:\"https://framerusercontent.com/images/rIKgkpa6syBOLApUlvGTio5Y.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rIKgkpa6syBOLApUlvGTio5Y.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rIKgkpa6syBOLApUlvGTio5Y.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rIKgkpa6syBOLApUlvGTio5Y.jpg 3000w\"},className:\"framer-14qyeu6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ekINbBBhb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Hzv3w9cyBlPxYLLf9jICdKJKmxo.jpg\",srcSet:\"https://framerusercontent.com/images/Hzv3w9cyBlPxYLLf9jICdKJKmxo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Hzv3w9cyBlPxYLLf9jICdKJKmxo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Hzv3w9cyBlPxYLLf9jICdKJKmxo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Hzv3w9cyBlPxYLLf9jICdKJKmxo.jpg 3000w\"},className:\"framer-10oobay\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"t2DcBQzfm\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"221px\",src:\"https://framerusercontent.com/images/tb2TlwHeFZMOqXT7GXjAMC8f0.jpg\",srcSet:\"https://framerusercontent.com/images/tb2TlwHeFZMOqXT7GXjAMC8f0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tb2TlwHeFZMOqXT7GXjAMC8f0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tb2TlwHeFZMOqXT7GXjAMC8f0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tb2TlwHeFZMOqXT7GXjAMC8f0.jpg 3000w\"},className:\"framer-oyecy9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KsVN9HACn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/N0VLVyZ3nU5lZU5CDNIoh3cnfnE.jpg\",srcSet:\"https://framerusercontent.com/images/N0VLVyZ3nU5lZU5CDNIoh3cnfnE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N0VLVyZ3nU5lZU5CDNIoh3cnfnE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N0VLVyZ3nU5lZU5CDNIoh3cnfnE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N0VLVyZ3nU5lZU5CDNIoh3cnfnE.jpg 3000w\"},className:\"framer-1bva7bs\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wQNnP8rIE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"155px\",src:\"https://framerusercontent.com/images/9LuvUzkBNUGAgzHDfmAjgis0NmI.jpg\",srcSet:\"https://framerusercontent.com/images/9LuvUzkBNUGAgzHDfmAjgis0NmI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9LuvUzkBNUGAgzHDfmAjgis0NmI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9LuvUzkBNUGAgzHDfmAjgis0NmI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9LuvUzkBNUGAgzHDfmAjgis0NmI.jpg 3000w\"},className:\"framer-h91iby\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"EsMwMWtJe\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg\",srcSet:\"https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg 3000w\"},className:\"framer-19y79kq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"AWGW3cWBp\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/bLu9V0K5cAMZEvmqAwqz9deIDZI.jpg\",srcSet:\"https://framerusercontent.com/images/bLu9V0K5cAMZEvmqAwqz9deIDZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bLu9V0K5cAMZEvmqAwqz9deIDZI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bLu9V0K5cAMZEvmqAwqz9deIDZI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bLu9V0K5cAMZEvmqAwqz9deIDZI.jpg 3000w\"},className:\"framer-1epebr3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TFNpjTA0R\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/EglRdgv6IZ0QkCuG1rrjlXZBSfI.jpg\",srcSet:\"https://framerusercontent.com/images/EglRdgv6IZ0QkCuG1rrjlXZBSfI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/EglRdgv6IZ0QkCuG1rrjlXZBSfI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/EglRdgv6IZ0QkCuG1rrjlXZBSfI.jpg 2000w\"},className:\"framer-2804qt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BRVvTuCtw\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"233px\",src:\"https://framerusercontent.com/images/4vdrA4Tu8HAVm72sj5ubPMXFGQ.jpg\",srcSet:\"https://framerusercontent.com/images/4vdrA4Tu8HAVm72sj5ubPMXFGQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4vdrA4Tu8HAVm72sj5ubPMXFGQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4vdrA4Tu8HAVm72sj5ubPMXFGQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4vdrA4Tu8HAVm72sj5ubPMXFGQ.jpg 3000w\"},className:\"framer-1puvidn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MmZ1KD7d4\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"275px\",src:\"https://framerusercontent.com/images/wqaQ3PJbiLAzPwj0EyTDuIdbdY.jpg\",srcSet:\"https://framerusercontent.com/images/wqaQ3PJbiLAzPwj0EyTDuIdbdY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wqaQ3PJbiLAzPwj0EyTDuIdbdY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wqaQ3PJbiLAzPwj0EyTDuIdbdY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wqaQ3PJbiLAzPwj0EyTDuIdbdY.jpg 3000w\"},className:\"framer-h6v43p\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"vIExy5Fzn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"164px\",src:\"https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg\",srcSet:\"https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg 3000w\"},className:\"framer-1cykhbp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iIDnr0Oao\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-lx88ok\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FgTW8g6_i\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-1jv5xxo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eNTWCombE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-s5egkp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"upGZfecl9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-18aktbx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"v3PUURIDz\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"164px\",src:\"https://framerusercontent.com/images/EISrbFzz208MrkiPiMrrQVRqvMw.jpg\",srcSet:\"https://framerusercontent.com/images/EISrbFzz208MrkiPiMrrQVRqvMw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EISrbFzz208MrkiPiMrrQVRqvMw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EISrbFzz208MrkiPiMrrQVRqvMw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EISrbFzz208MrkiPiMrrQVRqvMw.jpg 3000w\"},className:\"framer-8hjgto\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PXzy35_A2\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-1k8cr55\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"r1UXpPvJC\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-1a6p44o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sac6h0Qes\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-1jwq7zw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"lscPHTL6l\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-psrhsl\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"aTv4I2zV5\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"164px\",src:\"https://framerusercontent.com/images/n4mhIEhI7sPaonz04MFvnNjwo.jpg\",srcSet:\"https://framerusercontent.com/images/n4mhIEhI7sPaonz04MFvnNjwo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n4mhIEhI7sPaonz04MFvnNjwo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n4mhIEhI7sPaonz04MFvnNjwo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n4mhIEhI7sPaonz04MFvnNjwo.jpg 3000w\"},className:\"framer-8jw4ev\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"uf4eHeScI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-u86dsb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"p_XFGjYzq\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-7kotjz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JzbcdZpIO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-913c6f\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZpzMmNh4z\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-vsxc5o\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"NHB5o0kTm\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"164px\",src:\"https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg\",srcSet:\"https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1y6kv4IRiHAv1aLy5RPSr2mUc.jpg 3000w\"},className:\"framer-1fx68aa\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RI7DyRt8L\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-i8tl3l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OKgKJFsK4\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-1vytq9g\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UY3KOKuGa\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-1vh90xv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MScHdVW2n\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-15vjt1b\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hlYvWepLA\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"233px\",src:\"https://framerusercontent.com/images/QqdHO78tQwzzbQWIXtE7QBiw.jpg\",srcSet:\"https://framerusercontent.com/images/QqdHO78tQwzzbQWIXtE7QBiw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QqdHO78tQwzzbQWIXtE7QBiw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QqdHO78tQwzzbQWIXtE7QBiw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QqdHO78tQwzzbQWIXtE7QBiw.jpg 3000w\"},className:\"framer-4zxprf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yDRHqZVBa\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,sizes:\"164px\",src:\"https://framerusercontent.com/images/wjhKdnqDPSgbpVghTmYMVN58Fk.jpg\",srcSet:\"https://framerusercontent.com/images/wjhKdnqDPSgbpVghTmYMVN58Fk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wjhKdnqDPSgbpVghTmYMVN58Fk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wjhKdnqDPSgbpVghTmYMVN58Fk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wjhKdnqDPSgbpVghTmYMVN58Fk.jpg 3000w\"},className:\"framer-yo9r3g\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PZ8w1Gnq6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-1tf4ix9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"mtepcRVWF\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-96zdlt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xZK5u7qZ0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-grq2kc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GrjcXCk0X\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-1v1jrc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JuPhFNTDs\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/tYFT8vOHW5VuMk4NYXl5PUuWhA.jpg\",srcSet:\"https://framerusercontent.com/images/tYFT8vOHW5VuMk4NYXl5PUuWhA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tYFT8vOHW5VuMk4NYXl5PUuWhA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tYFT8vOHW5VuMk4NYXl5PUuWhA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tYFT8vOHW5VuMk4NYXl5PUuWhA.jpg 3000w\"},className:\"framer-w5uthr\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tgwOvFRek\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"274px\",src:\"https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg\",srcSet:\"https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg 3000w\"},className:\"framer-1gbzx6j\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ugYlXsFm0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/FwG3L1YpO7GEP46TvLcb0AIufU.jpg\",srcSet:\"https://framerusercontent.com/images/FwG3L1YpO7GEP46TvLcb0AIufU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FwG3L1YpO7GEP46TvLcb0AIufU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FwG3L1YpO7GEP46TvLcb0AIufU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FwG3L1YpO7GEP46TvLcb0AIufU.jpg 3000w\"},className:\"framer-hb7pbb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iH2e0OI4I\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/mciIbLWyVE2inKxe5lSwgtpnTLw.jpg\",srcSet:\"https://framerusercontent.com/images/mciIbLWyVE2inKxe5lSwgtpnTLw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mciIbLWyVE2inKxe5lSwgtpnTLw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mciIbLWyVE2inKxe5lSwgtpnTLw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mciIbLWyVE2inKxe5lSwgtpnTLw.jpg 3000w\"},className:\"framer-ntyak6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jWEmyJzwf\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/kDLLQeA1otUDzwjoFKs3IL4pNE.jpg\",srcSet:\"https://framerusercontent.com/images/kDLLQeA1otUDzwjoFKs3IL4pNE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kDLLQeA1otUDzwjoFKs3IL4pNE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kDLLQeA1otUDzwjoFKs3IL4pNE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kDLLQeA1otUDzwjoFKs3IL4pNE.jpg 3000w\"},className:\"framer-mzzz2p\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rfhLU86EG\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Zb4xJJMv81BZ2ELlnoJotGGcM.jpg\",srcSet:\"https://framerusercontent.com/images/Zb4xJJMv81BZ2ELlnoJotGGcM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Zb4xJJMv81BZ2ELlnoJotGGcM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zb4xJJMv81BZ2ELlnoJotGGcM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Zb4xJJMv81BZ2ELlnoJotGGcM.jpg 3000w\"},className:\"framer-1ipyajt\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"DLm2i47W0\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/J3y8BcqIoXeDZqqPHqPqDBmcSc.jpg\",srcSet:\"https://framerusercontent.com/images/J3y8BcqIoXeDZqqPHqPqDBmcSc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/J3y8BcqIoXeDZqqPHqPqDBmcSc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/J3y8BcqIoXeDZqqPHqPqDBmcSc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/J3y8BcqIoXeDZqqPHqPqDBmcSc.jpg 3000w\"},className:\"framer-25irxm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VyPojEoHg\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/xrOOwRVpmTrCqPkQQHuFirqnVI8.jpg\",srcSet:\"https://framerusercontent.com/images/xrOOwRVpmTrCqPkQQHuFirqnVI8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xrOOwRVpmTrCqPkQQHuFirqnVI8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xrOOwRVpmTrCqPkQQHuFirqnVI8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xrOOwRVpmTrCqPkQQHuFirqnVI8.jpg 3000w\"},className:\"framer-1hteuvm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"P0Rz5dAtP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"200px\",src:\"https://framerusercontent.com/images/0BAf1pz9uKn8LeWA9Q5THTVz8M.jpg\",srcSet:\"https://framerusercontent.com/images/0BAf1pz9uKn8LeWA9Q5THTVz8M.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/0BAf1pz9uKn8LeWA9Q5THTVz8M.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/0BAf1pz9uKn8LeWA9Q5THTVz8M.jpg 2000w\"},className:\"framer-131gmv7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MLnszdX7x\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/qnYMAQKTdF8hBzJFTROH8lHnFOU.jpg\",srcSet:\"https://framerusercontent.com/images/qnYMAQKTdF8hBzJFTROH8lHnFOU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qnYMAQKTdF8hBzJFTROH8lHnFOU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qnYMAQKTdF8hBzJFTROH8lHnFOU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qnYMAQKTdF8hBzJFTROH8lHnFOU.jpg 3000w\"},className:\"framer-jjdvrh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OX8xkzLQO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tn70mt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ie2kVL7Gw-container\",nodeId:\"ie2kVL7Gw\",rendersWithMotion:true,scopeId:\"ZJGWOsNjf\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:.5,id:\"ie2kVL7Gw\",layoutId:\"ie2kVL7Gw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j7a7zd\",\"data-framer-name\":\"Gallery Row\",layoutDependency:layoutDependency,layoutId:\"DMvokeDq0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"262px\",src:\"https://framerusercontent.com/images/HR10ZKkM66Lg8MrXAVf0REdUL8U.jpg\",srcSet:\"https://framerusercontent.com/images/HR10ZKkM66Lg8MrXAVf0REdUL8U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/HR10ZKkM66Lg8MrXAVf0REdUL8U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HR10ZKkM66Lg8MrXAVf0REdUL8U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HR10ZKkM66Lg8MrXAVf0REdUL8U.jpg 3000w\"},className:\"framer-5hdwvw\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"YTjkwN_uH\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"239px\",src:\"https://framerusercontent.com/images/z1pfd5LM1UyGs6FUSKv0zCFpwC8.jpg\",srcSet:\"https://framerusercontent.com/images/z1pfd5LM1UyGs6FUSKv0zCFpwC8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/z1pfd5LM1UyGs6FUSKv0zCFpwC8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/z1pfd5LM1UyGs6FUSKv0zCFpwC8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/z1pfd5LM1UyGs6FUSKv0zCFpwC8.jpg 3000w\"},className:\"framer-1m1xbe\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZQqifGQT_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"195px\",src:\"https://framerusercontent.com/images/Gclm1u46hJoy1xok8xvtEf0XnI.jpg\",srcSet:\"https://framerusercontent.com/images/Gclm1u46hJoy1xok8xvtEf0XnI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Gclm1u46hJoy1xok8xvtEf0XnI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gclm1u46hJoy1xok8xvtEf0XnI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Gclm1u46hJoy1xok8xvtEf0XnI.jpg 3000w\"},className:\"framer-qwg46n\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sSRtCBgij\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/IpjlR2KouvomGuL2EFgIBGK4Gmk.jpg\",srcSet:\"https://framerusercontent.com/images/IpjlR2KouvomGuL2EFgIBGK4Gmk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IpjlR2KouvomGuL2EFgIBGK4Gmk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IpjlR2KouvomGuL2EFgIBGK4Gmk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IpjlR2KouvomGuL2EFgIBGK4Gmk.jpg 3000w\"},className:\"framer-vq31ag\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cBfAlNDL6\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg\",srcSet:\"https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/k5s1tj5N6NZhwJqxY9W1XNPDWgk.jpg 3000w\"},className:\"framer-1q6w6t4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"WArMqsxXO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:368,sizes:\"232px\",src:\"https://framerusercontent.com/images/U1zhHUTN9ctnWpyJ4aaVlHH63y0.jpg\",srcSet:\"https://framerusercontent.com/images/U1zhHUTN9ctnWpyJ4aaVlHH63y0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/U1zhHUTN9ctnWpyJ4aaVlHH63y0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/U1zhHUTN9ctnWpyJ4aaVlHH63y0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/U1zhHUTN9ctnWpyJ4aaVlHH63y0.jpg 3000w\"},className:\"framer-gpsvr6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OxKhmQ0lw\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/ndD3vckLhnqo8TkYG0U4hAPJKco.jpg\",srcSet:\"https://framerusercontent.com/images/ndD3vckLhnqo8TkYG0U4hAPJKco.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ndD3vckLhnqo8TkYG0U4hAPJKco.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ndD3vckLhnqo8TkYG0U4hAPJKco.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ndD3vckLhnqo8TkYG0U4hAPJKco.jpg 3000w\"},className:\"framer-1ofyvdn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"BdjScmGoz\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"284px\",src:\"https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg\",srcSet:\"https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sEwmS7mWsQfofFZXjpi6EtY7Fw.jpg 3000w\"},className:\"framer-k2nva4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"DQTKoRKam\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"365px\",src:\"https://framerusercontent.com/images/NYj285FZzdGSaAf15ClyAu1TMwg.jpg\",srcSet:\"https://framerusercontent.com/images/NYj285FZzdGSaAf15ClyAu1TMwg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NYj285FZzdGSaAf15ClyAu1TMwg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NYj285FZzdGSaAf15ClyAu1TMwg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NYj285FZzdGSaAf15ClyAu1TMwg.jpg 3000w\"},className:\"framer-c3dsqr\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hrwTcweU8\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/FlfMBcoKPI7tulC8iAu5DPquKQ.jpg\",srcSet:\"https://framerusercontent.com/images/FlfMBcoKPI7tulC8iAu5DPquKQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FlfMBcoKPI7tulC8iAu5DPquKQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FlfMBcoKPI7tulC8iAu5DPquKQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FlfMBcoKPI7tulC8iAu5DPquKQ.jpg 3000w\"},className:\"framer-1m8x8qo\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LjSaH5oXt\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/gDqXPh2aWyM0SDxSgQagKs1GCEw.jpg\",srcSet:\"https://framerusercontent.com/images/gDqXPh2aWyM0SDxSgQagKs1GCEw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gDqXPh2aWyM0SDxSgQagKs1GCEw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gDqXPh2aWyM0SDxSgQagKs1GCEw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gDqXPh2aWyM0SDxSgQagKs1GCEw.jpg 3000w\"},className:\"framer-wgpaja\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"uiTnI37xC\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/Co8c2NBd9wlaHGjKMYgQQdo0FLk.jpg\",srcSet:\"https://framerusercontent.com/images/Co8c2NBd9wlaHGjKMYgQQdo0FLk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Co8c2NBd9wlaHGjKMYgQQdo0FLk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Co8c2NBd9wlaHGjKMYgQQdo0FLk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Co8c2NBd9wlaHGjKMYgQQdo0FLk.jpg 3000w\"},className:\"framer-8cgldk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VAs4zG7Fx\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"237px\",src:\"https://framerusercontent.com/images/iDxm1HKsoxU4VWbx3AMSsL6EQ.jpg\",srcSet:\"https://framerusercontent.com/images/iDxm1HKsoxU4VWbx3AMSsL6EQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iDxm1HKsoxU4VWbx3AMSsL6EQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iDxm1HKsoxU4VWbx3AMSsL6EQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iDxm1HKsoxU4VWbx3AMSsL6EQ.jpg 3000w\"},className:\"framer-9zvqrx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TeYWjlyFP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"240px\",src:\"https://framerusercontent.com/images/SavI1OKmYnvjlEDN9xs9ZPmNAQ.jpg\",srcSet:\"https://framerusercontent.com/images/SavI1OKmYnvjlEDN9xs9ZPmNAQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SavI1OKmYnvjlEDN9xs9ZPmNAQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SavI1OKmYnvjlEDN9xs9ZPmNAQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SavI1OKmYnvjlEDN9xs9ZPmNAQ.jpg 3000w\"},className:\"framer-11jg282\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"A6yRqTKz4\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"213px\",src:\"https://framerusercontent.com/images/yZsZ0Gc4NuVhJliodWoZb7asD4.jpg\",srcSet:\"https://framerusercontent.com/images/yZsZ0Gc4NuVhJliodWoZb7asD4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yZsZ0Gc4NuVhJliodWoZb7asD4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yZsZ0Gc4NuVhJliodWoZb7asD4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yZsZ0Gc4NuVhJliodWoZb7asD4.jpg 3000w\"},className:\"framer-52zxem\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FpKRDd5rd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/zUhOdteDa5YxrEOSNrkmQetIX0.jpg\",srcSet:\"https://framerusercontent.com/images/zUhOdteDa5YxrEOSNrkmQetIX0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zUhOdteDa5YxrEOSNrkmQetIX0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zUhOdteDa5YxrEOSNrkmQetIX0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zUhOdteDa5YxrEOSNrkmQetIX0.jpg 3000w\"},className:\"framer-1mctwjf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MY0eBpskK\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/9YXpuczvV20WtflZHoXcyB22k.jpg\",srcSet:\"https://framerusercontent.com/images/9YXpuczvV20WtflZHoXcyB22k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9YXpuczvV20WtflZHoXcyB22k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9YXpuczvV20WtflZHoXcyB22k.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9YXpuczvV20WtflZHoXcyB22k.jpg 3000w\"},className:\"framer-1udpg0w\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"j1WAoClFJ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/EKiBwdHp4Bd3nW00PRWLWuJFs.jpg\",srcSet:\"https://framerusercontent.com/images/EKiBwdHp4Bd3nW00PRWLWuJFs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EKiBwdHp4Bd3nW00PRWLWuJFs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EKiBwdHp4Bd3nW00PRWLWuJFs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EKiBwdHp4Bd3nW00PRWLWuJFs.jpg 3000w\"},className:\"framer-n1469u\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PasuRW94O\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/hGgDBPowiKAUSeVpMnt16GK0oUE.jpg\",srcSet:\"https://framerusercontent.com/images/hGgDBPowiKAUSeVpMnt16GK0oUE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/hGgDBPowiKAUSeVpMnt16GK0oUE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/hGgDBPowiKAUSeVpMnt16GK0oUE.jpg 2000w\"},className:\"framer-zes4ns\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZzrSZnTlA\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"259px\",src:\"https://framerusercontent.com/images/m1fVP2SIA4upk5HO7dEYBAJS90.jpg\",srcSet:\"https://framerusercontent.com/images/m1fVP2SIA4upk5HO7dEYBAJS90.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m1fVP2SIA4upk5HO7dEYBAJS90.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m1fVP2SIA4upk5HO7dEYBAJS90.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m1fVP2SIA4upk5HO7dEYBAJS90.jpg 3000w\"},className:\"framer-13zcckd\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wlCmgSIyY\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,positionX:\"left\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/RI0E0UTW4ZcSl7cV8jSbU1x0nnA.jpg\",srcSet:\"https://framerusercontent.com/images/RI0E0UTW4ZcSl7cV8jSbU1x0nnA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RI0E0UTW4ZcSl7cV8jSbU1x0nnA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RI0E0UTW4ZcSl7cV8jSbU1x0nnA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RI0E0UTW4ZcSl7cV8jSbU1x0nnA.jpg 3000w\"},className:\"framer-1x8rx4k\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JEt6twt5I\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"253px\",src:\"https://framerusercontent.com/images/zPONYShSFThcBif8zRXwxqsGAE.jpg\",srcSet:\"https://framerusercontent.com/images/zPONYShSFThcBif8zRXwxqsGAE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zPONYShSFThcBif8zRXwxqsGAE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zPONYShSFThcBif8zRXwxqsGAE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zPONYShSFThcBif8zRXwxqsGAE.jpg 3000w\"},className:\"framer-1w7u00w\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"nv3ugofyn\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/B3E9HhGAN6Ep6whhW59GqbTY.jpg\",srcSet:\"https://framerusercontent.com/images/B3E9HhGAN6Ep6whhW59GqbTY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/B3E9HhGAN6Ep6whhW59GqbTY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/B3E9HhGAN6Ep6whhW59GqbTY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/B3E9HhGAN6Ep6whhW59GqbTY.jpg 3000w\"},className:\"framer-9w495m\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LyhqHlS1l\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:652,sizes:\"326px\",src:\"https://framerusercontent.com/images/FeNGcYQKpBDMs88B738LFK9z0I.jpg\",srcSet:\"https://framerusercontent.com/images/FeNGcYQKpBDMs88B738LFK9z0I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FeNGcYQKpBDMs88B738LFK9z0I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FeNGcYQKpBDMs88B738LFK9z0I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FeNGcYQKpBDMs88B738LFK9z0I.jpg 3000w\"},className:\"framer-qck4ce\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"t530xsl5j\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"273px\",src:\"https://framerusercontent.com/images/GZgnV5fqcIxD2tooGztqQdJNis.jpg\",srcSet:\"https://framerusercontent.com/images/GZgnV5fqcIxD2tooGztqQdJNis.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GZgnV5fqcIxD2tooGztqQdJNis.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GZgnV5fqcIxD2tooGztqQdJNis.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GZgnV5fqcIxD2tooGztqQdJNis.jpg 3000w\"},className:\"framer-1one1hg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RHNfurCYa\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,positionX:\"left\",positionY:\"center\",sizes:\"185px\",src:\"https://framerusercontent.com/images/hR20joT9897IHEVsYi9sjR4LvU.jpg\",srcSet:\"https://framerusercontent.com/images/hR20joT9897IHEVsYi9sjR4LvU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hR20joT9897IHEVsYi9sjR4LvU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hR20joT9897IHEVsYi9sjR4LvU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hR20joT9897IHEVsYi9sjR4LvU.jpg 3000w\"},className:\"framer-1ih6yuv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"rp5LS88ma\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"326px\",src:\"https://framerusercontent.com/images/WxM3lqQnxTAqB3876zbjTUudXk.jpg\",srcSet:\"https://framerusercontent.com/images/WxM3lqQnxTAqB3876zbjTUudXk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WxM3lqQnxTAqB3876zbjTUudXk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WxM3lqQnxTAqB3876zbjTUudXk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WxM3lqQnxTAqB3876zbjTUudXk.jpg 3000w\"},className:\"framer-1d3onf7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HE9Facs39\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/Vtyekmt9LZE0p506mlmAsDEAlwU.jpg\",srcSet:\"https://framerusercontent.com/images/Vtyekmt9LZE0p506mlmAsDEAlwU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vtyekmt9LZE0p506mlmAsDEAlwU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vtyekmt9LZE0p506mlmAsDEAlwU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vtyekmt9LZE0p506mlmAsDEAlwU.jpg 3000w\"},className:\"framer-1ckamf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TrqAUiY0k\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg\",srcSet:\"https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wz6AzQP7Jc6gGCt5jUtDKw7C98.jpg 3000w\"},className:\"framer-4c7src\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IMsfeLi9B\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/aW5Bhs8HenlKp0nRaKP8tLF4.jpg\",srcSet:\"https://framerusercontent.com/images/aW5Bhs8HenlKp0nRaKP8tLF4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aW5Bhs8HenlKp0nRaKP8tLF4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aW5Bhs8HenlKp0nRaKP8tLF4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aW5Bhs8HenlKp0nRaKP8tLF4.jpg 3000w\"},className:\"framer-60kpcj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LG7Fqyobg\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/f9a9GV01EUk33WmUlfxS5brslw.jpg\",srcSet:\"https://framerusercontent.com/images/f9a9GV01EUk33WmUlfxS5brslw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f9a9GV01EUk33WmUlfxS5brslw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f9a9GV01EUk33WmUlfxS5brslw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/f9a9GV01EUk33WmUlfxS5brslw.jpg 3000w\"},className:\"framer-157ukh9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Z3bop6mZI\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:368,pixelWidth:296,sizes:\"148px\",src:\"https://framerusercontent.com/images/OhneUVHRVbIb8Rfi8CfkFkxzGs.jpg\",srcSet:\"https://framerusercontent.com/images/OhneUVHRVbIb8Rfi8CfkFkxzGs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OhneUVHRVbIb8Rfi8CfkFkxzGs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OhneUVHRVbIb8Rfi8CfkFkxzGs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OhneUVHRVbIb8Rfi8CfkFkxzGs.jpg 3000w\"},className:\"framer-zk4h4q\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"TBoqzXHv8\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oZagz.framer-wmxbup, .framer-oZagz .framer-wmxbup { display: block; }\",\".framer-oZagz.framer-xv8y5f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1148px; }\",\".framer-oZagz .framer-1qsqx44-container, .framer-oZagz .framer-1tn70mt-container { flex: none; height: 184px; position: relative; width: 100%; }\",\".framer-oZagz .framer-4epwnk, .framer-oZagz .framer-j7a7zd { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oZagz .framer-14s8oqt, .framer-oZagz .framer-ni65us { flex: none; height: 184px; overflow: hidden; position: relative; width: 282px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-c2hld9, .framer-oZagz .framer-oyecy9 { flex: none; height: 184px; overflow: hidden; position: relative; width: 221px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-i3dn3f, .framer-oZagz .framer-14qyeu6, .framer-oZagz .framer-2804qt { aspect-ratio: 0.8043478260869565 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1lulca8 { flex: none; height: 184px; overflow: hidden; position: relative; width: 373px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-11nup42 { flex: none; height: 184px; overflow: hidden; position: relative; width: 248px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-10oobay, .framer-oZagz .framer-1bva7bs, .framer-oZagz .framer-19y79kq, .framer-oZagz .framer-1epebr3, .framer-oZagz .framer-w5uthr, .framer-oZagz .framer-hb7pbb, .framer-oZagz .framer-ntyak6, .framer-oZagz .framer-mzzz2p, .framer-oZagz .framer-1ipyajt, .framer-oZagz .framer-1hteuvm, .framer-oZagz .framer-jjdvrh, .framer-oZagz .framer-vq31ag, .framer-oZagz .framer-1q6w6t4, .framer-oZagz .framer-1m8x8qo, .framer-oZagz .framer-wgpaja, .framer-oZagz .framer-8cgldk, .framer-oZagz .framer-9w495m, .framer-oZagz .framer-qck4ce, .framer-oZagz .framer-1d3onf7 { aspect-ratio: 1.7717391304347827 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 184px); overflow: hidden; position: relative; width: 326px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-h91iby { flex: none; height: 184px; overflow: hidden; position: relative; width: 155px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1puvidn, .framer-oZagz .framer-4zxprf { flex: none; height: 184px; overflow: hidden; position: relative; width: 233px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-h6v43p { flex: none; height: 184px; overflow: hidden; position: relative; width: 275px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1cykhbp, .framer-oZagz .framer-8hjgto, .framer-oZagz .framer-8jw4ev, .framer-oZagz .framer-1fx68aa, .framer-oZagz .framer-yo9r3g { flex: none; height: 184px; overflow: hidden; position: relative; width: 164px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-lx88ok, .framer-oZagz .framer-1jv5xxo, .framer-oZagz .framer-s5egkp, .framer-oZagz .framer-18aktbx, .framer-oZagz .framer-1k8cr55, .framer-oZagz .framer-1a6p44o, .framer-oZagz .framer-1jwq7zw, .framer-oZagz .framer-psrhsl, .framer-oZagz .framer-u86dsb, .framer-oZagz .framer-7kotjz, .framer-oZagz .framer-913c6f, .framer-oZagz .framer-vsxc5o, .framer-oZagz .framer-i8tl3l, .framer-oZagz .framer-1vytq9g, .framer-oZagz .framer-1vh90xv, .framer-oZagz .framer-15vjt1b, .framer-oZagz .framer-1tf4ix9, .framer-oZagz .framer-96zdlt, .framer-oZagz .framer-grq2kc, .framer-oZagz .framer-1v1jrc { flex: none; height: 184px; left: 1752px; overflow: hidden; position: absolute; top: 0px; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1gbzx6j { flex: none; height: 184px; overflow: hidden; position: relative; width: 274px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-25irxm, .framer-oZagz .framer-1ckamf, .framer-oZagz .framer-4c7src, .framer-oZagz .framer-60kpcj, .framer-oZagz .framer-157ukh9, .framer-oZagz .framer-zk4h4q { flex: none; height: 184px; overflow: hidden; position: relative; width: 148px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-131gmv7 { flex: none; height: 184px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-5hdwvw { flex: none; height: 184px; overflow: hidden; position: relative; width: 262px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1m1xbe { flex: none; height: 184px; overflow: hidden; position: relative; width: 239px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-qwg46n { flex: none; height: 184px; overflow: hidden; position: relative; width: 195px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-gpsvr6 { flex: none; height: 184px; overflow: hidden; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1ofyvdn, .framer-oZagz .framer-1mctwjf, .framer-oZagz .framer-1udpg0w, .framer-oZagz .framer-n1469u, .framer-oZagz .framer-zes4ns, .framer-oZagz .framer-1x8rx4k { flex: none; height: 184px; overflow: hidden; position: relative; width: 207px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-k2nva4 { flex: none; height: 184px; overflow: hidden; position: relative; width: 284px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-c3dsqr { flex: none; height: 184px; overflow: hidden; position: relative; width: 365px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-9zvqrx { flex: none; height: 184px; overflow: hidden; position: relative; width: 237px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-11jg282 { flex: none; height: 184px; overflow: hidden; position: relative; width: 240px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-52zxem { flex: none; height: 184px; overflow: hidden; position: relative; width: 213px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-13zcckd { flex: none; height: 184px; overflow: hidden; position: relative; width: 259px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1w7u00w { flex: none; height: 184px; overflow: hidden; position: relative; width: 253px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1one1hg { flex: none; height: 184px; overflow: hidden; position: relative; width: 273px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oZagz .framer-1ih6yuv { flex: none; height: 184px; overflow: hidden; position: relative; width: 185px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oZagz.framer-xv8y5f, .framer-oZagz .framer-4epwnk, .framer-oZagz .framer-j7a7zd { gap: 0px; } .framer-oZagz.framer-xv8y5f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-oZagz.framer-xv8y5f > :first-child { margin-top: 0px; } .framer-oZagz.framer-xv8y5f > :last-child { margin-bottom: 0px; } .framer-oZagz .framer-4epwnk > *, .framer-oZagz .framer-j7a7zd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-oZagz .framer-4epwnk > :first-child, .framer-oZagz .framer-j7a7zd > :first-child { margin-left: 0px; } .framer-oZagz .framer-4epwnk > :last-child, .framer-oZagz .framer-j7a7zd > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 388\n * @framerIntrinsicWidth 1148\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZJGWOsNjf=withCSS(Component,css,\"framer-oZagz\");export default FramerZJGWOsNjf;FramerZJGWOsNjf.displayName=\"Token2049 Singapore\";FramerZJGWOsNjf.defaultProps={height:388,width:1148};addFonts(FramerZJGWOsNjf,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZJGWOsNjf\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1148\",\"framerIntrinsicHeight\":\"388\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZJGWOsNjf.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "noopReturn", "t", "e", "t", "velocityPerSecond", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "init_ssg_sandbox_shims", "__rest", "e", "t", "r", "n", "o", "init_ssg_sandbox_shims", "n", "e", "t", "r", "init_ssg_sandbox_shims", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FrameraEFcfSjg_", "withCSS", "aEFcfSjg_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerC4Bsykkym", "withCSS", "C4Bsykkym_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerFeeRnXUrw", "withCSS", "FeeRnXUrw_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerNVgXGH5ON", "withCSS", "NVgXGH5ON_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FrameroK7nhTueM", "withCSS", "oK7nhTueM_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerrjuoNCGia", "withCSS", "rjuoNCGia_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerrmtP5JYRB", "withCSS", "rmtP5JYRB_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerwQwvveKfy", "withCSS", "wQwvveKfy_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerZAqjQHs2Y", "withCSS", "ZAqjQHs2Y_default", "addFonts", "TickerFonts", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerZJGWOsNjf", "withCSS", "ZJGWOsNjf_default", "addFonts", "TickerFonts"]
}
