{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/5SiYK0gYZBM6vvNOglSW/KB7boQugTTZk71rEetKQ/Y2QGtkKlM.js", "ssg:https://framerusercontent.com/modules/yEO7CHQq6r7bxNli3X1y/y2xZl0Ga2ObBruNFSQa5/P6zOMiEV8.js", "ssg:https://framerusercontent.com/modules/4mz8MdpstGiWE9MpWYZg/pfcRiwbup0fPNbm7fYtM/guBRuHTWw.js", "ssg:https://framerusercontent.com/modules/2RVrY4GeGoD40dWU5RVX/kwuRuhdC3Hao1AG6uGsY/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-JX7CGTYD.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Black.latin-ext-BZLEUMX6.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Black.latin-TETRYDF7.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Black.vietnamese-RXQCC3EJ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-ext-KU7ICFYH.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-FRVXWQSB.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BlackItalic.vietnamese-2Q7MQKJX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"}]}];export const css=['.framer-jhuaQ .framer-styles-preset-11jnft4:not(.rich-text-wrapper), .framer-jhuaQ .framer-styles-preset-11jnft4.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 28.8px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1024px) and (min-width: 641px) { .framer-jhuaQ .framer-styles-preset-11jnft4:not(.rich-text-wrapper), .framer-jhuaQ .framer-styles-preset-11jnft4.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 640px) and (min-width: 0px) { .framer-jhuaQ .framer-styles-preset-11jnft4:not(.rich-text-wrapper), .framer-jhuaQ .framer-styles-preset-11jnft4.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-jhuaQ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/5SiYK0gYZBM6vvNOglSW/KB7boQugTTZk71rEetKQ/Y2QGtkKlM.js\";const cycleOrder=[\"Pul5f25pK\",\"i45aLxbku\"];const serializationHash=\"framer-iPcSA\";const variantClassNames={i45aLxbku:\"framer-v-14l2z3n\",Pul5f25pK:\"framer-v-1iewrz9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Active:\"i45aLxbku\",Default:\"Pul5f25pK\"};const getProps=({height,id,tap,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,aduxKofTK:tap!==null&&tap!==void 0?tap:props.aduxKofTK,Ce1maTs99:(_ref=title!==null&&title!==void 0?title:props.Ce1maTs99)!==null&&_ref!==void 0?_ref:\"What we do\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Pul5f25pK\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Ce1maTs99,aduxKofTK,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Pul5f25pK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapxzmxzx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(aduxKofTK){const res=await aduxKofTK(...args);if(res===false)return false;}});const onTapdjpdl7=activeVariantCallback(async(...args)=>{setVariant(\"i45aLxbku\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1iewrz9\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Pul5f25pK\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapxzmxzx,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({i45aLxbku:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)))\"},children:\"What we do\"})}),className:\"framer-3v7zzo\",\"data-framer-name\":\"What we do\",\"data-highlight\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qULYo891t\",onTap:onTapdjpdl7,style:{\"--extracted-a0htzi\":\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",\"--framer-paragraph-spacing\":\"0px\"},text:Ce1maTs99,variants:{i45aLxbku:{\"--extracted-a0htzi\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({i45aLxbku:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)))\"},children:\"What we do\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oxg630\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:124,layoutDependency:layoutDependency,layoutId:\"RFSR08flj\",svg:'<svg width=\"124\" height=\"8\" viewBox=\"-2 -2 124 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2 2H118\" stroke=\"#0093CF\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iPcSA.framer-ul929h, .framer-iPcSA .framer-ul929h { display: block; }\",\".framer-iPcSA.framer-1iewrz9 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 14px 0px; position: relative; width: min-content; }\",\".framer-iPcSA .framer-3v7zzo { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iPcSA .framer-oxg630 { bottom: 9px; flex: none; height: 8px; left: -137px; position: absolute; width: 139px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iPcSA.framer-1iewrz9 { gap: 0px; } .framer-iPcSA.framer-1iewrz9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iPcSA.framer-1iewrz9 > :first-child { margin-top: 0px; } .framer-iPcSA.framer-1iewrz9 > :last-child { margin-bottom: 0px; } }\",\".framer-iPcSA.framer-v-14l2z3n .framer-oxg630 { left: 0px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 139\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"i45aLxbku\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Ce1maTs99\":\"title\",\"aduxKofTK\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP6zOMiEV8=withCSS(Component,css,\"framer-iPcSA\");export default FramerP6zOMiEV8;FramerP6zOMiEV8.displayName=\"Interactive/Toggle Menu Items\";FramerP6zOMiEV8.defaultProps={height:43,width:139};addPropertyControls(FramerP6zOMiEV8,{variant:{options:[\"Pul5f25pK\",\"i45aLxbku\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},Ce1maTs99:{defaultValue:\"What we do\",displayTextArea:false,title:\"Title\",type:ControlType.String},aduxKofTK:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerP6zOMiEV8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP6zOMiEV8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"43\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"i45aLxbku\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"139\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Ce1maTs99\\\":\\\"title\\\",\\\"aduxKofTK\\\":\\\"tap\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P6zOMiEV8.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/eieOc80zI7fzAbHcPkYr/5S8bdx8N0e33SA44D8Wq/wK1oma0cg.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1UCIup4C4rRSa3opzbN6/f6wy9IwnX7G6g37yZCpq/Y2QGtkKlM.js\";import InteractiveToggleMenuItems from\"https://framerusercontent.com/modules/yEO7CHQq6r7bxNli3X1y/y2xZl0Ga2ObBruNFSQa5/P6zOMiEV8.js\";const InteractiveToggleMenuItemsFonts=getFonts(InteractiveToggleMenuItems);const cycleOrder=[\"r7S3o2KFm\",\"uD9rdN1Fa\"];const serializationHash=\"framer-IURDT\";const variantClassNames={r7S3o2KFm:\"framer-v-1ufokpk\",uD9rdN1Fa:\"framer-v-1hpearh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Default (Who we are-Active)\":\"r7S3o2KFm\",\"What we do- Active\":\"uD9rdN1Fa\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"r7S3o2KFm\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r7S3o2KFm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const aduxKofTK1pmd16r=activeVariantCallback(async(...args)=>{setVariant(\"r7S3o2KFm\");});const aduxKofTKrm8yw6=activeVariantCallback(async(...args)=>{setVariant(\"uD9rdN1Fa\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"uD9rdN1Fa\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"uD9rdN1Fa\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ufokpk\",className,classNames),\"data-framer-name\":\"Default (Who we are-Active)\",layoutDependency:layoutDependency,layoutId:\"r7S3o2KFm\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({uD9rdN1Fa:{\"data-framer-name\":\"What we do- Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f6t3n5\",\"data-framer-name\":\"CONTAINER MENU ITEMS\",layoutDependency:layoutDependency,layoutId:\"WrA3FabqQ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z4bwje-container\",layoutDependency:layoutDependency,layoutId:\"aF9pINLIJ-container\",children:/*#__PURE__*/_jsx(InteractiveToggleMenuItems,{Ce1maTs99:\"Who we are\",height:\"100%\",id:\"aF9pINLIJ\",layoutId:\"aF9pINLIJ\",variant:\"i45aLxbku\",width:\"100%\",...addPropertyOverrides({uD9rdN1Fa:{aduxKofTK:aduxKofTK1pmd16r,variant:\"Pul5f25pK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-151jcl2-container\",layoutDependency:layoutDependency,layoutId:\"RWYie09wR-container\",children:/*#__PURE__*/_jsx(InteractiveToggleMenuItems,{aduxKofTK:aduxKofTKrm8yw6,Ce1maTs99:\"What we do\",height:\"100%\",id:\"RWYie09wR\",layoutId:\"RWYie09wR\",variant:\"Pul5f25pK\",width:\"100%\",...addPropertyOverrides({uD9rdN1Fa:{variant:\"i45aLxbku\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m3ranr\",\"data-framer-name\":\"Div Spacer\",layoutDependency:layoutDependency,layoutId:\"xg2pc2NL2\"}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1okh6j5\",\"data-framer-name\":\"CONTAINER WHO WE ARE\",layoutDependency:layoutDependency,layoutId:\"UWz7KDTgF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",children:\"Hosted by Stir to Action, we provide economic development and support programmes for democratic business in the UK.\"})}),className:\"framer-a94g3a\",\"data-framer-name\":\"Hosted by Stir to Action, we are the leading provider of economic development and support programmes for democratic business in the UK.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GjkJpD16e\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7o9oli\",\"data-framer-name\":\"CONTAINER WHAT WE DO\",layoutDependency:layoutDependency,layoutId:\"BUgkXCFL2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0)))\"},children:\"Economic Strategy\"})}),className:\"framer-1lupo1q\",\"data-framer-name\":\"Economic Strategy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jz8ivkXvz\",style:{\"--extracted-a0htzi\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6gc0vd\",\"data-framer-name\":\"Div Spacer Fixed 8pxh\",layoutDependency:layoutDependency,layoutId:\"Il4L7Lehi\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0)))\"},children:\"Assist supportive institutions with effective planning, infrastructure, and investment.\"})}),className:\"framer-1i293pw\",\"data-framer-name\":\"To assist supportive institutions with effective planning, infrastructure, and investment.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BANiJhNVA\",style:{\"--extracted-a0htzi\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fnqa3m\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\",layoutDependency:layoutDependency,layoutId:\"NIu2U8squ\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0)))\"},children:\"Research & Analysis\"})}),className:\"framer-lv28nx\",\"data-framer-name\":\"Research\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jjWs7ebKS\",style:{\"--extracted-a0htzi\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uwce70\",\"data-framer-name\":\"Div Spacer Fixed 8pxh\",layoutDependency:layoutDependency,layoutId:\"rd5pvWGSh\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0)))\"},children:\"Demonstrate the benefits and address the challenges of democratic ownership in practice.\"})}),className:\"framer-1qxwuxn\",\"data-framer-name\":\"To demonstrate the benefits and address the challenges of democratic ownership in practice.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ijend5_A7\",style:{\"--extracted-a0htzi\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ucw2mj\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\",layoutDependency:layoutDependency,layoutId:\"jzaiFEkmW\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0)))\"},children:\"Training & Development Programmes\"})}),className:\"framer-1gyvuzz\",\"data-framer-name\":\"Training & Development Programmes\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KuewgAaN1\",style:{\"--extracted-a0htzi\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xpwvpy\",\"data-framer-name\":\"Div Spacer Fixed 8pxh\",layoutDependency:layoutDependency,layoutId:\"d4lA_Jluk\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0)))\"},children:\"Directly support the growth and strengthening of the whole ecosystem.\"})}),className:\"framer-reedqr\",\"data-framer-name\":\"To directly support the growth and strengthening of the whole ecosystem.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Pc2imEKND\",style:{\"--extracted-a0htzi\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IURDT.framer-17hcj9r, .framer-IURDT .framer-17hcj9r { display: block; }\",\".framer-IURDT.framer-1ufokpk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IURDT .framer-f6t3n5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-IURDT .framer-z4bwje-container, .framer-IURDT .framer-151jcl2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-IURDT .framer-m3ranr { flex: none; height: 14px; overflow: hidden; position: relative; width: 343px; }\",\".framer-IURDT .framer-1okh6j5, .framer-IURDT .framer-7o9oli { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-IURDT .framer-a94g3a, .framer-IURDT .framer-1lupo1q, .framer-IURDT .framer-1i293pw, .framer-IURDT .framer-lv28nx, .framer-IURDT .framer-1qxwuxn, .framer-IURDT .framer-1gyvuzz, .framer-IURDT .framer-reedqr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IURDT .framer-6gc0vd, .framer-IURDT .framer-1uwce70, .framer-IURDT .framer-xpwvpy { flex: none; height: 4px; overflow: hidden; position: relative; width: 100%; }\",\".framer-IURDT .framer-fnqa3m, .framer-IURDT .framer-1ucw2mj { flex: none; height: 24px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IURDT.framer-1ufokpk, .framer-IURDT .framer-f6t3n5, .framer-IURDT .framer-1okh6j5, .framer-IURDT .framer-7o9oli { gap: 0px; } .framer-IURDT.framer-1ufokpk > *, .framer-IURDT .framer-1okh6j5 > *, .framer-IURDT .framer-7o9oli > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IURDT.framer-1ufokpk > :first-child, .framer-IURDT .framer-1okh6j5 > :first-child, .framer-IURDT .framer-7o9oli > :first-child { margin-top: 0px; } .framer-IURDT.framer-1ufokpk > :last-child, .framer-IURDT .framer-1okh6j5 > :last-child, .framer-IURDT .framer-7o9oli > :last-child { margin-bottom: 0px; } .framer-IURDT .framer-f6t3n5 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-IURDT .framer-f6t3n5 > :first-child { margin-left: 0px; } .framer-IURDT .framer-f6t3n5 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 201\n * @framerIntrinsicWidth 343\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"uD9rdN1Fa\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerguBRuHTWw=withCSS(Component,css,\"framer-IURDT\");export default FramerguBRuHTWw;FramerguBRuHTWw.displayName=\"Interactive/Toggle Menu\";FramerguBRuHTWw.defaultProps={height:201,width:343};addPropertyControls(FramerguBRuHTWw,{variant:{options:[\"r7S3o2KFm\",\"uD9rdN1Fa\"],optionTitles:[\"Default (Who we are-Active)\",\"What we do- Active\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerguBRuHTWw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...InteractiveToggleMenuItemsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerguBRuHTWw\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"201\",\"framerIntrinsicWidth\":\"343\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uD9rdN1Fa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/Jo2d4bKbCdbbg0oiZ0LB/Input.js\";import Carousel1 from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import ButtonsHoverOverImage from\"#framer/local/canvasComponent/gH51wvZWn/gH51wvZWn.js\";import InteractiveToggleMenu from\"#framer/local/canvasComponent/guBRuHTWw/guBRuHTWw.js\";import ContentCardsNewCards from\"#framer/local/canvasComponent/nqO_xNn5j/nqO_xNn5j.js\";import ButtonsGoodOnesWIP from\"#framer/local/canvasComponent/oA67Q_B6Y/oA67Q_B6Y.js\";import Navigation from\"#framer/local/canvasComponent/rnll9FASh/rnll9FASh.js\";import Footer from\"#framer/local/canvasComponent/uRCyDdQiW/uRCyDdQiW.js\";import NewsCommentary from\"#framer/local/collection/Tijt5QlXI/Tijt5QlXI.js\";import*as sharedStyle1 from\"#framer/local/css/IZLhC5RhW/IZLhC5RhW.js\";import*as sharedStyle from\"#framer/local/css/qRo8CY6IV/qRo8CY6IV.js\";import*as sharedStyle2 from\"#framer/local/css/t3P1bQNLd/t3P1bQNLd.js\";import*as sharedStyle4 from\"#framer/local/css/wK1oma0cg/wK1oma0cg.js\";import*as sharedStyle3 from\"#framer/local/css/Y2QGtkKlM/Y2QGtkKlM.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsGoodOnesWIPFonts=getFonts(ButtonsGoodOnesWIP);const InteractiveToggleMenuFonts=getFonts(InteractiveToggleMenu);const ContentCardsNewCardsFonts=getFonts(ContentCardsNewCards);const CarouselFonts=getFonts(Carousel);const InputFonts=getFonts(Input);const Carousel1Fonts=getFonts(Carousel1);const FooterFonts=getFonts(Footer);const ButtonsHoverOverImageFonts=getFonts(ButtonsHoverOverImage);const breakpoints={T7DkiRhnf:\"(max-width: 640px)\",WQLkyLRf1:\"(min-width: 1025px)\",WqXVMDiR1:\"(min-width: 641px) and (max-width: 1024px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-DaVHv\";const variantClassNames={T7DkiRhnf:\"framer-v-1tpgpst\",WQLkyLRf1:\"framer-v-72rtr7\",WqXVMDiR1:\"framer-v-160lo9z\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:90,delay:0,mass:1.5,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const transition2={damping:90,delay:.5,mass:1.5,stiffness:500,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"SnAk45vBE\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:-150};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Mobile:\"T7DkiRhnf\",Tablet:\"WqXVMDiR1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:ButtonsHoverOverImage,variant:\"MU4SiUtb8\"};const cursor1={component:ButtonsHoverOverImage,variant:\"hcvEexkuS\"};const cursor2={component:ButtonsHoverOverImage,variant:\"WghYaNfmK\"};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,Fk3GS8_KMSnAk45vBE,r_J7Rsip3SnAk45vBE,sE1KETla2SnAk45vBE,eNZt0ObQnSnAk45vBE,sE1KETla2W1_qyFq4Y,idSnAk45vBE,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onSubmit3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const pO0WXG0UX1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"WqXVMDiR1\",\"T7DkiRhnf\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const elementId=useRouteElementId(\"n9N2Fmy4P\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"T7DkiRhnf\")return true;return false;};const elementId1=useRouteElementId(\"RyOHQJjDT\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"WqXVMDiR1\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"WqXVMDiR1\",\"T7DkiRhnf\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"T7DkiRhnf\")return false;return true;};useCustomCursors({\"1cf5b9e\":cursor2,\"939ajj\":cursor,mlorcx:cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-478a7bc3-0005-49a2-9d81-392f266288ff, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-selection\":true,ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:\"2560px\",src:\"https://framerusercontent.com/images/VteV7rZjiiQMuIqJ5YaJfvyJsk.png\",srcSet:\"https://framerusercontent.com/images/VteV7rZjiiQMuIqJ5YaJfvyJsk.png?scale-down-to=512 512w,https://framerusercontent.com/images/VteV7rZjiiQMuIqJ5YaJfvyJsk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VteV7rZjiiQMuIqJ5YaJfvyJsk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VteV7rZjiiQMuIqJ5YaJfvyJsk.png 2560w\"},className:\"framer-vztfwn hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"DESKTOP_Hero Collage\",transformTemplate:transformTemplate1}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-110}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19qnjdx-container hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Nav Bar Floating\",layoutScroll:true,name:\"Nav Bar Floating\",nodeId:\"QX6jsdt55\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"QX6jsdt55\",layoutId:\"QX6jsdt55\",name:\"Nav Bar Floating\",style:{width:\"100%\"},variant:\"TnSvFV222\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{y:0},WqXVMDiR1:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{layoutScroll:true},WqXVMDiR1:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-easwz-container\",\"data-framer-name\":\"Navigation Bar\",name:\"Navigation Bar\",nodeId:\"wyir6hajh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{uDTurKuq2:ref1,variant:\"jNw9j4KpG\"},WqXVMDiR1:{uDTurKuq2:ref1,variant:\"B_6x9czTI\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"wyir6hajh\",layoutId:\"wyir6hajh\",name:\"Navigation Bar\",style:{width:\"100%\"},variant:\"Je3DtVcFu\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-auw34y\",\"data-framer-name\":\"Div Spacer Hero 1/2 Fixed Height\",id:elementId,ref:ref1}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:\"640px\",src:\"https://framerusercontent.com/images/MIo9vjDML8mNMUOhDRlLB7qdZo.png\",srcSet:\"https://framerusercontent.com/images/MIo9vjDML8mNMUOhDRlLB7qdZo.png?scale-down-to=512 512w,https://framerusercontent.com/images/MIo9vjDML8mNMUOhDRlLB7qdZo.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/MIo9vjDML8mNMUOhDRlLB7qdZo.png\",srcSet:\"https://framerusercontent.com/images/MIo9vjDML8mNMUOhDRlLB7qdZo.png?scale-down-to=512 512w,https://framerusercontent.com/images/MIo9vjDML8mNMUOhDRlLB7qdZo.png 640w\"},className:\"framer-11ih816 hidden-72rtr7 hidden-160lo9z\",\"data-framer-name\":\"MOBILE-Hero Collage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kamenh\",\"data-framer-name\":\"Div Spacer Hero 2/2 Fixed Height\",id:elementId1,ref:ref2}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:\"1024px\",src:\"https://framerusercontent.com/images/8K2rPtJdPrBfzr4C7AQyfFdt9b0.png\",srcSet:\"https://framerusercontent.com/images/8K2rPtJdPrBfzr4C7AQyfFdt9b0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8K2rPtJdPrBfzr4C7AQyfFdt9b0.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/8K2rPtJdPrBfzr4C7AQyfFdt9b0.png\",srcSet:\"https://framerusercontent.com/images/8K2rPtJdPrBfzr4C7AQyfFdt9b0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8K2rPtJdPrBfzr4C7AQyfFdt9b0.png 1024w\"},className:\"framer-rtogc8 hidden-72rtr7 hidden-1tpgpst\",\"data-framer-name\":\"TABLET-Hero Collage\",transformTemplate:transformTemplate1})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vlagk7 hidden-72rtr7\",\"data-framer-name\":\"Div Spacer Hero 2/2 Fixed Height\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d9q6pm\",\"data-framer-name\":\"CONTAINER HERO TEXT FILL margin 64/32/16px)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b8lel5\",\"data-framer-name\":\"Child Fixed max width set\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sg89lg hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Div Spacer Fixed Left\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bl2s5y hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Div Spaver Fill\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-euts5w\",\"data-framer-name\":\"HERO TEXT\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13wh93w\",\"data-styles-preset\":\"qRo8CY6IV\",style:{\"--framer-text-color\":\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\"},children:\"At the roots of our broken economy is an ownership crisis. \"})}),className:\"framer-a8e1jc\",\"data-framer-appear-id\":\"a8e1jc\",\"data-framer-name\":\"At the roots of our broken economy is an ownership crisis.\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13wh93w\",\"data-styles-preset\":\"qRo8CY6IV\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Democratic business is how we reverse it.\"})}),className:\"framer-1ca62kf\",\"data-framer-appear-id\":\"1ca62kf\",\"data-framer-name\":\"Democratic business is how we reverse it.\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1szl3uo hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Div Spacer Fixed Right\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12y874\",\"data-framer-name\":\"Div Spacer Fixed Over Photo 32pxh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5khdft\",\"data-framer-name\":\"CONTAINER CTA 1 FILL (margin 64/32/16px)\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18b21tp\",\"data-framer-name\":\"Child Fixed max width set\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10zfcl4\",\"data-framer-name\":\"Container Copy + Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18dv1lp\",\"data-framer-name\":\"Child Copy + Spacer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1llr6de\",\"data-framer-name\":\"Container Copy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\"},children:\"Centre for Democratic Business \"}),\"advances democracy in our workplaces and communities through partnerships with local and national government, industry bodies, membership associations, and foundations.\"]})}),className:\"framer-1mp60kt\",\"data-framer-name\":\"The Centre for Democratic Business works with partners including local and regional government, industry bodies, membership associations, and foundations to advance the role of democracy in our workplaces and communities.\\xa0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vt4fxr hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Div Spacer Fixed 588pxw\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eifrdt\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"k0tJ7ZgeE\"},implicitPathVariables:undefined},{href:{webPageId:\"k0tJ7ZgeE\"},implicitPathVariables:undefined},{href:{webPageId:\"k0tJ7ZgeE\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{y:(componentViewport?.y||0)+0+504+0+-65.3+0+65.6},WqXVMDiR1:{y:(componentViewport?.y||0)+0+668+0+-65.3+0+65.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,y:(componentViewport?.y||0)+0+816+0+-69.3+0+73.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yjzwmr-container\",nodeId:\"SASCRpG6d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{variant:\"COdx2rjyx\",xGhy4WiNN:resolvedLinks[2]},WqXVMDiR1:{variant:\"gsRwglzkg\",xGhy4WiNN:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsGoodOnesWIP,{height:\"100%\",id:\"SASCRpG6d\",layoutId:\"SASCRpG6d\",LYPNadzoK:false,UXomcv3lH:\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\",variant:\"OB_hBetXy\",width:\"100%\",WQk129UMi:\"Our approach\",xGhy4WiNN:resolvedLinks[0],ZdrNTkaGN:false})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zuulis\",\"data-framer-name\":\"Div Spacer Fixed 48pxh\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eoasfx\",\"data-framer-name\":\"CONTAINER WHO, WHAT FILL (No margin)\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+552+0+0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png\",srcSet:\"https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png 2880w\"}},WqXVMDiR1:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+692+0+0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png\",srcSet:\"https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+896+0+0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png\",srcSet:\"https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/a7Sk4eiVuiRxfkUBZj38I5rf8E.png 2880w\"},className:\"framer-v3hu33\",\"data-framer-name\":\"Irregular Border Top\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zknaf3\",\"data-framer-name\":\"Parent Container Fill (margin 16px)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ghtpww\",\"data-framer-name\":\"Child Fixed max 500pxw\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{height:201,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 500px)`,y:(componentViewport?.y||0)+0+552+0+61+48+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16cd6fc-container hidden-72rtr7 hidden-160lo9z\",nodeId:\"yGxpPsDtD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(InteractiveToggleMenu,{height:\"100%\",id:\"yGxpPsDtD\",layoutId:\"yGxpPsDtD\",style:{width:\"100%\"},variant:\"r7S3o2KFm\",width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ai7x9i hidden-1tpgpst\",\"data-framer-name\":\"Who we are\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"Who we are\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"Who we are\"})}),className:\"framer-t8v9so\",\"data-framer-name\":\"Who we are\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Hosted by Stir to Action, we are a provider of economic development and support programmes for democratic business in the UK.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Hosted by Stir to Action, we provide economic development and support programmes for democratic business in the UK.\"})}),className:\"framer-v94jjt\",\"data-framer-name\":\"Hosted by Stir to Action, we are the leading provider of economic development and support programmes for democratic business in the UK.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-7ghnqu hidden-1tpgpst\",\"data-framer-name\":\"Div Spacer Fixed 36pxh\"}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w6s3wi hidden-1tpgpst\",\"data-framer-name\":\"What we do\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"What we do\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"What we do\"})}),className:\"framer-1qomsda\",\"data-framer-name\":\"What we do\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpm0xr\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Economic Strategy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Economic Strategy\"})}),className:\"framer-m1avho\",\"data-framer-name\":\"Economic Strategy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12z4bjy\",\"data-framer-name\":\"Div Spacer Fixed 8pxh\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Assist supportive institutions with effective planning, infrastructure, and investment.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Assist supportive institutions with effective planning, infrastructure, and investment.\"})}),className:\"framer-nj60t1\",\"data-framer-name\":\"To assist supportive institutions with effective planning, infrastructure, and investment.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1auzs2i\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Research & Analysis\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Research & Analysis\"})}),className:\"framer-1e9e0zv\",\"data-framer-name\":\"Research\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r7sgns\",\"data-framer-name\":\"Div Spacer Fixed 8pxh\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Demonstrate the benefits and address the challenges of democratic ownership in practice.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Demonstrate the benefits and address the challenges of democratic ownership in practice.\"})}),className:\"framer-m9y0sf\",\"data-framer-name\":\"To demonstrate the benefits and address the challenges of democratic ownership in practice.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sof1t1\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Training & Development Programmes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Training & Development Programmes\"})}),className:\"framer-5lpegp\",\"data-framer-name\":\"Training & Development Programmes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ddz06r\",\"data-framer-name\":\"Div Spacer Fixed 8pxh\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Directly support the growth and strengthening of the whole ecosystem.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Directly support the growth and strengthening of the whole ecosystem.\"})}),className:\"framer-1ldxqj0\",\"data-framer-name\":\"To directly support the growth and strengthening of the whole ecosystem.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+552+0+366),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"}},WqXVMDiR1:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+692+0+446.6),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+896+0+590.6),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"},className:\"framer-gyyu0c\",\"data-framer-name\":\"Irregular Border Bottom\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-buiuv8\",\"data-framer-name\":\"Div Spacer Fixed 72pxh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11rt7ix\",\"data-framer-name\":\"CONTAINER OUR WORK FILL (margin 16px)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wrmt9\",\"data-framer-name\":\"Child Fixed max 500pxw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"Our work\"})})},WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"Our work\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"Our work\"})}),className:\"framer-3imf30\",\"data-framer-name\":\"Our Work\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r1h83u\",\"data-framer-name\":\"Container Copy FILL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Learn more about what we do with this selection of our latest projects and publications \u2014 for further details on any of these, please don't hesitate to get in touch.\"})})},WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Learn more about what we do with this selection of our latest projects and publications \u2014 for further details on any of these, please don't hesitate to get in touch.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"Learn more about what we do with this selection of our latest projects and publications \u2014 for further details on any of these or more work currently in development, please don't hesitate to get in touch.\"})}),className:\"framer-x4fqob\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Id donec ultrices tincidunt arcu non.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xz8mx5 hidden-72rtr7 hidden-160lo9z\",\"data-framer-name\":\"CONTAINER CAROUSEL FILL (Margin 16px)\",children:isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ifezy hidden-72rtr7\",\"data-framer-name\":\"Child No Max Width\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w44v8u-container\",\"data-framer-name\":\"Carousel Mobile\",isModuleExternal:true,name:\"Carousel Mobile\",nodeId:\"A1RoRjuJ0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:32,height:\"100%\",id:\"A1RoRjuJ0\",layoutId:\"A1RoRjuJ0\",name:\"Carousel Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ut1v6l\",\"data-framer-name\":\"Div Spacer Fixed 72pxh\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xzKyUnDQw\"},implicitPathVariables:undefined},{href:{webPageId:\"xzKyUnDQw\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mzcg1e-container\",inComponentSlot:true,nodeId:\"xrpDLpEX8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"We are publishing results from a national survey as part of our efforts to create a national conversation about the future of social clubs.\",height:\"100%\",id:\"xrpDLpEX8\",jq2HBU_TY:resolvedLinks1[1],La5iRhCMk:true,layoutId:\"xrpDLpEX8\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"What Support do Social Clubs need? \",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:false,ttlvDHuJx:resolvedLinks1[0],UrxMj74xs:\"939ajj\",variant:\"ajHxC6UWI\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"90.2%\",positionY:\"49.4%\",src:\"https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png\",srcSet:\"https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png 1238w\"},\"\"),width:\"100%\",Ystt5dpSE:\"Results from a National Survey\",ZJq7NWInc:false,ZnDM9kKlz:\"News\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sT5gK2btl\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-104lace-container\",inComponentSlot:true,nodeId:\"krjb6mXqG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)) /* {\"name\":\"Blue\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"The event aims to foster dialogue between business federations, foundations, local government, think tanks, and universities, all focused on promoting democracy in workplaces and communities. \",height:\"100%\",id:\"krjb6mXqG\",La5iRhCMk:true,layoutId:\"krjb6mXqG\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Democratic Business Summit 2024\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,ttlvDHuJx:resolvedLinks2[0],UrxMj74xs:\"mlorcx\",variant:\"YeojB0TEr\",VtMn2qYG9:\"EVENTS\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png\",srcSet:\"https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png?scale-down-to=512 512w,https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png 1510w\"},\"\"),width:\"100%\",Ystt5dpSE:\"3 December 2024 \u2014 Principality Stadium, Cardiff \",ZJq7NWInc:false,ZnDM9kKlz:\"Upcoming\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rps00h-container\",\"data-framer-name\":\"Public/Com Anchors Preston Mob\",inComponentSlot:true,name:\"Public/Com Anchors Preston Mob\",nodeId:\"uk8khE4mF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"A third sector incubator focused on training minority-led charities to stimulate cultural awareness of democratic business models in priority sectors.\",height:\"100%\",id:\"uk8khE4mF\",jq2HBU_TY:\"https://www.councils.coop/publication/coop-recovery-prog-preston-council/\",La5iRhCMk:true,layoutId:\"uk8khE4mF\",name:\"Public/Com Anchors Preston Mob\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Community Anchors: Preston City Council\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,ttlvDHuJx:\"https://www.councils.coop/publication/coop-recovery-prog-preston-council/\",variant:\"ajHxC6UWI\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"17.7%\",positionY:\"67.3%\",src:\"https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg\",srcSet:\"https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg 1080w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Stir to Action\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pluo0-container\",\"data-framer-name\":\"Public/Return Ownership\",inComponentSlot:true,name:\"Public/Return Ownership\",nodeId:\"jbk3KvyuK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"A brief history of policy development under New Labour, the limits of business reform, and a proposal to advocate for new policy campaigns.\",height:\"100%\",id:\"jbk3KvyuK\",jq2HBU_TY:\"https://www.stirtoaction.com/articles/the-return-of-ownership-how-to-really-make-the-economy-fairer\",La5iRhCMk:true,layoutId:\"jbk3KvyuK\",name:\"Public/Return Ownership\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"The Return of Ownership? How to really make the economy fairer\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/articles/the-return-of-ownership-how-to-really-make-the-economy-fairer\",variant:\"ajHxC6UWI\",VtMn2qYG9:\"ARTICLE\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png\",srcSet:\"https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png 800w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9biim6-container\",\"data-framer-name\":\"Projects/Alt Business Models\",inComponentSlot:true,name:\"Projects/Alt Business Models\",nodeId:\"aQmJ8jTyx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)) /* {\"name\":\"Blue\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"This capacity-building course, delivered in partnership with Co-op Culture, is designed to increase knowledge and capacity among policymakers, business advisors, and foundations.\",height:\"100%\",id:\"aQmJ8jTyx\",jq2HBU_TY:\"https://www.stirtoaction.com/event/alternative-business-models\",La5iRhCMk:true,layoutId:\"aQmJ8jTyx\",name:\"Projects/Alt Business Models\",ou4E578Kt:false,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Alternative Business Models / The Co-op Option\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,ttlvDHuJx:\"https://www.stirtoaction.com/event/alternative-business-models\",variant:\"YeojB0TEr\",VtMn2qYG9:\"TRAINING\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg\",srcSet:\"https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg 1500w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Author Name\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q4xxp8-container\",\"data-framer-name\":\"Projects/Dem Own Network\",inComponentSlot:true,name:\"Projects/Dem Own Network\",nodeId:\"qP1_nEPtU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)) /* {\"name\":\"Blue\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"We\u2019re the anchor organisation for an international network building the field of democratic ownership of business into a connected movement for change.\",height:\"100%\",id:\"qP1_nEPtU\",jq2HBU_TY:\"https://democraticownershipmatters.com/spaces\",La5iRhCMk:true,layoutId:\"qP1_nEPtU\",name:\"Projects/Dem Own Network\",ou4E578Kt:false,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Democratic Ownership Matters Network \",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,ttlvDHuJx:\"https://democraticownershipmatters.com/spaces\",variant:\"YeojB0TEr\",VtMn2qYG9:\"NETWORK\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png\",srcSet:\"https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png?scale-down-to=512 512w,https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png 941w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Author Name\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-do0cot-container\",\"data-framer-name\":\"Public/Hackney \",inComponentSlot:true,name:\"Public/Hackney \",nodeId:\"eCzUzCdK_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"An article in Coop News on our project to support the council to design the most effective ecosystem of social business support in an urban context. Full report will be published soon.\",height:\"100%\",id:\"eCzUzCdK_\",jq2HBU_TY:\"https://www.thenews.coop/174121/topic/development/hackney-council-steps-up-support-for-co-ops-and-social-enterprises/\",La5iRhCMk:true,layoutId:\"eCzUzCdK_\",name:\"Public/Hackney \",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Social Business Research: Hackney Borough Council\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,ttlvDHuJx:\"https://www.thenews.coop/174121/topic/development/hackney-council-steps-up-support-for-co-ops-and-social-enterprises/\",variant:\"ajHxC6UWI\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"35.3%\",positionY:\"48.8%\",src:\"https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png\",srcSet:\"https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png?scale-down-to=512 512w,https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png 1275w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Stir to Action, Co-op Culture & Renaisi\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lcuinq-container\",\"data-framer-name\":\"Public/Technocratic\",inComponentSlot:true,name:\"Public/Technocratic\",nodeId:\"Ljh5Sq4bx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"A flagship report on how policy makers, local government, and think tanks can more effectively promote and develop democratic businesses.\",height:\"100%\",id:\"Ljh5Sq4bx\",jq2HBU_TY:\"https://www.stirtoaction.com/technocratic-to-democratic\",La5iRhCMk:true,layoutId:\"Ljh5Sq4bx\",name:\"Public/Technocratic\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Technocratic to Democratic: Building democratic culture, skills & partnerships\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,ttlvDHuJx:\"https://www.stirtoaction.com/technocratic-to-democratic\",variant:\"ajHxC6UWI\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/LVDic7nBQAD2lypwDS8t5B71Is.png\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6aunq2-container\",\"data-framer-name\":\"Public/Islington Model\",inComponentSlot:true,name:\"Public/Islington Model\",nodeId:\"NLPnGVI1c\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"Islington Council has pioneered an interventionist approach, using its services, programmes, and assets to directly tackle the roots of inequality. A core focus of this approach is the transformative role of democratic ownership of local businesses and assets.\",height:\"100%\",id:\"NLPnGVI1c\",jq2HBU_TY:\"https://www.stirtoaction.com/blog-posts/case-study-the-islington-model\",La5iRhCMk:true,layoutId:\"NLPnGVI1c\",name:\"Public/Islington Model\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"The Islington Model: Community Wealth  Building Adapted\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,ttlvDHuJx:\"https://www.stirtoaction.com/blog-posts/case-study-the-islington-model\",variant:\"ajHxC6UWI\",VtMn2qYG9:\"CASE STUDY\",VXcGiVDpe:addImageAlt({positionX:\"53.1%\",positionY:\"28.1%\",src:\"https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png\",srcSet:\"https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png 800w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9todxe-container\",\"data-framer-name\":\"Public/ Kitty's\",inComponentSlot:true,name:\"Public/ Kitty's\",nodeId:\"w9KN5yedd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"Launderettes are not usually the most beloved of locations, but in the Anfield area of North Liverpool, there is one that is doing things differently.\",height:\"100%\",id:\"w9KN5yedd\",jq2HBU_TY:\"https://www.stirtoaction.com/articles/kittys-launderette\",La5iRhCMk:true,layoutId:\"w9KN5yedd\",name:\"Public/ Kitty's\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Project spotlight: Kitty's Launderette\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,ttlvDHuJx:\"https://www.stirtoaction.com/articles/kittys-launderette\",variant:\"ajHxC6UWI\",VtMn2qYG9:\"CASE STUDY\",VXcGiVDpe:addImageAlt({positionX:\"49.8%\",positionY:\"26.4%\",src:\"https://framerusercontent.com/images/vGRFWEYXUUb7tT2m60OAHisptE.png\",srcSet:\"https://framerusercontent.com/images/vGRFWEYXUUb7tT2m60OAHisptE.png 594w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Grace Crabtree\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tjphht\",\"data-framer-name\":\"Div Spacer Fixed 72pxh\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cmss03 hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwziov hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"CONTAINER BENTO FILL (margin 64px)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ja86g2\",\"data-framer-name\":\"Child Max width 1555pxw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12dmi9k\",\"data-framer-name\":\"Row 01 FILL\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xzKyUnDQw\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1555px)`,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l6bsq0-container\",nodeId:\"VXiVTf99w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"As part of our efforts to create a national conversation about the future of social clubs, we are publishing results from a national survey to share more evidence about their current position and support requirements, and to attract more financial support and progressive policy from the government.\",height:\"100%\",id:\"VXiVTf99w\",La5iRhCMk:true,layoutId:\"VXiVTf99w\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"What Support do Social Clubs need? \",pVEEu3aw5:\"January 2025\",QjZd1cQl2:true,style:{height:\"100%\",width:\"100%\"},ttlvDHuJx:resolvedLinks3[0],UrxMj74xs:\"939ajj\",variant:\"xTWaZc2Cr\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"90.2%\",positionY:\"49.4%\",src:\"https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png\",srcSet:\"https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png 1238w\"},\"\"),width:\"100%\",Ystt5dpSE:\"Results from a National Survey\",ZJq7NWInc:false,ZnDM9kKlz:\"News\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a6tbf3\",\"data-framer-name\":\"Row 02 FILL\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R6MyMhjOc\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+744+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4r06wz-container\",nodeId:\"LvaYacnvq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"By working together, we can double the size of this transformative sector, creating more opportunities for people to benefit from democratic ownership in their workplaces and communities. Whether you're a funder, worker-owner, or local authority representative, your participation is vital in building a stronger, more resilient economy. \",height:\"100%\",id:\"LvaYacnvq\",La5iRhCMk:true,layoutId:\"LvaYacnvq\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"2024 Democratic Business Summit Report\",pVEEu3aw5:\"Winter 2025\",QjZd1cQl2:true,style:{height:\"100%\",width:\"100%\"},ttlvDHuJx:resolvedLinks4[0],UrxMj74xs:\"939ajj\",variant:\"AFT4UNIPA\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png\",srcSet:\"https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png?scale-down-to=512 512w,https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png 1510w\"},\"\"),width:\"100%\",Ystt5dpSE:\"Doubling the Size of the Co-op & Mutual Economy  \",ZJq7NWInc:false,ZnDM9kKlz:\"News\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+744+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xf6wm1-container\",\"data-framer-name\":\"Public/Com Anchors\",name:\"Public/Com Anchors\",nodeId:\"RBRLZmUSk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"A third sector incubator focused on training minority-led charities to stimulate cultural awareness of democratic business models in priority sectors.\",height:\"100%\",id:\"RBRLZmUSk\",La5iRhCMk:true,layoutId:\"RBRLZmUSk\",name:\"Public/Com Anchors\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Community Anchors: Preston City Council\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.councils.coop/publication/coop-recovery-prog-preston-council/\",UrxMj74xs:\"939ajj\",variant:\"svoamjNiH\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"17.7%\",positionY:\"67.3%\",src:\"https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg\",srcSet:\"https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg 1080w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Stir to Action\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2mq0qp\",\"data-framer-name\":\"Row 03 FILL\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:`max(min(${componentViewport?.width||\"100vw\"} - 128px, 1555px), 1px)`,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+1488+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-swlrgi-container\",\"data-framer-name\":\"Projects/Alt Business Models\",name:\"Projects/Alt Business Models\",nodeId:\"zFZxOBHgo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)) /* {\"name\":\"Blue\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"This capacity-building course, delivered in partnership with Co-op Culture, is designed to increase knowledge and capacity among policymakers, business advisors, and foundations around business models such as co-operatives and community business, including the support landscape and key support needs.\",height:\"100%\",id:\"zFZxOBHgo\",La5iRhCMk:true,layoutId:\"zFZxOBHgo\",name:\"Projects/Alt Business Models\",ou4E578Kt:false,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Alternative Business Models / The Co-op Option\",pVEEu3aw5:\"\",QjZd1cQl2:true,style:{height:\"100%\",width:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/event/alternative-business-models\",UrxMj74xs:\"1cf5b9e\",variant:\"Tr2bAyLJO\",VtMn2qYG9:\"TRAINING\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg\",srcSet:\"https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg 1500w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Author Name\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1zdz5\",\"data-framer-name\":\"Row 04 FILL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+2232+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1epyxbz-container\",\"data-framer-name\":\"Public/Return Ownership\",name:\"Public/Return Ownership\",nodeId:\"pDGH5ZirP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"A brief history of policy development under New Labour, the limits of business reform, and a proposal to advocate for new policy campaigns that directly address business ownership.\",height:\"100%\",id:\"pDGH5ZirP\",La5iRhCMk:true,layoutId:\"pDGH5ZirP\",name:\"Public/Return Ownership\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"The Return of Ownership? How to really make the economy fairer\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\",width:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/articles/the-return-of-ownership-how-to-really-make-the-economy-fairer\",UrxMj74xs:\"939ajj\",variant:\"svoamjNiH\",VtMn2qYG9:\"ARTICLE\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png\",srcSet:\"https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png 800w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+2232+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-obfhx2-container\",\"data-framer-name\":\"Projects/Dem Own Network\",name:\"Projects/Dem Own Network\",nodeId:\"enCqqnRhI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)) /* {\"name\":\"Blue\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"We\u2019re the anchor organisation for an international network of researchers, practitioners, and campaigners, building the field of democratic ownership of business into a connected movement for change in our economies, through small thematic & geographic groups, with common agendas for learning or change. \",height:\"100%\",id:\"enCqqnRhI\",La5iRhCMk:true,layoutId:\"enCqqnRhI\",name:\"Projects/Dem Own Network\",ou4E578Kt:false,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Democratic Ownership Matters Network \",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://democraticownershipmatters.com/spaces\",UrxMj74xs:\"1cf5b9e\",variant:\"JH67_pCWW\",VtMn2qYG9:\"NETWORK\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png\",srcSet:\"https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png?scale-down-to=512 512w,https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png 941w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Author Name\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157adp5\",\"data-framer-name\":\"Row 05 FILL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1555px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+2976+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15pi2s5-container\",\"data-framer-name\":\"Public/Hackney \",name:\"Public/Hackney \",nodeId:\"Dy_nKWOa2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"An article in Coop News on our project to support the council to design the most effective ecosystem of social business support in an urban context. Full report will be published soon.\",height:\"100%\",id:\"Dy_nKWOa2\",La5iRhCMk:true,layoutId:\"Dy_nKWOa2\",name:\"Public/Hackney \",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Social Business Research: Hackney Borough Council\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\",width:\"100%\"},ttlvDHuJx:\"https://www.thenews.coop/174121/topic/development/hackney-council-steps-up-support-for-co-ops-and-social-enterprises/\",UrxMj74xs:\"939ajj\",variant:\"svoamjNiH\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"35.3%\",positionY:\"48.8%\",src:\"https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png\",srcSet:\"https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png?scale-down-to=512 512w,https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png 1275w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Stir to Action, Co-op Culture & Renaisi\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1555px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+2976+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s6aked-container\",\"data-framer-name\":\"Public/Technocratic\",name:\"Public/Technocratic\",nodeId:\"L8zfQvvLd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"A flagship report on how policy makers, local government, and think tanks can more effectively promote and develop democratic businesses.\",height:\"100%\",id:\"L8zfQvvLd\",La5iRhCMk:true,layoutId:\"L8zfQvvLd\",name:\"Public/Technocratic\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Technocratic to Democratic: Building democratic culture, skills, and partnerships\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\",width:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/technocratic-to-democratic\",UrxMj74xs:\"939ajj\",variant:\"svoamjNiH\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/LVDic7nBQAD2lypwDS8t5B71Is.png\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1555px) - 80px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1772.1999999999998+0+0+0+2976+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pbagh-container\",\"data-framer-name\":\"Public/Islington Model\",name:\"Public/Islington Model\",nodeId:\"qc_YztNI9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"center\",G8kQI9blL:\"Islington Council has pioneered an interventionist approach, using its services, programmes, and assets to directly tackle the roots of inequality. A core focus of this approach is the transformative role of democratic ownership of local businesses and assets.\",height:\"100%\",id:\"qc_YztNI9\",La5iRhCMk:true,layoutId:\"qc_YztNI9\",name:\"Public/Islington Model\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"The Islington Model: Community Wealth  Building Adapted\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\",width:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/blog-posts/case-study-the-islington-model\",UrxMj74xs:\"939ajj\",variant:\"svoamjNiH\",VtMn2qYG9:\"CASE STUDY\",VXcGiVDpe:addImageAlt({positionX:\"53.1%\",positionY:\"28.1%\",src:\"https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png\",srcSet:\"https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png 800w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vsomsz hidden-72rtr7 hidden-160lo9z\",\"data-framer-name\":\"Div Spacer Fixed 32pxh\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dke7tb hidden-72rtr7 hidden-1tpgpst\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15dj2he\",\"data-framer-name\":\"Div Spacer Fixed 64pxh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oes0dy\",\"data-framer-name\":\"CONTAINER NEWS FILL (margin 16px)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sdtk1k\",\"data-framer-name\":\"Child Fixed max 500pxw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"News and commentary\"})})},WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-11jnft4\",\"data-styles-preset\":\"Y2QGtkKlM\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"News and commentary\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"News and commentary\"})}),className:\"framer-1je7b56\",\"data-framer-name\":\"Our Work\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14oqgy0\",\"data-framer-name\":\"Container Copy FILL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"This section allows you to stay updated with the Centre for Democratic Business' insights on the most significant events and developments in the spheres of policy, business, and the economy as a whole.\"})})},WqXVMDiR1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-som5lu\",\"data-styles-preset\":\"wK1oma0cg\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"This section allows you to stay updated with the Centre for Democratic Business' insights on the most significant events and developments in the spheres of policy, business, and the economy as a whole.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"This section allows you to stay updated with the Centre for Democratic Business' insights on the most significant events and developments in the spheres of policy, business, and the economy as a whole.\"})}),className:\"framer-1ydlcpw\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Id donec ultrices tincidunt arcu non.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jzvuuz\",\"data-framer-name\":\"Div Spacer Fixed 64pxh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9nol6\",\"data-framer-name\":\"CONTAINER NEWS CARDS FILL MARGIN\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h018mp\",\"data-framer-name\":\"Collection List Max Width\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{pageSize:4,query:{from:{alias:\"SnAk45vBE\",data:NewsCommentary,type:\"Collection\"},select:[{collection:\"SnAk45vBE\",name:\"Fk3GS8_KM\",type:\"Identifier\"},{collection:\"SnAk45vBE\",name:\"r_J7Rsip3\",type:\"Identifier\"},{collection:\"SnAk45vBE\",name:\"sE1KETla2\",type:\"Identifier\"},{collection:\"SnAk45vBE\",name:\"eNZt0ObQn\",type:\"Identifier\"},{collection:\"SnAk45vBE\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{pageSize:3,query:{from:{alias:\"SnAk45vBE\",data:NewsCommentary,type:\"Collection\"},select:[{collection:\"SnAk45vBE\",name:\"Fk3GS8_KM\",type:\"Identifier\"},{collection:\"SnAk45vBE\",name:\"r_J7Rsip3\",type:\"Identifier\"},{collection:\"SnAk45vBE\",name:\"sE1KETla2\",type:\"Identifier\"},{collection:\"SnAk45vBE\",name:\"eNZt0ObQn\",type:\"Identifier\"},{collection:\"SnAk45vBE\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({eNZt0ObQn:eNZt0ObQnSnAk45vBE,Fk3GS8_KM:Fk3GS8_KMSnAk45vBE,id:idSnAk45vBE,r_J7Rsip3:r_J7Rsip3SnAk45vBE,sE1KETla2:sE1KETla2SnAk45vBE},index)=>{Fk3GS8_KMSnAk45vBE??=\"\";r_J7Rsip3SnAk45vBE??=\"\";sE1KETla2SnAk45vBE??=\"\";eNZt0ObQnSnAk45vBE??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`SnAk45vBE-${idSnAk45vBE}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{sE1KETla2:sE1KETla2SnAk45vBE},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sE1KETla2:sE1KETla2SnAk45vBE},webPageId:\"XxAcaXbNv\"},implicitPathVariables:undefined},{href:{webPageId:\"QUJLNLciH\"},implicitPathVariables:undefined},{href:{pathVariables:{sE1KETla2:sE1KETla2SnAk45vBE},webPageId:\"XxAcaXbNv\"},implicitPathVariables:undefined},{href:{pathVariables:{sE1KETla2:sE1KETla2W1_qyFq4Y},webPageId:\"XxAcaXbNv\"},implicitPathVariables:undefined},{href:{pathVariables:{sE1KETla2:sE1KETla2SnAk45vBE},webPageId:\"XxAcaXbNv\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 500px)`,y:(componentViewport?.y||0)+0+1877.1999999999998+0+0+0+0},WqXVMDiR1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 769px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2290.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:`min(${componentViewport?.width||\"100vw\"} - 144px, 1555px)`,y:(componentViewport?.y||0)+0+5677.8+0+0+0+1488,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uqcx57-container\",nodeId:\"zrG8Xh97v\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{jq2HBU_TY:resolvedLinks5[4],QjZd1cQl2:false,ttlvDHuJx:resolvedLinks5[3],variant:\"tewQbqC6w\"},WqXVMDiR1:{jq2HBU_TY:resolvedLinks5[2],QjZd1cQl2:false,ttlvDHuJx:undefined,variant:\"xKTSK_9M0\"}},children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-6943031b-6695-46a5-aa0e-7cb746c4f0aa, rgb(178, 82, 122)) /* {\"name\":\"Mauve (Plus Darker)\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"Following its successful inauguration in Manchester last year, the 2024 Democratic Business Summit will be held in Cardiff in December. The event aims to foster dialogue between business federations, foundations, local government, think tanks, and universities, all focused on promoting democracy in workplaces and communities. \",height:\"100%\",id:\"zrG8Xh97v\",jq2HBU_TY:resolvedLinks5[1],La5iRhCMk:true,layoutId:\"zrG8Xh97v\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:Fk3GS8_KMSnAk45vBE,pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{width:\"100%\"},ttlvDHuJx:resolvedLinks5[0],UrxMj74xs:\"mlorcx\",variant:\"l_5UOrBlk\",VtMn2qYG9:eNZt0ObQnSnAk45vBE,VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png\",srcSet:\"https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png?scale-down-to=512 512w,https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png 1510w\"},\"\"),width:\"100%\",Ystt5dpSE:r_J7Rsip3SnAk45vBE,ZJq7NWInc:false,ZnDM9kKlz:\"News\"})})})})})})})},idSnAk45vBE);})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1srco4b\",\"data-framer-name\":\"Div Spacer Fixed 64pxh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s4g1ij\",\"data-framer-name\":\"CONTAINER BUTTON FILL (margin 64pxw)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1karthq\",\"data-framer-name\":\"Child Fixed Max 1555pxw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-grvzbd\",\"data-framer-name\":\"Frame 78\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GaCqmXlra\"},implicitPathVariables:undefined},{href:{webPageId:\"GaCqmXlra\"},implicitPathVariables:undefined},{href:{webPageId:\"GaCqmXlra\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{y:(componentViewport?.y||0)+0+2605.2+0+0+0},WqXVMDiR1:{y:(componentViewport?.y||0)+0+3066.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,y:(componentViewport?.y||0)+0+7909.8+0+0+-1.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l2lqxg-container\",nodeId:\"I2HHVcaif\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{variant:\"x5SUdeSA2\",xGhy4WiNN:resolvedLinks6[2]},WqXVMDiR1:{variant:\"VKYbZZjsu\",xGhy4WiNN:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ButtonsGoodOnesWIP,{height:\"100%\",id:\"I2HHVcaif\",layoutId:\"I2HHVcaif\",LYPNadzoK:true,UXomcv3lH:\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\",variant:\"noatMVXUZ\",width:\"100%\",WQk129UMi:\"More news\",xGhy4WiNN:resolvedLinks6[0],ZdrNTkaGN:false})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kapau\",\"data-framer-name\":\"Div Spacer Fixed 64pxh\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-56n3d7\",\"data-framer-name\":\"CONTAINER NEWSLETTER FILL (No margin)\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2742.2+0+0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"}},WqXVMDiR1:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3235.2+0+0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"},className:\"framer-pvsytn hidden-72rtr7\",\"data-framer-name\":\"Irregular Border Top\",style:{rotate:180}})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8083.8+0+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/KHQm5TGXKOGdTV9Auqjo7mrt2OE.png\",srcSet:\"https://framerusercontent.com/images/KHQm5TGXKOGdTV9Auqjo7mrt2OE.png?scale-down-to=512 512w,https://framerusercontent.com/images/KHQm5TGXKOGdTV9Auqjo7mrt2OE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KHQm5TGXKOGdTV9Auqjo7mrt2OE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KHQm5TGXKOGdTV9Auqjo7mrt2OE.png 2880w\"},className:\"framer-p8932x hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Irregualr Border Top\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xlqemx\",\"data-framer-name\":\"Container OVERFLOW  pink\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r7dzvi\",\"data-framer-name\":\"Pink that overflows\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3zajy2\",\"data-framer-name\":\"CONTAINER FILL (padding T B)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dnu8ym\",\"data-framer-name\":\"Child Max width\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"Sign up to our newsletter to hear about our work, news, and updates.\"})}),className:\"framer-aorrcz\",\"data-framer-name\":\"Sign up to...\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qxigz3\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-86vlsm-container\",id:\"86vlsm\",isModuleExternal:true,nodeId:\"qGnyFCDiM\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:14,buttonPaddingLeft:18,buttonPaddingPerSide:true,buttonPaddingRight:18,buttonPaddingTop:14,color:\"rgb(255, 255, 255)\",fill:\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\",insetWhenDocked:7,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:175},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"},gap:8,input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"var(--token-478a7bc3-0005-49a2-9d81-392f266288ff, rgb(255, 255, 255))\",fixedHeight:50,height:true,padding:16,paddingBottom:14,paddingLeft:18,paddingPerSide:true,paddingRight:18,paddingTop:14,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.35)\"},link:resolvedLinks7[2]},WqXVMDiR1:{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:16,buttonPaddingLeft:20,buttonPaddingPerSide:true,buttonPaddingRight:20,buttonPaddingTop:16,color:\"rgb(255, 255, 255)\",fill:\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\",insetWhenDocked:7,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:175},gap:12,link:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:16,buttonPaddingLeft:24,buttonPaddingPerSide:true,buttonPaddingRight:24,buttonPaddingTop:16,color:\"rgb(255, 255, 255)\",fill:\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\",insetWhenDocked:7,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:175},convertkitAPI:\"\",convertkitFormID:\"\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"left\"},formsparkID:\"\",gap:24,getwaitlistAPI:\"\",height:\"100%\",id:\"qGnyFCDiM\",input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"var(--token-478a7bc3-0005-49a2-9d81-392f266288ff, rgb(255, 255, 255))\",fixedHeight:50,height:true,padding:16,paddingBottom:16,paddingLeft:24,paddingPerSide:true,paddingRight:16,paddingTop:16,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.35)\"},layout:\"horizontal\",layoutId:\"qGnyFCDiM\",link:resolvedLinks7[0],loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"https://stirtoaction.us13.list-manage.com/subscribe/post?u=ecb0f7a613961bd4463e0c67e&amp;id=45d7010685&amp;f_id=007c4ee9f0\",onSubmit:onSubmit3bnx0g({overlay}),redirectAs:\"overlay\",service:\"mailchimp\",style:{width:\"100%\"},width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:.5,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-8grc8z\"),\"data-framer-portal-id\":\"86vlsm\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"tzB8n6Hfd\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation4,className:cx(scopingClassNames,\"framer-m1q0wf\"),\"data-framer-portal-id\":\"86vlsm\",exit:animation3,initial:animation5,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sf35gz\",\"data-framer-name\":\"CONTAINER BLUE FILL (64px Margin)\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1601uoz\",\"data-framer-name\":\"Container Navigation\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96.66666666666667,intrinsicWidth:264.6666666666667,pixelHeight:145,pixelWidth:397,src:\"https://framerusercontent.com/images/xGEwi7tgzXB19o9CE1mDXnARNA.png\"},className:\"framer-lgmhm5\",\"data-framer-name\":\"LOGO_SCULPIN_White_not_final_1\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eg6tuk\",\"data-framer-name\":\"Buttons Right\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bqrwwj-container\",inComponentSlot:true,nodeId:\"NNd2e9Wax\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsGoodOnesWIP,{height:\"100%\",id:\"NNd2e9Wax\",layoutId:\"NNd2e9Wax\",LYPNadzoK:false,pO0WXG0UX:pO0WXG0UX1wnntms({overlay}),UXomcv3lH:\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\",variant:\"esdJyjXcT\",width:\"100%\",WQk129UMi:\"Contact\",ZdrNTkaGN:false})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4j4ikt\",\"data-framer-name\":\"Container Fixed width 533px\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o4zx6n\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ivzypm\",\"data-framer-name\":\"Tickmark_Subscription\",fill:\"black\",intrinsicHeight:177,intrinsicWidth:240,svg:'<svg width=\"240\" height=\"177\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M222 18 81.75 159 18 94.91\" stroke=\"#fff\" stroke-width=\"35\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13wh93w\",\"data-styles-preset\":\"qRo8CY6IV\",style:{\"--framer-text-color\":\"var(--token-478a7bc3-0005-49a2-9d81-392f266288ff, rgb(255, 255, 255))\"},children:\"Thank you for subscribing.\"})}),className:\"framer-ar74qp\",\"data-framer-name\":\"We'd love to hear from you. Let\u2019s work together to make this movement grow.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-478a7bc3-0005-49a2-9d81-392f266288ff, rgb(255, 255, 255))\"},children:\"We'll send you our latest news and updates. Please check your inbox to confirm your subscription.\"})}),className:\"framer-14tnpr8\",\"data-framer-name\":\"We'd love to hear from you. Let\u2019s work together to make this movement grow.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fxos9w\",\"data-framer-name\":\"Container OVERFLOW  blue\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-74y4y5\",\"data-framer-name\":\"Blue that overflows\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"640px\",src:\"https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png\",srcSet:\"https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png?scale-down-to=512 512w,https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png 2882w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png\",srcSet:\"https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png?scale-down-to=512 512w,https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IxhXlQMJVU5qGmdYYjFBohJ8UBY.png 2882w\"},className:\"framer-dxxtjw\",\"data-framer-name\":\"Irregular Border Torn\"})})]})]}),getContainer())})})]})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ptsnrr\",\"data-framer-name\":\"Container OVERFLOW  pink\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16myvf5\",\"data-framer-name\":\"Pink that overflows\"})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2742.2+0+180.4),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"}},WqXVMDiR1:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3235.2+0+172.4),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png\",srcSet:\"https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=512 512w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GpVW8AnXULj7i4U90E9a1Jh4F4.png 2880w\"},className:\"framer-1vgk9ut hidden-72rtr7\",\"data-framer-name\":\"Irregular Border Bottom\"})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8083.8+0+278.4),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pYgfHFCaW6dwHHXqTseYpkRMpQ.png\",srcSet:\"https://framerusercontent.com/images/pYgfHFCaW6dwHHXqTseYpkRMpQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/pYgfHFCaW6dwHHXqTseYpkRMpQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pYgfHFCaW6dwHHXqTseYpkRMpQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pYgfHFCaW6dwHHXqTseYpkRMpQ.png 2880w\"},className:\"framer-150ngtp hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Irregular Border Bottom\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h4ehln\",\"data-framer-name\":\"Div Spacer Fixed 64pxh\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qcv2u9 hidden-72rtr7 hidden-1tpgpst\",\"data-framer-name\":\"CONTAINER CAROUSEL FILL (No margi)\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6xb94m\",\"data-framer-name\":\"Child Fixed No Max Width\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bpui4m-container\",\"data-framer-name\":\"Carousel Tablet\",isAuthoredByUser:true,isModuleExternal:true,name:\"Carousel Tablet\",nodeId:\"O4yEdnNhe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel1,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:40,height:\"100%\",id:\"O4yEdnNhe\",layoutId:\"O4yEdnNhe\",name:\"Carousel Tablet\",padding:0,paddingBottom:0,paddingLeft:5,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 147, 207, 0.5)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ccse27\",\"data-framer-name\":\"Div Spacer Fixed 72pxh\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"xzKyUnDQw\"},implicitPathVariables:undefined},{href:{webPageId:\"xzKyUnDQw\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:\"456px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mhrzgu-container\",inComponentSlot:true,nodeId:\"A1oorBeaA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"As part of our efforts to create a national conversation about the future of social clubs, we are publishing results from a national survey to share more evidence about their current position and support requirements, and to attract more financial support and progressive policy from the government.\",height:\"100%\",id:\"A1oorBeaA\",jq2HBU_TY:resolvedLinks8[1],La5iRhCMk:true,layoutId:\"A1oorBeaA\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"What Support do Social Clubs need? \",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:false,style:{height:\"100%\"},ttlvDHuJx:resolvedLinks8[0],UrxMj74xs:\"939ajj\",variant:\"uVHY3GvEh\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"90.2%\",positionY:\"49.4%\",src:\"https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png\",srcSet:\"https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mjlOWMgnBxG6JVpVyeqTXImpK8.png 1238w\"},\"\"),width:\"100%\",Ystt5dpSE:\"Results from a National Survey\",ZJq7NWInc:false,ZnDM9kKlz:\"News\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sT5gK2btl\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:\"456px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k7exeo-container\",inComponentSlot:true,nodeId:\"a4dQuclFn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)) /* {\"name\":\"Blue\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"Following its successful inauguration in Manchester last year, the 2024 Democratic Business Summit will be held in Cardiff in December. The event aims to foster dialogue between business federations, foundations, local government, think tanks, and universities, all focused on promoting democracy in workplaces and communities. \",height:\"100%\",id:\"a4dQuclFn\",La5iRhCMk:true,layoutId:\"a4dQuclFn\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Democratic Business Summit 2024\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:resolvedLinks9[0],UrxMj74xs:\"mlorcx\",variant:\"hy0YJ39_e\",VtMn2qYG9:\"EVENTS\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png\",srcSet:\"https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png?scale-down-to=512 512w,https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GTlYtyIERWPDIQ9fYAvJOiCBNI.png 1510w\"},\"\"),width:\"100%\",Ystt5dpSE:\"Tuesday 3 December 2024 \u2014 Principality Stadium, Cardiff \",ZJq7NWInc:false,ZnDM9kKlz:\"Upcoming\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c0sc29-container\",\"data-framer-name\":\"Public/Com Anchors Preston\",inComponentSlot:true,name:\"Public/Com Anchors Preston\",nodeId:\"kJGvkJRKW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"Coming Soon \u2014 A third sector incubator focused on training minority-led charities to stimulate cultural awareness of democratic business models in priority sectors.\",height:\"100%\",id:\"kJGvkJRKW\",jq2HBU_TY:\"https://www.councils.coop/publication/coop-recovery-prog-preston-council/\",La5iRhCMk:true,layoutId:\"kJGvkJRKW\",name:\"Public/Com Anchors Preston\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Community Anchors: Preston City Council\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.councils.coop/publication/coop-recovery-prog-preston-council/\",variant:\"uVHY3GvEh\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"17.7%\",positionY:\"67.3%\",src:\"https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg\",srcSet:\"https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wIRG9dM2YQXZyjI0wSjfDAcsvn8.jpg 1080w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Stir to Action\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e2w30p-container\",\"data-framer-name\":\"Public/Return Ownership\",inComponentSlot:true,name:\"Public/Return Ownership\",nodeId:\"cPf3Q6qqQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"A brief history of policy development under New Labour, the limits of business reform, and a proposal to advocate for new policy campaigns that directly address business ownership.\",height:\"100%\",id:\"cPf3Q6qqQ\",jq2HBU_TY:\"https://www.stirtoaction.com/articles/the-return-of-ownership-how-to-really-make-the-economy-fairer\",La5iRhCMk:true,layoutId:\"cPf3Q6qqQ\",name:\"Public/Return Ownership\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"The Return of Ownership? How to really make the economy fairer\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/articles/the-return-of-ownership-how-to-really-make-the-economy-fairer\",variant:\"uVHY3GvEh\",VtMn2qYG9:\"ARTICLE\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png\",srcSet:\"https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png?scale-down-to=512 512w,https://framerusercontent.com/images/aTqWTs05WvlzXBqdJ4TMdfWg4A.png 800w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ad5xvl-container\",\"data-framer-name\":\"Projects/Alt Business Models\",inComponentSlot:true,name:\"Projects/Alt Business Models\",nodeId:\"uFh8zwtVC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)) /* {\"name\":\"Blue\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"This capacity-building course, delivered in partnership with Co-op Culture, is designed to increase knowledge and capacity among policymakers, business advisors, and foundations around business models such as co-operatives and community business, including the support landscape and key support needs.\",height:\"100%\",id:\"uFh8zwtVC\",jq2HBU_TY:\"https://www.stirtoaction.com/event/alternative-business-models\",La5iRhCMk:true,layoutId:\"uFh8zwtVC\",name:\"Projects/Alt Business Models\",ou4E578Kt:false,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Alternative Business Models / The Co-op Option\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/event/alternative-business-models\",variant:\"hy0YJ39_e\",VtMn2qYG9:\"TRAINING\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg\",srcSet:\"https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m12Mau7lTcdp82z5ooP2m7e5ME.jpg 1500w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Author Name\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12swwtz-container\",\"data-framer-name\":\"Projects/Dem Own Network\",inComponentSlot:true,name:\"Projects/Dem Own Network\",nodeId:\"YXeB18QNU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207)) /* {\"name\":\"Blue\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"We\u2019re the anchor organisation for an international network of researchers, practitioners, and campaigners, building the field of democratic ownership of business into a connected movement for change in our economies, through small thematic & geographic groups, with common agendas for learning or change. \",height:\"100%\",id:\"YXeB18QNU\",jq2HBU_TY:\"https://democraticownershipmatters.com/spaces\",La5iRhCMk:true,layoutId:\"YXeB18QNU\",name:\"Projects/Dem Own Network\",ou4E578Kt:false,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Democratic Ownership Matters Network \",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://democraticownershipmatters.com/spaces\",variant:\"hy0YJ39_e\",VtMn2qYG9:\"NETWORK\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png\",srcSet:\"https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png?scale-down-to=512 512w,https://framerusercontent.com/images/v7nClmixQUENvtmgKA3k2DeFNlo.png 941w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Author Name\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y6l2td-container\",\"data-framer-name\":\"Public/Hackney \",inComponentSlot:true,name:\"Public/Hackney \",nodeId:\"NoEmBuy7s\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"An article in Coop News on our project to support the council to design the most effective ecosystem of social business support in an urban context.. Full report will be published soon.\",height:\"100%\",id:\"NoEmBuy7s\",jq2HBU_TY:\"https://www.thenews.coop/174121/topic/development/hackney-council-steps-up-support-for-co-ops-and-social-enterprises/\",La5iRhCMk:true,layoutId:\"NoEmBuy7s\",name:\"Public/Hackney \",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Social Business Research: Hackney Borough Council\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.thenews.coop/174121/topic/development/hackney-council-steps-up-support-for-co-ops-and-social-enterprises/\",variant:\"uVHY3GvEh\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({positionX:\"35.3%\",positionY:\"48.8%\",src:\"https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png\",srcSet:\"https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png?scale-down-to=512 512w,https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GobPIcCKiTQvB3MILm9y5hThJI.png 1275w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Stir to Action, Co-op Culture & Renaisi\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kgavzr-container\",\"data-framer-name\":\"Public/Technocratic\",inComponentSlot:true,name:\"Public/Technocratic\",nodeId:\"U_QACwTrR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"Coming Soon \u2014 A flagship report on how policy makers, local government, and think tanks can more effectively promote and develop democratic businesses.\",height:\"100%\",id:\"U_QACwTrR\",jq2HBU_TY:\"https://www.stirtoaction.com/technocratic-to-democratic\",La5iRhCMk:true,layoutId:\"U_QACwTrR\",name:\"Public/Technocratic\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Technocratic to Democratic: Building democratic culture, skills, and partnerships\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/technocratic-to-democratic\",variant:\"uVHY3GvEh\",VtMn2qYG9:\"REPORT\",VXcGiVDpe:addImageAlt({src:\"https://framerusercontent.com/images/LVDic7nBQAD2lypwDS8t5B71Is.png\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-23zc8u-container\",\"data-framer-name\":\"Public/Islington Model\",inComponentSlot:true,name:\"Public/Islington Model\",nodeId:\"fw1UAsVVH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"Islington Council has pioneered an interventionist approach, using its services, programmes, and assets to directly tackle the roots of inequality. A core focus of this approach is the transformative role of democratic ownership of local businesses and assets.\",height:\"100%\",id:\"fw1UAsVVH\",jq2HBU_TY:\"https://www.stirtoaction.com/blog-posts/case-study-the-islington-model\",La5iRhCMk:true,layoutId:\"fw1UAsVVH\",name:\"Public/Islington Model\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"The Islington Model: Community Wealth  Building Adapted\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/blog-posts/case-study-the-islington-model\",variant:\"uVHY3GvEh\",VtMn2qYG9:\"CASE STUDY\",VXcGiVDpe:addImageAlt({positionX:\"53.1%\",positionY:\"28.1%\",src:\"https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png\",srcSet:\"https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSEIR84rPcoXVEJqL9gM4l3EBsM.png 800w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Jonny Gordon-Farleigh\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1up79vz-container\",\"data-framer-name\":\"Public/ Kitty's\",inComponentSlot:true,name:\"Public/ Kitty's\",nodeId:\"C3vdUl1UO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContentCardsNewCards,{Dk_aNHIGo:{borderColor:'var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169)) /* {\"name\":\"Mauve\"} */',borderStyle:\"solid\",borderWidth:2},eHlbBQOyQ:true,etZUF0Opv:\"flex-end\",G8kQI9blL:\"Launderettes are not usually the most beloved of locations: unstaffed, faulty dryers, sticky floors, expensive cycles eating up large stacks of pound coins. But in the Anfield area of North Liverpool, there is one that is doing things differently.\",height:\"100%\",id:\"C3vdUl1UO\",jq2HBU_TY:\"https://www.stirtoaction.com/articles/kittys-launderette\",La5iRhCMk:true,layoutId:\"C3vdUl1UO\",name:\"Public/ Kitty's\",ou4E578Kt:true,PF6uGcHMD:\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\",Pon_M6FZj:\"Project spotlight: Kitty's Launderette\",pVEEu3aw5:\"Winter 1914\",QjZd1cQl2:true,style:{height:\"100%\"},ttlvDHuJx:\"https://www.stirtoaction.com/articles/kittys-launderette\",variant:\"uVHY3GvEh\",VtMn2qYG9:\"CASE STUDY\",VXcGiVDpe:addImageAlt({positionX:\"49.8%\",positionY:\"26.4%\",src:\"https://framerusercontent.com/images/vGRFWEYXUUb7tT2m60OAHisptE.png\",srcSet:\"https://framerusercontent.com/images/vGRFWEYXUUb7tT2m60OAHisptE.png 594w\"},\"\"),width:\"100%\",Ystt5dpSE:\"by Grace Crabtree\",ZJq7NWInc:true,ZnDM9kKlz:\"News\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f752es\",\"data-framer-name\":\"Div Spacer Fixed 72pxh\"})],snapObject:{fluid:false,snap:false,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oh0x5\",\"data-framer-name\":\"CONTAINER LAST CTA FILL (margin 16px)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-181nh30\",\"data-framer-name\":\"Child Fixed max 500pxw\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1copxes hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"CONTAINER IMAGE\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9a4rqf\",\"data-framer-name\":\"Div Spacer Fixed 112pxh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8523.2+0+0+298.20000000000005-300),positionX:\"left\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/2B4IzfUVfsuMYlIc6gfcMznTDQ.png\"},className:\"framer-11y95io\",\"data-framer-name\":\"Collage Container Bottom SM 1\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19l775e\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13wh93w\",\"data-styles-preset\":\"qRo8CY6IV\",style:{\"--framer-text-color\":\"var(--token-72fa4395-9ae7-479c-a0b5-aba46c21432c, rgb(182, 144, 169))\"},children:\"Work with us to build a new generation of democratic businesses\"})}),className:\"framer-29h6vj\",\"data-framer-name\":\"Work with us to build a new generation of democratic businesses\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rkock2\",\"data-framer-name\":\"Div Spacer Fixed 8pxh\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-168x8ra\",\"data-styles-preset\":\"IZLhC5RhW\",style:{\"--framer-text-color\":\"var(--token-a7da793c-f560-4487-a34e-c6146f263066, rgb(0, 0, 0))\"},children:\"We are already working with councils, foundations, development bodies, and membership associations to promote more democratic ownership of UK businesses and assets.\"})}),className:\"framer-2qauk9\",\"data-framer-name\":\"We are already working with councils, foundations, development bodies, and membership associations to promote more democratic ownership of UK businesses and assets.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uwn1p8\",\"data-framer-name\":\"Div Spacer Fixed 16pxh\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-lb05fa\",\"data-styles-preset\":\"t3P1bQNLd\",style:{\"--framer-text-color\":\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\"},children:\"If you are an organisation who is interested in harnessing the power of democratic ownership and governance in your area of work, get in touch.\"})}),className:\"framer-1c8bi7e\",\"data-framer-name\":\"If you are an organisation who is interested in harnessing the power of democratic ownership and governance in your area of work, get in touch.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s8epd0\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dSTPuoBp3\"},implicitPathVariables:undefined},{href:{webPageId:\"dSTPuoBp3\"},implicitPathVariables:undefined},{href:{webPageId:\"dSTPuoBp3\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{y:(componentViewport?.y||0)+0+3004.6+0+0+0+185.20000000000002},WqXVMDiR1:{y:(componentViewport?.y||0)+0+3521.6+0+0+0+201.20000000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,y:(componentViewport?.y||0)+0+8523.2+0+0+0+201.20000000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16wc3a0-container\",nodeId:\"zwEff9S10\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{variant:\"COdx2rjyx\",xGhy4WiNN:resolvedLinks10[2]},WqXVMDiR1:{variant:\"gsRwglzkg\",xGhy4WiNN:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(ButtonsGoodOnesWIP,{height:\"100%\",id:\"zwEff9S10\",layoutId:\"zwEff9S10\",LYPNadzoK:false,UXomcv3lH:\"var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, rgb(0, 147, 207))\",variant:\"OB_hBetXy\",width:\"100%\",WQk129UMi:\"Contact us\",xGhy4WiNN:resolvedLinks10[0],ZdrNTkaGN:false})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1umdmyn hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s1fzve\",\"data-framer-name\":\"CONTAINER COLLAGE FILL\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WqXVMDiR1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3835.8+0+0),sizes:\"1024px\",src:\"https://framerusercontent.com/images/q0BFHYbcIUdxiLvYFR1j11w3k.png\",srcSet:\"https://framerusercontent.com/images/q0BFHYbcIUdxiLvYFR1j11w3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/q0BFHYbcIUdxiLvYFR1j11w3k.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/q0BFHYbcIUdxiLvYFR1j11w3k.png\",srcSet:\"https://framerusercontent.com/images/q0BFHYbcIUdxiLvYFR1j11w3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/q0BFHYbcIUdxiLvYFR1j11w3k.png 1024w\"},className:\"framer-98u4ir hidden-72rtr7 hidden-1tpgpst\",\"data-framer-name\":\"TABLET-Collage Bottom\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3270.7999999999997+0+0),sizes:\"640px\",src:\"https://framerusercontent.com/images/sZVugULn2e0lmVl9aQhw3mXWw.png\",srcSet:\"https://framerusercontent.com/images/sZVugULn2e0lmVl9aQhw3mXWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sZVugULn2e0lmVl9aQhw3mXWw.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/sZVugULn2e0lmVl9aQhw3mXWw.png\",srcSet:\"https://framerusercontent.com/images/sZVugULn2e0lmVl9aQhw3mXWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sZVugULn2e0lmVl9aQhw3mXWw.png 640w\"},className:\"framer-1j2rq87 hidden-72rtr7 hidden-160lo9z\",\"data-framer-name\":\"Mobile-Collage Bottom\"})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8821.400000000001+0+2),sizes:\"2560px\",src:\"https://framerusercontent.com/images/zS91Yk6vjoze7qwU48AvJ4w8dHY.png\",srcSet:\"https://framerusercontent.com/images/zS91Yk6vjoze7qwU48AvJ4w8dHY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zS91Yk6vjoze7qwU48AvJ4w8dHY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zS91Yk6vjoze7qwU48AvJ4w8dHY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zS91Yk6vjoze7qwU48AvJ4w8dHY.png 2560w\"},className:\"framer-lvmivb hidden-160lo9z hidden-1tpgpst\",\"data-framer-name\":\"DESKTOP_Collage Bottom\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{y:(componentViewport?.y||0)+0+3546.7999999999997},WqXVMDiR1:{y:(componentViewport?.y||0)+0+4389.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9602.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q6rrcb-container\",nodeId:\"Mr7g8nN5Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T7DkiRhnf:{variant:\"M38ha5zgK\"},WqXVMDiR1:{variant:\"JVBeENeht\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Mr7g8nN5Z\",layoutId:\"Mr7g8nN5Z\",style:{width:\"100%\"},variant:\"ppPWWPq3R\",width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-g2w3f3 hidden-72rtr7\",\"data-framer-name\":\"Div Spacer Fixed 24pxh\"}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3uwp5f hidden-72rtr7\",\"data-framer-name\":\"Div Spacer Fixed 16pxh\"})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DaVHv.framer-lux5qc, .framer-DaVHv .framer-lux5qc { display: block; }\",'.framer-DaVHv.framer-72rtr7 { --selection-background-color: var(--token-4f3f9a22-48c5-44f8-ad63-2414af5653e4, #e5f4fa) /* {\"name\":\"Blue 10%\"} */; --selection-color: var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, #0093cf) /* {\"name\":\"Blue\"} */; align-content: center; align-items: center; background-color: var(--token-478a7bc3-0005-49a2-9d81-392f266288ff, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1025px; }',\".framer-DaVHv .framer-vztfwn { aspect-ratio: 1.735593220338983 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1475px); left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 2560px; z-index: 0; }\",\".framer-DaVHv .framer-19qnjdx-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-DaVHv .framer-easwz-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\".framer-DaVHv .framer-auw34y, .framer-DaVHv .framer-kamenh { flex: none; height: 162px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-11ih816 { aspect-ratio: 1.0526315789473684 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 608px); left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 640px; z-index: 1; }\",\".framer-DaVHv .framer-rtogc8 { aspect-ratio: 1.2912988650693569 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 793px); left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 1024px; z-index: 1; }\",\".framer-DaVHv .framer-1vlagk7 { flex: none; height: 266px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1d9q6pm, .framer-DaVHv .framer-5khdft, .framer-DaVHv .framer-1oh0x5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-b8lel5, .framer-DaVHv .framer-18b21tp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; max-width: 1555px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-1sg89lg { flex: none; height: 100%; overflow: hidden; position: relative; width: 110px; }\",\".framer-DaVHv .framer-1bl2s5y, .framer-DaVHv .framer-grvzbd { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-DaVHv .framer-euts5w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 299px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-a8e1jc, .framer-DaVHv .framer-1ca62kf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-DaVHv .framer-1szl3uo { flex: none; height: 100%; overflow: hidden; position: relative; width: 86px; }\",\".framer-DaVHv .framer-12y874 { flex: none; height: 372px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-10zfcl4, .framer-DaVHv .framer-fpm0xr, .framer-DaVHv .framer-19l775e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-18dv1lp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1llr6de, .framer-DaVHv .framer-r1h83u, .framer-DaVHv .framer-14oqgy0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-1mp60kt, .framer-DaVHv .framer-m1avho, .framer-DaVHv .framer-nj60t1, .framer-DaVHv .framer-1e9e0zv, .framer-DaVHv .framer-m9y0sf, .framer-DaVHv .framer-5lpegp, .framer-DaVHv .framer-1ldxqj0, .framer-DaVHv .framer-x4fqob, .framer-DaVHv .framer-1ydlcpw, .framer-DaVHv .framer-aorrcz, .framer-DaVHv .framer-29h6vj, .framer-DaVHv .framer-2qauk9, .framer-DaVHv .framer-1c8bi7e { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DaVHv .framer-vt4fxr { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 588px; }\",\".framer-DaVHv .framer-eifrdt, .framer-DaVHv .framer-vsomsz, .framer-DaVHv .framer-1dke7tb, .framer-DaVHv .framer-1s8epd0, .framer-DaVHv .framer-1umdmyn { flex: none; height: 32px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1yjzwmr-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-DaVHv .framer-zuulis { flex: none; height: 80px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1eoasfx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-v3hu33 { aspect-ratio: 23.60655737704918 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 100%; }\",\".framer-DaVHv .framer-zknaf3 { align-content: center; align-items: center; background-color: var(--token-f2b8cbf2-ecd6-4fb2-aec5-c16c2a334e2e, #fcdce5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 80px 64px 72px 64px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-ghtpww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1555px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-16cd6fc-container, .framer-DaVHv .framer-1uqcx57-container, .framer-DaVHv .framer-86vlsm-container, .framer-DaVHv .framer-1q6rrcb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1ai7x9i, .framer-DaVHv .framer-1w6s3wi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-t8v9so, .framer-DaVHv .framer-1qomsda, .framer-DaVHv .framer-3imf30, .framer-DaVHv .framer-1je7b56 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 308px; word-break: break-word; word-wrap: break-word; }\",\".framer-DaVHv .framer-v94jjt, .framer-DaVHv .framer-ar74qp, .framer-DaVHv .framer-14tnpr8 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-DaVHv .framer-7ghnqu { flex: none; height: 36px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-12z4bjy, .framer-DaVHv .framer-r7sgns, .framer-DaVHv .framer-1ddz06r { flex: none; height: 4px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1auzs2i, .framer-DaVHv .framer-1sof1t1, .framer-DaVHv .framer-1qxigz3, .framer-DaVHv .framer-g2w3f3 { flex: none; height: 24px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-gyyu0c { aspect-ratio: 30 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 100%; }\",\".framer-DaVHv .framer-buiuv8 { flex: none; height: 124px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-11rt7ix, .framer-DaVHv .framer-oes0dy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-19wrmt9, .framer-DaVHv .framer-sdtk1k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1555px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-xz8mx5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 503px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-ifezy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-w44v8u-container { flex: 1 0 0px; height: 540px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-1ut1v6l, .framer-DaVHv .framer-ccse27, .framer-DaVHv .framer-f752es { height: 720px; overflow: hidden; position: relative; width: 1px; }\",\".framer-DaVHv .framer-mzcg1e-container, .framer-DaVHv .framer-104lace-container, .framer-DaVHv .framer-rps00h-container, .framer-DaVHv .framer-9biim6-container, .framer-DaVHv .framer-1q4xxp8-container, .framer-DaVHv .framer-do0cot-container, .framer-DaVHv .framer-1lcuinq-container, .framer-DaVHv .framer-6aunq2-container, .framer-DaVHv .framer-9todxe-container { height: auto; position: relative; width: auto; }\",\".framer-DaVHv .framer-pluo0-container { height: 500px; position: relative; width: auto; }\",\".framer-DaVHv .framer-1tjphht { height: 720px; overflow: hidden; position: relative; width: 8px; }\",\".framer-DaVHv .framer-cmss03, .framer-DaVHv .framer-jzvuuz { flex: none; height: 72px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1jwziov { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-ja86g2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1555px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-12dmi9k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-l6bsq0-container { flex: none; height: 704px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-a6tbf3, .framer-DaVHv .framer-2mq0qp, .framer-DaVHv .framer-d1zdz5, .framer-DaVHv .framer-157adp5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 704px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-4r06wz-container, .framer-DaVHv .framer-swlrgi-container, .framer-DaVHv .framer-1epyxbz-container, .framer-DaVHv .framer-15pi2s5-container, .framer-DaVHv .framer-1s6aked-container, .framer-DaVHv .framer-1pbagh-container { flex: 1 0 0px; height: 704px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-1xf6wm1-container, .framer-DaVHv .framer-obfhx2-container { flex: none; height: 704px; position: relative; width: auto; }\",\".framer-DaVHv .framer-15dj2he, .framer-DaVHv .framer-kapau, .framer-DaVHv .framer-1h4ehln { flex: none; height: 112px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-9nol6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 80px 0px 64px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-h018mp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1555px; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1srco4b { flex: none; height: 40px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-s4g1ij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1karthq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 62px; justify-content: center; max-width: 1555px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-l2lqxg-container, .framer-DaVHv .framer-bqrwwj-container, .framer-DaVHv .framer-16wc3a0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DaVHv .framer-56n3d7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-pvsytn, .framer-DaVHv .framer-1vgk9ut { aspect-ratio: 30 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 7px); position: relative; width: 100%; }\",\".framer-DaVHv .framer-p8932x { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1xlqemx, .framer-DaVHv .framer-1fxos9w, .framer-DaVHv .framer-ptsnrr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 8px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-r7dzvi, .framer-DaVHv .framer-16myvf5 { background-color: var(--token-f2b8cbf2-ecd6-4fb2-aec5-c16c2a334e2e, #fcdce5); flex: 1 0 0px; height: 41px; overflow: hidden; position: relative; width: 1px; }\",\".framer-DaVHv .framer-3zajy2 { align-content: center; align-items: center; background-color: var(--token-f2b8cbf2-ecd6-4fb2-aec5-c16c2a334e2e, #fcdce5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 64px 72px 64px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1dnu8ym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1555px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv.framer-8grc8z { inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-DaVHv.framer-m1q0wf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 6; }\",\".framer-DaVHv .framer-1sf35gz { align-content: center; align-items: center; background-color: var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, #0093cf); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1601uoz { align-content: center; align-items: center; background-color: var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, #0093cf); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-lgmhm5 { aspect-ratio: 2.7379310344827585 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 197px; }\",\".framer-DaVHv .framer-eg6tuk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DaVHv .framer-4j4ikt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1555px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-1o4zx6n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: 114px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 479px; }\",\".framer-DaVHv .framer-1ivzypm { aspect-ratio: 1.3559322033898304 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 61px; }\",\".framer-DaVHv .framer-74y4y5 { background-color: var(--token-f8c91d47-c179-478a-bd5a-f0158d6cc9bd, #0093cf); flex: 1 0 0px; height: 41px; overflow: hidden; position: relative; width: 1px; }\",\".framer-DaVHv .framer-dxxtjw { aspect-ratio: 27.7027027027027 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 7px); overflow: visible; position: relative; width: 100%; }\",\".framer-DaVHv .framer-150ngtp { flex: none; height: 49px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-qcv2u9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-6xb94m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-1bpui4m-container { flex: 1 0 0px; height: 750px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-1mhrzgu-container, .framer-DaVHv .framer-1k7exeo-container, .framer-DaVHv .framer-1c0sc29-container, .framer-DaVHv .framer-1e2w30p-container, .framer-DaVHv .framer-ad5xvl-container, .framer-DaVHv .framer-12swwtz-container, .framer-DaVHv .framer-y6l2td-container, .framer-DaVHv .framer-1kgavzr-container, .framer-DaVHv .framer-23zc8u-container, .framer-DaVHv .framer-1up79vz-container { height: 704px; position: relative; width: auto; }\",\".framer-DaVHv .framer-181nh30 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1555px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DaVHv .framer-1copxes { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 374px; }\",\".framer-DaVHv .framer-9a4rqf { flex: none; height: 109px; overflow: hidden; position: relative; width: 335px; }\",\".framer-DaVHv .framer-11y95io { aspect-ratio: 1.2384105960264902 / 1; bottom: -2px; flex: none; height: var(--framer-aspect-ratio-supported, 302px); left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-DaVHv .framer-1rkock2, .framer-DaVHv .framer-uwn1p8, .framer-DaVHv .framer-3uwp5f { flex: none; height: 16px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DaVHv .framer-s1fzve { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 781px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DaVHv .framer-98u4ir { aspect-ratio: 1.903345724907063 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 538px); position: relative; width: 1024px; }\",\".framer-DaVHv .framer-1j2rq87 { aspect-ratio: 2.4615384615384617 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 260px); position: relative; width: 640px; }\",\".framer-DaVHv .framer-lvmivb { aspect-ratio: 3.2947232947232945 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 777px); position: relative; width: 2560px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DaVHv.framer-72rtr7, .framer-DaVHv .framer-1d9q6pm, .framer-DaVHv .framer-b8lel5, .framer-DaVHv .framer-euts5w, .framer-DaVHv .framer-5khdft, .framer-DaVHv .framer-18b21tp, .framer-DaVHv .framer-10zfcl4, .framer-DaVHv .framer-18dv1lp, .framer-DaVHv .framer-1llr6de, .framer-DaVHv .framer-1eoasfx, .framer-DaVHv .framer-zknaf3, .framer-DaVHv .framer-ghtpww, .framer-DaVHv .framer-1ai7x9i, .framer-DaVHv .framer-1w6s3wi, .framer-DaVHv .framer-fpm0xr, .framer-DaVHv .framer-11rt7ix, .framer-DaVHv .framer-19wrmt9, .framer-DaVHv .framer-r1h83u, .framer-DaVHv .framer-xz8mx5, .framer-DaVHv .framer-ifezy, .framer-DaVHv .framer-1jwziov, .framer-DaVHv .framer-ja86g2, .framer-DaVHv .framer-12dmi9k, .framer-DaVHv .framer-a6tbf3, .framer-DaVHv .framer-2mq0qp, .framer-DaVHv .framer-d1zdz5, .framer-DaVHv .framer-157adp5, .framer-DaVHv .framer-oes0dy, .framer-DaVHv .framer-sdtk1k, .framer-DaVHv .framer-14oqgy0, .framer-DaVHv .framer-9nol6, .framer-DaVHv .framer-h018mp, .framer-DaVHv .framer-s4g1ij, .framer-DaVHv .framer-1karthq, .framer-DaVHv .framer-56n3d7, .framer-DaVHv .framer-1xlqemx, .framer-DaVHv .framer-3zajy2, .framer-DaVHv .framer-1dnu8ym, .framer-DaVHv.framer-m1q0wf, .framer-DaVHv .framer-1sf35gz, .framer-DaVHv .framer-eg6tuk, .framer-DaVHv .framer-4j4ikt, .framer-DaVHv .framer-1o4zx6n, .framer-DaVHv .framer-1fxos9w, .framer-DaVHv .framer-ptsnrr, .framer-DaVHv .framer-qcv2u9, .framer-DaVHv .framer-6xb94m, .framer-DaVHv .framer-1oh0x5, .framer-DaVHv .framer-181nh30, .framer-DaVHv .framer-1copxes, .framer-DaVHv .framer-19l775e, .framer-DaVHv .framer-s1fzve { gap: 0px; } .framer-DaVHv.framer-72rtr7 > *, .framer-DaVHv .framer-10zfcl4 > *, .framer-DaVHv .framer-1eoasfx > *, .framer-DaVHv .framer-ghtpww > *, .framer-DaVHv .framer-fpm0xr > *, .framer-DaVHv .framer-xz8mx5 > *, .framer-DaVHv .framer-1jwziov > *, .framer-DaVHv .framer-9nol6 > *, .framer-DaVHv .framer-56n3d7 > *, .framer-DaVHv .framer-1dnu8ym > *, .framer-DaVHv.framer-m1q0wf > *, .framer-DaVHv .framer-19l775e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DaVHv.framer-72rtr7 > :first-child, .framer-DaVHv .framer-euts5w > :first-child, .framer-DaVHv .framer-10zfcl4 > :first-child, .framer-DaVHv .framer-1llr6de > :first-child, .framer-DaVHv .framer-1eoasfx > :first-child, .framer-DaVHv .framer-zknaf3 > :first-child, .framer-DaVHv .framer-ghtpww > :first-child, .framer-DaVHv .framer-fpm0xr > :first-child, .framer-DaVHv .framer-r1h83u > :first-child, .framer-DaVHv .framer-xz8mx5 > :first-child, .framer-DaVHv .framer-1jwziov > :first-child, .framer-DaVHv .framer-ja86g2 > :first-child, .framer-DaVHv .framer-12dmi9k > :first-child, .framer-DaVHv .framer-14oqgy0 > :first-child, .framer-DaVHv .framer-9nol6 > :first-child, .framer-DaVHv .framer-h018mp > :first-child, .framer-DaVHv .framer-s4g1ij > :first-child, .framer-DaVHv .framer-56n3d7 > :first-child, .framer-DaVHv .framer-3zajy2 > :first-child, .framer-DaVHv .framer-1dnu8ym > :first-child, .framer-DaVHv.framer-m1q0wf > :first-child, .framer-DaVHv .framer-1sf35gz > :first-child, .framer-DaVHv .framer-1copxes > :first-child, .framer-DaVHv .framer-19l775e > :first-child, .framer-DaVHv .framer-s1fzve > :first-child { margin-top: 0px; } .framer-DaVHv.framer-72rtr7 > :last-child, .framer-DaVHv .framer-euts5w > :last-child, .framer-DaVHv .framer-10zfcl4 > :last-child, .framer-DaVHv .framer-1llr6de > :last-child, .framer-DaVHv .framer-1eoasfx > :last-child, .framer-DaVHv .framer-zknaf3 > :last-child, .framer-DaVHv .framer-ghtpww > :last-child, .framer-DaVHv .framer-fpm0xr > :last-child, .framer-DaVHv .framer-r1h83u > :last-child, .framer-DaVHv .framer-xz8mx5 > :last-child, .framer-DaVHv .framer-1jwziov > :last-child, .framer-DaVHv .framer-ja86g2 > :last-child, .framer-DaVHv .framer-12dmi9k > :last-child, .framer-DaVHv .framer-14oqgy0 > :last-child, .framer-DaVHv .framer-9nol6 > :last-child, .framer-DaVHv .framer-h018mp > :last-child, .framer-DaVHv .framer-s4g1ij > :last-child, .framer-DaVHv .framer-56n3d7 > :last-child, .framer-DaVHv .framer-3zajy2 > :last-child, .framer-DaVHv .framer-1dnu8ym > :last-child, .framer-DaVHv.framer-m1q0wf > :last-child, .framer-DaVHv .framer-1sf35gz > :last-child, .framer-DaVHv .framer-1copxes > :last-child, .framer-DaVHv .framer-19l775e > :last-child, .framer-DaVHv .framer-s1fzve > :last-child { margin-bottom: 0px; } .framer-DaVHv .framer-1d9q6pm > *, .framer-DaVHv .framer-b8lel5 > *, .framer-DaVHv .framer-5khdft > *, .framer-DaVHv .framer-18b21tp > *, .framer-DaVHv .framer-18dv1lp > *, .framer-DaVHv .framer-11rt7ix > *, .framer-DaVHv .framer-ifezy > *, .framer-DaVHv .framer-oes0dy > *, .framer-DaVHv .framer-1karthq > *, .framer-DaVHv .framer-qcv2u9 > *, .framer-DaVHv .framer-6xb94m > *, .framer-DaVHv .framer-1oh0x5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DaVHv .framer-1d9q6pm > :first-child, .framer-DaVHv .framer-b8lel5 > :first-child, .framer-DaVHv .framer-5khdft > :first-child, .framer-DaVHv .framer-18b21tp > :first-child, .framer-DaVHv .framer-18dv1lp > :first-child, .framer-DaVHv .framer-1ai7x9i > :first-child, .framer-DaVHv .framer-1w6s3wi > :first-child, .framer-DaVHv .framer-11rt7ix > :first-child, .framer-DaVHv .framer-19wrmt9 > :first-child, .framer-DaVHv .framer-ifezy > :first-child, .framer-DaVHv .framer-a6tbf3 > :first-child, .framer-DaVHv .framer-2mq0qp > :first-child, .framer-DaVHv .framer-d1zdz5 > :first-child, .framer-DaVHv .framer-157adp5 > :first-child, .framer-DaVHv .framer-oes0dy > :first-child, .framer-DaVHv .framer-sdtk1k > :first-child, .framer-DaVHv .framer-1karthq > :first-child, .framer-DaVHv .framer-1xlqemx > :first-child, .framer-DaVHv .framer-eg6tuk > :first-child, .framer-DaVHv .framer-4j4ikt > :first-child, .framer-DaVHv .framer-1o4zx6n > :first-child, .framer-DaVHv .framer-1fxos9w > :first-child, .framer-DaVHv .framer-ptsnrr > :first-child, .framer-DaVHv .framer-qcv2u9 > :first-child, .framer-DaVHv .framer-6xb94m > :first-child, .framer-DaVHv .framer-1oh0x5 > :first-child, .framer-DaVHv .framer-181nh30 > :first-child { margin-left: 0px; } .framer-DaVHv .framer-1d9q6pm > :last-child, .framer-DaVHv .framer-b8lel5 > :last-child, .framer-DaVHv .framer-5khdft > :last-child, .framer-DaVHv .framer-18b21tp > :last-child, .framer-DaVHv .framer-18dv1lp > :last-child, .framer-DaVHv .framer-1ai7x9i > :last-child, .framer-DaVHv .framer-1w6s3wi > :last-child, .framer-DaVHv .framer-11rt7ix > :last-child, .framer-DaVHv .framer-19wrmt9 > :last-child, .framer-DaVHv .framer-ifezy > :last-child, .framer-DaVHv .framer-a6tbf3 > :last-child, .framer-DaVHv .framer-2mq0qp > :last-child, .framer-DaVHv .framer-d1zdz5 > :last-child, .framer-DaVHv .framer-157adp5 > :last-child, .framer-DaVHv .framer-oes0dy > :last-child, .framer-DaVHv .framer-sdtk1k > :last-child, .framer-DaVHv .framer-1karthq > :last-child, .framer-DaVHv .framer-1xlqemx > :last-child, .framer-DaVHv .framer-eg6tuk > :last-child, .framer-DaVHv .framer-4j4ikt > :last-child, .framer-DaVHv .framer-1o4zx6n > :last-child, .framer-DaVHv .framer-1fxos9w > :last-child, .framer-DaVHv .framer-ptsnrr > :last-child, .framer-DaVHv .framer-qcv2u9 > :last-child, .framer-DaVHv .framer-6xb94m > :last-child, .framer-DaVHv .framer-1oh0x5 > :last-child, .framer-DaVHv .framer-181nh30 > :last-child { margin-right: 0px; } .framer-DaVHv .framer-euts5w > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-DaVHv .framer-1llr6de > *, .framer-DaVHv .framer-r1h83u > *, .framer-DaVHv .framer-14oqgy0 > *, .framer-DaVHv .framer-3zajy2 > *, .framer-DaVHv .framer-1copxes > *, .framer-DaVHv .framer-s1fzve > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DaVHv .framer-zknaf3 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-DaVHv .framer-1ai7x9i > *, .framer-DaVHv .framer-1w6s3wi > *, .framer-DaVHv .framer-19wrmt9 > *, .framer-DaVHv .framer-sdtk1k > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-DaVHv .framer-ja86g2 > *, .framer-DaVHv .framer-12dmi9k > *, .framer-DaVHv .framer-h018mp > *, .framer-DaVHv .framer-s4g1ij > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-DaVHv .framer-a6tbf3 > *, .framer-DaVHv .framer-2mq0qp > *, .framer-DaVHv .framer-d1zdz5 > *, .framer-DaVHv .framer-157adp5 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-DaVHv .framer-1xlqemx > *, .framer-DaVHv .framer-1fxos9w > *, .framer-DaVHv .framer-ptsnrr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DaVHv .framer-1sf35gz > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-DaVHv .framer-eg6tuk > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-DaVHv .framer-4j4ikt > *, .framer-DaVHv .framer-1o4zx6n > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-DaVHv .framer-181nh30 > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-DaVHv[data-selection=\"true\"] * ::selection, .framer-DaVHv [data-selection=\"true\"] * ::selection { color: var(--selection-color, none); background-color: var(--selection-background-color, none); }',\"@media (min-width: 641px) and (max-width: 1024px) { .framer-DaVHv.framer-72rtr7 { width: 641px; } .framer-DaVHv .framer-easwz-container { left: 0px; order: 7; position: fixed; right: 0px; top: 0px; width: unset; z-index: 4; } .framer-DaVHv .framer-auw34y { height: 104px; order: 8; } .framer-DaVHv .framer-kamenh { height: 266px; order: 9; } .framer-DaVHv .framer-rtogc8 { order: 3; } .framer-DaVHv .framer-1vlagk7 { order: 10; } .framer-DaVHv .framer-1d9q6pm { order: 11; padding: 0px 32px 0px 32px; z-index: 2; } .framer-DaVHv .framer-b8lel5 { flex-direction: column; max-width: 769px; } .framer-DaVHv .framer-euts5w { flex: none; gap: 4px; height: min-content; width: 100%; } .framer-DaVHv .framer-12y874 { height: 32px; order: 12; } .framer-DaVHv .framer-5khdft { order: 13; padding: 0px 32px 0px 32px; } .framer-DaVHv .framer-18b21tp, .framer-DaVHv .framer-ghtpww, .framer-DaVHv .framer-19wrmt9, .framer-DaVHv .framer-sdtk1k, .framer-DaVHv .framer-181nh30 { max-width: 769px; } .framer-DaVHv .framer-18dv1lp { justify-content: flex-start; } .framer-DaVHv .framer-eifrdt { height: 24px; } .framer-DaVHv .framer-zuulis { height: 24px; order: 14; } .framer-DaVHv .framer-1eoasfx { order: 15; } .framer-DaVHv .framer-v3hu33 { height: var(--framer-aspect-ratio-supported, 27px); } .framer-DaVHv .framer-zknaf3 { padding: 48px 32px 40px 32px; } .framer-DaVHv .framer-1ai7x9i, .framer-DaVHv .framer-1w6s3wi { gap: 24px; } .framer-DaVHv .framer-t8v9so, .framer-DaVHv .framer-1qomsda, .framer-DaVHv .framer-3imf30, .framer-DaVHv .framer-1je7b56 { width: 175px; } .framer-DaVHv .framer-gyyu0c { height: var(--framer-aspect-ratio-supported, 22px); } .framer-DaVHv .framer-buiuv8 { height: 104px; order: 16; } .framer-DaVHv .framer-11rt7ix { order: 17; padding: 0px 32px 0px 32px; } .framer-DaVHv .framer-r1h83u, .framer-DaVHv .framer-14oqgy0 { align-content: flex-start; align-items: flex-start; gap: 16px; justify-content: flex-start; } .framer-DaVHv .framer-1dke7tb { order: 20; } .framer-DaVHv .framer-15dj2he { height: 104px; order: 26; } .framer-DaVHv .framer-oes0dy { order: 27; padding: 0px 32px 0px 32px; } .framer-DaVHv .framer-jzvuuz { height: 56px; order: 28; } .framer-DaVHv .framer-9nol6 { gap: 40px; order: 29; padding: 0px 48px 0px 32px; } .framer-DaVHv .framer-h018mp { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); justify-content: end; max-width: 769px; order: 0; } .framer-DaVHv .framer-1uqcx57-container { align-self: start; justify-self: start; order: 0; } .framer-DaVHv .framer-1srco4b { height: 32px; order: 30; } .framer-DaVHv .framer-s4g1ij { order: 31; padding: 0px 32px 0px 32px; } .framer-DaVHv .framer-1karthq { height: min-content; max-width: 769px; } .framer-DaVHv .framer-grvzbd { align-self: stretch; height: auto; } .framer-DaVHv .framer-kapau { height: 104px; order: 34; } .framer-DaVHv .framer-56n3d7 { order: 33; } .framer-DaVHv .framer-pvsytn, .framer-DaVHv .framer-1vgk9ut { height: var(--framer-aspect-ratio-supported, 21px); } .framer-DaVHv .framer-r7dzvi { height: 11px; } .framer-DaVHv .framer-3zajy2 { gap: 0px; overflow: visible; padding: 16px 32px 16px 32px; } .framer-DaVHv .framer-1dnu8ym { max-width: 769px; order: 0; overflow: visible; } .framer-DaVHv .framer-1sf35gz { gap: 48px; padding: 32px 32px 80px 32px; } .framer-DaVHv .framer-4j4ikt { flex-direction: column; gap: 32px; } .framer-DaVHv .framer-14tnpr8 { flex: none; width: 100%; } .framer-DaVHv .framer-16myvf5 { height: 31px; } .framer-DaVHv .framer-1h4ehln { height: 104px; order: 32; } .framer-DaVHv .framer-qcv2u9 { order: 21; } .framer-DaVHv .framer-1oh0x5 { order: 35; padding: 0px 32px 0px 32px; } .framer-DaVHv .framer-s1fzve { height: min-content; order: 37; } .framer-DaVHv .framer-1q6rrcb-container { order: 39; } .framer-DaVHv .framer-g2w3f3 { height: 48px; order: 36; } .framer-DaVHv .framer-3uwp5f { order: 38; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DaVHv .framer-b8lel5, .framer-DaVHv .framer-euts5w, .framer-DaVHv .framer-1ai7x9i, .framer-DaVHv .framer-1w6s3wi, .framer-DaVHv .framer-r1h83u, .framer-DaVHv .framer-14oqgy0, .framer-DaVHv .framer-9nol6, .framer-DaVHv .framer-h018mp, .framer-DaVHv .framer-3zajy2, .framer-DaVHv .framer-1sf35gz, .framer-DaVHv .framer-4j4ikt { gap: 0px; } .framer-DaVHv .framer-b8lel5 > *, .framer-DaVHv .framer-3zajy2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DaVHv .framer-b8lel5 > :first-child, .framer-DaVHv .framer-euts5w > :first-child, .framer-DaVHv .framer-r1h83u > :first-child, .framer-DaVHv .framer-14oqgy0 > :first-child, .framer-DaVHv .framer-9nol6 > :first-child, .framer-DaVHv .framer-3zajy2 > :first-child, .framer-DaVHv .framer-1sf35gz > :first-child, .framer-DaVHv .framer-4j4ikt > :first-child { margin-top: 0px; } .framer-DaVHv .framer-b8lel5 > :last-child, .framer-DaVHv .framer-euts5w > :last-child, .framer-DaVHv .framer-r1h83u > :last-child, .framer-DaVHv .framer-14oqgy0 > :last-child, .framer-DaVHv .framer-9nol6 > :last-child, .framer-DaVHv .framer-3zajy2 > :last-child, .framer-DaVHv .framer-1sf35gz > :last-child, .framer-DaVHv .framer-4j4ikt > :last-child { margin-bottom: 0px; } .framer-DaVHv .framer-euts5w > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-DaVHv .framer-1ai7x9i > *, .framer-DaVHv .framer-1w6s3wi > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-DaVHv .framer-1ai7x9i > :first-child, .framer-DaVHv .framer-1w6s3wi > :first-child { margin-left: 0px; } .framer-DaVHv .framer-1ai7x9i > :last-child, .framer-DaVHv .framer-1w6s3wi > :last-child { margin-right: 0px; } .framer-DaVHv .framer-r1h83u > *, .framer-DaVHv .framer-14oqgy0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-DaVHv .framer-9nol6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-DaVHv .framer-h018mp > *, .framer-DaVHv .framer-h018mp > :first-child, .framer-DaVHv .framer-h018mp > :last-child { margin: 0px; } .framer-DaVHv .framer-1sf35gz > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-DaVHv .framer-4j4ikt > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 640px) { .framer-DaVHv.framer-72rtr7 { width: 640px; } .framer-DaVHv .framer-easwz-container { left: 0px; order: 4; position: fixed; right: 0px; top: 0px; width: unset; } .framer-DaVHv .framer-auw34y { height: 72px; order: 8; } .framer-DaVHv .framer-11ih816 { order: 6; } .framer-DaVHv .framer-kamenh { height: 200px; order: 9; } .framer-DaVHv .framer-1vlagk7 { height: 200px; order: 10; } .framer-DaVHv .framer-1d9q6pm { order: 11; padding: 0px 16px 0px 16px; z-index: 2; } .framer-DaVHv .framer-b8lel5 { flex-direction: column; max-width: 500px; } .framer-DaVHv .framer-euts5w { flex: none; gap: 4px; height: min-content; width: 100%; } .framer-DaVHv .framer-12y874 { height: 32px; order: 12; } .framer-DaVHv .framer-5khdft { order: 13; padding: 0px 16px 0px 16px; } .framer-DaVHv .framer-18b21tp, .framer-DaVHv .framer-ghtpww, .framer-DaVHv .framer-h018mp, .framer-DaVHv .framer-181nh30 { max-width: 500px; } .framer-DaVHv .framer-1llr6de { gap: 0px; } .framer-DaVHv .framer-eifrdt, .framer-DaVHv .framer-16myvf5 { height: 24px; } .framer-DaVHv .framer-zuulis { height: 48px; order: 14; } .framer-DaVHv .framer-1eoasfx { order: 15; } .framer-DaVHv .framer-v3hu33 { height: var(--framer-aspect-ratio-supported, 27px); } .framer-DaVHv .framer-zknaf3 { padding: 48px 16px 56px 16px; } .framer-DaVHv .framer-gyyu0c { height: var(--framer-aspect-ratio-supported, 22px); } .framer-DaVHv .framer-buiuv8 { height: 72px; order: 16; } .framer-DaVHv .framer-11rt7ix { order: 17; padding: 0px 16px 0px 16px; } .framer-DaVHv .framer-19wrmt9, .framer-DaVHv .framer-sdtk1k { flex-direction: column; gap: 8px; max-width: 500px; } .framer-DaVHv .framer-3imf30, .framer-DaVHv .framer-1je7b56 { width: 175px; } .framer-DaVHv .framer-r1h83u, .framer-DaVHv .framer-14oqgy0 { align-content: flex-start; align-items: flex-start; flex: none; gap: 16px; justify-content: flex-start; width: 100%; } .framer-DaVHv .framer-xz8mx5 { flex-direction: row; min-height: unset; order: 19; } .framer-DaVHv .framer-ifezy { flex: 1 0 0px; width: 1px; } .framer-DaVHv .framer-vsomsz { order: 18; } .framer-DaVHv .framer-15dj2he { height: 72px; order: 27; } .framer-DaVHv .framer-oes0dy { order: 28; padding: 0px 16px 0px 16px; } .framer-DaVHv .framer-jzvuuz { height: 64px; order: 29; } .framer-DaVHv .framer-9nol6 { order: 30; padding: 0px 32px 0px 16px; } .framer-DaVHv .framer-1srco4b { height: 24px; order: 31; } .framer-DaVHv .framer-s4g1ij { order: 32; padding: 0px 16px 0px 16px; } .framer-DaVHv .framer-1karthq { height: min-content; max-width: 500px; } .framer-DaVHv .framer-grvzbd { align-self: stretch; height: auto; } .framer-DaVHv .framer-kapau { height: 72px; order: 35; } .framer-DaVHv .framer-56n3d7 { order: 34; } .framer-DaVHv .framer-pvsytn, .framer-DaVHv .framer-1vgk9ut { height: var(--framer-aspect-ratio-supported, 21px); } .framer-DaVHv .framer-r7dzvi { height: 14px; } .framer-DaVHv .framer-3zajy2 { gap: 0px; padding: 24px 16px 24px 16px; } .framer-DaVHv .framer-1dnu8ym { max-width: 500px; order: 0; } .framer-DaVHv .framer-1qxigz3 { height: 16px; } .framer-DaVHv .framer-1sf35gz { gap: 48px; padding: 24px 16px 64px 16px; } .framer-DaVHv .framer-lgmhm5 { height: var(--framer-aspect-ratio-supported, 48px); width: 131px; } .framer-DaVHv .framer-4j4ikt { flex-direction: column; gap: 16px; } .framer-DaVHv .framer-14tnpr8 { flex: none; width: 100%; } .framer-DaVHv .framer-dxxtjw { height: var(--framer-aspect-ratio-supported, 37px); width: 640px; } .framer-DaVHv .framer-1h4ehln { height: 72px; order: 33; } .framer-DaVHv .framer-1oh0x5 { order: 36; padding: 0px 16px 0px 16px; } .framer-DaVHv .framer-29h6vj { order: 0; } .framer-DaVHv .framer-1rkock2 { height: 8px; order: 1; } .framer-DaVHv .framer-2qauk9 { order: 2; } .framer-DaVHv .framer-uwn1p8 { order: 3; } .framer-DaVHv .framer-1c8bi7e { order: 4; } .framer-DaVHv .framer-1s8epd0 { height: 24px; order: 5; } .framer-DaVHv .framer-16wc3a0-container { order: 7; } .framer-DaVHv .framer-s1fzve { height: min-content; order: 38; } .framer-DaVHv .framer-1q6rrcb-container { order: 40; } .framer-DaVHv .framer-g2w3f3 { height: 16px; order: 39; } .framer-DaVHv .framer-3uwp5f { order: 37; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DaVHv .framer-b8lel5, .framer-DaVHv .framer-euts5w, .framer-DaVHv .framer-1llr6de, .framer-DaVHv .framer-19wrmt9, .framer-DaVHv .framer-r1h83u, .framer-DaVHv .framer-xz8mx5, .framer-DaVHv .framer-sdtk1k, .framer-DaVHv .framer-14oqgy0, .framer-DaVHv .framer-3zajy2, .framer-DaVHv .framer-1sf35gz, .framer-DaVHv .framer-4j4ikt { gap: 0px; } .framer-DaVHv .framer-b8lel5 > *, .framer-DaVHv .framer-1llr6de > *, .framer-DaVHv .framer-3zajy2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DaVHv .framer-b8lel5 > :first-child, .framer-DaVHv .framer-euts5w > :first-child, .framer-DaVHv .framer-1llr6de > :first-child, .framer-DaVHv .framer-19wrmt9 > :first-child, .framer-DaVHv .framer-r1h83u > :first-child, .framer-DaVHv .framer-sdtk1k > :first-child, .framer-DaVHv .framer-14oqgy0 > :first-child, .framer-DaVHv .framer-3zajy2 > :first-child, .framer-DaVHv .framer-1sf35gz > :first-child, .framer-DaVHv .framer-4j4ikt > :first-child { margin-top: 0px; } .framer-DaVHv .framer-b8lel5 > :last-child, .framer-DaVHv .framer-euts5w > :last-child, .framer-DaVHv .framer-1llr6de > :last-child, .framer-DaVHv .framer-19wrmt9 > :last-child, .framer-DaVHv .framer-r1h83u > :last-child, .framer-DaVHv .framer-sdtk1k > :last-child, .framer-DaVHv .framer-14oqgy0 > :last-child, .framer-DaVHv .framer-3zajy2 > :last-child, .framer-DaVHv .framer-1sf35gz > :last-child, .framer-DaVHv .framer-4j4ikt > :last-child { margin-bottom: 0px; } .framer-DaVHv .framer-euts5w > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-DaVHv .framer-19wrmt9 > *, .framer-DaVHv .framer-sdtk1k > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-DaVHv .framer-r1h83u > *, .framer-DaVHv .framer-14oqgy0 > *, .framer-DaVHv .framer-4j4ikt > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-DaVHv .framer-xz8mx5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DaVHv .framer-xz8mx5 > :first-child { margin-left: 0px; } .framer-DaVHv .framer-xz8mx5 > :last-child { margin-right: 0px; } .framer-DaVHv .framer-1sf35gz > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11198\n * @framerIntrinsicWidth 1025\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WqXVMDiR1\":{\"layout\":[\"fixed\",\"auto\"]},\"T7DkiRhnf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"n9N2Fmy4P\":{\"pattern\":\":n9N2Fmy4P\",\"name\":\"hero-desktop\"},\"RyOHQJjDT\":{\"pattern\":\":RyOHQJjDT\",\"name\":\"hero-tablet-mobile\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-DaVHv\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11198,width:1025};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavigationFonts,...ButtonsGoodOnesWIPFonts,...InteractiveToggleMenuFonts,...ContentCardsNewCardsFonts,...CarouselFonts,...InputFonts,...Carousel1Fonts,...FooterFonts,...ButtonsHoverOverImageFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"11198\",\"framerIntrinsicWidth\":\"1025\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"n9N2Fmy4P\\\":{\\\"pattern\\\":\\\":n9N2Fmy4P\\\",\\\"name\\\":\\\"hero-desktop\\\"},\\\"RyOHQJjDT\\\":{\\\"pattern\\\":\\\":RyOHQJjDT\\\",\\\"name\\\":\\\"hero-tablet-mobile\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WqXVMDiR1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T7DkiRhnf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Ce1maTs99", "aduxKofTK", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapxzmxzx", "args", "onTapdjpdl7", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "FramerP6zOMiEV8", "withCSS", "P6zOMiEV8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "InteractiveToggleMenuItemsFonts", "getFonts", "P6zOMiEV8_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "aduxKofTK1pmd16r", "args", "aduxKofTKrm8yw6", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerguBRuHTWw", "withCSS", "guBRuHTWw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "rnll9FASh_default", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonsGoodOnesWIPFonts", "oA67Q_B6Y_default", "InteractiveToggleMenuFonts", "guBRuHTWw_default", "ContentCardsNewCardsFonts", "nqO_xNn5j_default", "CarouselFonts", "Carousel", "InputFonts", "Input_default", "Carousel1Fonts", "FooterFonts", "uRCyDdQiW_default", "ButtonsHoverOverImageFonts", "gH51wvZWn_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "transition2", "animation2", "addImageAlt", "image", "alt", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "transition3", "animation3", "animation4", "animation5", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "cursor1", "cursor2", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Fk3GS8_KMSnAk45vBE", "r_J7Rsip3SnAk45vBE", "sE1KETla2SnAk45vBE", "eNZt0ObQnSnAk45vBE", "sE1KETla2W1_qyFq4Y", "idSnAk45vBE", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmit3bnx0g", "overlay", "args", "pO0WXG0UX1wnntms", "scopingClassNames", "cx", "isDisplayed", "ref1", "elementId", "useRouteElementId", "isDisplayed1", "elementId1", "ref2", "isDisplayed2", "isDisplayed3", "router", "useRouter", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ChildrenCanSuspend", "Tijt5QlXI_default", "collection", "l", "index", "PathVariablesContext", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "AnimatePresence", "Ga", "SVG", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
