{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js", "ssg:https://framerusercontent.com/modules/jQ8gaTHelMehz3i6D8Lo/QM85yEI1yinHApr0F2dU/xPW8uhK2k.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/g4jy3frJlTca8YqKrcFR/QjgiguSxQe8XmNSEZHNI/hDGNsvLBw.js", "ssg:https://framerusercontent.com/modules/aCyccoO1471vNw4t7zjO/vP8QfhmLaNrQRUoZiXBH/yd4YpzVEY.js", "ssg:https://framerusercontent.com/modules/9jZqoHPfEfhS6XyMKbBQ/wfe3bfzHBZ0vBR98LB92/IZhWJyPhk.js", "ssg:https://framerusercontent.com/modules/6Oh6sRBzebXPu1PMLL73/muZNWKguVf55i5HtqI11/nhGZ7W1q6.js", "ssg:https://framerusercontent.com/modules/47IxVo4LQwziw4wkaike/3O7kosa271JsQhVouGiR/p2TXmrqrY.js", "ssg:https://framerusercontent.com/modules/91UxrLwLWNtb8YcJY0wQ/rMGpPZ2q2o5B5cud0g5P/aImoLKpNg.js", "ssg:https://framerusercontent.com/modules/rBnXq9RtM0ekQzhbUQgb/6XYdQOhK95jXNfHVsNYp/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}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(()=>{startTransition(()=>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}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);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,end}=itemSizes.current[i];if(end<current||start>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 visibility=progress(start,end,target);if(visibility>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));/*if (snap && (snapEdge === \"start\" || snapEdge === \"end\") && delta >= 1)\n            delta = delta + 0.4 // this ensures it doesn't snap back to previous page*/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(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.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\",{decoding:\"async\",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\",{decoding:\"async\",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 _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.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\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (79f90af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"pSQxq8ky4\"];const serializationHash=\"framer-hpxKA\";const variantClassNames={pSQxq8ky4:\"framer-v-11xx6n4\"};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:700,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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 getProps=({height,id,image,link,name1,title,width,...props})=>{var _ref,_ref1;return{...props,AHW2bVdJO:(_ref=title!==null&&title!==void 0?title:props.AHW2bVdJO)!==null&&_ref!==void 0?_ref:\"Founder of Conversion\",QUIw8Gp80:image!==null&&image!==void 0?image:props.QUIw8Gp80,v_pYW9mfT:(_ref1=name1!==null&&name1!==void 0?name1:props.v_pYW9mfT)!==null&&_ref1!==void 0?_ref1:\"James Dunn\",z44r8i_To:link!==null&&link!==void 0?link:props.z44r8i_To};};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,QUIw8Gp80,v_pYW9mfT,AHW2bVdJO,z44r8i_To,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pSQxq8ky4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:z44r8i_To,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-11xx6n4\",className,classNames)} framer-q31mi5`,\"data-border\":true,\"data-framer-name\":\"Normal\",layoutDependency:layoutDependency,layoutId:\"pSQxq8ky4\",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:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7728,intrinsicWidth:5152,pixelHeight:7728,pixelWidth:5152,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(QUIw8Gp80)},className:\"framer-169x435\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Q52ODH6mH\",style:{backdropFilter:\"blur(0px)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,mask:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 44.26379504504505%)\",WebkitBackdropFilter:\"blur(0px)\",WebkitMask:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 44.26379504504505%)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vkl7wr\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Hx1vY5Wlk\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mm51w9\",\"data-framer-name\":\"Information\",layoutDependency:layoutDependency,layoutId:\"WPBixBDq3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250)))\"},children:\"Nostalgie\"})}),className:\"framer-1p1nlq7\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"nIpk0TuDi\",style:{\"--extracted-r6o4lv\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:v_pYW9mfT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"47% increase in new customers.\"})}),className:\"framer-9xamel\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"L2LSZwv8s\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AHW2bVdJO,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hpxKA.framer-q31mi5, .framer-hpxKA .framer-q31mi5 { display: block; }\",\".framer-hpxKA.framer-11xx6n4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 380px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hpxKA .framer-169x435 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hpxKA .framer-vkl7wr { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 32px; position: absolute; width: 100%; z-index: 2; }\",\".framer-hpxKA .framer-mm51w9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hpxKA .framer-1p1nlq7, .framer-hpxKA .framer-9xamel { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hpxKA.framer-11xx6n4, .framer-hpxKA .framer-vkl7wr, .framer-hpxKA .framer-mm51w9 { gap: 0px; } .framer-hpxKA.framer-11xx6n4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hpxKA.framer-11xx6n4 > :first-child, .framer-hpxKA .framer-vkl7wr > :first-child, .framer-hpxKA .framer-mm51w9 > :first-child { margin-top: 0px; } .framer-hpxKA.framer-11xx6n4 > :last-child, .framer-hpxKA .framer-vkl7wr > :last-child, .framer-hpxKA .framer-mm51w9 > :last-child { margin-bottom: 0px; } .framer-hpxKA .framer-vkl7wr > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-hpxKA .framer-mm51w9 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",'.framer-hpxKA[data-border=\"true\"]::after, .framer-hpxKA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 380\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QUIw8Gp80\":\"image\",\"v_pYW9mfT\":\"name1\",\"AHW2bVdJO\":\"title\",\"z44r8i_To\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxPW8uhK2k=withCSS(Component,css,\"framer-hpxKA\");export default FramerxPW8uhK2k;FramerxPW8uhK2k.displayName=\"Cards/Team\";FramerxPW8uhK2k.defaultProps={height:400,width:380};addPropertyControls(FramerxPW8uhK2k,{QUIw8Gp80:{title:\"Image\",type:ControlType.ResponsiveImage},v_pYW9mfT:{defaultValue:\"James Dunn\",displayTextArea:false,title:\"Name\",type:ControlType.String},AHW2bVdJO:{defaultValue:\"Founder of Conversion\",displayTextArea:false,title:\"Title\",type:ControlType.String},z44r8i_To:{title:\"Link\",type:ControlType.Link}});addFonts(FramerxPW8uhK2k,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxPW8uhK2k\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"380\",\"framerVariables\":\"{\\\"QUIw8Gp80\\\":\\\"image\\\",\\\"v_pYW9mfT\\\":\\\"name1\\\",\\\"AHW2bVdJO\\\":\\\"title\\\",\\\"z44r8i_To\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xPW8uhK2k.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CardsTeam from\"https://framerusercontent.com/modules/jQ8gaTHelMehz3i6D8Lo/QM85yEI1yinHApr0F2dU/xPW8uhK2k.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";const VideoFonts=getFonts(Video);const CardsTeamFonts=getFonts(CardsTeam);const SlideshowFonts=getFonts(Slideshow);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"sx9yQ62sO\",\"kdnI6FkD2\",\"pflx0dwLd\"];const serializationHash=\"framer-2YmRM\";const variantClassNames={kdnI6FkD2:\"framer-v-2lqs58\",pflx0dwLd:\"framer-v-1780b82\",sx9yQ62sO:\"framer-v-5rkzd5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={duration:0,type:\"tween\"};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Custom:\"pflx0dwLd\",Image:\"sx9yQ62sO\",Video:\"kdnI6FkD2\"};const getProps=({height,id,image,poster,video,width,...props})=>{return{...props,hkER3s2E3:image??props.hkER3s2E3??{src:\"https://framerusercontent.com/images/49V99o2SHCUWiNXP15Sk9otAY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/49V99o2SHCUWiNXP15Sk9otAY.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/49V99o2SHCUWiNXP15Sk9otAY.jpg 882w\"},UXLq1sxOJ:video??props.UXLq1sxOJ??\"https://framerusercontent.com/assets/T5aW7Ers3wOpsq7NmDm81E3to4.mp4\",variant:humanReadableVariantMap[props.variant]??props.variant??\"sx9yQ62sO\",w02mljpJa:poster??props.w02mljpJa??{src:\"https://framerusercontent.com/images/E5e0QHF8clKE0E56ZQpk4mhTET8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/E5e0QHF8clKE0E56ZQpk4mhTET8.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/E5e0QHF8clKE0E56ZQpk4mhTET8.jpg 720w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,hkER3s2E3,UXLq1sxOJ,w02mljpJa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sx9yQ62sO\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"kdnI6FkD2\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"pflx0dwLd\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1456,pixelWidth:816,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(hkER3s2E3)},className:cx(scopingClassNames,\"framer-5rkzd5\",className,classNames),\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"sx9yQ62sO\",ref:refBinding,style:{borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,...style},...addPropertyOverrides({kdnI6FkD2:{\"data-framer-name\":\"Video\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},pflx0dwLd:{\"data-framer-name\":\"Custom\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xgua97-container\",\"data-framer-name\":\"Video Content\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Grh55kvBh-container\",name:\"Video Content\",nodeId:\"Grh55kvBh\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:35,bottomLeftRadius:35,bottomRightRadius:35,controls:false,height:\"100%\",id:\"Grh55kvBh\",isMixedBorderRadius:false,layoutId:\"Grh55kvBh\",loop:true,muted:true,name:\"Video Content\",objectFit:\"cover\",playing:true,poster:toImageSrc(w02mljpJa),posterEnabled:true,srcFile:UXLq1sxOJ,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:35,topRightRadius:35,volume:25,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vw6d34\",layoutDependency:layoutDependency,layoutId:\"P_mxInTXi\",style:{backgroundColor:\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10yb9m3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NE87obdbi-container\",nodeId:\"NE87obdbi\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"NE87obdbi\",intervalControl:1.5,itemAmount:1,layoutId:\"NE87obdbi\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wyf7mq\",layoutDependency:layoutDependency,layoutId:\"YarJ2BZ6t\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ghrbi\",layoutDependency:layoutDependency,layoutId:\"ANlmhR66M\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:\"322px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-g5l6q3-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cGrx9SCAP-container\",nodeId:\"cGrx9SCAP\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",style:{filter:\"contrast(1.23) grayscale(1)\",WebkitFilter:\"contrast(1.23) grayscale(1)\"},children:/*#__PURE__*/_jsx(CardsTeam,{AHW2bVdJO:\"\",height:\"100%\",id:\"cGrx9SCAP\",layoutId:\"cGrx9SCAP\",QUIw8Gp80:addImageAlt({positionX:\"3.2%\",positionY:\"43.6%\",src:\"https://framerusercontent.com/images/dybpaYIHJJdxoEVHYp2WJUeEw5A.png\",srcSet:\"https://framerusercontent.com/images/dybpaYIHJJdxoEVHYp2WJUeEw5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/dybpaYIHJJdxoEVHYp2WJUeEw5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dybpaYIHJJdxoEVHYp2WJUeEw5A.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},v_pYW9mfT:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BEFORE\"})}),className:\"framer-6sfs0g\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"OSW0umDlQ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-geb19z\",layoutDependency:layoutDependency,layoutId:\"feLrPLfbC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:\"322px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19x9p1s-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DZjdQlY03-container\",nodeId:\"DZjdQlY03\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",children:/*#__PURE__*/_jsx(CardsTeam,{AHW2bVdJO:\"\",height:\"100%\",id:\"DZjdQlY03\",layoutId:\"DZjdQlY03\",QUIw8Gp80:addImageAlt({positionX:\"93.2%\",positionY:\"48.7%\",src:\"https://framerusercontent.com/images/dybpaYIHJJdxoEVHYp2WJUeEw5A.png\",srcSet:\"https://framerusercontent.com/images/dybpaYIHJJdxoEVHYp2WJUeEw5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/dybpaYIHJJdxoEVHYp2WJUeEw5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dybpaYIHJJdxoEVHYp2WJUeEw5A.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},v_pYW9mfT:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"AFTER\"})}),className:\"framer-1hmwrzv\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"krqm_c5oP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gt5gjs\",layoutDependency:layoutDependency,layoutId:\"Y6E2NA8eQ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:\"322px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ubfses-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"izxTbAP0t-container\",nodeId:\"izxTbAP0t\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",style:{filter:\"contrast(1.23) grayscale(1)\",WebkitFilter:\"contrast(1.23) grayscale(1)\"},children:/*#__PURE__*/_jsx(CardsTeam,{AHW2bVdJO:\"\",height:\"100%\",id:\"izxTbAP0t\",layoutId:\"izxTbAP0t\",QUIw8Gp80:addImageAlt({positionX:\"2.2%\",positionY:\"48.9%\",src:\"https://framerusercontent.com/images/L1cWrJqyzlXT0NuxmjaP0Gptm0.png\",srcSet:\"https://framerusercontent.com/images/L1cWrJqyzlXT0NuxmjaP0Gptm0.png?scale-down-to=512 512w,https://framerusercontent.com/images/L1cWrJqyzlXT0NuxmjaP0Gptm0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/L1cWrJqyzlXT0NuxmjaP0Gptm0.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},v_pYW9mfT:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BEFORE\"})}),className:\"framer-1iq4y8k\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"KmCYv3169\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yfrzrx\",layoutDependency:layoutDependency,layoutId:\"o6tNQxJym\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:\"322px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pam2ir-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rQ1DvUGo2-container\",nodeId:\"rQ1DvUGo2\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",children:/*#__PURE__*/_jsx(CardsTeam,{AHW2bVdJO:\"\",height:\"100%\",id:\"rQ1DvUGo2\",layoutId:\"rQ1DvUGo2\",QUIw8Gp80:addImageAlt({positionX:\"93.3%\",positionY:\"49.4%\",src:\"https://framerusercontent.com/images/L1cWrJqyzlXT0NuxmjaP0Gptm0.png\",srcSet:\"https://framerusercontent.com/images/L1cWrJqyzlXT0NuxmjaP0Gptm0.png?scale-down-to=512 512w,https://framerusercontent.com/images/L1cWrJqyzlXT0NuxmjaP0Gptm0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/L1cWrJqyzlXT0NuxmjaP0Gptm0.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},v_pYW9mfT:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"AFTER\"})}),className:\"framer-5plwow\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"NNxr3S0Wr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13mll5x\",layoutDependency:layoutDependency,layoutId:\"Iwvd8RKBw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:\"322px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l13i0j-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wwEhKjdvh-container\",nodeId:\"wwEhKjdvh\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",style:{filter:\"contrast(1.23) grayscale(1)\",WebkitFilter:\"contrast(1.23) grayscale(1)\"},children:/*#__PURE__*/_jsx(CardsTeam,{AHW2bVdJO:\"\",height:\"100%\",id:\"wwEhKjdvh\",layoutId:\"wwEhKjdvh\",QUIw8Gp80:addImageAlt({positionX:\"7.3%\",positionY:\"45.5%\",src:\"https://framerusercontent.com/images/a5evKLhJJa0npYlCLh6VsqcqgLQ.png\",srcSet:\"https://framerusercontent.com/images/a5evKLhJJa0npYlCLh6VsqcqgLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/a5evKLhJJa0npYlCLh6VsqcqgLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a5evKLhJJa0npYlCLh6VsqcqgLQ.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},v_pYW9mfT:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BEFORE\"})}),className:\"framer-zbmbri\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"Bu1HWqUbX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-101rl0j\",layoutDependency:layoutDependency,layoutId:\"cXKyRgFdn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:\"322px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14cgw5r-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"MT2sXKh0u-container\",nodeId:\"MT2sXKh0u\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",children:/*#__PURE__*/_jsx(CardsTeam,{AHW2bVdJO:\"\",height:\"100%\",id:\"MT2sXKh0u\",layoutId:\"MT2sXKh0u\",QUIw8Gp80:addImageAlt({positionX:\"98.3%\",positionY:\"54.8%\",src:\"https://framerusercontent.com/images/a5evKLhJJa0npYlCLh6VsqcqgLQ.png\",srcSet:\"https://framerusercontent.com/images/a5evKLhJJa0npYlCLh6VsqcqgLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/a5evKLhJJa0npYlCLh6VsqcqgLQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a5evKLhJJa0npYlCLh6VsqcqgLQ.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},v_pYW9mfT:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"AFTER\"})}),className:\"framer-t9cxla\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"Uv86IG61k\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m5xhgr\",layoutDependency:layoutDependency,layoutId:\"GaZ7txbx7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:\"322px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ksl5tb-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aX32o6cxQ-container\",nodeId:\"aX32o6cxQ\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",style:{filter:\"contrast(1.5) grayscale(1)\",WebkitFilter:\"contrast(1.5) grayscale(1)\"},children:/*#__PURE__*/_jsx(CardsTeam,{AHW2bVdJO:\"\",height:\"100%\",id:\"aX32o6cxQ\",layoutId:\"aX32o6cxQ\",QUIw8Gp80:addImageAlt({positionX:\"13.1%\",positionY:\"45.3%\",src:\"https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png\",srcSet:\"https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},v_pYW9mfT:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"BEFORE\"})}),className:\"framer-1l7xc79\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"OKIlrTBS0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ktgcqz\",layoutDependency:layoutDependency,layoutId:\"K2bAXWfg3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:651,width:\"322px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pbimwe-container\",inComponentSlot:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"paR5HX6V0-container\",nodeId:\"paR5HX6V0\",rendersWithMotion:true,scopeId:\"hDGNsvLBw\",children:/*#__PURE__*/_jsx(CardsTeam,{AHW2bVdJO:\"\",height:\"100%\",id:\"paR5HX6V0\",layoutId:\"paR5HX6V0\",QUIw8Gp80:addImageAlt({positionX:\"94.5%\",positionY:\"48.6%\",src:\"https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png\",srcSet:\"https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png 1080w\"},\"\"),style:{height:\"100%\",width:\"100%\"},v_pYW9mfT:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"AFTER\"})}),className:\"framer-1d9htp6\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"rP0RiBwUm\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2YmRM.framer-ovdmnt, .framer-2YmRM .framer-ovdmnt { display: block; }\",\".framer-2YmRM.framer-5rkzd5 { height: 724px; overflow: hidden; position: relative; width: 334px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2YmRM .framer-1xgua97-container { flex: none; height: 722px; left: calc(50.00000000000002% - 335px / 2); position: absolute; top: calc(50.00000000000002% - 722px / 2); width: 335px; z-index: 0; }\",\".framer-2YmRM .framer-1vw6d34 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: 1fr; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 1fr; }\",\".framer-2YmRM .framer-10yb9m3-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 1; }\",\".framer-2YmRM .framer-wyf7mq, .framer-2YmRM .framer-geb19z, .framer-2YmRM .framer-gt5gjs, .framer-2YmRM .framer-1yfrzrx, .framer-2YmRM .framer-13mll5x, .framer-2YmRM .framer-101rl0j, .framer-2YmRM .framer-1m5xhgr, .framer-2YmRM .framer-1ktgcqz { height: 651px; overflow: hidden; position: relative; width: 322px; }\",\".framer-2YmRM .framer-2ghrbi { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-2YmRM .framer-g5l6q3-container, .framer-2YmRM .framer-19x9p1s-container, .framer-2YmRM .framer-1ubfses-container, .framer-2YmRM .framer-pam2ir-container, .framer-2YmRM .framer-l13i0j-container, .framer-2YmRM .framer-14cgw5r-container, .framer-2YmRM .framer-ksl5tb-container, .framer-2YmRM .framer-pbimwe-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2YmRM .framer-6sfs0g, .framer-2YmRM .framer-1hmwrzv, .framer-2YmRM .framer-1iq4y8k, .framer-2YmRM .framer-5plwow, .framer-2YmRM .framer-zbmbri { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-2YmRM .framer-t9cxla, .framer-2YmRM .framer-1l7xc79, .framer-2YmRM .framer-1d9htp6 { flex: none; height: auto; left: 50%; position: absolute; top: 48%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2YmRM .framer-1vw6d34 { gap: 0px; } .framer-2YmRM .framer-1vw6d34 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-2YmRM .framer-1vw6d34 > :first-child { margin-top: 0px; } .framer-2YmRM .framer-1vw6d34 > :last-child { margin-bottom: 0px; } }\",\".framer-2YmRM.framer-v-1780b82.framer-5rkzd5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; }\",\".framer-2YmRM.framer-v-1780b82 .framer-1vw6d34 { flex: 1 0 0px; height: 100%; left: unset; position: relative; top: unset; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2YmRM.framer-v-1780b82.framer-5rkzd5 { gap: 0px; } .framer-2YmRM.framer-v-1780b82.framer-5rkzd5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2YmRM.framer-v-1780b82.framer-5rkzd5 > :first-child { margin-left: 0px; } .framer-2YmRM.framer-v-1780b82.framer-5rkzd5 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 724\n * @framerIntrinsicWidth 334\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kdnI6FkD2\":{\"layout\":[\"fixed\",\"fixed\"]},\"pflx0dwLd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hkER3s2E3\":\"image\",\"UXLq1sxOJ\":\"video\",\"w02mljpJa\":\"poster\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhDGNsvLBw=withCSS(Component,css,\"framer-2YmRM\");export default FramerhDGNsvLBw;FramerhDGNsvLBw.displayName=\"Screen Content\";FramerhDGNsvLBw.defaultProps={height:724,width:334};addPropertyControls(FramerhDGNsvLBw,{variant:{options:[\"sx9yQ62sO\",\"kdnI6FkD2\",\"pflx0dwLd\"],optionTitles:[\"Image\",\"Video\",\"Custom\"],title:\"Variant\",type:ControlType.Enum},hkER3s2E3:{__defaultAssetReference:\"data:framer/asset-reference,49V99o2SHCUWiNXP15Sk9otAY.jpg?originalFilename=framerphone-bg.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},UXLq1sxOJ:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,T5aW7Ers3wOpsq7NmDm81E3to4.mp4?originalFilename=video.mp4\",description:undefined,hidden:undefined,title:\"Video\"},w02mljpJa:{__defaultAssetReference:\"data:framer/asset-reference,E5e0QHF8clKE0E56ZQpk4mhTET8.jpg?originalFilename=poster.jpg&preferredSize=auto\",title:\"Poster\",type:ControlType.ResponsiveImage}});addFonts(FramerhDGNsvLBw,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"}]},...VideoFonts,...CardsTeamFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhDGNsvLBw\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"334\",\"framerVariables\":\"{\\\"hkER3s2E3\\\":\\\"image\\\",\\\"UXLq1sxOJ\\\":\\\"video\\\",\\\"w02mljpJa\\\":\\\"poster\\\"}\",\"framerIntrinsicHeight\":\"724\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kdnI6FkD2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pflx0dwLd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hDGNsvLBw.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-5uO1p\";const variantClassNames={SlAgobRhN:\"framer-v-1yqejdr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,radius,width,...props})=>{var _ref;return{...props,B_qgp_Xvy:(_ref=radius!==null&&radius!==void 0?radius:props.B_qgp_Xvy)!==null&&_ref!==void 0?_ref:\"12px\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,B_qgp_Xvy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"SlAgobRhN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yqejdr\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"SlAgobRhN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nb8g6t\",\"data-framer-name\":\"Layer-4\",layoutDependency:layoutDependency,layoutId:\"HQg_pRCMP\",style:{background:'conic-gradient(from 0deg at 50% 50%, rgb(133, 184, 255) 36deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, rgb(0, 192, 120)) /* {\"name\":\"Spring Green - 600\"} */ 54.38497019010389deg, rgba(255, 255, 255, 0) 90deg, rgba(255, 255, 255, 0) 270deg, rgb(128, 255, 210) 307.36529277222326deg, rgb(255, 255, 255) 324.71805560173146deg, rgb(133, 184, 255) 360deg)',borderBottomLeftRadius:radiusForCorner(B_qgp_Xvy,3),borderBottomRightRadius:radiusForCorner(B_qgp_Xvy,2),borderTopLeftRadius:radiusForCorner(B_qgp_Xvy,0),borderTopRightRadius:radiusForCorner(B_qgp_Xvy,1),filter:\"blur(64px)\",opacity:.5,WebkitFilter:\"blur(64px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18zmrvb\",\"data-framer-name\":\"Layer-3\",layoutDependency:layoutDependency,layoutId:\"nqEG9hOVq\",style:{background:'conic-gradient(from 0deg at 50% 50%, rgb(133, 184, 255) 36deg, var(--token-91bc4d91-6972-4e38-a9d7-febbf41c8a6e, rgb(0, 255, 166)) /* {\"name\":\"Accent\"} */ 54.38497019010389deg, rgba(255, 255, 255, 0) 90deg, rgba(255, 255, 255, 0) 270deg, rgb(128, 255, 210) 307.36529277222326deg, rgb(255, 255, 255) 324.71805560173146deg, rgb(133, 184, 255) 360deg)',borderBottomLeftRadius:radiusForCorner(B_qgp_Xvy,3),borderBottomRightRadius:radiusForCorner(B_qgp_Xvy,2),borderTopLeftRadius:radiusForCorner(B_qgp_Xvy,0),borderTopRightRadius:radiusForCorner(B_qgp_Xvy,1),filter:\"blur(32px)\",opacity:.75,WebkitFilter:\"blur(32px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v9e895\",\"data-framer-name\":\"Layer-2\",layoutDependency:layoutDependency,layoutId:\"B6Jlvo0MH\",style:{background:'conic-gradient(from 0deg at 50% 50%, rgb(133, 184, 255) 36deg, var(--token-60fbdeb0-065e-40a8-8f67-003fdd035637, rgb(128, 255, 210)) /* {\"name\":\"Conic/Green\"} */ 54.38497019010389deg, rgba(255, 255, 255, 0) 90deg, rgba(255, 255, 255, 0) 270deg, rgb(128, 255, 210) 307.36529277222326deg, rgb(255, 255, 255) 324.71805560173146deg, rgb(133, 184, 255) 360deg)',borderBottomLeftRadius:radiusForCorner(B_qgp_Xvy,3),borderBottomRightRadius:radiusForCorner(B_qgp_Xvy,2),borderTopLeftRadius:radiusForCorner(B_qgp_Xvy,0),borderTopRightRadius:radiusForCorner(B_qgp_Xvy,1),filter:\"blur(8px)\",WebkitFilter:\"blur(8px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u6u45l\",\"data-framer-name\":\"Stroke\",layoutDependency:layoutDependency,layoutId:\"TMN_8jYez\",style:{background:'conic-gradient(from 0deg at 50% 50%, var(--token-fe5e4745-95f0-4101-adda-311b3e8fae28, rgb(255, 255, 255)) /* {\"name\":\"White - Dashoard\"} */ 36deg, var(--token-fe5e4745-95f0-4101-adda-311b3e8fae28, rgb(255, 255, 255)) /* {\"name\":\"White - Dashoard\"} */ 54.38497019010389deg, rgba(255, 255, 255, 0) 90deg, rgba(255, 255, 255, 0) 270deg, var(--token-fe5e4745-95f0-4101-adda-311b3e8fae28, rgb(255, 255, 255)) /* {\"name\":\"White - Dashoard\"} */ 323.58150898843945deg, var(--token-fe5e4745-95f0-4101-adda-311b3e8fae28, rgb(255, 255, 255)) /* {\"name\":\"White - Dashoard\"} */ 360deg)',borderBottomLeftRadius:radiusForCorner(B_qgp_Xvy,3),borderBottomRightRadius:radiusForCorner(B_qgp_Xvy,2),borderTopLeftRadius:radiusForCorner(B_qgp_Xvy,0),borderTopRightRadius:radiusForCorner(B_qgp_Xvy,1),filter:\"blur(2px)\",WebkitFilter:\"blur(2px)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5uO1p.framer-b1t1xj, .framer-5uO1p .framer-b1t1xj { display: block; }\",\".framer-5uO1p.framer-1yqejdr { height: 605px; overflow: visible; position: relative; width: 1076px; }\",\".framer-5uO1p .framer-nb8g6t, .framer-5uO1p .framer-18zmrvb, .framer-5uO1p .framer-1v9e895, .framer-5uO1p .framer-1u6u45l { bottom: 0px; flex: none; left: 0px; mix-blend-mode: screen; overflow: visible; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 605\n * @framerIntrinsicWidth 1076\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"B_qgp_Xvy\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameryd4YpzVEY=withCSS(Component,css,\"framer-5uO1p\");export default Frameryd4YpzVEY;Frameryd4YpzVEY.displayName=\"Hero/Glow\";Frameryd4YpzVEY.defaultProps={height:605,width:1076};addPropertyControls(Frameryd4YpzVEY,{B_qgp_Xvy:{defaultValue:\"12px\",title:\"Radius\",type:ControlType.BorderRadius}});addFonts(Frameryd4YpzVEY,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameryd4YpzVEY\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"B_qgp_Xvy\\\":\\\"radius\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1076\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"605\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yd4YpzVEY.map", "// Generated by Framer (4240133)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ScreenContent from\"https://framerusercontent.com/modules/g4jy3frJlTca8YqKrcFR/QjgiguSxQe8XmNSEZHNI/hDGNsvLBw.js\";import HeroGlow from\"https://framerusercontent.com/modules/aCyccoO1471vNw4t7zjO/vP8QfhmLaNrQRUoZiXBH/yd4YpzVEY.js\";const HeroGlowFonts=getFonts(HeroGlow);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ScreenContentFonts=getFonts(ScreenContent);const ScreenContentControls=getPropertyControls(ScreenContent);const cycleOrder=[\"JU8MxDCZf\",\"oSiA_fJxn\",\"ESrC647gr\",\"ltktKYq3S\",\"JBW_0zBvM\",\"pvmv2FhC1\",\"q8wC_9shR\",\"gSxYHY7O9\",\"HFrycZZXL\",\"NHUePcokD\"];const serializationHash=\"framer-l6sVA\";const variantClassNames={ESrC647gr:\"framer-v-1neuxtz\",gSxYHY7O9:\"framer-v-1pc8j7h\",HFrycZZXL:\"framer-v-1bdnzct\",JBW_0zBvM:\"framer-v-ai3qtj\",JU8MxDCZf:\"framer-v-76uoj3\",ltktKYq3S:\"framer-v-1elf8ue\",NHUePcokD:\"framer-v-19jrkft\",oSiA_fJxn:\"framer-v-1bsix15\",pvmv2FhC1:\"framer-v-1vhfh6x\",q8wC_9shR:\"framer-v-nx12hp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:50,delay:1.25,mass:1,stiffness:125,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Custom:\"pflx0dwLd\",Image:\"sx9yQ62sO\",Video:\"kdnI6FkD2\"};const humanReadableVariantMap={\"Facing Left - Wide Angle\":\"JBW_0zBvM\",\"Facing Left\":\"oSiA_fJxn\",\"Facing Right - Wide Angle\":\"ltktKYq3S\",\"Facing Right\":\"ESrC647gr\",\"Front - No Island\":\"pvmv2FhC1\",\"Left - No Island\":\"q8wC_9shR\",\"Right - No Island\":\"gSxYHY7O9\",\"Wide L - No Island\":\"NHUePcokD\",\"Wide R - No Island\":\"HFrycZZXL\",Front:\"JU8MxDCZf\"};const getProps=({height,id,image,poster,variant1,width,...props})=>{return{...props,emtXTtjus:humanReadableEnumMap[variant1]??variant1??props.emtXTtjus??\"pflx0dwLd\",gCAH6ImjH:image??props.gCAH6ImjH??{src:\"https://framerusercontent.com/images/49V99o2SHCUWiNXP15Sk9otAY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/49V99o2SHCUWiNXP15Sk9otAY.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/49V99o2SHCUWiNXP15Sk9otAY.jpg 882w\"},p075zLsbI:poster??props.p075zLsbI??{src:\"https://framerusercontent.com/images/E5e0QHF8clKE0E56ZQpk4mhTET8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/E5e0QHF8clKE0E56ZQpk4mhTET8.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/E5e0QHF8clKE0E56ZQpk4mhTET8.jpg 720w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"JU8MxDCZf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gCAH6ImjH,N0VtW9m0Q,p075zLsbI,emtXTtjus,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JU8MxDCZf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-76uoj3\",className,classNames),\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"JU8MxDCZf\",ref:ref??ref1,style:{...style},...addPropertyOverrides({ESrC647gr:{\"data-framer-name\":\"Facing Right\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},gSxYHY7O9:{\"data-framer-name\":\"Right - No Island\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},HFrycZZXL:{\"data-framer-name\":\"Wide R - No Island\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},JBW_0zBvM:{\"data-framer-name\":\"Facing Left - Wide Angle\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},ltktKYq3S:{\"data-framer-name\":\"Facing Right - Wide Angle\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},NHUePcokD:{\"data-framer-name\":\"Wide L - No Island\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},oSiA_fJxn:{\"data-framer-name\":\"Facing Left\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},pvmv2FhC1:{\"data-framer-name\":\"Front - No Island\"},q8wC_9shR:{\"data-framer-name\":\"Left - No Island\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:748,width:\"346px\",y:(componentViewport?.y||0)+((componentViewport?.height||772)*.5051813471502593-374),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-7qp1up-container\",\"data-framer-appear-id\":\"7qp1up\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"cvRlHPgJE-container\",optimized:true,children:/*#__PURE__*/_jsx(HeroGlow,{B_qgp_Xvy:\"60px\",height:\"100%\",id:\"cvRlHPgJE\",layoutId:\"cvRlHPgJE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png\",srcSet:\"https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png 1072w\"},className:\"framer-1ug74u5\",\"data-framer-name\":\"Device Render\",layoutDependency:layoutDependency,layoutId:\"c93BxrMRe\",...addPropertyOverrides({ESrC647gr:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png\",srcSet:\"https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png 1072w\"}},gSxYHY7O9:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png\",srcSet:\"https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png 1072w\"}},HFrycZZXL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/eySKvuW9mdpNRRPpAJB80y7VM.png\",srcSet:\"https://framerusercontent.com/images/eySKvuW9mdpNRRPpAJB80y7VM.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/eySKvuW9mdpNRRPpAJB80y7VM.png 1072w\"}},JBW_0zBvM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/CKPjbnDt2aWk6IKWKo4dD23jk.png\",srcSet:\"https://framerusercontent.com/images/CKPjbnDt2aWk6IKWKo4dD23jk.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/CKPjbnDt2aWk6IKWKo4dD23jk.png 1072w\"}},ltktKYq3S:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/kq7saCqjjnfzGYNmfgyQuoFJkWY.png\",srcSet:\"https://framerusercontent.com/images/kq7saCqjjnfzGYNmfgyQuoFJkWY.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/kq7saCqjjnfzGYNmfgyQuoFJkWY.png 1072w\"}},NHUePcokD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/vnjVBrDpkbObq0aGoch1aTgyI8.png\",srcSet:\"https://framerusercontent.com/images/vnjVBrDpkbObq0aGoch1aTgyI8.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/vnjVBrDpkbObq0aGoch1aTgyI8.png 1072w\"}},oSiA_fJxn:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png\",srcSet:\"https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png 1072w\"}},pvmv2FhC1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png\",srcSet:\"https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png 1072w\"}},q8wC_9shR:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||772)-0-((componentViewport?.height||772)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png\",srcSet:\"https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png 1072w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:724,width:\"334px\",y:(componentViewport?.y||0)+((componentViewport?.height||772)*.5000000000000002-362),...addPropertyOverrides({ESrC647gr:{height:(componentViewport?.height||772)-50,width:`calc(${componentViewport?.width||\"100vw\"} - 65px)`,y:(componentViewport?.y||0)+25},gSxYHY7O9:{height:721,width:`calc(${componentViewport?.width||\"100vw\"} - 65px)`,y:(componentViewport?.y||0)+((componentViewport?.height||772)*.5000000000000002-360.5)},HFrycZZXL:{height:(componentViewport?.height||772)-118,width:`calc(${componentViewport?.width||\"100vw\"} - 102px)`,y:(componentViewport?.y||0)+60},JBW_0zBvM:{height:653,width:`calc(${componentViewport?.width||\"100vw\"} - 102px)`,y:(componentViewport?.y||0)+60},ltktKYq3S:{height:(componentViewport?.height||772)-116,width:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,y:(componentViewport?.y||0)+59},NHUePcokD:{height:(componentViewport?.height||772)-119.00000000000006,width:`calc(${componentViewport?.width||\"100vw\"} - 103px)`,y:(componentViewport?.y||0)+60.00000000000006},oSiA_fJxn:{height:(componentViewport?.height||772)-49,width:`calc(${(componentViewport?.height||772)-49} * 0.4613)`,y:(componentViewport?.y||0)+25},q8wC_9shR:{height:(componentViewport?.height||772)-50,width:`calc(${(componentViewport?.height||772)-50} * 0.4613)`,y:(componentViewport?.y||0)+25}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ps2de0-container\",layoutDependency:layoutDependency,layoutId:\"Hl2I5SkYv-container\",style:{rotateY:0},variants:{ESrC647gr:{rotateY:35,transformPerspective:5e3},gSxYHY7O9:{rotateY:35,transformPerspective:5e3},HFrycZZXL:{rotateY:35,transformPerspective:650},JBW_0zBvM:{rotateY:-35,transformPerspective:650},ltktKYq3S:{rotateY:35,transformPerspective:650},NHUePcokD:{rotateY:-35,transformPerspective:650},oSiA_fJxn:{rotateY:-35,transformPerspective:5e3},q8wC_9shR:{rotateY:-35,transformPerspective:5e3}},children:/*#__PURE__*/_jsx(ScreenContent,{height:\"100%\",hkER3s2E3:toResponsiveImage(gCAH6ImjH),id:\"Hl2I5SkYv\",layoutId:\"Hl2I5SkYv\",style:{height:\"100%\",width:\"100%\"},UXLq1sxOJ:N0VtW9m0Q,variant:emtXTtjus,w02mljpJa:toResponsiveImage(p075zLsbI),width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l6sVA.framer-5afld, .framer-l6sVA .framer-5afld { display: block; }\",\".framer-l6sVA.framer-76uoj3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 772px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-l6sVA .framer-7qp1up-container { flex: none; height: 748px; left: calc(50.00000000000002% - 346px / 2); position: absolute; top: calc(50.51813471502593% - 748px / 2); width: 346px; }\",\".framer-l6sVA .framer-1ug74u5 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; z-index: 9; }\",\".framer-l6sVA .framer-1ps2de0-container { flex: none; height: 724px; left: calc(50.250000000000014% - 334px / 2); position: absolute; top: calc(50.00000000000002% - 724px / 2); width: 334px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l6sVA.framer-76uoj3 { gap: 0px; } .framer-l6sVA.framer-76uoj3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-l6sVA.framer-76uoj3 > :first-child { margin-left: 0px; } .framer-l6sVA.framer-76uoj3 > :last-child { margin-right: 0px; } }\",\".framer-l6sVA.framer-v-1bsix15.framer-76uoj3, .framer-l6sVA.framer-v-1neuxtz.framer-76uoj3, .framer-l6sVA.framer-v-1elf8ue.framer-76uoj3, .framer-l6sVA.framer-v-ai3qtj.framer-76uoj3, .framer-l6sVA.framer-v-1vhfh6x.framer-76uoj3, .framer-l6sVA.framer-v-nx12hp.framer-76uoj3, .framer-l6sVA.framer-v-1pc8j7h.framer-76uoj3, .framer-l6sVA.framer-v-1bdnzct.framer-76uoj3, .framer-l6sVA.framer-v-19jrkft.framer-76uoj3 { aspect-ratio: 0.5181347150259067 / 1; height: var(--framer-aspect-ratio-supported, 772px); }\",\".framer-l6sVA.framer-v-1bsix15 .framer-1ps2de0-container { aspect-ratio: 0.4613259668508287 / 1; bottom: 24px; height: unset; left: 21px; top: 25px; width: var(--framer-aspect-ratio-supported, 334px); }\",\".framer-l6sVA.framer-v-1neuxtz .framer-1ps2de0-container { bottom: 25px; height: unset; left: 46px; right: 19px; top: 25px; width: unset; }\",\".framer-l6sVA.framer-v-1elf8ue .framer-1ps2de0-container { bottom: 57px; height: unset; left: 77px; right: 27px; top: 59px; width: unset; }\",\".framer-l6sVA.framer-v-ai3qtj .framer-1ps2de0-container { height: 653px; left: 25px; right: 77px; top: 60px; width: unset; }\",\".framer-l6sVA.framer-v-nx12hp .framer-1ps2de0-container { aspect-ratio: 0.4613259668508287 / 1; bottom: 25px; height: unset; left: 21px; top: 25px; width: var(--framer-aspect-ratio-supported, 334px); }\",\".framer-l6sVA.framer-v-1pc8j7h .framer-1ps2de0-container { height: 721px; left: 46px; right: 19px; top: calc(50.00000000000002% - 721px / 2); width: unset; }\",\".framer-l6sVA.framer-v-1bdnzct .framer-1ps2de0-container { bottom: 58px; height: unset; left: 77px; right: 25px; top: 60px; width: unset; }\",\".framer-l6sVA.framer-v-19jrkft .framer-1ps2de0-container { bottom: 59px; height: unset; left: 26px; right: 77px; top: 60px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 772\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"oSiA_fJxn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ESrC647gr\":{\"layout\":[\"fixed\",\"fixed\"]},\"ltktKYq3S\":{\"layout\":[\"fixed\",\"fixed\"]},\"JBW_0zBvM\":{\"layout\":[\"fixed\",\"fixed\"]},\"pvmv2FhC1\":{\"layout\":[\"fixed\",\"fixed\"]},\"q8wC_9shR\":{\"layout\":[\"fixed\",\"fixed\"]},\"gSxYHY7O9\":{\"layout\":[\"fixed\",\"fixed\"]},\"HFrycZZXL\":{\"layout\":[\"fixed\",\"fixed\"]},\"NHUePcokD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gCAH6ImjH\":\"image\",\"p075zLsbI\":\"poster\",\"emtXTtjus\":\"variant1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIZhWJyPhk=withCSS(Component,css,\"framer-l6sVA\");export default FramerIZhWJyPhk;FramerIZhWJyPhk.displayName=\"Device\";FramerIZhWJyPhk.defaultProps={height:772,width:400};addPropertyControls(FramerIZhWJyPhk,{variant:{options:[\"JU8MxDCZf\",\"oSiA_fJxn\",\"ESrC647gr\",\"ltktKYq3S\",\"JBW_0zBvM\",\"pvmv2FhC1\",\"q8wC_9shR\",\"gSxYHY7O9\",\"HFrycZZXL\",\"NHUePcokD\"],optionTitles:[\"Front\",\"Facing Left\",\"Facing Right\",\"Facing Right - Wide Angle\",\"Facing Left - Wide Angle\",\"Front - No Island\",\"Left - No Island\",\"Right - No Island\",\"Wide R - No Island\",\"Wide L - No Island\"],title:\"Variant\",type:ControlType.Enum},gCAH6ImjH:{__defaultAssetReference:\"data:framer/asset-reference,49V99o2SHCUWiNXP15Sk9otAY.jpg?originalFilename=framerphone-bg.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},p075zLsbI:{__defaultAssetReference:\"data:framer/asset-reference,E5e0QHF8clKE0E56ZQpk4mhTET8.jpg?originalFilename=poster.jpg&preferredSize=auto\",title:\"Poster\",type:ControlType.ResponsiveImage},emtXTtjus:ScreenContentControls?.[\"variant\"]&&{...ScreenContentControls[\"variant\"],defaultValue:\"pflx0dwLd\",description:undefined,hidden:undefined,title:\"Variant\"}});addFonts(FramerIZhWJyPhk,[{explicitInter:true,fonts:[]},...HeroGlowFonts,...ScreenContentFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIZhWJyPhk\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"772\",\"framerIntrinsicWidth\":\"400\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"gCAH6ImjH\\\":\\\"image\\\",\\\"p075zLsbI\\\":\\\"poster\\\",\\\"emtXTtjus\\\":\\\"variant1\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oSiA_fJxn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ESrC647gr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ltktKYq3S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JBW_0zBvM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pvmv2FhC1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q8wC_9shR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gSxYHY7O9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HFrycZZXL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NHUePcokD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"iNmhhp494\",\"HYYqAoWmS\",\"Otj6GPOW0\"];const serializationHash=\"framer-axvUQ\";const variantClassNames={HYYqAoWmS:\"framer-v-1a5ptbs\",iNmhhp494:\"framer-v-13pp10z\",Otj6GPOW0:\"framer-v-a1i720\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"iNmhhp494\",\"Variant 2\":\"HYYqAoWmS\",\"Variant 3\":\"Otj6GPOW0\"};const getProps=({height,id,text,width,...props})=>{return{...props,urRBn5pkB:text??props.urRBn5pkB??\"Easily sync data across platforms, eliminating the need for manual data entry and reducing errors.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"iNmhhp494\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,urRBn5pkB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iNmhhp494\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Otj6GPOW0\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Otj6GPOW0\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-13pp10z\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"iNmhhp494\",ref:ref??ref1,style:{...style},...addPropertyOverrides({HYYqAoWmS:{\"data-framer-name\":\"Variant 2\"},Otj6GPOW0:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bpm57s\",\"data-framer-name\":\"Icon Wrapper\",layoutDependency:layoutDependency,layoutId:\"uh3AQLWho\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aueubj-container\",layoutDependency:layoutDependency,layoutId:\"nW2sahRJD-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8160275f-388e-4ec5-816d-762985d071d0, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckFat\",id:\"nW2sahRJD\",layoutId:\"nW2sahRJD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ab9853d3-f457-47ea-ba33-f99269cd6c20, rgb(204, 204, 204)))\"},children:\"Easily sync data across platforms, eliminating the need for manual data entry and reducing errors.\"})}),className:\"framer-1pf99pf\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"mSqAp3fCD\",style:{\"--extracted-r6o4lv\":\"var(--token-ab9853d3-f457-47ea-ba33-f99269cd6c20, rgb(204, 204, 204))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:urRBn5pkB,variants:{HYYqAoWmS:{\"--extracted-r6o4lv\":\"var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(3, 21, 26))\"},Otj6GPOW0:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.9)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HYYqAoWmS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eabec031-63c1-4476-be70-c38687909315, rgb(3, 21, 26)))\"},children:\"Easily sync data across platforms, eliminating the need for manual data entry and reducing errors.\"})})},Otj6GPOW0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.9))\"},children:\"Easily sync data across platforms, eliminating the need for manual data entry and reducing errors.\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qzqouq-container\",layoutDependency:layoutDependency,layoutId:\"m88ovBpOr-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8160275f-388e-4ec5-816d-762985d071d0, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckFat\",id:\"m88ovBpOr\",layoutId:\"m88ovBpOr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-axvUQ.framer-1yghsk1, .framer-axvUQ .framer-1yghsk1 { display: block; }\",\".framer-axvUQ.framer-13pp10z { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 360px; }\",\".framer-axvUQ .framer-bpm57s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 14px; justify-content: center; overflow: visible; padding: 6px 0px 0px 0px; position: relative; width: 14px; }\",\".framer-axvUQ .framer-1aueubj-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-axvUQ .framer-1pf99pf { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-axvUQ .framer-qzqouq-container { flex: none; height: 18px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-axvUQ.framer-13pp10z, .framer-axvUQ .framer-bpm57s { gap: 0px; } .framer-axvUQ.framer-13pp10z > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-axvUQ.framer-13pp10z > :first-child, .framer-axvUQ .framer-bpm57s > :first-child { margin-left: 0px; } .framer-axvUQ.framer-13pp10z > :last-child, .framer-axvUQ .framer-bpm57s > :last-child { margin-right: 0px; } .framer-axvUQ .framer-bpm57s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-axvUQ.framer-v-a1i720 .framer-1pf99pf { order: 2; }\",\".framer-axvUQ.framer-v-a1i720 .framer-qzqouq-container { order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76.5\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HYYqAoWmS\":{\"layout\":[\"fixed\",\"auto\"]},\"Otj6GPOW0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"urRBn5pkB\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernhGZ7W1q6=withCSS(Component,css,\"framer-axvUQ\");export default FramernhGZ7W1q6;FramernhGZ7W1q6.displayName=\"Component / Benefit\";FramernhGZ7W1q6.defaultProps={height:76.5,width:360};addPropertyControls(FramernhGZ7W1q6,{variant:{options:[\"iNmhhp494\",\"HYYqAoWmS\",\"Otj6GPOW0\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},urRBn5pkB:{defaultValue:\"Easily sync data across platforms, eliminating the need for manual data entry and reducing errors.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramernhGZ7W1q6,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernhGZ7W1q6\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"360\",\"framerVariables\":\"{\\\"urRBn5pkB\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"76.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HYYqAoWmS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Otj6GPOW0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nhGZ7W1q6.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const MaterialFonts=getFonts(Material);const cycleOrder=[\"TbnGyRzhv\",\"d7sIQzCig\",\"HpZrSdfoY\",\"YxYpY4BA6\",\"dU6bIDIIF\",\"TFwtkGVw9\"];const serializationHash=\"framer-d3fO8\";const variantClassNames={d7sIQzCig:\"framer-v-uea6fm\",dU6bIDIIF:\"framer-v-1iduwui\",HpZrSdfoY:\"framer-v-psm7tf\",TbnGyRzhv:\"framer-v-18xh35p\",TFwtkGVw9:\"framer-v-o8l77h\",YxYpY4BA6:\"framer-v-17mjb67\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"TbnGyRzhv\",\"Variant 2\":\"d7sIQzCig\",\"Variant 3\":\"HpZrSdfoY\",\"Variant 4\":\"YxYpY4BA6\",\"Variant 5\":\"dU6bIDIIF\",\"Variant 6\":\"TFwtkGVw9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TbnGyRzhv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TbnGyRzhv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1pwv2fr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YxYpY4BA6\"),5e3);});const onAppearqpc381=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"TbnGyRzhv\"),5e3);});const onAppeark6udga=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dU6bIDIIF\"),5e3);});const onAppearfhqk8i=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"TFwtkGVw9\"),5e3);});const onAppearsowjff=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"d7sIQzCig\"),5e3);});const onAppear1oya30c=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"HpZrSdfoY\"),5e3);});useOnVariantChange(baseVariant,{d7sIQzCig:onAppearqpc381,default:onAppear1pwv2fr,dU6bIDIIF:onAppearsowjff,HpZrSdfoY:onAppeark6udga,TFwtkGVw9:onAppear1oya30c,YxYpY4BA6:onAppearfhqk8i});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"d7sIQzCig\",\"HpZrSdfoY\",\"YxYpY4BA6\",\"dU6bIDIIF\",\"TFwtkGVw9\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"YxYpY4BA6\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"TFwtkGVw9\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"HpZrSdfoY\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"dU6bIDIIF\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"d7sIQzCig\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-18xh35p\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TbnGyRzhv\",ref:refBinding,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({d7sIQzCig:{\"data-framer-name\":\"Variant 2\"},dU6bIDIIF:{\"data-framer-name\":\"Variant 5\"},HpZrSdfoY:{\"data-framer-name\":\"Variant 3\"},TFwtkGVw9:{\"data-framer-name\":\"Variant 6\"},YxYpY4BA6:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hdgdvr\",layoutDependency:layoutDependency,layoutId:\"n_tA7uQpY\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||179)-28-100)/2)+0+0),pixelHeight:6016,pixelWidth:4016,src:\"https://framerusercontent.com/images/vooSj8IQUo3usPYrgBkN3CJOYQ.jpg\",srcSet:\"https://framerusercontent.com/images/vooSj8IQUo3usPYrgBkN3CJOYQ.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/vooSj8IQUo3usPYrgBkN3CJOYQ.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/vooSj8IQUo3usPYrgBkN3CJOYQ.jpg?scale-down-to=4096 2734w,https://framerusercontent.com/images/vooSj8IQUo3usPYrgBkN3CJOYQ.jpg 4016w\"},className:\"framer-xciy0p\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"Sq1AllQco\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},...addPropertyOverrides({d7sIQzCig:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||158)-28-100)/2)+0+0),pixelHeight:120,pixelWidth:120,src:\"https://framerusercontent.com/images/DaVPObBLZZrHf3aDm1qOzzhHrUw.png\"}},dU6bIDIIF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||179)-28-100)/2)+0+0),pixelHeight:120,pixelWidth:120,src:\"https://framerusercontent.com/images/n3AGI4TrcL6Q2FpqztiuFkvA.png\"}},HpZrSdfoY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||137)-28-100)/2)+0+0),pixelHeight:120,pixelWidth:120,src:\"https://framerusercontent.com/images/HmEmzpivbH1Wdp6B8PE9V1r43A.png\"}},TFwtkGVw9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||158)-28-100)/2)+0+0),pixelHeight:120,pixelWidth:120,src:\"https://framerusercontent.com/images/4tE77cshPn9rXRJD1mHq2mrFIQ.png\"}},YxYpY4BA6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||200)-28-100)/2)+0+0),pixelHeight:120,pixelWidth:120,src:\"https://framerusercontent.com/images/TmlvZHVFZ34NaisxcdHIcLQTI.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||179)-28-100)/2)+0+71),pixelHeight:500,pixelWidth:1e3,sizes:\"63px\",src:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png\",srcSet:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png 1000w\"},className:\"framer-11dr2u0\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"GO0eofaLI\",...addPropertyOverrides({d7sIQzCig:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||158)-28-100)/2)+0+71),pixelHeight:500,pixelWidth:1e3,sizes:\"63px\",src:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png\",srcSet:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png 1000w\"}},HpZrSdfoY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||137)-28-100)/2)+0+71),pixelHeight:500,pixelWidth:1e3,sizes:\"63px\",src:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png\",srcSet:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png 1000w\"}},TFwtkGVw9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||158)-28-100)/2)+0+71),pixelHeight:500,pixelWidth:1e3,sizes:\"63px\",src:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png\",srcSet:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png 1000w\"}},YxYpY4BA6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(14+((componentViewport?.height||200)-28-100)/2)+0+71),pixelHeight:500,pixelWidth:1e3,sizes:\"63px\",src:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png\",srcSet:\"https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png?scale-down-to=512 512w,https://framerusercontent.com/images/lDawSGMnSwGksW4rtvSVkFFGGs.png 1000w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-266my\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"JRs2o0pAw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g85ni3\",\"data-framer-name\":\"Stars\",layoutDependency:layoutDependency,layoutId:\"a9VgwouuB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bpvwb2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Q5T5nuf1r-container\",nodeId:\"Q5T5nuf1r\",rendersWithMotion:true,scopeId:\"p2TXmrqrY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d2c656dc-fbfc-4430-83e1-512b0c6a182e, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"Q5T5nuf1r\",layoutId:\"Q5T5nuf1r\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jfnspo-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VtD6e3Cz5-container\",nodeId:\"VtD6e3Cz5\",rendersWithMotion:true,scopeId:\"p2TXmrqrY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d2c656dc-fbfc-4430-83e1-512b0c6a182e, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"VtD6e3Cz5\",layoutId:\"VtD6e3Cz5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m2fkta-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IKdVX58Q7-container\",nodeId:\"IKdVX58Q7\",rendersWithMotion:true,scopeId:\"p2TXmrqrY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d2c656dc-fbfc-4430-83e1-512b0c6a182e, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"IKdVX58Q7\",layoutId:\"IKdVX58Q7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-os8r1m-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"GTz6rgTkZ-container\",nodeId:\"GTz6rgTkZ\",rendersWithMotion:true,scopeId:\"p2TXmrqrY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 241, 151)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"GTz6rgTkZ\",layoutId:\"GTz6rgTkZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ukrt66-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FZcOCwS0I-container\",nodeId:\"FZcOCwS0I\",rendersWithMotion:true,scopeId:\"p2TXmrqrY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 241, 151)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"FZcOCwS0I\",layoutId:\"FZcOCwS0I\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b1qtbw\",\"data-framer-name\":\"Name Container\",layoutDependency:layoutDependency,layoutId:\"KgGmE1BVd\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rbekn0\",\"data-framer-name\":\"Headings/p2\",layoutDependency:layoutDependency,layoutId:\"hPq44g8Lt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xw5kjd\",layoutDependency:layoutDependency,layoutId:\"AC013ayjH\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ffg88p-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vjaA1KdRQ-container\",nodeId:\"vjaA1KdRQ\",rendersWithMotion:true,scopeId:\"p2TXmrqrY\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-91bc4d91-6972-4e38-a9d7-febbf41c8a6e, rgb(0, 255, 166))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Verified\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"vjaA1KdRQ\",layoutId:\"vjaA1KdRQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255)))\"},children:\"STEVE HARRISON\"})}),className:\"framer-5i2ldb\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],layoutDependency:layoutDependency,layoutId:\"te4jC_xUs\",style:{\"--extracted-r6o4lv\":\"var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255)))\"},children:\"JOHN MARSDEN\"})}),className:\"framer-1cwlxou\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],layoutDependency:layoutDependency,layoutId:\"tDo3WDo5s\",style:{\"--extracted-r6o4lv\":\"var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255)))\"},children:\"KARL LUKEMAN\"})}),className:\"framer-1qzwdow\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],layoutDependency:layoutDependency,layoutId:\"OFOnKoqRH\",style:{\"--extracted-r6o4lv\":\"var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255)))\"},children:\"ALAN TANNENBAUM\"})}),className:\"framer-ruglhh\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],layoutDependency:layoutDependency,layoutId:\"K4Jy7P9XS\",style:{\"--extracted-r6o4lv\":\"var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255)))\"},children:\"JONATHAN WHITE\"})}),className:\"framer-16n6p36\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],layoutDependency:layoutDependency,layoutId:\"KkypwUWvv\",style:{\"--extracted-r6o4lv\":\"var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255)))\"},children:\"DAVE SIMPSON\"})}),className:\"framer-7wjzm4\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],layoutDependency:layoutDependency,layoutId:\"xSoDoAOca\",style:{\"--extracted-r6o4lv\":\"var(--token-2085d7d2-1512-4213-b5ab-ec3394d193b1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8726a99a-871c-4fc5-b4ed-8e384f25800a, rgb(206, 213, 217)))\"},children:[\"Jamie\u2019s \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"dedication, insightful strategies \"}),\"and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"personalised\"}),\" coaching make all the difference. I \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"highly recommend\"}),\" Jamie to anyone looking for \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjayBpdGFsaWM=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\"},children:\"real lasting results.\"})]})}),className:\"framer-1emgro5\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-black\",\"FS;Satoshi-black italic\"],layoutDependency:layoutDependency,layoutId:\"c3XkalVvo\",style:{\"--extracted-r6o4lv\":\"var(--token-8726a99a-871c-4fc5-b4ed-8e384f25800a, rgb(206, 213, 217))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({d7sIQzCig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8726a99a-871c-4fc5-b4ed-8e384f25800a, rgb(206, 213, 217)))\"},children:[\"The complete process is \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjayBpdGFsaWM=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\"},children:\"life changing, physically and mentally.\"}),\" Which then translates and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"transcends in to my business.\"})]})}),fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-black italic\",\"FS;Satoshi-black\"]},dU6bIDIIF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8726a99a-871c-4fc5-b4ed-8e384f25800a, rgb(206, 213, 217)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjayBpdGFsaWM=\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"900\"},children:\"Nothing short of transformational.\"}),\" Jamie and The Consistency Club has changed my whole outlook on health with \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"incredible results\"}),\" across the board.\"]})}),fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-black italic\",\"FS;Satoshi-black\"]},HpZrSdfoY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8726a99a-871c-4fc5-b4ed-8e384f25800a, rgb(206, 213, 217)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\"He holds me \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjayBpdGFsaWM=\",\"--framer-font-style\":\"italic\"},children:\"accountable\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"400\"},children:\" without being overbearing. \"}),\"I have lost 30 pounds and feel much healthier.\"]})}),fonts:[\"FS;Satoshi-black\",\"FS;Satoshi-regular\",\"FS;Satoshi-black italic\"]},TFwtkGVw9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8726a99a-871c-4fc5-b4ed-8e384f25800a, rgb(206, 213, 217)))\"},children:[\"He crafted a personalised plan that \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"perfectly fits my lifestyle.\"}),\" I highly recommend him, definitely a 5-star experience!\"]})}),fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-black\"]},YxYpY4BA6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8726a99a-871c-4fc5-b4ed-8e384f25800a, rgb(206, 213, 217)))\"},children:[\"He \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"helped me reprogram my brain\"}),\" to exercise, when I found excuses before, and know that I can still enjoy the occasional less healthy options by choosing to eat well for the majority of time.\"]})}),fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-black\"]}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-d3fO8.framer-z58t7q, .framer-d3fO8 .framer-z58t7q { display: block; }\",\".framer-d3fO8.framer-18xh35p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-d3fO8 .framer-hdgdvr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-d3fO8 .framer-xciy0p { align-self: stretch; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: auto; }\",\".framer-d3fO8 .framer-11dr2u0 { flex: none; height: 29px; overflow: visible; position: relative; width: 63px; }\",\".framer-d3fO8 .framer-266my { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 245px; }\",\".framer-d3fO8 .framer-g85ni3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-d3fO8 .framer-1bpvwb2-container, .framer-d3fO8 .framer-1jfnspo-container, .framer-d3fO8 .framer-m2fkta-container, .framer-d3fO8 .framer-os8r1m-container, .framer-d3fO8 .framer-1ukrt66-container { flex: none; height: 16px; position: relative; width: 10px; }\",\".framer-d3fO8 .framer-b1qtbw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-d3fO8 .framer-rbekn0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-d3fO8 .framer-1xw5kjd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-d3fO8 .framer-1ffg88p-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-d3fO8 .framer-5i2ldb, .framer-d3fO8 .framer-1cwlxou, .framer-d3fO8 .framer-1qzwdow, .framer-d3fO8 .framer-ruglhh, .framer-d3fO8 .framer-16n6p36, .framer-d3fO8 .framer-7wjzm4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-d3fO8 .framer-1emgro5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-d3fO8.framer-18xh35p, .framer-d3fO8 .framer-hdgdvr, .framer-d3fO8 .framer-266my, .framer-d3fO8 .framer-g85ni3, .framer-d3fO8 .framer-b1qtbw, .framer-d3fO8 .framer-rbekn0, .framer-d3fO8 .framer-1xw5kjd { gap: 0px; } .framer-d3fO8.framer-18xh35p > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-d3fO8.framer-18xh35p > :first-child, .framer-d3fO8 .framer-g85ni3 > :first-child, .framer-d3fO8 .framer-b1qtbw > :first-child, .framer-d3fO8 .framer-1xw5kjd > :first-child { margin-left: 0px; } .framer-d3fO8.framer-18xh35p > :last-child, .framer-d3fO8 .framer-g85ni3 > :last-child, .framer-d3fO8 .framer-b1qtbw > :last-child, .framer-d3fO8 .framer-1xw5kjd > :last-child { margin-right: 0px; } .framer-d3fO8 .framer-hdgdvr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-d3fO8 .framer-hdgdvr > :first-child, .framer-d3fO8 .framer-266my > :first-child, .framer-d3fO8 .framer-rbekn0 > :first-child { margin-top: 0px; } .framer-d3fO8 .framer-hdgdvr > :last-child, .framer-d3fO8 .framer-266my > :last-child, .framer-d3fO8 .framer-rbekn0 > :last-child { margin-bottom: 0px; } .framer-d3fO8 .framer-266my > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-d3fO8 .framer-g85ni3 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-d3fO8 .framer-b1qtbw > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-d3fO8 .framer-rbekn0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-d3fO8 .framer-1xw5kjd > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-d3fO8.framer-v-uea6fm .framer-266my { width: 225px; }\",\".framer-d3fO8.framer-v-uea6fm .framer-1ffg88p-container, .framer-d3fO8.framer-v-psm7tf .framer-ruglhh, .framer-d3fO8.framer-v-17mjb67 .framer-1cwlxou, .framer-d3fO8.framer-v-1iduwui .framer-16n6p36, .framer-d3fO8.framer-v-o8l77h .framer-1qzwdow { order: 1; }\",\".framer-d3fO8.framer-v-uea6fm .framer-7wjzm4 { order: 2; }\",\".framer-d3fO8.framer-v-psm7tf .framer-266my { justify-content: flex-start; padding: 0px 7px 0px 7px; width: min-content; }\",\".framer-d3fO8.framer-v-psm7tf .framer-g85ni3, .framer-d3fO8.framer-v-psm7tf .framer-1ffg88p-container, .framer-d3fO8.framer-v-17mjb67 .framer-1ffg88p-container, .framer-d3fO8.framer-v-1iduwui .framer-1ffg88p-container, .framer-d3fO8.framer-v-o8l77h .framer-1ffg88p-container { order: 0; }\",\".framer-d3fO8.framer-v-psm7tf .framer-b1qtbw { order: 1; width: 225px; }\",\".framer-d3fO8.framer-v-psm7tf .framer-rbekn0 { flex: none; width: min-content; }\",\".framer-d3fO8.framer-v-psm7tf .framer-1xw5kjd { width: min-content; }\",\".framer-d3fO8.framer-v-psm7tf .framer-1emgro5 { order: 2; width: 225px; }\",\".framer-d3fO8.framer-v-17mjb67 .framer-1xw5kjd { gap: 6px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-d3fO8.framer-v-17mjb67 .framer-1xw5kjd { gap: 0px; } .framer-d3fO8.framer-v-17mjb67 .framer-1xw5kjd > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-d3fO8.framer-v-17mjb67 .framer-1xw5kjd > :first-child { margin-left: 0px; } .framer-d3fO8.framer-v-17mjb67 .framer-1xw5kjd > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 179\n * @framerIntrinsicWidth 352\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"d7sIQzCig\":{\"layout\":[\"auto\",\"auto\"]},\"HpZrSdfoY\":{\"layout\":[\"auto\",\"auto\"]},\"YxYpY4BA6\":{\"layout\":[\"auto\",\"auto\"]},\"dU6bIDIIF\":{\"layout\":[\"auto\",\"auto\"]},\"TFwtkGVw9\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp2TXmrqrY=withCSS(Component,css,\"framer-d3fO8\");export default Framerp2TXmrqrY;Framerp2TXmrqrY.displayName=\"Mini review 1\";Framerp2TXmrqrY.defaultProps={height:179,width:352};addPropertyControls(Framerp2TXmrqrY,{variant:{options:[\"TbnGyRzhv\",\"d7sIQzCig\",\"HpZrSdfoY\",\"YxYpY4BA6\",\"dU6bIDIIF\",\"TFwtkGVw9\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerp2TXmrqrY,[{explicitInter:true,fonts:[{family:\"Microgramma D Bold Extended\",source:\"custom\",url:\"https://framerusercontent.com/assets/RZtFrpWVXe49yN5FXlrrlauf1c.woff2\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5ICO57VJIN252OT5L2KLEIPW754DTLAO/ZU64SLR2IEO66N27IVY5Z6JJJRTJECJK/TCTRLNEXANFIGSFCZTGQL7PZ5362GYK6.woff2\",weight:\"900\"}]},...PhosphorFonts,...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp2TXmrqrY\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"179\",\"framerIntrinsicWidth\":\"352\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"d7sIQzCig\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HpZrSdfoY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YxYpY4BA6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dU6bIDIIF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TFwtkGVw9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p2TXmrqrY.map", "// Generated by Framer (f26e712)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-FXZaV .framer-styles-preset-1j4o2bg:not(.rich-text-wrapper), .framer-FXZaV .framer-styles-preset-1j4o2bg.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #e6e6e6; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-FXZaV\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,FormSelect,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/P1XRxus9CQiWIYNrkBAa/Carousel.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/RLfsHd78NBd0kbafA9hd/Lottie.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import ButtonsPrimary from\"#framer/local/canvasComponent/buZ6A_K3a/buZ6A_K3a.js\";import Device from\"#framer/local/canvasComponent/IZhWJyPhk/IZhWJyPhk.js\";import ComponentBenefit from\"#framer/local/canvasComponent/nhGZ7W1q6/nhGZ7W1q6.js\";import MiniReview1 from\"#framer/local/canvasComponent/p2TXmrqrY/p2TXmrqrY.js\";import Button2 from\"#framer/local/canvasComponent/PNV4OoxI3/PNV4OoxI3.js\";import Button from\"#framer/local/canvasComponent/QluaRKeO3/QluaRKeO3.js\";import OtherAccordion from\"#framer/local/canvasComponent/qluWa2nmw/qluWa2nmw.js\";import ButtonsSecondary from\"#framer/local/canvasComponent/tA15HPmex/tA15HPmex.js\";import GlobalFooter from\"#framer/local/canvasComponent/vZv_jfPCF/vZv_jfPCF.js\";import NavigationNavigation from\"#framer/local/canvasComponent/YlslyniFN/YlslyniFN.js\";import*as sharedStyle2 from\"#framer/local/css/aImoLKpNg/aImoLKpNg.js\";import*as sharedStyle from\"#framer/local/css/eIJT49EKw/eIJT49EKw.js\";import*as sharedStyle3 from\"#framer/local/css/rlt3swcBb/rlt3swcBb.js\";import*as sharedStyle1 from\"#framer/local/css/v5qlxqQUW/v5qlxqQUW.js\";import*as sharedStyle5 from\"#framer/local/css/WRCqY_KV9/WRCqY_KV9.js\";import*as sharedStyle4 from\"#framer/local/css/WxGrfG9Zh/WxGrfG9Zh.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsPrimaryFonts=getFonts(ButtonsPrimary);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonsSecondaryFonts=getFonts(ButtonsSecondary);const DeviceFonts=getFonts(Device);const MotionDivWithFX=withFX(motion.div);const MiniReview1Fonts=getFonts(MiniReview1);const RichTextWithFX=withFX(RichText);const LottieFonts=getFonts(Lottie);const TickerFonts=getFonts(Ticker);const ButtonFonts=getFonts(Button);const NavigationNavigationFonts=getFonts(NavigationNavigation);const ComponentBenefitFonts=getFonts(ComponentBenefit);const SlideshowFonts=getFonts(Slideshow);const CarouselFonts=getFonts(Carousel);const Button2Fonts=getFonts(Button2);const SmoothScrollFonts=getFonts(SmoothScroll);const OtherAccordionFonts=getFonts(OtherAccordion);const GlobalFooterFonts=getFonts(GlobalFooter);const VideoFonts=getFonts(Video);const breakpoints={FWVpfDVPB:\"(min-width: 810px) and (max-width: 1199px)\",Pd_SV8XXg:\"(min-width: 1440px)\",UCGPDF5VO:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-MEiwj\";const variantClassNames={FWVpfDVPB:\"framer-v-1a3mp3t\",Pd_SV8XXg:\"framer-v-1y12k4j\",UCGPDF5VO:\"framer-v-1fkn8yj\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:50,delay:.1,mass:1,stiffness:125,type:\"spring\"};const textEffect={effect:animation2,repeat:false,startDelay:0,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={damping:50,delay:1.5,mass:.5,stiffness:125,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={bounce:.2,delay:.3,duration:.4,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:50,delay:1.75,mass:.5,stiffness:125,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:.2,delay:.6,duration:.4,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation8={cursor:\"grabbing\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:8};const transition7={delay:.3,duration:1.2,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={damping:60,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={damping:60,delay:.9,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={damping:60,delay:1.3,mass:1,stiffness:400,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,x:-110,y:0};const transition11={delay:.5,duration:1.5,ease:[.81,-.03,.56,1],type:\"tween\"};const transition12={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation17={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition13={damping:60,delay:.6,mass:1,stiffness:380,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const transition14={damping:60,delay:.7,mass:1,stiffness:350,type:\"spring\"};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const transition15={damping:60,delay:.8,mass:1,stiffness:320,type:\"spring\"};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:0};const transition16={damping:60,delay:.9,mass:1,stiffness:300,type:\"spring\"};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:0};const transition17={damping:60,delay:1,mass:1,stiffness:260,type:\"spring\"};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition17,x:0,y:0};const transition18={damping:60,delay:1.1,mass:1,stiffness:240,type:\"spring\"};const animation23={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition18,x:0,y:0};const transition19={damping:60,delay:1.2,mass:1,stiffness:220,type:\"spring\"};const animation24={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition19,x:0,y:0};const transition20={damping:60,delay:1.3,mass:1,stiffness:180,type:\"spring\"};const animation25={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition20,x:0,y:0};const transition21={damping:60,delay:1.4,mass:1,stiffness:160,type:\"spring\"};const animation26={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition21,x:0,y:0};const transition22={damping:60,delay:1.5,mass:1,stiffness:140,type:\"spring\"};const animation27={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition22,x:0,y:0};const transition23={damping:60,delay:1.6,mass:1,stiffness:120,type:\"spring\"};const animation28={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition23,x:0,y:0};const transition24={damping:60,delay:1.7,mass:1,stiffness:100,type:\"spring\"};const animation29={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition24,x:0,y:0};const transition25={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation30={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition25,x:0,y:0};const animation31={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition26={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const transition27={bounce:0,delay:.05,duration:.6,type:\"spring\"};const textEffect1={effect:animation2,repeat:false,startDelay:0,tokenization:\"word\",transition:transition27,trigger:\"onMount\",type:\"appear\"};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:104};const transition28={damping:30,delay:.1,mass:1,stiffness:100,type:\"spring\"};const transition29={damping:30,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition30={bounce:.2,delay:0,duration:.6,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop - L\":\"Pd_SV8XXg\",Desktop:\"WQLkyLRf1\",Phone:\"UCGPDF5VO\",Tablet:\"FWVpfDVPB\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,xhhXTHb64A1OOgZneh,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Xu3xov2KD\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"IEKt1NMQE\");const ref2=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"B14SqwW4g\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"FWVpfDVPB\",\"UCGPDF5VO\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"FhLQxpKfm\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"g6pN5oEej\");const ref5=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"FWVpfDVPB\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"UCGPDF5VO\")return false;return true;};const elementId5=useRouteElementId(\"IZ9KJAN5k\");const ref6=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"UCGPDF5VO\")return true;return false;};const elementId6=useRouteElementId(\"IiuTMqPsi\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"KMDiDUP1H\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"wBpwGxJ0H\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"ZJLC9zZyp\");const ref10=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"FWVpfDVPB\")return true;return false;};const elementId10=useRouteElementId(\"NiXnhEqvk\");const ref11=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:'html body { background: linear-gradient(180deg, rgb(12, 14, 19) 0%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 38.164344031531535%); }'}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2yt3x6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8ax95\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13v55gb\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17mcwuj\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-of8azn\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ye5zjh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-8wktpt\",\"data-framer-appear-id\":\"8wktpt\",\"data-framer-name\":\"Column Right\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-153201f\",\"data-framer-name\":\"Client Testimonial\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{background:{alt:\"\",fit:\"fit\",pixelHeight:160,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/vJRaGFxE1rYrvGc2Q48OvbNGn8.png\",srcSet:\"https://framerusercontent.com/images/vJRaGFxE1rYrvGc2Q48OvbNGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/vJRaGFxE1rYrvGc2Q48OvbNGn8.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:160,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"197px\",src:\"https://framerusercontent.com/images/vJRaGFxE1rYrvGc2Q48OvbNGn8.png\",srcSet:\"https://framerusercontent.com/images/vJRaGFxE1rYrvGc2Q48OvbNGn8.png?scale-down-to=512 512w,https://framerusercontent.com/images/vJRaGFxE1rYrvGc2Q48OvbNGn8.png 600w\"},className:\"framer-kqjk5m\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b6ofzt\",\"data-framer-name\":\"Text Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-69kkig\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ojnmp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KVDacIrNJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d2c656dc-fbfc-4430-83e1-512b0c6a182e, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"KVDacIrNJ\",layoutId:\"KVDacIrNJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wms0cd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DjrAnIEre\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d2c656dc-fbfc-4430-83e1-512b0c6a182e, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"DjrAnIEre\",layoutId:\"DjrAnIEre\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ubuxcl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vSXRybsH4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d2c656dc-fbfc-4430-83e1-512b0c6a182e, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"vSXRybsH4\",layoutId:\"vSXRybsH4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1073mv8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DUcfdSJYo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 241, 151)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"DUcfdSJYo\",layoutId:\"DUcfdSJYo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-284v4r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EDV2U57Dx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d2c656dc-fbfc-4430-83e1-512b0c6a182e, rgb(79, 242, 163))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"StarHalf\",id:\"EDV2U57Dx\",layoutId:\"EDV2U57Dx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1100+ Healthy Executives\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1100+ Healthy Executives\"})}),className:\"framer-13pr657\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16fvvn2\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ucmrwq\",\"data-styles-preset\":\"eIJT49EKw\",style:{\"--framer-text-alignment\":\"center\"},children:\"THE HOME OF SUSTAINABLE HEALTH AND WELLBEING FOR BUSY PROFESSIONALS\"})}),className:\"framer-1t34ilz\",\"data-framer-name\":\"Header\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pd_SV8XXg:{animate:animation5,initial:animation1,optimized:true},UCGPDF5VO:{animate:animation3,effect:undefined,initial:animation4,optimized:true}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i5347y\",\"data-styles-preset\":\"v5qlxqQUW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A healthier, more consistent you is within reach - With expert 1-1 coaching, a thriving community, and plans tailored to your lifestyle.\"})}),className:\"framer-10gbj7q\",\"data-framer-appear-id\":\"10gbj7q\",\"data-framer-name\":\"Subheadline\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-72gg4a\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined},{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined},{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined},{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-tm10jr-container\",\"data-framer-appear-id\":\"tm10jr\",initial:animation4,nodeId:\"L1AEt_4_s\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{WEHVNTjLS:resolvedLinks[1]},Pd_SV8XXg:{WEHVNTjLS:resolvedLinks[3]},UCGPDF5VO:{WEHVNTjLS:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{height:\"100%\",id:\"L1AEt_4_s\",layoutId:\"L1AEt_4_s\",RM5757Pv0:\"YouTube\",U6p8XXCP0:\"Visit The Coaching Zone\",variant:\"FPtT2yWek\",WEHVNTjLS:resolvedLinks[0],width:\"100%\",Xb1u7kLBL:false,zYb6O9uqB:false})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined},{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined},{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined},{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-np1vg3-container\",\"data-framer-appear-id\":\"np1vg3\",initial:animation4,nodeId:\"ynZkNcIUP\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{FXYZfOus8:resolvedLinks1[1]},Pd_SV8XXg:{FXYZfOus8:resolvedLinks1[3]},UCGPDF5VO:{FXYZfOus8:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonsSecondary,{F96WTGcsn:true,FXYZfOus8:resolvedLinks1[0],height:\"100%\",id:\"ynZkNcIUP\",layoutId:\"ynZkNcIUP\",P8LVghhAP:\"YouTube\",RqfuTlnJW:false,tlk6mWNdX:true,variant:\"ZtNXSD4sO\",width:\"100%\",Wk1R_U47Y:\"Visit The Community Hub\"})})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ijt8y1\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1i8cy2u\",\"data-framer-appear-id\":\"1i8cy2u\",\"data-framer-name\":\"Logos\",id:elementId2,initial:animation1,optimized:true,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15g7w19\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:\"394.8187px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:762,width:\"395px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-a3sxgy-container\",nodeId:\"NdY9qn3LF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(Device,{emtXTtjus:\"pflx0dwLd\",gCAH6ImjH:addImageAlt({src:\"https://framerusercontent.com/images/43p96yXWJ5afrMPnxjRPGpnpSW8.jpg\",srcSet:\"https://framerusercontent.com/images/43p96yXWJ5afrMPnxjRPGpnpSW8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/43p96yXWJ5afrMPnxjRPGpnpSW8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/43p96yXWJ5afrMPnxjRPGpnpSW8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/43p96yXWJ5afrMPnxjRPGpnpSW8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/43p96yXWJ5afrMPnxjRPGpnpSW8.jpg 4570w\"},\"\"),height:\"100%\",id:\"NdY9qn3LF\",layoutId:\"NdY9qn3LF\",style:{height:\"100%\",width:\"100%\"},variant:\"JU8MxDCZf\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-smc0pt hidden-1a3mp3t hidden-1fkn8yj\",\"data-framer-name\":\"UI Card\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{scale:.8},whileTap:animation8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yat99k\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j4o2bg\",\"data-styles-preset\":\"aImoLKpNg\",children:\"Balanced Nutrition\"})}),className:\"framer-1rflshu\",\"data-framer-name\":\"Subheading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vl9kq5\",\"data-framer-name\":\"Tab Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-159qpry\",\"data-framer-name\":\"Filter Tabs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-ca560a63-a71e-4898-a0f9-6ef1fc861efb, rgb(255, 255, 255))\"},children:\"All\"})}),className:\"framer-cubgp6\",\"data-framer-name\":\"All\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-e68293a1-764b-4cef-b9d0-b050dd9cfb83, rgba(255, 255, 255, 0.6))\"},children:\"Breakfast\"})}),className:\"framer-1elzbze\",\"data-framer-name\":\"Business\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-e68293a1-764b-4cef-b9d0-b050dd9cfb83, rgba(255, 255, 255, 0.6))\"},children:\"Lunch\"})}),className:\"framer-kt96f9\",\"data-framer-name\":\"Fashion\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-e68293a1-764b-4cef-b9d0-b050dd9cfb83, rgba(255, 255, 255, 0.6))\"},children:\"Dinner\"})}),className:\"framer-cxyj4q\",\"data-framer-name\":\"Health\",fonts:[\"FS;Manrope-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-117qwin\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l9lw7j\",\"data-framer-name\":\"Active Divider\"})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2464,pixelWidth:1856,sizes:\"240px\",src:\"https://framerusercontent.com/images/kutUUgtih78lXBZaaIY2CSDblCI.png\",srcSet:\"https://framerusercontent.com/images/kutUUgtih78lXBZaaIY2CSDblCI.png?scale-down-to=1024 771w,https://framerusercontent.com/images/kutUUgtih78lXBZaaIY2CSDblCI.png?scale-down-to=2048 1542w,https://framerusercontent.com/images/kutUUgtih78lXBZaaIY2CSDblCI.png 1856w\"},className:\"framer-miyhxi\",\"data-framer-name\":\"Image\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l1z2v4 hidden-1a3mp3t hidden-1fkn8yj\",\"data-framer-name\":\"feature-visual-01\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-150ncig\",\"data-framer-name\":\"widget\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y5f520\",\"data-framer-name\":\"Rectangle 148248\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bbmkp0\",\"data-border\":true,\"data-framer-name\":\"widget\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1voxki5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j4o2bg\",\"data-styles-preset\":\"aImoLKpNg\",children:\"Your Health Data\"})}),className:\"framer-ls0x8y\",\"data-framer-name\":\"Subheading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g6ll5h\",\"data-framer-name\":\"line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3p53vw\",\"data-framer-name\":\"line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jhd37m\",\"data-framer-name\":\"line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mnr9l2\",\"data-framer-name\":\"Ellipse 6196\",style:{transformPerspective:1200},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation16,className:\"framer-1838evi\",\"data-border\":true,\"data-framer-appear-id\":\"1838evi\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation18,className:\"framer-1t96spn\",\"data-border\":true,\"data-framer-appear-id\":\"1t96spn\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation19,className:\"framer-19qowcg\",\"data-border\":true,\"data-framer-appear-id\":\"19qowcg\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation20,className:\"framer-1s3jeev\",\"data-border\":true,\"data-framer-appear-id\":\"1s3jeev\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation21,className:\"framer-hfgbhz\",\"data-border\":true,\"data-framer-appear-id\":\"hfgbhz\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation22,className:\"framer-1qekx2o\",\"data-border\":true,\"data-framer-appear-id\":\"1qekx2o\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation23,className:\"framer-xb2n1w\",\"data-border\":true,\"data-framer-appear-id\":\"xb2n1w\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation24,className:\"framer-7xzjg\",\"data-border\":true,\"data-framer-appear-id\":\"7xzjg\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation25,className:\"framer-1ryhwys\",\"data-border\":true,\"data-framer-appear-id\":\"1ryhwys\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation26,className:\"framer-1nq1vrz\",\"data-border\":true,\"data-framer-appear-id\":\"1nq1vrz\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation27,className:\"framer-1xjp2el\",\"data-border\":true,\"data-framer-appear-id\":\"1xjp2el\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation28,className:\"framer-g09cw\",\"data-border\":true,\"data-framer-appear-id\":\"g09cw\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation29,className:\"framer-1wlso28\",\"data-border\":true,\"data-framer-appear-id\":\"1wlso28\",\"data-framer-name\":\"pill\",initial:animation17,optimized:true,style:{transformPerspective:1200}})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oxandb hidden-1a3mp3t hidden-1fkn8yj\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/j2airH07Phi5vgG0merJmlVBC4.webp\"},className:\"framer-1vop1q9\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation30,className:\"framer-vf1ba8\",\"data-border\":true,\"data-framer-appear-id\":\"vf1ba8\",\"data-framer-name\":\"Block\",initial:animation31,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j4o2bg\",\"data-styles-preset\":\"aImoLKpNg\",children:\"Your Dedicated Health Coach\"})}),className:\"framer-1sugmyy\",\"data-framer-name\":\"Text Button\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15moqk7\",\"data-framer-name\":\"Image\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-yu38zd hidden-1a3mp3t hidden-1fkn8yj\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-35ls45\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-173exv9\",\"data-framer-name\":\"Social-Proof-Tip\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gsivxd\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},children:\"Join 50+ Healthy \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},children:\"Executives Today\"})]}),className:\"framer-1g6e2ul\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tyqpzv\",\"data-framer-name\":\"Profiles\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,sizes:\"24px\",src:\"https://framerusercontent.com/images/b9nu1QU2Wt1DIx7CIs7pWoPmiVo.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/b9nu1QU2Wt1DIx7CIs7pWoPmiVo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/b9nu1QU2Wt1DIx7CIs7pWoPmiVo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/b9nu1QU2Wt1DIx7CIs7pWoPmiVo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/b9nu1QU2Wt1DIx7CIs7pWoPmiVo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/b9nu1QU2Wt1DIx7CIs7pWoPmiVo.jpg 8063w\"},className:\"framer-3aius8\",\"data-framer-name\":\"PP1\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:399,intrinsicWidth:399,pixelHeight:399,pixelWidth:399,src:\"https://framerusercontent.com/images/EJefr5fJvuOwno77six4SXpLZnA.jpeg\"},className:\"framer-73zkul\",\"data-framer-name\":\"PP2\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:4724,pixelWidth:3149,sizes:\"24px\",src:\"https://framerusercontent.com/images/rsJ7qH7Mbs7CJkuvl24AzIdFM8Y.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rsJ7qH7Mbs7CJkuvl24AzIdFM8Y.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/rsJ7qH7Mbs7CJkuvl24AzIdFM8Y.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/rsJ7qH7Mbs7CJkuvl24AzIdFM8Y.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/rsJ7qH7Mbs7CJkuvl24AzIdFM8Y.jpg 3149w\"},className:\"framer-cbr4n4\",\"data-framer-name\":\"PP3\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/lpITPEykwDSRklvUdN7SyrEvXgo.jpeg\"},className:\"framer-1l4da53\",\"data-framer-name\":\"PP4\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/bcx325UNyNBkyiA3RLmnSx3AivQ.jpeg\"},className:\"framer-1xuechz\",\"data-framer-name\":\"PP5\",transformTemplate:transformTemplate2})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w7y6qs\",\"data-framer-name\":\"Tip\",style:{rotate:45},transformTemplate:transformTemplate3})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4nky4l\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j4o2bg\",\"data-styles-preset\":\"aImoLKpNg\",children:\"TCC Community\"})}),className:\"framer-hu2n8o\",fonts:[\"Inter\"],text:xhhXTHb64A1OOgZneh,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:179,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fk1zgo-container\",nodeId:\"WVmjuaSFc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MiniReview1,{height:\"100%\",id:\"WVmjuaSFc\",layoutId:\"WVmjuaSFc\",variant:\"TbnGyRzhv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1cu7zyf\",\"data-framer-name\":\"Logos\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ukv1y0\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lqzv3o\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ktf0t\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dgcz8a\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Sticking to a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0gaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\"},children:\"health and wellness routine\"}),\" that breeds \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"long term results\"}),\" is one of the toughest \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"challenges you're facing\"}),\" today. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"That\u2019s where \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"The Consistency Club\"}),\" comes in. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We coach people like you to master the \",/*#__PURE__*/_jsx(\"em\",{children:\"one\"}),\" powerful lifestyle shift that drives \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"lasting mental, physical, and overall fulfilment\"}),\" - Consistency.\"]})})},UCGPDF5VO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Sticking to a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0gaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\"},children:\"health and wellness routine\"}),\" that breeds \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"long term results\"}),\" is one of the toughest \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"challenges you're facing\"}),\" today. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"That\u2019s where \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"The Consistency Club\"}),\" comes in. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We coach people like you to master the \",/*#__PURE__*/_jsx(\"em\",{children:\"one\"}),\" powerful lifestyle shift that drives \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"lasting mental, physical, and overall fulfilment\"}),\" - Consistency.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation32,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"Sticking to a \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0gaXRhbGlj\",\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\"},children:\"health and wellness routine\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\" that breeds \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"900\"},children:\"long term results\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\" is one of the toughest \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"900\"},children:\"challenges you're facing\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\" today. \"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"That\u2019s where \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"900\"},children:\"The Consistency Club\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\" comes in. \"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:[\"We coach people like you to master the \",/*#__PURE__*/_jsx(\"em\",{children:\"one\"}),\" powerful lifestyle shift that drives \"]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"900\"},children:\"lasting mental, physical, and overall fulfilment\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\" - Consistency.\"})]})}),className:\"framer-159rema\",\"data-framer-name\":\"We know what\u2019s going on. You need top-notch design to stand out in the tech world, but hiring in-house designers can be costly and time-consuming. That\u2019s when it comes in.\",effect:textEffect1,fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-italic\",\"FS;Satoshi-medium italic\",\"FS;Satoshi-black\",\"FS;Satoshi-black italic\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13udsoo\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",style:{\"--framer-text-alignment\":\"center\"},children:\"We Have 2 Core Offers To Help You\u2026\"})}),className:\"framer-1a3xhfe\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1y18ozd\",\"data-framer-name\":\"Benefits\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10u0f42\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our 1-1 Coaching Is For You If\u2026\"})}),className:\"framer-lwy4pn\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"106px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 20.0908%, rgba(167, 167, 167, 0.13) 54.5045%, rgba(255, 255, 255, 0.46) 100%)\"},children:\"01\"})})})},Pd_SV8XXg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"127px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 20.0908%, rgba(167, 167, 167, 0.13) 54.5045%, rgba(255, 255, 255, 0.46) 100%)\"},children:\"01\"})})})},UCGPDF5VO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"85px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 20.0908%, rgba(167, 167, 167, 0.13) 54.5045%, rgba(255, 255, 255, 0.46) 100%)\"},children:\"01\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"127px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 20.0908%, rgba(167, 167, 167, 0.13) 54.5045%, rgba(255, 255, 255, 0.46) 100%)\"},children:\"01\"})})}),className:\"framer-1qtp0ep\",\"data-framer-name\":\"H2\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjtz3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bhzm4c-container\",isModuleExternal:true,nodeId:\"heQgbl_Oj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"heQgbl_Oj\",layoutId:\"heQgbl_Oj\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-188fxj7\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"347px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-1xh9i2t\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eehg0p-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"VGLUCabHB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"VGLUCabHB\",isForwardsDirection:true,layoutId:\"VGLUCabHB\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/DhxHyme9Y2G6rUsqdtFwMc9w.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"you lack motivation and routine\"})}),className:\"framer-14vqqb8\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hqf97l\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"347px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-uac9ix\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1595xdg-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"iCTJzaaBL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"iCTJzaaBL\",isForwardsDirection:true,layoutId:\"iCTJzaaBL\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/dvF9AkRGSUbiy7IkAd0j4TNXn3E.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e29z30\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You struggle to find the time in your busy schedule\"})}),className:\"framer-b4b1k6\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16rv2il\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"346px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-5h0lox\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6u69nq-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"pDNXSnibB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"pDNXSnibB\",isForwardsDirection:true,layoutId:\"pDNXSnibB\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/BoskroRNhDpjkrLw4yDOmN07Vc.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You have unwanted belly fat\"})}),className:\"framer-123zmu7\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gskruq\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"347px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-out0l3\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dv27dk-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"c5d_OaWIC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"c5d_OaWIC\",isForwardsDirection:true,layoutId:\"c5d_OaWIC\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/A9rLP5zlwTJTdtiNCSEsmdzEZM.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fdp2we\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"your energy is low or inconsistent\"})}),className:\"framer-1jwll8m\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jgd61p-container\",isModuleExternal:true,nodeId:\"XyanvyVJ8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"XyanvyVJ8\",layoutId:\"XyanvyVJ8\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xmf7qf\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"347px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-a5x2lh\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qo7ksq-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"ir3xcE1hV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"ir3xcE1hV\",isForwardsDirection:true,layoutId:\"ir3xcE1hV\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/hLz4LcSfxQC9DYjNn98apLALM.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You travel for business\"})}),className:\"framer-18d40h8\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-71ysm8\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"346px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-bm149m\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-asbf0o-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"WuqQ5hzA_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"WuqQ5hzA_\",isForwardsDirection:true,layoutId:\"WuqQ5hzA_\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/a3U3rxjXGXJIgWLN13EFLgk5ow4.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"YOU CAN'T RUN 10K\"})}),className:\"framer-ufo10u\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10h2mhm\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"347px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-1yztt53\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1innpzp-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"TKi8ZLBW_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"TKi8ZLBW_\",isForwardsDirection:true,layoutId:\"TKi8ZLBW_\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/0UtQIUz1wVVnsP8wBFwbiaJJk.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pwtmi3\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You have tried other diets, coaches, PT\u2019s and nothings ever stuck\"})}),className:\"framer-1msoufx\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d5qps1\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"347px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-18vkpbg\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uucwfq-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"o4R0swPpa\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"o4R0swPpa\",isForwardsDirection:true,layoutId:\"o4R0swPpa\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/qFsCItxESESz6QDNGbtVPlrhXE8.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You have poor flexibility & mobility\"})}),className:\"framer-1i5qvk9\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-psz02d-container\",isModuleExternal:true,nodeId:\"UvRzaeAJ6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"UvRzaeAJ6\",layoutId:\"UvRzaeAJ6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11f4g9u\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"347px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-11lvwlz\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ngwn88-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"aR7gBlZSy\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"aR7gBlZSy\",isForwardsDirection:true,layoutId:\"aR7gBlZSy\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/9oIKurUer7L5G1Nnf7BGdUWyU.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tslqr0\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"You have poor posture\"})}),className:\"framer-1yzj9ii\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gyp2e2\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"346px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-qpmpi3\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z18kab-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"q_5WviW8Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"q_5WviW8Z\",isForwardsDirection:true,layoutId:\"q_5WviW8Z\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/QGq4Uz3XwjkEt5Tw6vtwrmWKR4.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"You\u2019re not that strong\"})}),className:\"framer-1y9gqad\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c3p13r\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"347px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-15h67s6\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nf1f9p-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"CcmC22EpN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"CcmC22EpN\",isForwardsDirection:true,layoutId:\"CcmC22EpN\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/JHjAhM83Gbs7mI0a4v3n6W5rc.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"You hate what you see in the mirror or how you feel in a suit\"})}),className:\"framer-1c1djxj\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-twhulf\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"346px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-b4ddoo\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i31k4o-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"dSLk8iRUT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"dSLk8iRUT\",isForwardsDirection:true,layoutId:\"dSLk8iRUT\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/HyqIHSTiH4xPlAfP2qQHMBWjY.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"You\u2019re a busy executive, owner or founder ages 35+\"})}),className:\"framer-krnynn\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-144b2ge hidden-1a3mp3t hidden-1fkn8yj\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nl26ab\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",style:{\"--framer-text-alignment\":\"center\"},children:[\"The result? A Happier\",/*#__PURE__*/_jsx(\"br\",{}),\"and Healthier You\"]})}),className:\"framer-vt56uf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-i5347y\",\"data-styles-preset\":\"v5qlxqQUW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca560a63-a71e-4898-a0f9-6ef1fc861efb, rgb(201, 201, 201))\"},children:\"The Consistency Club Coaching is perfect for you if you're looking to make lasting change to your health and overall wellbeing.\"})}),className:\"framer-irit9o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined},{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ig05z-container\",nodeId:\"imo4wvzme\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pd_SV8XXg:{l1gPDCIox:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{erbCBAez1:\"VISIT THE COACHING ZONE\",height:\"100%\",id:\"imo4wvzme\",J2FI0NDh9:false,l1gPDCIox:resolvedLinks2[0],layoutId:\"imo4wvzme\",variant:\"GAjjYepPB\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vrqpbu-container\",layoutScroll:true,nodeId:\"oXXJEV4uK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{variant:\"IHsFmja_1\"},UCGPDF5VO:{variant:\"IHsFmja_1\"}},children:/*#__PURE__*/_jsx(NavigationNavigation,{height:\"100%\",id:\"oXXJEV4uK\",layoutId:\"oXXJEV4uK\",style:{width:\"100%\"},variant:\"Mwdbh7mnz\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vy3ijp hidden-1a3mp3t\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bm0qfd-container hidden-1fkn8yj\",\"data-framer-name\":\"Body transform - desktop\",id:elementId5,isAuthoredByUser:true,isModuleExternal:true,name:\"Body transform - desktop\",nodeId:\"IZ9KJAN5k\",ref:ref6,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.64)\",arrowGap:10,arrowPadding:30,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",id:\"IZ9KJAN5k\",intervalControl:5,itemAmount:1,layoutId:\"IZ9KJAN5k\",name:\"Body transform - desktop\",padding:0,paddingBottom:0,paddingLeft:64,paddingPerSide:true,paddingRight:64,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.section,{className:\"framer-xbkst7\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",children:\"CLIENT TRANSFORMATION\"})}),className:\"framer-251iif\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1474ii1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-crayuz\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12m0ke1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xjl44w\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cn4ump\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ll4pxw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"JUSTIN, 38\"})}),className:\"framer-t1tuci\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"BUSINESS OWNER\"})}),className:\"framer-w6nca2\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q3ti2z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-1xjmm5e\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wrs1u5-container\",inComponentSlot:true,nodeId:\"QD3V16VYR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"QD3V16VYR\",layoutId:\"QD3V16VYR\",style:{width:\"100%\"},urRBn5pkB:\"Lost 57lbs in 120 Days\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1btg1to-container\",inComponentSlot:true,nodeId:\"RemQl221N\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"RemQl221N\",layoutId:\"RemQl221N\",style:{width:\"100%\"},urRBn5pkB:\"Strongest He's Ever Been\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ba6iju-container\",inComponentSlot:true,nodeId:\"Y8eet9xbM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"Y8eet9xbM\",layoutId:\"Y8eet9xbM\",style:{width:\"100%\"},urRBn5pkB:\"More Present With His 3 Daughters\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7o6zc9-container\",inComponentSlot:true,nodeId:\"BQ1Lxp6YI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"BQ1Lxp6YI\",layoutId:\"BQ1Lxp6YI\",style:{width:\"100%\"},urRBn5pkB:\"Daily Sleep Score Increased By 37%\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xgeedx-container\",inComponentSlot:true,nodeId:\"HvmDOqQi_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"HvmDOqQi_\",layoutId:\"HvmDOqQi_\",style:{width:\"100%\"},urRBn5pkB:\"Has Doubled His Business ( Atrributes this is improved energy, discipline, confidence and routine)\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rciplk\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1blnrm0\",children:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-j9f9r6\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"476.4565px\",src:\"https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png\",srcSet:\"https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png 1080w\"},className:\"framer-au842c\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(189, 189, 189)\",\"--framer-text-transform\":\"uppercase\"},children:\"BEFORE / AFTER\"})}),className:\"framer-1mr22x4\",\"data-framer-name\":\"Before\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-porglf\",\"data-framer-name\":\"TCC SVG\",fill:\"black\",intrinsicHeight:718,intrinsicWidth:980,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 980 718.2\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1\"><path class=\"cls-1\" d=\"M701.3 0H543.8l-10.7 71.2h157.5c139.1 0 235.4 113.2 214.6 252.3-20.8 139.1-151 252.3-290.1 252.3H457.6L446.9 647H289.4C150.3 647 54 533.8 74.8 394.7c20.8-139.1 151-252.3 290.1-252.3h157.5l10.7-71.2H375.6c-178.4 0-345.3 145.1-372 323.5-26.7 178.4 96.7 323.5 275.1 323.5h157.5l10.7-71.2h157.5c178.4 0 345.2-145.1 371.9-323.5C1003.1 145.1 879.7 0 701.3 0Z\"/><path class=\"cls-1\" d=\"M762.8 323.5c-9.1 60.6-65.8 109.9-126.4 109.9H478.9l-10.7 71.2h157.5c99.9 0 193.3-81.3 208.2-181.1 14.9-99.9-54.1-181.1-154-181.1H522.4l-10.7 71.2h157.5c60.6 0 102.6 49.3 93.5 109.9Z\"/><path class=\"cls-1\" d=\"M468.2 504.6H310.7c-60.6 0-102.6-49.3-93.5-109.9 9.1-60.6 65.8-109.9 126.4-109.9h157.5l10.7-71.2H354.3c-99.9 0-193.3 81.3-208.2 181.1-14.9 99.9 54.1 181.1 154 181.1h157.5l10.7-71.2Z\"/></g></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.section,{className:\"framer-10aqet3\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",children:\"CLIENT TRANSFORMATION\"})}),className:\"framer-1vbhil0\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ofswlw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1czukvd\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qyt5lg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k04fli\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-100l5wk\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1papv6s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MICHAEL, 41\"})}),className:\"framer-x0hl2w\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"DIRECTOR\"})}),className:\"framer-or6578\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2bw81p\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pge3hz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-14q6xdq\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u6e3ou-container\",inComponentSlot:true,nodeId:\"LQbITJs4H\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"LQbITJs4H\",layoutId:\"LQbITJs4H\",style:{width:\"100%\"},urRBn5pkB:\"15% less body fat\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d23hns-container\",inComponentSlot:true,nodeId:\"w94IBnqd4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"w94IBnqd4\",layoutId:\"w94IBnqd4\",style:{width:\"100%\"},urRBn5pkB:\"11% more skeletal muscle\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iwr1zn-container\",inComponentSlot:true,nodeId:\"VdgIHTCGe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"VdgIHTCGe\",layoutId:\"VdgIHTCGe\",style:{width:\"100%\"},urRBn5pkB:\"Newfound love for training\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gagz4c-container\",inComponentSlot:true,nodeId:\"vSbcmh1k0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"vSbcmh1k0\",layoutId:\"vSbcmh1k0\",style:{width:\"100%\"},urRBn5pkB:\"Has energy to be super dad\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bgbf0b-container\",inComponentSlot:true,nodeId:\"ksL619qq7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"ksL619qq7\",layoutId:\"ksL619qq7\",style:{width:\"100%\"},urRBn5pkB:\"Loves exercise\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t6zd9j\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dny647\",children:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1tc3qyw\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"479.9946px\",src:\"https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png\",srcSet:\"https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png?scale-down-to=512 512w,https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png 1982w\"},className:\"framer-dw2jmp\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(189, 189, 189)\",\"--framer-text-transform\":\"uppercase\"},children:\"BEFORE / AFTER\"})}),className:\"framer-12y63x4\",\"data-framer-name\":\"Before\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xgxom9\",\"data-framer-name\":\"TCC SVG\",fill:\"black\",intrinsicHeight:718,intrinsicWidth:980,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 980 718.2\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1\"><path class=\"cls-1\" d=\"M701.3 0H543.8l-10.7 71.2h157.5c139.1 0 235.4 113.2 214.6 252.3-20.8 139.1-151 252.3-290.1 252.3H457.6L446.9 647H289.4C150.3 647 54 533.8 74.8 394.7c20.8-139.1 151-252.3 290.1-252.3h157.5l10.7-71.2H375.6c-178.4 0-345.3 145.1-372 323.5-26.7 178.4 96.7 323.5 275.1 323.5h157.5l10.7-71.2h157.5c178.4 0 345.2-145.1 371.9-323.5C1003.1 145.1 879.7 0 701.3 0Z\"/><path class=\"cls-1\" d=\"M762.8 323.5c-9.1 60.6-65.8 109.9-126.4 109.9H478.9l-10.7 71.2h157.5c99.9 0 193.3-81.3 208.2-181.1 14.9-99.9-54.1-181.1-154-181.1H522.4l-10.7 71.2h157.5c60.6 0 102.6 49.3 93.5 109.9Z\"/><path class=\"cls-1\" d=\"M468.2 504.6H310.7c-60.6 0-102.6-49.3-93.5-109.9 9.1-60.6 65.8-109.9 126.4-109.9h157.5l10.7-71.2H354.3c-99.9 0-193.3 81.3-208.2 181.1-14.9 99.9 54.1 181.1 154 181.1h157.5l10.7-71.2Z\"/></g></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.section,{className:\"framer-r2zf4i\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",children:\"CLIENT TRANSFORMATION\"})}),className:\"framer-ikdx0i\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u30xgn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ek1yz\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pfw4s3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1stl0mw\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hrnb9s\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g49o34\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"JONATHAN, 57\"})}),className:\"framer-muwrhy\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"CEO\"})}),className:\"framer-19al5sb\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ny7djr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-wuomja\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l4msh3-container\",inComponentSlot:true,nodeId:\"nHL69yiCq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"nHL69yiCq\",layoutId:\"nHL69yiCq\",style:{width:\"100%\"},urRBn5pkB:\"Lost 21kg in 180 days\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kq9eoi-container\",inComponentSlot:true,nodeId:\"hr0sr2Yyq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"hr0sr2Yyq\",layoutId:\"hr0sr2Yyq\",style:{width:\"100%\"},urRBn5pkB:\"Enhanced daily energy\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l80ifz-container\",inComponentSlot:true,nodeId:\"yLwCww76j\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"yLwCww76j\",layoutId:\"yLwCww76j\",style:{width:\"100%\"},urRBn5pkB:\"System to overcome schedule\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1amvn6v-container\",inComponentSlot:true,nodeId:\"HqxbOLVWk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"HqxbOLVWk\",layoutId:\"HqxbOLVWk\",style:{width:\"100%\"},urRBn5pkB:\"Newfound confidence\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qtpphw-container\",inComponentSlot:true,nodeId:\"Z15FwyGtY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"Z15FwyGtY\",layoutId:\"Z15FwyGtY\",style:{width:\"100%\"},urRBn5pkB:\"Improved muscle mass index\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xlbl7s\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kipuea\",children:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-meb2t7\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"479.9946px\",src:\"https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png\",srcSet:\"https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png?scale-down-to=512 512w,https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png 1080w\"},className:\"framer-85alua\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(189, 189, 189)\",\"--framer-text-transform\":\"uppercase\"},children:\"BEFORE / AFTER\"})}),className:\"framer-17ih6vv\",\"data-framer-name\":\"Before\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j7o34d\",\"data-framer-name\":\"TCC SVG\",fill:\"black\",intrinsicHeight:718,intrinsicWidth:980,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 980 718.2\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1\"><path class=\"cls-1\" d=\"M701.3 0H543.8l-10.7 71.2h157.5c139.1 0 235.4 113.2 214.6 252.3-20.8 139.1-151 252.3-290.1 252.3H457.6L446.9 647H289.4C150.3 647 54 533.8 74.8 394.7c20.8-139.1 151-252.3 290.1-252.3h157.5l10.7-71.2H375.6c-178.4 0-345.3 145.1-372 323.5-26.7 178.4 96.7 323.5 275.1 323.5h157.5l10.7-71.2h157.5c178.4 0 345.2-145.1 371.9-323.5C1003.1 145.1 879.7 0 701.3 0Z\"/><path class=\"cls-1\" d=\"M762.8 323.5c-9.1 60.6-65.8 109.9-126.4 109.9H478.9l-10.7 71.2h157.5c99.9 0 193.3-81.3 208.2-181.1 14.9-99.9-54.1-181.1-154-181.1H522.4l-10.7 71.2h157.5c60.6 0 102.6 49.3 93.5 109.9Z\"/><path class=\"cls-1\" d=\"M468.2 504.6H310.7c-60.6 0-102.6-49.3-93.5-109.9 9.1-60.6 65.8-109.9 126.4-109.9h157.5l10.7-71.2H354.3c-99.9 0-193.3 81.3-208.2 181.1-14.9 99.9 54.1 181.1 154 181.1h157.5l10.7-71.2Z\"/></g></svg>',withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined},{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined},{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-160ik4h-container\",nodeId:\"v1UknPAYE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pd_SV8XXg:{l1gPDCIox:resolvedLinks3[2]},UCGPDF5VO:{l1gPDCIox:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{erbCBAez1:\"TRANSFORM YOUR LIFE TODAY\",height:\"100%\",id:\"v1UknPAYE\",J2FI0NDh9:false,l1gPDCIox:resolvedLinks3[0],layoutId:\"v1UknPAYE\",variant:\"GAjjYepPB\",width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-120e1z8-container hidden-72rtr7 hidden-1y12k4j\",isModuleExternal:true,nodeId:\"bPKCh8zUI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.59)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},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:80,height:\"100%\",id:\"bPKCh8zUI\",layoutId:\"bPKCh8zUI\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,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:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.section,{className:\"framer-1akg9y3\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CLIENT \",/*#__PURE__*/_jsx(\"br\",{}),\"TRANSFORMATION\"]})}),className:\"framer-gxw7i\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l4r4q8\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xnzq9v\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png\",srcSet:\"https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png 1080w\"},className:\"framer-jrs05d\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qjdmkt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qk6khx\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19qat6o\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y4jatj\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wp2gwr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"JUSTIN, 38\"})}),className:\"framer-1pjsqhf\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"BUSINESS OWNER\"})}),className:\"framer-1mvao05\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-kxyg99\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kt25pr-container\",inComponentSlot:true,nodeId:\"TrUZtgySo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"TrUZtgySo\",layoutId:\"TrUZtgySo\",style:{width:\"100%\"},urRBn5pkB:\"Lost 57lbs in 120 Days\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwivoy-container\",inComponentSlot:true,nodeId:\"RETRGP9z3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"RETRGP9z3\",layoutId:\"RETRGP9z3\",style:{width:\"100%\"},urRBn5pkB:\"Strongest He's Ever Been\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-go3qa2-container\",inComponentSlot:true,nodeId:\"BR19CJw_x\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"BR19CJw_x\",layoutId:\"BR19CJw_x\",style:{width:\"100%\"},urRBn5pkB:\"More Present With His 3 Daughters\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cysfu-container\",inComponentSlot:true,nodeId:\"I_rCXXFG0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"I_rCXXFG0\",layoutId:\"I_rCXXFG0\",style:{width:\"100%\"},urRBn5pkB:\"Daily Sleep Score Increased By 37%\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bz5vax-container\",inComponentSlot:true,nodeId:\"cMwtjuhTT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"cMwtjuhTT\",layoutId:\"cMwtjuhTT\",style:{width:\"100%\"},urRBn5pkB:\"Has Doubled His Business ( Atrributes this is improved energy, discipline, confidence and routine)\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsxs(motion.section,{className:\"framer-ofogd9\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CLIENT \",/*#__PURE__*/_jsx(\"br\",{}),\"TRANSFORMATION\"]})}),className:\"framer-v2l8k\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ix2618\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vm1yyv\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1xhuujk\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png\",srcSet:\"https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png?scale-down-to=512 512w,https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png 1982w\"},className:\"framer-1ps3eld\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jx063l\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hrlwom\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gfwkxd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2aump6\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-evltmr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MICHAEL, 41\"})}),className:\"framer-6v034t\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"DIRECTOR\"})}),className:\"framer-wh2cjd\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ndfgz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-1bvjymc\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3tb01c-container\",inComponentSlot:true,nodeId:\"yBZs3T_cI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"yBZs3T_cI\",layoutId:\"yBZs3T_cI\",style:{width:\"100%\"},urRBn5pkB:\"15% less body fat\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b6jleu-container\",inComponentSlot:true,nodeId:\"IQAEZiMMK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"IQAEZiMMK\",layoutId:\"IQAEZiMMK\",style:{width:\"100%\"},urRBn5pkB:\"11% more skeletal muscle\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t52iki-container\",inComponentSlot:true,nodeId:\"AI8lXaNtq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"AI8lXaNtq\",layoutId:\"AI8lXaNtq\",style:{width:\"100%\"},urRBn5pkB:\"Newfound love for training\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bejc21-container\",inComponentSlot:true,nodeId:\"Z78yvpTI0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"Z78yvpTI0\",layoutId:\"Z78yvpTI0\",style:{width:\"100%\"},urRBn5pkB:\"Has energy to be super dad\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18qqqz1-container\",inComponentSlot:true,nodeId:\"TnCOkwlWl\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"TnCOkwlWl\",layoutId:\"TnCOkwlWl\",style:{width:\"100%\"},urRBn5pkB:\"Loves exercise\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.section,{className:\"framer-1grkg5o\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CLIENT \",/*#__PURE__*/_jsx(\"br\",{}),\"TRANSFORMATION\"]})}),className:\"framer-73jiyt\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n38ilj\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7wmdiu\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png\",srcSet:\"https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png?scale-down-to=512 512w,https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png 1080w\"},className:\"framer-1ovd932\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6kozfb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q9aeb6\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fitgij\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nbisy9\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r24mb9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"JONATHAN, 57\"})}),className:\"framer-1rpdiz0\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"CEO\"})}),className:\"framer-vl8lur\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4t10sy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-1th5nov\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y8wo8-container\",inComponentSlot:true,nodeId:\"kWqp9F9q6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"kWqp9F9q6\",layoutId:\"kWqp9F9q6\",style:{width:\"100%\"},urRBn5pkB:\"Lost 21kg in 180 days\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ewg5sh-container\",inComponentSlot:true,nodeId:\"Uwtu3bQo_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"Uwtu3bQo_\",layoutId:\"Uwtu3bQo_\",style:{width:\"100%\"},urRBn5pkB:\"Enhanced daily energy\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y0m5nd-container\",inComponentSlot:true,nodeId:\"iHzN5byAu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"iHzN5byAu\",layoutId:\"iHzN5byAu\",style:{width:\"100%\"},urRBn5pkB:\"System to overcome schedule\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5x1lgy-container\",inComponentSlot:true,nodeId:\"Bdb0jD_Ez\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"Bdb0jD_Ez\",layoutId:\"Bdb0jD_Ez\",style:{width:\"100%\"},urRBn5pkB:\"Newfound confidence\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nmunit-container\",inComponentSlot:true,nodeId:\"D1DWkXQFe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"D1DWkXQFe\",layoutId:\"D1DWkXQFe\",style:{width:\"100%\"},urRBn5pkB:\"Improved muscle mass index\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.section,{className:\"framer-10p900s\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CLIENT \",/*#__PURE__*/_jsx(\"br\",{}),\"TRANSFORMATION\"]})}),className:\"framer-1dbgck9\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t9muqj\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-upmwzn\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png\",srcSet:\"https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png 1080w\"},className:\"framer-1lznzyp\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i8959r\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1chot2f\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-clctcl\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dffr2t\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12e1m7m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"JUSTIN, 42\"})}),className:\"framer-o2z672\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"HEAD OF CYBERSECURITY\"})}),className:\"framer-gluaf8\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7xws7i\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k9yqsb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-cmo5t9\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-z3vj4l-container\",inComponentSlot:true,nodeId:\"Wo1XglbGU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"Wo1XglbGU\",layoutId:\"Wo1XglbGU\",style:{width:\"100%\"},urRBn5pkB:\"Lost 17kg in 90 days\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebmpz0-container\",inComponentSlot:true,nodeId:\"yU2RBtGXi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"yU2RBtGXi\",layoutId:\"yU2RBtGXi\",style:{width:\"100%\"},urRBn5pkB:\"Lifting heavier & running longer\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9yi063-container\",inComponentSlot:true,nodeId:\"vBFXeLvf2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"vBFXeLvf2\",layoutId:\"vBFXeLvf2\",style:{width:\"100%\"},urRBn5pkB:\"More balanced relationship with alcohol\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16yo16-container\",inComponentSlot:true,nodeId:\"o_ZRPgwpp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"o_ZRPgwpp\",layoutId:\"o_ZRPgwpp\",style:{width:\"100%\"},urRBn5pkB:\"Newfound confidence\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gk7pa4-container\",inComponentSlot:true,nodeId:\"ThSlKwX1z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"ThSlKwX1z\",layoutId:\"ThSlKwX1z\",style:{width:\"100%\"},urRBn5pkB:\"Balanced daily energy\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1zy96k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6v2vzk\",\"data-framer-name\":\"Main\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66jczq\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",style:{\"--framer-text-alignment\":\"center\"},children:\"IF COACHING ISN'T A FIT, OUR COMMUNITY COULD BE\"})}),className:\"framer-iy8wjz\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"106px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 20.0908%, rgba(167, 167, 167, 0.13) 54.5045%, rgba(255, 255, 255, 0.46) 100%)\"},children:\"02\"})})})},Pd_SV8XXg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"127px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 20.0908%, rgba(167, 167, 167, 0.13) 54.5045%, rgba(255, 255, 255, 0.46) 100%)\"},children:\"02\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"127px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 20.0908%, rgba(167, 167, 167, 0.13) 54.5045%, rgba(255, 255, 255, 0.46) 100%)\"},children:\"02\"})})}),className:\"framer-70a0oj hidden-1fkn8yj\",\"data-framer-name\":\"H2\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"85px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 0, 0, 0) 20.0908%, rgba(167, 167, 167, 0.13) 54.5045%, rgba(255, 255, 255, 0.46) 100%)\"},children:\"02\"})})}),className:\"framer-kxlfv2 hidden-72rtr7 hidden-1a3mp3t hidden-1y12k4j\",\"data-framer-name\":\"H2\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-13d9zn\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4rlom5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d454c5\",\"data-framer-name\":\"Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",style:{\"--framer-text-alignment\":\"center\"},children:\"The result? A Happier and Healthier You\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",style:{\"--framer-text-alignment\":\"left\"},children:\"JOIN THE HEALTH HUSTLERS COMMUNITY\"})}),className:\"framer-16whmyi hidden-1a3mp3t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined},{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined},{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17bnubx-container hidden-1fkn8yj\",nodeId:\"sorHelS63\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{l1gPDCIox:resolvedLinks4[1]},Pd_SV8XXg:{l1gPDCIox:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{erbCBAez1:\"VISIT THE HEALTH HUSTLERS HUB\",height:\"100%\",id:\"sorHelS63\",J2FI0NDh9:false,l1gPDCIox:resolvedLinks4[0],layoutId:\"sorHelS63\",variant:\"GAjjYepPB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19j08l\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uri6sx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3286,intrinsicWidth:2191,pixelHeight:4240,pixelWidth:2384,positionX:\"71.1%\",positionY:\"9.3%\",sizes:\"72px\",src:\"https://framerusercontent.com/images/H9Ihuve8HaeDY5AEKA0wHXIlLxw.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/H9Ihuve8HaeDY5AEKA0wHXIlLxw.jpg?scale-down-to=1024 575w,https://framerusercontent.com/images/H9Ihuve8HaeDY5AEKA0wHXIlLxw.jpg?scale-down-to=2048 1151w,https://framerusercontent.com/images/H9Ihuve8HaeDY5AEKA0wHXIlLxw.jpg?scale-down-to=4096 2303w,https://framerusercontent.com/images/H9Ihuve8HaeDY5AEKA0wHXIlLxw.jpg 2384w\"},className:\"framer-5o6bz6\",\"data-border\":true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,pixelHeight:5616,pixelWidth:3744,sizes:\"72px\",src:\"https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg\",srcSet:\"https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/5P0eN6qtSxQg8Lrk6rw2GR9e7eI.jpg 3744w\"},className:\"framer-1dvnd6g\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8d8n\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0.16em\",\"--framer-text-color\":\"var(--token-ca3ed7c5-0894-4245-ba06-2dd625078cab, rgb(18, 18, 18))\"},children:\"YOU\"})}),className:\"framer-mk2shl\",fonts:[\"FS;Satoshi-black\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,pixelHeight:4e3,pixelWidth:5600,sizes:\"72px\",src:\"https://framerusercontent.com/images/ODnEw0sytIImctAr8fa7c4hFnU.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ODnEw0sytIImctAr8fa7c4hFnU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ODnEw0sytIImctAr8fa7c4hFnU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ODnEw0sytIImctAr8fa7c4hFnU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ODnEw0sytIImctAr8fa7c4hFnU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ODnEw0sytIImctAr8fa7c4hFnU.jpg 5600w\"},className:\"framer-3vfz3w\",\"data-border\":true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1es2dy4\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e68293a1-764b-4cef-b9d0-b050dd9cfb83, rgba(255, 255, 255, 0.6))\"},children:\"Our community is for you if\u2026\"})}),className:\"framer-1ulagwv hidden-1fkn8yj\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wfn458\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-35osuz-container\",isModuleExternal:true,nodeId:\"kCVRNOh8A\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{alignment:\"flex-start\",direction:\"right\"},UCGPDF5VO:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"kCVRNOh8A\",layoutId:\"kCVRNOh8A\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p8z4h4\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"247px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-1aclifr\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-msdnrt-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"DLNRK03jK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"DLNRK03jK\",isForwardsDirection:true,layoutId:\"DLNRK03jK\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/081xkDDYyIvLhCBBBmgWb3P8cA.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You don\u2019t want or need to invest in 1-1 coaching\"})}),className:\"framer-hpoy5u\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gyp7w9\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"247px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-1w9yivj\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mhnd55-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"l41xkvGgk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"l41xkvGgk\",isForwardsDirection:true,layoutId:\"l41xkvGgk\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/TEAij1Zw1KeS41dODWuE4bYb5FE.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You want to learn about exercise, nutrition, sleep + more\"})}),className:\"framer-koqm4\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7avfep\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"247px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-6utnfp\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tbt4fg-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"CqfleGpZW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"CqfleGpZW\",isForwardsDirection:true,layoutId:\"CqfleGpZW\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/8ze0Qpi6xCyxEqQ8NvNUmH0w.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You need help to solidify a healthy routine\"})}),className:\"framer-1dovpu8\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uzqdg1\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"247px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-zmnkti\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c44ym6-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"scAPAQ0dP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"scAPAQ0dP\",isForwardsDirection:true,layoutId:\"scAPAQ0dP\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/Zh7JopSUljJrbHsZyz9w6eh3lCk.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You sometimes lack motivation and self-accountability\"})}),className:\"framer-i9y5r8\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e68293a1-764b-4cef-b9d0-b050dd9cfb83, rgba(255, 255, 255, 0.6))\"},children:\"Our community is for you if\u2026\"})}),className:\"framer-1v5t3q3 hidden-72rtr7 hidden-1a3mp3t hidden-1y12k4j\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hevdox-container\",isModuleExternal:true,nodeId:\"nKn0JbOmp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{alignment:\"flex-start\",direction:\"left\"},UCGPDF5VO:{direction:\"left\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"nKn0JbOmp\",layoutId:\"nKn0JbOmp\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ar32x\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"247px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-brojqw\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xm36yg-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"W8WrpCrnH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"W8WrpCrnH\",isForwardsDirection:true,layoutId:\"W8WrpCrnH\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:.5,srcFile:\"https://framerusercontent.com/assets/3vU3sosaQg73BfOj7EqLSOVY.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You want access to direct ad hoc support to reach your goals\"})}),className:\"framer-1n1to31\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19jf8bx\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"247px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-93j2fn\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kbsy3-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"WHwDxhVZq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"WHwDxhVZq\",isForwardsDirection:true,layoutId:\"WHwDxhVZq\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/ipmyOwYceFLDgXCz5XhodzZTZDA.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You\u2019ll be a valuable member of our community\"})}),className:\"framer-m7q2n8\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-die0v3\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"247px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-1gdt6b1\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-190pbhd-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"aVXSFMKiW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"aVXSFMKiW\",isForwardsDirection:true,layoutId:\"aVXSFMKiW\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/ooGq3iC4rNPUhh3883OqJ1MIcSo.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You want to improve the way you look, feel and perform on your terms\"})}),className:\"framer-4tg2jh\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nij2yp\",\"data-framer-name\":\"Cards/Benefits\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.5,fit:\"tile\",intrinsicHeight:1074,intrinsicWidth:1074,pixelHeight:1070,pixelWidth:1070,positionX:\"left\",positionY:\"top\",sizes:\"247px\",src:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4R2hp7zqcUnPx6jlaIa7x2MRA.png 1070w\"},className:\"framer-lgmpfz\",\"data-framer-name\":\"Dots pattern\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-al6468-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"FGZjMBuTS\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"FGZjMBuTS\",isForwardsDirection:true,layoutId:\"FGZjMBuTS\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/uItjXqpD8aqZSk0maeEajBC98.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-cx2i90\",\"data-styles-preset\":\"WxGrfG9Zh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You\u2019re a busy professional in any sector, or any age.\"})}),className:\"framer-1n5r31w\",\"data-framer-name\":\"H4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined},{href:{webPageId:\"gf6tHfnp0\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{height:70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xzqbrb-container hidden-72rtr7 hidden-1a3mp3t hidden-1y12k4j\",nodeId:\"tqJCwqHsY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{l1gPDCIox:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{erbCBAez1:\"VISIT THE HEALTH HUSTLERS HUB\",height:\"100%\",id:\"tqJCwqHsY\",J2FI0NDh9:false,l1gPDCIox:resolvedLinks5[0],layoutId:\"tqJCwqHsY\",variant:\"GAjjYepPB\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17yzj1z\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1927,pixelWidth:2630,positionX:\"center\",positionY:\"center\",sizes:\"86px\",src:\"https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png\",srcSet:\"https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png 2630w\"},className:\"framer-1i83gf6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1927,pixelWidth:2630,positionX:\"center\",positionY:\"center\",sizes:\"86px\",src:\"https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png\",srcSet:\"https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/U6zIvL3QO3GOWjhTNJS9evdb8s.png 2630w\"},className:\"framer-b75kh\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition30},__framer__animateOnce:true,__framer__enter:animation34,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13ozrma\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",style:{\"--framer-text-alignment\":\"center\"},children:\"Start your health journey TODAY\"})}),className:\"framer-1fds6nj\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/2eed0604-555a-4b88-bc07-e35f511d52bf/submit\",className:\"framer-1txkf0b\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-viq5k9\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1hjjhgc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Name:\"})}),className:\"framer-17p2waj\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-p2qv6l\",inputName:\"Name\",placeholder:\"John Smith\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1rgw5e2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Occupation:\"})}),className:\"framer-13vo0gw\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1qllgpu\",inputName:\"Occupation\",placeholder:\"CEO - Example company\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1f1e820\",children:/*#__PURE__*/_jsxs(\"label\",{className:\"framer-wuvxt4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What service are you interested in?\"})}),className:\"framer-ru7lh4\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-vsejnd\",defaultValue:\"\",inputName:\"What service are you interested in?\",required:true,selectOptions:[{disabled:true,title:\"Select\u2026\",type:\"option\",value:\"\"},{title:\"1-1 Coaching\",type:\"option\",value:\"1-1 Coaching\"},{title:\"Community\",type:\"option\",value:\"Community\"}]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wjasa\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1xyty3f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Email:\"})}),className:\"framer-7q4znw\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-214cd4\",inputName:\"Email\",placeholder:\"john@company.com\",type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-jvi7nk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Phone Number:\"})}),className:\"framer-cic4k7\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1rw6ay7\",inputName:\"Phone number\",placeholder:\"(Inc area code)\",type:\"tel\"})]}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-8exbvs\",children:/*#__PURE__*/_jsxs(\"label\",{className:\"framer-abquok\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What would success look like for you?\"})}),className:\"framer-7rdrp0\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-e2lxvx\",defaultValue:\"\",inputName:\"What would success look like for you?\",required:true,selectOptions:[{disabled:true,title:\"Select\u2026\",type:\"option\",value:\"\"},{title:\"Lasting fat loss\",type:\"option\",value:\"Lasting fat loss\"},{title:\"More Energy\",type:\"option\",value:\"More Energy\"},{title:\"Consistency In Routine\",type:\"option\",value:\"Consistency In Routine\"},{title:\"More Muscle\",type:\"option\",value:\"More Muscle\"},{title:\"Improved Fitness and Health Markers\",type:\"option\",value:\"Improved Fitness and Health Markers\"},{title:\"Overall Longevity\",type:\"option\",value:\"Overall Longevity\"},{title:\"All Of The Above\",type:\"option\",value:\"All Of The Above\"}]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wzr4z5\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-buwl4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What do you feel is holding you back?\"})}),className:\"framer-o9dcfk\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-sqlfy8\",inputName:\"Name\",placeholder:\"e.g. Busy schedule, travel and no structure.\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-wvh9vs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"When would you ideally like to start your health journey?\"})}),className:\"framer-ob91hq\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-inenk5\",inputName:\"Name\",placeholder:\"I'd like to start...\",required:true,type:\"text\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-egyfnc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Why is now the right time?\"})}),className:\"framer-vtwy1m\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1xblgbe\",inputName:\"Name\",placeholder:\"I've spent years working hard in my career, sacrificing health...\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 120px)`},Pd_SV8XXg:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 240px)`},UCGPDF5VO:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1440px) - 168px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wcv8nx-container\",nodeId:\"gF86mSmrf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"gF86mSmrf\",layoutId:\"gF86mSmrf\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"omCMIjHkM\",success:\"tI_uiA4rc\"},\"UFfFxTFHT\"),width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.04em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-0afd1640-42dc-4cc1-b5d4-5e8497504d30, rgb(128, 128, 128))\"},children:[\"By submitting, I consent to the collection and processing of my personal data as provided in this form, in accordance with the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gp8pIbYOS\"},motionChild:true,nodeId:\"MJBgQlUGc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ogo7qf\",\"data-styles-preset\":\"WRCqY_KV9\",children:\"privacy policy\"})})]})}),className:\"framer-18q5q4p\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12mxlii-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JEQo3xhdt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"JEQo3xhdt\",intensity:10,layoutId:\"JEQo3xhdt\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-3fa9rk\",\"data-framer-name\":\"FAQ\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition30},__framer__animateOnce:true,__framer__enter:animation34,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qp1uq6\",\"data-framer-name\":\"Container Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ucmrwq\",\"data-styles-preset\":\"eIJT49EKw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c6f3752d-bcbb-4a1f-8f5a-c557c7d2f7e2, rgb(0, 0, 0))\"},children:\"Frequently Asked\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-127bs5p\",\"data-styles-preset\":\"rlt3swcBb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c6f3752d-bcbb-4a1f-8f5a-c557c7d2f7e2, rgb(0, 0, 0))\"},children:\"Frequently Asked\"})}),className:\"framer-e5heyq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fozbvw\",\"data-framer-name\":\"Text Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-761301eb-d39b-4e7d-a09d-efc591734cca, rgb(37, 37, 37))\"},children:\"Our dedicated team of health experts is committed to understanding your unique needs and objectives to drive lasting health success.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-761301eb-d39b-4e7d-a09d-efc591734cca, rgb(37, 37, 37))\"},children:\"Our dedicated team of health experts is committed to understanding your unique needs and objectives to drive lasting health success.\"})}),className:\"framer-hopepq\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition30},__framer__animateOnce:true,__framer__enter:animation34,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i81jk3\",\"data-framer-name\":\"Container Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bkssbg\",\"data-framer-name\":\"Column 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aap1wu-container\",nodeId:\"S_UziuiQT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I don\u2019t have enough time to commit to a fitness plan. How can I fit this into my schedule?\",height:\"100%\",id:\"S_UziuiQT\",layoutId:\"S_UziuiQT\",style:{width:\"100%\"},UQjxkvMEK:\"At The Consistency Club, we understand that time is precious. That\u2019s why we work with you to create a plan that fits seamlessly into your life. Whether it\u2019s short, effective workouts or flexible meal planning, we tailor everything to your schedule. Plus, our ongoing support ensures you\u2019re never alone in your journey, and we\u2019ll help you stay on track, even during busy times.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jkn8q1-container\",nodeId:\"BXYsxPXR4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I don\u2019t know where to start or what to do first. How can I gain structure?\",height:\"100%\",id:\"BXYsxPXR4\",layoutId:\"BXYsxPXR4\",style:{width:\"100%\"},UQjxkvMEK:\"Structure is key to long-term success, and that\u2019s exactly what we provide. We start by assessing your lifestyle and current habits, then create a custom plan that gives you clear, actionable steps. With our regular check-ins and guidance, you\u2019ll have the structure and accountability you need to stay on track and make real progress.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1enw37j-container\",nodeId:\"IXtlDwMaB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I\u2019ve struggled with my eating habits. Can I still see results?\",height:\"100%\",id:\"IXtlDwMaB\",layoutId:\"IXtlDwMaB\",style:{width:\"100%\"},UQjxkvMEK:\"Poor nutrition is a common obstacle, but it\u2019s one we can overcome together. We\u2019ll work with you to create a sustainable eating plan that fits your preferences and goals, without feeling restrictive or overwhelming. Small, consistent changes can lead to big results.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r1uac4-container\",nodeId:\"xFyimrCLp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I\u2019m struggling to lose stubborn body fat. Can you help me with this?\",height:\"100%\",id:\"xFyimrCLp\",layoutId:\"xFyimrCLp\",style:{width:\"100%\"},UQjxkvMEK:\"Yes, we can! Losing stubborn fat requires a combination of personalized nutrition, targeted exercise, and consistency. We\u2019ll help you identify what\u2019s working against your body and provide you with a tailored plan to burn fat, boost metabolism, and achieve sustainable results.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11rxhkx-container\",nodeId:\"alNjvUwNS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I have some niggling injuries that have held me back. Can I still work out?\",height:\"100%\",id:\"alNjvUwNS\",layoutId:\"alNjvUwNS\",style:{width:\"100%\"},UQjxkvMEK:\"Of course! We take injuries seriously and will work with you to create a safe, effective plan that accommodates any existing limitations. Our approach includes rehab-focused exercises, alternative movements, and strategies to help you strengthen and protect vulnerable areas while still progressing toward your fitness goals.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-171a8ds\",\"data-framer-name\":\"Column 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1no5eam-container\",nodeId:\"eSED0o0oh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I travel a lot for work. Can I still follow a plan?\",height:\"100%\",id:\"eSED0o0oh\",layoutId:\"eSED0o0oh\",style:{width:\"100%\"},UQjxkvMEK:\"Absolutely! We\u2019ve helped many clients who travel frequently. Our plans are designed to be flexible and portable, with workout routines you can do from anywhere and nutrition strategies that fit around your travel schedule. We\u2019ll support you in staying on track, no matter where you are.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k4gtnm-container\",nodeId:\"ALaRHxQzo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I feel constantly drained. How can I find the energy to work out?\",height:\"100%\",id:\"ALaRHxQzo\",layoutId:\"ALaRHxQzo\",style:{width:\"100%\"},UQjxkvMEK:\"Low energy is often a sign that your body is out of balance. We\u2019ll help you address this by creating a personalized plan that focuses on improving your energy through proper nutrition, sleep, and workouts that won\u2019t overburden you. With our support, you\u2019ll start feeling more energized and motivated as you progress.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16wjn2q-container\",nodeId:\"h_PHkg0NF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I don\u2019t know much about exercise or how to get started. Will I be able to do this?\",height:\"100%\",id:\"h_PHkg0NF\",layoutId:\"h_PHkg0NF\",style:{width:\"100%\"},UQjxkvMEK:\"You don\u2019t need to be an expert to get started! We provide clear instructions and guidance at every step. From beginner-friendly exercises to detailed coaching, we\u2019ll teach you how to perform movements correctly and efficiently, building your confidence and knowledge along the way.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ljyn0-container\",nodeId:\"TDhFS1O5i\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I have an all-or-nothing mindset, and I tend to give up when I slip up. How can I break this cycle?\",height:\"100%\",id:\"TDhFS1O5i\",layoutId:\"TDhFS1O5i\",style:{width:\"100%\"},UQjxkvMEK:\"We understand that mindset plays a huge role in success. At The Consistency Club, we focus on progress, not perfection. We\u2019ll help you embrace a flexible mindset, where small setbacks don\u2019t derail your progress. Consistency is the key, and we\u2019ll support you every step of the way.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UCGPDF5VO:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1250px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1250px) - 15px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ckiro0-container\",nodeId:\"IBQY2jjC5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(OtherAccordion,{h8ZPfHtH6:\"I\u2019ve tried fitness plans before and failed. What makes this different?\",height:\"100%\",id:\"IBQY2jjC5\",layoutId:\"IBQY2jjC5\",style:{width:\"100%\"},UQjxkvMEK:\"We understand the fear of failing again, and that\u2019s why our approach is different. At The Consistency Club, we focus on sustainable progress, not quick fixes. We create a personalized plan that\u2019s flexible and realistic, taking into account your goals, habits, and challenges. With our ongoing support and check-ins, we\u2019re here to keep you accountable and help you stay on track\u2014no matter what. Success isn\u2019t about perfection, it\u2019s about consistency, and that\u2019s exactly what we help you build.\",variant:\"O_ZZimsK8\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1640,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-369xx2-container\",id:elementId9,nodeId:\"ZJLC9zZyp\",ref:ref10,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{variant:\"kcHPKUKqu\"},UCGPDF5VO:{variant:\"S7cpZpM1b\"}},children:/*#__PURE__*/_jsx(GlobalFooter,{height:\"100%\",id:\"ZJLC9zZyp\",layoutId:\"ZJLC9zZyp\",style:{width:\"100%\"},variant:\"ManX2kZDk\",width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tcqvam hidden-72rtr7 hidden-1fkn8yj hidden-1y12k4j\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uru1tc-container\",\"data-framer-name\":\"Body transform - Tablet\",id:elementId10,isAuthoredByUser:true,isModuleExternal:true,name:\"Body transform - Tablet\",nodeId:\"NiXnhEqvk\",ref:ref11,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",id:\"NiXnhEqvk\",intervalControl:5,itemAmount:1,layoutId:\"NiXnhEqvk\",name:\"Body transform - Tablet\",padding:0,paddingBottom:0,paddingLeft:40,paddingPerSide:true,paddingRight:40,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.section,{className:\"framer-1wlr46h\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CLIENT \",/*#__PURE__*/_jsx(\"br\",{}),\"TRANSFORMATION\"]})}),className:\"framer-kj2nt4\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bnp40x\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xuqsh9\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-zfvyyo\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"476.4565px\",src:\"https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png\",srcSet:\"https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R4ZVYejHabiDaEEMkbARFqWzoeI.png 1080w\"},className:\"framer-180g3x6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s1i6vf\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hif84e\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pnmk8c\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wu4fv\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nsvnrc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"JUSTIN, 38\"})}),className:\"framer-jccvx8\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"BUSINESS OWNER\"})}),className:\"framer-13ftvvd\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wvw3cn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-i3ouqu\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vnlm7b-container\",inComponentSlot:true,nodeId:\"LAXBfxjcE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"LAXBfxjcE\",layoutId:\"LAXBfxjcE\",style:{width:\"100%\"},urRBn5pkB:\"Lost 57lbs in 120 Days\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ma30oe-container\",inComponentSlot:true,nodeId:\"F_xtWpgHu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"F_xtWpgHu\",layoutId:\"F_xtWpgHu\",style:{width:\"100%\"},urRBn5pkB:\"Strongest He's Ever Been\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x6yvnc-container\",inComponentSlot:true,nodeId:\"i8NluKTK9\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"i8NluKTK9\",layoutId:\"i8NluKTK9\",style:{width:\"100%\"},urRBn5pkB:\"More Present With His 3 Daughters\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-a7edlk-container\",inComponentSlot:true,nodeId:\"EXFlvR_v3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"EXFlvR_v3\",layoutId:\"EXFlvR_v3\",style:{width:\"100%\"},urRBn5pkB:\"Daily Sleep Score Increased By 37%\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h60rr4-container\",inComponentSlot:true,nodeId:\"NdOeBJ1U4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"NdOeBJ1U4\",layoutId:\"NdOeBJ1U4\",style:{width:\"100%\"},urRBn5pkB:\"Has Doubled His Business ( Atrributes this is improved energy, discipline, confidence and routine)\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18nogin\",\"data-framer-name\":\"TCC SVG\",fill:\"black\",intrinsicHeight:718,intrinsicWidth:980,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 980 718.2\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1\"><path class=\"cls-1\" d=\"M701.3 0H543.8l-10.7 71.2h157.5c139.1 0 235.4 113.2 214.6 252.3-20.8 139.1-151 252.3-290.1 252.3H457.6L446.9 647H289.4C150.3 647 54 533.8 74.8 394.7c20.8-139.1 151-252.3 290.1-252.3h157.5l10.7-71.2H375.6c-178.4 0-345.3 145.1-372 323.5-26.7 178.4 96.7 323.5 275.1 323.5h157.5l10.7-71.2h157.5c178.4 0 345.2-145.1 371.9-323.5C1003.1 145.1 879.7 0 701.3 0Z\"/><path class=\"cls-1\" d=\"M762.8 323.5c-9.1 60.6-65.8 109.9-126.4 109.9H478.9l-10.7 71.2h157.5c99.9 0 193.3-81.3 208.2-181.1 14.9-99.9-54.1-181.1-154-181.1H522.4l-10.7 71.2h157.5c60.6 0 102.6 49.3 93.5 109.9Z\"/><path class=\"cls-1\" d=\"M468.2 504.6H310.7c-60.6 0-102.6-49.3-93.5-109.9 9.1-60.6 65.8-109.9 126.4-109.9h157.5l10.7-71.2H354.3c-99.9 0-193.3 81.3-208.2 181.1-14.9 99.9 54.1 181.1 154 181.1h157.5l10.7-71.2Z\"/></g></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.section,{className:\"framer-1rihfoh\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CLIENT \",/*#__PURE__*/_jsx(\"br\",{}),\"TRANSFORMATION\"]})}),className:\"framer-1y7s09m\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iwftz8\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14u14qg\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-12d404g\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\"},className:\"framer-j9umus\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"478.8152px\",src:\"https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png\",srcSet:\"https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png?scale-down-to=512 512w,https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JpGfewdw0Y6fLCoqwLn1xiFsglw.png 1982w\"},className:\"framer-v8r9y9\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-112686d\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-170erjb\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ygccid\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wz96hi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jxht6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"MICHAEL, 41\"})}),className:\"framer-1b7faue\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"DIRECTOR\"})}),className:\"framer-15gwxxj\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gxjjfm\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rba6qy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-1x4uhj2\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qo3s2w-container\",inComponentSlot:true,nodeId:\"oquAFGA7Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"oquAFGA7Z\",layoutId:\"oquAFGA7Z\",style:{width:\"100%\"},urRBn5pkB:\"15% less body fat\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dziyq6-container\",inComponentSlot:true,nodeId:\"v6_RanuYo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"v6_RanuYo\",layoutId:\"v6_RanuYo\",style:{width:\"100%\"},urRBn5pkB:\"11% more skeletal muscle\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hx6q7j-container\",inComponentSlot:true,nodeId:\"fdjl0AUw4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"fdjl0AUw4\",layoutId:\"fdjl0AUw4\",style:{width:\"100%\"},urRBn5pkB:\"Newfound love for training\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uyq1ks-container\",inComponentSlot:true,nodeId:\"hzQvksm5h\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"hzQvksm5h\",layoutId:\"hzQvksm5h\",style:{width:\"100%\"},urRBn5pkB:\"Has energy to be super dad\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-f5wi5a-container\",inComponentSlot:true,nodeId:\"DWJjarc0l\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"DWJjarc0l\",layoutId:\"DWJjarc0l\",style:{width:\"100%\"},urRBn5pkB:\"Loves exercise\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zhcy4e\",\"data-framer-name\":\"TCC SVG\",fill:\"black\",intrinsicHeight:718,intrinsicWidth:980,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 980 718.2\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1\"><path class=\"cls-1\" d=\"M701.3 0H543.8l-10.7 71.2h157.5c139.1 0 235.4 113.2 214.6 252.3-20.8 139.1-151 252.3-290.1 252.3H457.6L446.9 647H289.4C150.3 647 54 533.8 74.8 394.7c20.8-139.1 151-252.3 290.1-252.3h157.5l10.7-71.2H375.6c-178.4 0-345.3 145.1-372 323.5-26.7 178.4 96.7 323.5 275.1 323.5h157.5l10.7-71.2h157.5c178.4 0 345.2-145.1 371.9-323.5C1003.1 145.1 879.7 0 701.3 0Z\"/><path class=\"cls-1\" d=\"M762.8 323.5c-9.1 60.6-65.8 109.9-126.4 109.9H478.9l-10.7 71.2h157.5c99.9 0 193.3-81.3 208.2-181.1 14.9-99.9-54.1-181.1-154-181.1H522.4l-10.7 71.2h157.5c60.6 0 102.6 49.3 93.5 109.9Z\"/><path class=\"cls-1\" d=\"M468.2 504.6H310.7c-60.6 0-102.6-49.3-93.5-109.9 9.1-60.6 65.8-109.9 126.4-109.9h157.5l10.7-71.2H354.3c-99.9 0-193.3 81.3-208.2 181.1-14.9 99.9 54.1 181.1 154 181.1h157.5l10.7-71.2Z\"/></g></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.section,{className:\"framer-hinkzk\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CLIENT \",/*#__PURE__*/_jsx(\"br\",{}),\"TRANSFORMATION\"]})}),className:\"framer-1oo0alw\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ptvhl1\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m1ff72\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-hy2oia\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\"},className:\"framer-czl2vk\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"476.4565px\",src:\"https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png\",srcSet:\"https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png?scale-down-to=512 512w,https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/arGXpcsIrHMcDesfwLZUzn8kM.png 1080w\"},className:\"framer-1gzyish\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1do7mfl\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c1adq8\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3i6a9n\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ee6no5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o3rkfw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"JONATHAN, 57\"})}),className:\"framer-1jw1zvm\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"CEO\"})}),className:\"framer-1w3yeeu\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-81bjqk\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l2uzdz\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f9cj4v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-1f5ouj7\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e8eztl-container\",inComponentSlot:true,nodeId:\"uVkWClBqO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"uVkWClBqO\",layoutId:\"uVkWClBqO\",style:{width:\"100%\"},urRBn5pkB:\"Lost 21kg in 180 days\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-on7p1g-container\",inComponentSlot:true,nodeId:\"o9FlIzncQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"o9FlIzncQ\",layoutId:\"o9FlIzncQ\",style:{width:\"100%\"},urRBn5pkB:\"Enhanced daily energy\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ol2pml-container\",inComponentSlot:true,nodeId:\"k354eRSS8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"k354eRSS8\",layoutId:\"k354eRSS8\",style:{width:\"100%\"},urRBn5pkB:\"System to overcome schedule\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17n991q-container\",inComponentSlot:true,nodeId:\"XHNHQW7E3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"XHNHQW7E3\",layoutId:\"XHNHQW7E3\",style:{width:\"100%\"},urRBn5pkB:\"Newfound confidence\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hg87o6-container\",inComponentSlot:true,nodeId:\"QpThNISnW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"QpThNISnW\",layoutId:\"QpThNISnW\",style:{width:\"100%\"},urRBn5pkB:\"Improved muscle mass index\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-329slw\",\"data-framer-name\":\"TCC SVG\",fill:\"black\",intrinsicHeight:718,intrinsicWidth:980,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 980 718.2\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1\"><path class=\"cls-1\" d=\"M701.3 0H543.8l-10.7 71.2h157.5c139.1 0 235.4 113.2 214.6 252.3-20.8 139.1-151 252.3-290.1 252.3H457.6L446.9 647H289.4C150.3 647 54 533.8 74.8 394.7c20.8-139.1 151-252.3 290.1-252.3h157.5l10.7-71.2H375.6c-178.4 0-345.3 145.1-372 323.5-26.7 178.4 96.7 323.5 275.1 323.5h157.5l10.7-71.2h157.5c178.4 0 345.2-145.1 371.9-323.5C1003.1 145.1 879.7 0 701.3 0Z\"/><path class=\"cls-1\" d=\"M762.8 323.5c-9.1 60.6-65.8 109.9-126.4 109.9H478.9l-10.7 71.2h157.5c99.9 0 193.3-81.3 208.2-181.1 14.9-99.9-54.1-181.1-154-181.1H522.4l-10.7 71.2h157.5c60.6 0 102.6 49.3 93.5 109.9Z\"/><path class=\"cls-1\" d=\"M468.2 504.6H310.7c-60.6 0-102.6-49.3-93.5-109.9 9.1-60.6 65.8-109.9 126.4-109.9h157.5l10.7-71.2H354.3c-99.9 0-193.3 81.3-208.2 181.1-14.9 99.9 54.1 181.1 154 181.1h157.5l10.7-71.2Z\"/></g></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.section,{className:\"framer-1qg2ts6\",\"data-framer-name\":\"Body transform\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CLIENT \",/*#__PURE__*/_jsx(\"br\",{}),\"TRANSFORMATION\"]})}),className:\"framer-s84n2t\",\"data-framer-name\":\"Let\u2019s see our students have transformed\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b6n6uw\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15b43s8\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-a8y66u\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\"},className:\"framer-56yptr\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1418,pixelWidth:1920,positionX:\"center\",positionY:\"top\",sizes:\"478.8152px\",src:\"https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png\",srcSet:\"https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/65K6E3Rkc9rrmw9MWpR0SwgkM4.png 1080w\"},className:\"framer-1fltjzl\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-793prs\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i3k2f\",transformTemplate:transformTemplate3,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mi5x5v\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d8pbc3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w03uif\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"JUSTIN, 42\"})}),className:\"framer-7pc8hk\",\"data-framer-name\":\"Name:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO01pY3JvZ3JhbW1hIEQgQm9sZCBFeHRlbmRlZA==\",\"--framer-font-family\":'\"Microgramma D Bold Extended\", \"Microgramma D Bold Extended Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195de5cc-11f5-48f8-bf2b-7bbdafe81e48, rgb(189, 189, 189))\"},children:\"HEAD OF CYBERSECURITY\"})}),className:\"framer-1v7me8l\",\"data-framer-name\":\"Age:\",fonts:[\"CUSTOM;Microgramma D Bold Extended\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o5xugl\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dh2aea\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yszxe5\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16psfxh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"After Joining:\"})}),className:\"framer-omwevf\",\"data-framer-name\":\"Name\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dic5l1-container\",inComponentSlot:true,nodeId:\"wc41Go1MU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"wc41Go1MU\",layoutId:\"wc41Go1MU\",style:{width:\"100%\"},urRBn5pkB:\"Lost 17kg in 90 days\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pbhfyl-container\",inComponentSlot:true,nodeId:\"Gri6Sr9uS\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"Gri6Sr9uS\",layoutId:\"Gri6Sr9uS\",style:{width:\"100%\"},urRBn5pkB:\"Lifting heavier & running longer\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uiqn36-container\",inComponentSlot:true,nodeId:\"oU5h8jvwu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"oU5h8jvwu\",layoutId:\"oU5h8jvwu\",style:{width:\"100%\"},urRBn5pkB:\"More balanced relationship with alcohol\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-172nbrs-container\",inComponentSlot:true,nodeId:\"V91ppPR5z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"V91ppPR5z\",layoutId:\"V91ppPR5z\",style:{width:\"100%\"},urRBn5pkB:\"Newfound confidence\",variant:\"Otj6GPOW0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1342px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-acilvt-container\",inComponentSlot:true,nodeId:\"vNC_ZTuwz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ComponentBenefit,{height:\"100%\",id:\"vNC_ZTuwz\",layoutId:\"vNC_ZTuwz\",style:{width:\"100%\"},urRBn5pkB:\"Balanced daily energy\",variant:\"Otj6GPOW0\",width:\"100%\"})})})]})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7e3jgl\",\"data-framer-name\":\"TCC SVG\",fill:\"black\",intrinsicHeight:718,intrinsicWidth:980,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 980 718.2\"><defs><style>.cls-1{fill:#fff}</style></defs><g id=\"Layer_1\"><path class=\"cls-1\" d=\"M701.3 0H543.8l-10.7 71.2h157.5c139.1 0 235.4 113.2 214.6 252.3-20.8 139.1-151 252.3-290.1 252.3H457.6L446.9 647H289.4C150.3 647 54 533.8 74.8 394.7c20.8-139.1 151-252.3 290.1-252.3h157.5l10.7-71.2H375.6c-178.4 0-345.3 145.1-372 323.5-26.7 178.4 96.7 323.5 275.1 323.5h157.5l10.7-71.2h157.5c178.4 0 345.2-145.1 371.9-323.5C1003.1 145.1 879.7 0 701.3 0Z\"/><path class=\"cls-1\" d=\"M762.8 323.5c-9.1 60.6-65.8 109.9-126.4 109.9H478.9l-10.7 71.2h157.5c99.9 0 193.3-81.3 208.2-181.1 14.9-99.9-54.1-181.1-154-181.1H522.4l-10.7 71.2h157.5c60.6 0 102.6 49.3 93.5 109.9Z\"/><path class=\"cls-1\" d=\"M468.2 504.6H310.7c-60.6 0-102.6-49.3-93.5-109.9 9.1-60.6 65.8-109.9 126.4-109.9h157.5l10.7-71.2H354.3c-99.9 0-193.3 81.3-208.2 181.1-14.9 99.9 54.1 181.1 154 181.1h157.5l10.7-71.2Z\"/></g></svg>',withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined},{href:{webPageId:\"eFP1Ekl0R\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v167xs-container\",nodeId:\"o6CAcu6a7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FWVpfDVPB:{l1gPDCIox:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{erbCBAez1:\"TRANSFORM YOUR LIFE TODAY\",height:\"100%\",id:\"o6CAcu6a7\",J2FI0NDh9:false,l1gPDCIox:resolvedLinks6[0],layoutId:\"o6CAcu6a7\",variant:\"GAjjYepPB\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fvbvkp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LJYFWdSbo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"LJYFWdSbo\",isMixedBorderRadius:false,layoutId:\"LJYFWdSbo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/fzC9bNotBFWWpNCP5HHuIEhQgs.mp4\",srcType:\"URL\",srcUrl:\"https://res.cloudinary.com/dfaxkb5yu/video/upload/f_auto:video,q_auto/v0wwmckliovodxwx5tbv\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MEiwj.framer-lux5qc, .framer-MEiwj .framer-lux5qc { display: block; }\",'.framer-MEiwj.framer-72rtr7 { align-content: center; align-items: center; background: linear-gradient(180deg, #0c0e13 0%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 38.164344031531535%); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }',\".framer-MEiwj .framer-2yt3x6, .framer-MEiwj .framer-1zy96k { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1k8ax95 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-13v55gb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 2228px; justify-content: flex-start; overflow: visible; padding: 180px 0px 0px 0px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-MEiwj .framer-17mcwuj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-of8azn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-ye5zjh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-MEiwj .framer-8wktpt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-MEiwj .framer-153201f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-kqjk5m { flex: none; height: 52px; overflow: hidden; position: relative; width: 197px; }\",\".framer-MEiwj .framer-b6ofzt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-69kkig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-19ojnmp-container, .framer-MEiwj .framer-1wms0cd-container, .framer-MEiwj .framer-1ubuxcl-container, .framer-MEiwj .framer-1073mv8-container, .framer-MEiwj .framer-284v4r-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-MEiwj .framer-13pr657 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MEiwj .framer-16fvvn2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1t34ilz { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 980px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-10gbj7q { --framer-text-wrap-override: none; flex: none; height: auto; max-width: 600px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-72gg4a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-tm10jr-container, .framer-MEiwj .framer-np1vg3-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-MEiwj .framer-ijt8y1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1i8cy2u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-MEiwj .framer-15g7w19 { flex: none; height: 762px; overflow: visible; position: relative; width: 395px; }\",\".framer-MEiwj .framer-a3sxgy-container { aspect-ratio: 0.5181347150259067 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 763px); left: 0px; position: absolute; right: 0px; top: 0px; }\",'.framer-MEiwj .framer-smc0pt { align-content: flex-start; align-items: flex-start; background: radial-gradient(100% 100% at 50% 0%, #181c26 0%, rgb(16, 18, 25) 51.35135135135135%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.72); cursor: grab; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: absolute; right: 166px; top: 69px; width: 264px; z-index: 10; }',\".framer-MEiwj .framer-1yat99k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 6px 0px 6px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1rflshu { --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-MEiwj .framer-1vl9kq5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-159qpry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-cubgp6, .framer-MEiwj .framer-1sugmyy, .framer-MEiwj .framer-t1tuci, .framer-MEiwj .framer-1mr22x4, .framer-MEiwj .framer-x0hl2w, .framer-MEiwj .framer-12y63x4, .framer-MEiwj .framer-muwrhy, .framer-MEiwj .framer-17ih6vv, .framer-MEiwj .framer-1pjsqhf, .framer-MEiwj .framer-6v034t, .framer-MEiwj .framer-1rpdiz0, .framer-MEiwj .framer-o2z672, .framer-MEiwj .framer-jccvx8, .framer-MEiwj .framer-1b7faue, .framer-MEiwj .framer-1jw1zvm, .framer-MEiwj .framer-7pc8hk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MEiwj .framer-1elzbze, .framer-MEiwj .framer-kt96f9, .framer-MEiwj .framer-cxyj4q { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre; width: auto; }\",\".framer-MEiwj .framer-117qwin { background-color: var(--token-4f89ecfa-9ced-4828-96de-7dbbdb3044ba, #cccccc); flex: none; height: 1px; opacity: 0.5; overflow: hidden; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1l9lw7j { background-color: var(--token-91bc4d91-6972-4e38-a9d7-febbf41c8a6e, #00ffa6); bottom: 0px; flex: none; height: 1px; left: calc(6.666666666666689% - 32px / 2); overflow: hidden; position: absolute; width: 32px; z-index: 1; }\",\".framer-MEiwj .framer-miyhxi { aspect-ratio: 2.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); position: relative; width: 100%; }\",\".framer-MEiwj .framer-1l1z2v4 { bottom: 94px; cursor: pointer; flex: none; height: 225px; left: 120px; overflow: visible; position: absolute; width: 281px; z-index: 10; }\",\".framer-MEiwj .framer-150ncig { flex: none; height: 195px; left: calc(51.9572953736655% - 251px / 2); opacity: 0.6; overflow: hidden; position: absolute; top: 1px; width: 251px; z-index: 1; }\",\".framer-MEiwj .framer-1y5f520 { background-color: var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, #0c0e13); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.72); flex: none; height: 183px; left: 0px; position: absolute; top: 4px; width: 242px; }\",'.framer-MEiwj .framer-1bbmkp0 { --border-bottom-width: 0.9184952974319458px; --border-color: rgba(255, 255, 255, 0.06); --border-left-width: 0.9184952974319458px; --border-right-width: 0.9184952974319458px; --border-style: solid; --border-top-width: 0.9184952974319458px; background: radial-gradient(100% 100% at 50% 0%, #181c26 0%, rgb(16, 18, 25) 51.35135135135135%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.72); flex: none; height: 211px; left: calc(49.822064056939524% - 280px / 2); overflow: hidden; position: absolute; width: 280px; will-change: var(--framer-will-change-override, transform); z-index: 1; }',\".framer-MEiwj .framer-1voxki5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 20px; overflow: hidden; padding: 0px; position: absolute; top: 20px; width: min-content; }\",\".framer-MEiwj .framer-ls0x8y { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 129px; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-1g6ll5h { background-color: rgba(0, 255, 166, 0.05); bottom: 23px; flex: none; height: 119px; left: 23px; overflow: hidden; position: absolute; width: 2px; }\",\".framer-MEiwj .framer-3p53vw { background-color: rgba(0, 255, 166, 0.05); bottom: 23px; flex: none; height: 119px; left: 115px; overflow: hidden; position: absolute; width: 2px; }\",\".framer-MEiwj .framer-1jhd37m { background-color: rgba(0, 255, 166, 0.05); bottom: 23px; flex: none; height: 119px; left: 224px; overflow: hidden; position: absolute; width: 2px; }\",\".framer-MEiwj .framer-1mnr9l2 { -webkit-filter: blur(31.111085891723633px); aspect-ratio: 0.9540229885057471 / 1; background-color: rgba(0, 255, 166, 0.07); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(31.111085891723633px); flex: none; height: var(--framer-aspect-ratio-supported, 153px); left: 130px; position: absolute; top: 51%; transform: translateY(-50%); width: 146px; }\",'.framer-MEiwj .framer-1838evi { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 70px; flex: none; height: 22px; left: 20px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-1t96spn { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 64px; flex: none; height: 22px; left: 39px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-19qowcg { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 63px; flex: none; height: 43px; left: 57px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-1s3jeev { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 63px; flex: none; height: 49px; left: 75px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-hfgbhz { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 80px; flex: none; height: 29px; left: 94px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-1qekx2o { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 70px; flex: none; height: 53px; left: 112px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-xb2n1w { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 63px; flex: none; height: 40px; left: calc(48.21428571428574% - 9px / 2); overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-7xzjg { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 45px; flex: none; height: 48px; left: calc(54.64285714285716% - 9px / 2); overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-1ryhwys { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 53px; flex: none; height: 56px; left: 168px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-1nq1vrz { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 70px; flex: none; height: 78px; left: 185px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-1xjp2el { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 95px; flex: none; height: 40px; left: 203px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-g09cw { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 110px; flex: none; height: 36px; left: 221px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }','.framer-MEiwj .framer-1wlso28 { --border-bottom-width: 0px; --border-color: #141414; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background: linear-gradient(180deg, var(--token-e966204d-4a63-4327-bda2-4c709af4c885, #00c078) /* {\"name\":\"Spring Green - 600\"} */ 0%, rgb(0, 255, 102) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 117px; flex: none; height: 32px; left: 239px; overflow: hidden; position: absolute; width: 9px; will-change: var(--framer-will-change-effect-override, transform); }',\".framer-MEiwj .framer-1oxandb { align-content: center; align-items: center; bottom: 255px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 101px; width: 237px; z-index: 1; }\",\".framer-MEiwj .framer-1vop1q9 { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 90px; }\",'.framer-MEiwj .framer-vf1ba8 { --border-bottom-width: 1px; --border-color: #191919; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: radial-gradient(100% 100% at 50% 0%, #181c26 0%, rgb(16, 18, 25) 51.35135135135135%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }',\".framer-MEiwj .framer-15moqk7 { -webkit-filter: blur(5px); aspect-ratio: 1 / 1; background-color: var(--token-91bc4d91-6972-4e38-a9d7-febbf41c8a6e, #00ffa6); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; filter: blur(5px); flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 50%; opacity: 0.31; position: absolute; top: -5px; transform: translateX(-50%); width: 100px; z-index: -1; }\",\".framer-MEiwj .framer-yu38zd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; left: 149px; overflow: hidden; padding: 0px 0px 12px 0px; position: absolute; top: 164px; width: 161px; z-index: 1; }\",\".framer-MEiwj .framer-35ls45 { flex: none; height: 119px; overflow: hidden; position: relative; width: 159px; }\",\".framer-MEiwj .framer-173exv9 { -webkit-user-select: none; align-content: center; align-items: center; background-color: var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, #1a1c1d); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 15px 18px 14px 18px; pointer-events: none; position: absolute; top: 49%; transform: translate(-50%, -50%); user-select: none; width: min-content; z-index: 3; }\",\".framer-MEiwj .framer-gsivxd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 122px; }\",\".framer-MEiwj .framer-1g6e2ul { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MEiwj .framer-1tyqpzv { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 25px; min-width: 120px; overflow: visible; padding: 0px; pointer-events: none; position: relative; user-select: none; width: min-content; }\",\".framer-MEiwj .framer-3aius8 { -webkit-user-select: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 0px 0px 3px var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, #1a1c1d); flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 20%; overflow: hidden; pointer-events: none; position: absolute; top: 48%; transform: translate(-50%, -50%); user-select: none; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MEiwj .framer-73zkul { -webkit-user-select: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 0px 0px 3px var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, #1a1c1d); flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 35%; overflow: hidden; pointer-events: none; position: absolute; top: 48%; transform: translate(-50%, -50%); user-select: none; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MEiwj .framer-cbr4n4 { -webkit-user-select: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 0px 0px 3px var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, #1a1c1d); flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 50%; overflow: hidden; pointer-events: none; position: absolute; top: 48%; transform: translate(-50%, -50%); user-select: none; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MEiwj .framer-1l4da53 { -webkit-user-select: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 0px 0px 3px var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, #1a1c1d); flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 65%; overflow: hidden; pointer-events: none; position: absolute; top: 48%; transform: translate(-50%, -50%); user-select: none; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MEiwj .framer-1xuechz { -webkit-user-select: none; aspect-ratio: 1 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0px 0px 0px 3px var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, #1a1c1d); flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 80%; overflow: hidden; pointer-events: none; position: absolute; top: 48%; transform: translate(-50%, -50%); user-select: none; width: 24px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MEiwj .framer-1w7y6qs { aspect-ratio: 1 / 1; background-color: var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, #1a1c1d); bottom: -5px; flex: none; height: var(--framer-aspect-ratio-supported, 11px); left: 50%; overflow: hidden; position: absolute; transform: translateX(-50%); width: 11px; z-index: 1; }\",'.framer-MEiwj .framer-4nky4l { align-content: center; align-items: center; background: radial-gradient(100% 100% at 50% 0%, #181c26 0%, rgb(16, 18, 25) 51.35135135135135%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }',\".framer-MEiwj .framer-hu2n8o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-MEiwj .framer-1fk1zgo-container, .framer-MEiwj .framer-1ig05z-container, .framer-MEiwj .framer-160ik4h-container, .framer-MEiwj .framer-17bnubx-container, .framer-MEiwj .framer-xzqbrb-container, .framer-MEiwj .framer-12mxlii-container, .framer-MEiwj .framer-1v167xs-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-MEiwj .framer-1cu7zyf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: 1px; justify-content: center; overflow: visible; padding: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-ukv1y0, .framer-MEiwj .framer-13ktf0t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-lqzv3o, .framer-MEiwj .framer-dgcz8a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 840px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-159rema, .framer-MEiwj .framer-1xjmm5e, .framer-MEiwj .framer-14q6xdq, .framer-MEiwj .framer-wuomja, .framer-MEiwj .framer-kxyg99, .framer-MEiwj .framer-1bvjymc, .framer-MEiwj .framer-1th5nov, .framer-MEiwj .framer-cmo5t9, .framer-MEiwj .framer-18q5q4p, .framer-MEiwj .framer-i3ouqu, .framer-MEiwj .framer-1x4uhj2, .framer-MEiwj .framer-1f5ouj7, .framer-MEiwj .framer-omwevf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-13udsoo, .framer-MEiwj .framer-1e29z30, .framer-MEiwj .framer-1fdp2we, .framer-MEiwj .framer-pwtmi3, .framer-MEiwj .framer-1tslqr0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1a3xhfe { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 750px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1y18ozd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 153px 0px 0px 0px; pointer-events: auto; position: relative; width: 1072px; }\",\".framer-MEiwj .framer-10u0f42, .framer-MEiwj .framer-66jczq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 42.5px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-lwy4pn, .framer-MEiwj .framer-iy8wjz { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 770px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1qtp0ep { --framer-text-wrap: balance; flex: none; height: auto; left: 50%; max-width: 600px; position: absolute; top: 8%; transform: translate(-50%, -50%); white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 10; }\",\".framer-MEiwj .framer-1cjtz3 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-bhzm4c-container, .framer-MEiwj .framer-psz02d-container { flex: none; height: 226px; position: relative; width: 100%; }\",'.framer-MEiwj .framer-188fxj7, .framer-MEiwj .framer-1hqf97l, .framer-MEiwj .framer-1gskruq, .framer-MEiwj .framer-xmf7qf, .framer-MEiwj .framer-10h2mhm, .framer-MEiwj .framer-1d5qps1, .framer-MEiwj .framer-11f4g9u, .framer-MEiwj .framer-c3p13r { align-content: center; align-items: center; background: radial-gradient(100% 100% at 50% 0%, #181c26 0%, rgb(16, 18, 25) 51.35135135135135%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 2px 0px rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 347px; will-change: var(--framer-will-change-override, transform); }',\".framer-MEiwj .framer-1xh9i2t, .framer-MEiwj .framer-uac9ix, .framer-MEiwj .framer-5h0lox, .framer-MEiwj .framer-out0l3, .framer-MEiwj .framer-a5x2lh, .framer-MEiwj .framer-bm149m, .framer-MEiwj .framer-1yztt53, .framer-MEiwj .framer-18vkpbg, .framer-MEiwj .framer-11lvwlz, .framer-MEiwj .framer-qpmpi3, .framer-MEiwj .framer-15h67s6, .framer-MEiwj .framer-b4ddoo, .framer-MEiwj .framer-1aclifr, .framer-MEiwj .framer-1w9yivj, .framer-MEiwj .framer-6utnfp, .framer-MEiwj .framer-zmnkti, .framer-MEiwj .framer-brojqw, .framer-MEiwj .framer-93j2fn, .framer-MEiwj .framer-1gdt6b1, .framer-MEiwj .framer-lgmpfz { -webkit-mask: radial-gradient(100% 100% at 50% 0%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%) add; -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; mask: radial-gradient(100% 100% at 50% 0%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%) add; overflow: visible; position: absolute; right: 0px; top: 0px; user-select: none; }\",\".framer-MEiwj .framer-eehg0p-container, .framer-MEiwj .framer-1595xdg-container, .framer-MEiwj .framer-6u69nq-container, .framer-MEiwj .framer-1dv27dk-container, .framer-MEiwj .framer-qo7ksq-container, .framer-MEiwj .framer-asbf0o-container, .framer-MEiwj .framer-1innpzp-container, .framer-MEiwj .framer-1uucwfq-container, .framer-MEiwj .framer-1ngwn88-container, .framer-MEiwj .framer-z18kab-container, .framer-MEiwj .framer-nf1f9p-container, .framer-MEiwj .framer-1i31k4o-container, .framer-MEiwj .framer-msdnrt-container, .framer-MEiwj .framer-1mhnd55-container, .framer-MEiwj .framer-tbt4fg-container, .framer-MEiwj .framer-c44ym6-container, .framer-MEiwj .framer-xm36yg-container, .framer-MEiwj .framer-kbsy3-container, .framer-MEiwj .framer-190pbhd-container, .framer-MEiwj .framer-al6468-container { aspect-ratio: 0.9367088607594937 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); position: relative; width: 54px; }\",\".framer-MEiwj .framer-14vqqb8, .framer-MEiwj .framer-b4b1k6, .framer-MEiwj .framer-123zmu7, .framer-MEiwj .framer-1jwll8m, .framer-MEiwj .framer-18d40h8, .framer-MEiwj .framer-ufo10u, .framer-MEiwj .framer-1msoufx, .framer-MEiwj .framer-1i5qvk9, .framer-MEiwj .framer-1yzj9ii, .framer-MEiwj .framer-1y9gqad, .framer-MEiwj .framer-1c1djxj, .framer-MEiwj .framer-krnynn, .framer-MEiwj .framer-hpoy5u, .framer-MEiwj .framer-koqm4, .framer-MEiwj .framer-1dovpu8, .framer-MEiwj .framer-i9y5r8, .framer-MEiwj .framer-1n1to31, .framer-MEiwj .framer-m7q2n8, .framer-MEiwj .framer-4tg2jh, .framer-MEiwj .framer-1n5r31w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",'.framer-MEiwj .framer-16rv2il, .framer-MEiwj .framer-71ysm8, .framer-MEiwj .framer-gyp2e2, .framer-MEiwj .framer-twhulf { align-content: center; align-items: center; background: radial-gradient(100% 100% at 50% 0%, #181c26 0%, rgb(16, 18, 25) 51.35135135135135%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 2px 0px rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 346px; will-change: var(--framer-will-change-override, transform); }',\".framer-MEiwj .framer-1jgd61p-container { flex: none; height: 227px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-144b2ge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 53px; height: min-content; justify-content: flex-start; max-width: 120%; overflow: hidden; padding: 153px 64px 153px 64px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-nl26ab, .framer-MEiwj .framer-vy3ijp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-vt56uf, .framer-MEiwj .framer-16whmyi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 779px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-irit9o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 662px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-1vrqpbu-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-MEiwj .framer-bm0qfd-container { flex: none; height: 832px; position: relative; width: 100%; }\",'.framer-MEiwj .framer-xbkst7 { align-content: center; align-items: center; background: radial-gradient(40% 54% at 0% 0%, #232938 4.954954954954954%, rgb(20, 23, 31) 48.1981981981982%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), 0px 2px 11px 0px rgba(0, 0, 0, 0.67); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 40px 72px 40px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }',\".framer-MEiwj .framer-251iif, .framer-MEiwj .framer-1vbhil0, .framer-MEiwj .framer-ikdx0i, .framer-MEiwj .framer-gxw7i, .framer-MEiwj .framer-v2l8k, .framer-MEiwj .framer-73jiyt, .framer-MEiwj .framer-1dbgck9, .framer-MEiwj .framer-kj2nt4, .framer-MEiwj .framer-1y7s09m, .framer-MEiwj .framer-1oo0alw, .framer-MEiwj .framer-s84n2t { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 670px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-1474ii1, .framer-MEiwj .framer-ofswlw, .framer-MEiwj .framer-u30xgn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-crayuz, .framer-MEiwj .framer-1czukvd, .framer-MEiwj .framer-13ek1yz { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-12m0ke1, .framer-MEiwj .framer-1qyt5lg, .framer-MEiwj .framer-pfw4s3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-xjl44w, .framer-MEiwj .framer-k04fli, .framer-MEiwj .framer-1stl0mw { background-color: var(--token-91bc4d91-6972-4e38-a9d7-febbf41c8a6e, #00ffa6); flex: none; height: 72px; overflow: visible; position: relative; width: 5px; }\",\".framer-MEiwj .framer-1cn4ump, .framer-MEiwj .framer-100l5wk, .framer-MEiwj .framer-1hrnb9s, .framer-MEiwj .framer-1y4jatj, .framer-MEiwj .framer-2aump6, .framer-MEiwj .framer-1nbisy9, .framer-MEiwj .framer-1dffr2t, .framer-MEiwj .framer-9wu4fv, .framer-MEiwj .framer-1wz96hi, .framer-MEiwj .framer-1ee6no5, .framer-MEiwj .framer-d8pbc3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-ll4pxw, .framer-MEiwj .framer-1papv6s, .framer-MEiwj .framer-g49o34, .framer-MEiwj .framer-1wp2gwr, .framer-MEiwj .framer-evltmr, .framer-MEiwj .framer-1r24mb9, .framer-MEiwj .framer-12e1m7m, .framer-MEiwj .framer-nsvnrc, .framer-MEiwj .framer-18jxht6, .framer-MEiwj .framer-o3rkfw, .framer-MEiwj .framer-w03uif { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-w6nca2, .framer-MEiwj .framer-or6578, .framer-MEiwj .framer-19al5sb, .framer-MEiwj .framer-1mvao05, .framer-MEiwj .framer-wh2cjd, .framer-MEiwj .framer-vl8lur, .framer-MEiwj .framer-gluaf8, .framer-MEiwj .framer-13ftvvd, .framer-MEiwj .framer-15gwxxj, .framer-MEiwj .framer-1w3yeeu, .framer-MEiwj .framer-1v7me8l { --framer-paragraph-spacing: 0px; cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MEiwj .framer-1q3ti2z, .framer-MEiwj .framer-pge3hz, .framer-MEiwj .framer-ny7djr, .framer-MEiwj .framer-xnzq9v, .framer-MEiwj .framer-ndfgz, .framer-MEiwj .framer-4t10sy, .framer-MEiwj .framer-7xws7i, .framer-MEiwj .framer-1k9yqsb, .framer-MEiwj .framer-1rba6qy, .framer-MEiwj .framer-1l2uzdz, .framer-MEiwj .framer-f9cj4v, .framer-MEiwj .framer-1dh2aea, .framer-MEiwj .framer-1yszxe5, .framer-MEiwj .framer-16psfxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-wrs1u5-container, .framer-MEiwj .framer-1btg1to-container, .framer-MEiwj .framer-ba6iju-container, .framer-MEiwj .framer-7o6zc9-container, .framer-MEiwj .framer-1xgeedx-container, .framer-MEiwj .framer-1u6e3ou-container, .framer-MEiwj .framer-d23hns-container, .framer-MEiwj .framer-1iwr1zn-container, .framer-MEiwj .framer-1gagz4c-container, .framer-MEiwj .framer-1bgbf0b-container, .framer-MEiwj .framer-l4msh3-container, .framer-MEiwj .framer-kq9eoi-container, .framer-MEiwj .framer-1l80ifz-container, .framer-MEiwj .framer-1amvn6v-container, .framer-MEiwj .framer-qtpphw-container, .framer-MEiwj .framer-1kt25pr-container, .framer-MEiwj .framer-1gwivoy-container, .framer-MEiwj .framer-go3qa2-container, .framer-MEiwj .framer-cysfu-container, .framer-MEiwj .framer-bz5vax-container, .framer-MEiwj .framer-3tb01c-container, .framer-MEiwj .framer-b6jleu-container, .framer-MEiwj .framer-t52iki-container, .framer-MEiwj .framer-1bejc21-container, .framer-MEiwj .framer-18qqqz1-container, .framer-MEiwj .framer-y8wo8-container, .framer-MEiwj .framer-1ewg5sh-container, .framer-MEiwj .framer-1y0m5nd-container, .framer-MEiwj .framer-5x1lgy-container, .framer-MEiwj .framer-nmunit-container, .framer-MEiwj .framer-z3vj4l-container, .framer-MEiwj .framer-ebmpz0-container, .framer-MEiwj .framer-9yi063-container, .framer-MEiwj .framer-16yo16-container, .framer-MEiwj .framer-gk7pa4-container, .framer-MEiwj .framer-aap1wu-container, .framer-MEiwj .framer-1jkn8q1-container, .framer-MEiwj .framer-1enw37j-container, .framer-MEiwj .framer-1r1uac4-container, .framer-MEiwj .framer-11rxhkx-container, .framer-MEiwj .framer-1no5eam-container, .framer-MEiwj .framer-1k4gtnm-container, .framer-MEiwj .framer-16wjn2q-container, .framer-MEiwj .framer-7ljyn0-container, .framer-MEiwj .framer-ckiro0-container, .framer-MEiwj .framer-369xx2-container, .framer-MEiwj .framer-vnlm7b-container, .framer-MEiwj .framer-ma30oe-container, .framer-MEiwj .framer-1x6yvnc-container, .framer-MEiwj .framer-a7edlk-container, .framer-MEiwj .framer-1h60rr4-container, .framer-MEiwj .framer-qo3s2w-container, .framer-MEiwj .framer-dziyq6-container, .framer-MEiwj .framer-1hx6q7j-container, .framer-MEiwj .framer-uyq1ks-container, .framer-MEiwj .framer-f5wi5a-container, .framer-MEiwj .framer-e8eztl-container, .framer-MEiwj .framer-on7p1g-container, .framer-MEiwj .framer-1ol2pml-container, .framer-MEiwj .framer-17n991q-container, .framer-MEiwj .framer-hg87o6-container, .framer-MEiwj .framer-1dic5l1-container, .framer-MEiwj .framer-pbhfyl-container, .framer-MEiwj .framer-1uiqn36-container, .framer-MEiwj .framer-172nbrs-container, .framer-MEiwj .framer-acilvt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1rciplk, .framer-MEiwj .framer-1t6zd9j, .framer-MEiwj .framer-1xlbl7s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-1blnrm0, .framer-MEiwj .framer-dny647, .framer-MEiwj .framer-kipuea, .framer-MEiwj .framer-xuqsh9, .framer-MEiwj .framer-14u14qg, .framer-MEiwj .framer-1m1ff72, .framer-MEiwj .framer-15b43s8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-j9f9r6, .framer-MEiwj .framer-1tc3qyw, .framer-MEiwj .framer-meb2t7, .framer-MEiwj .framer-zfvyyo, .framer-MEiwj .framer-12d404g, .framer-MEiwj .framer-hy2oia, .framer-MEiwj .framer-a8y66u { flex: none; height: 407px; position: relative; width: 476px; }\",\".framer-MEiwj .framer-au842c { aspect-ratio: 1.1793478260869565 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 2px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 2px; width: var(--framer-aspect-ratio-supported, 476px); will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-porglf, .framer-MEiwj .framer-xgxom9, .framer-MEiwj .framer-j7o34d, .framer-MEiwj .framer-18nogin, .framer-MEiwj .framer-zhcy4e, .framer-MEiwj .framer-329slw, .framer-MEiwj .framer-7e3jgl { aspect-ratio: 1.3649025069637883 / 1; bottom: -1px; flex: none; left: -108px; opacity: 0.01; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 1063px); z-index: 0; }\",'.framer-MEiwj .framer-10aqet3, .framer-MEiwj .framer-r2zf4i { align-content: center; align-items: center; background: radial-gradient(40% 54% at 0% 0%, #232938 4.954954954954954%, rgb(20, 23, 31) 48.1981981981982%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 40px 72px 40px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }',\".framer-MEiwj .framer-2bw81p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-dw2jmp { aspect-ratio: 1.1793478260869565 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; left: -1px; overflow: hidden; position: absolute; top: 1px; width: var(--framer-aspect-ratio-supported, 480px); will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-85alua, .framer-MEiwj .framer-1gzyish { aspect-ratio: 1.1793478260869565 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 480px); will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-120e1z8-container { flex: none; height: 859px; position: relative; width: 100%; }\",'.framer-MEiwj .framer-1akg9y3, .framer-MEiwj .framer-ofogd9, .framer-MEiwj .framer-1grkg5o, .framer-MEiwj .framer-10p900s { align-content: center; align-items: center; background: radial-gradient(40% 54% at 0% 0%, #232938 4.954954954954954%, rgb(20, 23, 31) 48.1981981981982%, var(--token-23a1a36b-402b-4e7a-9fd8-c4e0d45b8c69, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.67); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 40px 32px 40px; position: relative; width: 375px; will-change: var(--framer-will-change-override, transform); }',\".framer-MEiwj .framer-l4r4q8, .framer-MEiwj .framer-1ix2618, .framer-MEiwj .framer-n38ilj, .framer-MEiwj .framer-1t9muqj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 310px; }\",\".framer-MEiwj .framer-jrs05d, .framer-MEiwj .framer-1ps3eld, .framer-MEiwj .framer-1lznzyp { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 300px; overflow: hidden; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-qjdmkt { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.86) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: -1px; top: -1px; }\",\".framer-MEiwj .framer-qk6khx { align-content: center; align-items: center; bottom: 29px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-MEiwj .framer-19qat6o, .framer-MEiwj .framer-1gfwkxd, .framer-MEiwj .framer-fitgij, .framer-MEiwj .framer-clctcl { align-self: stretch; background-color: var(--token-3f699cd1-931a-4fa7-bbf1-89b73f7639ef, #00ffa6); flex: none; height: auto; overflow: visible; position: relative; width: 5px; }\",\".framer-MEiwj .framer-vm1yyv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1xhuujk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; padding: 0px; position: relative; width: 300px; }\",\".framer-MEiwj .framer-jx063l, .framer-MEiwj .framer-i8959r, .framer-MEiwj .framer-112686d, .framer-MEiwj .framer-793prs { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.86) 100%); bottom: -2px; flex: none; left: 0px; overflow: hidden; position: absolute; right: -1px; top: 0px; }\",\".framer-MEiwj .framer-1hrlwom { align-content: center; align-items: center; bottom: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-MEiwj .framer-7wmdiu, .framer-MEiwj .framer-upmwzn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 300px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 310px; }\",\".framer-MEiwj .framer-1ovd932 { aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 300px); overflow: hidden; position: relative; width: 300px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-6kozfb, .framer-MEiwj .framer-1do7mfl { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.86) 100%); bottom: -3px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-MEiwj .framer-1q9aeb6, .framer-MEiwj .framer-1chot2f, .framer-MEiwj .framer-hif84e, .framer-MEiwj .framer-170erjb, .framer-MEiwj .framer-c1adq8, .framer-MEiwj .framer-1i3k2f { align-content: center; align-items: center; bottom: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-MEiwj .framer-6v2vzk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 150px 64px 150px 64px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-70a0oj, .framer-MEiwj .framer-kxlfv2 { --framer-text-wrap: balance; flex: none; height: auto; left: 50%; max-width: 600px; position: absolute; top: 9%; transform: translate(-50%, -50%); white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 10; }\",\".framer-MEiwj .framer-13d9zn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: center; overflow: visible; padding: 96px 0px 0px 0px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-MEiwj .framer-4rlom5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-d454c5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-19j08l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-1uri6sx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-5o6bz6, .framer-MEiwj .framer-1dvnd6g, .framer-MEiwj .framer-3vfz3w { --border-bottom-width: 4px; --border-color: var(--token-ca560a63-a71e-4898-a0f9-6ef1fc861efb, #c9c9c9); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-1e8d8n { aspect-ratio: 1 / 1; background-color: var(--token-fe5e4745-95f0-4101-adda-311b3e8fae28, #ffffff); border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-mk2shl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-MEiwj .framer-1es2dy4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-1ulagwv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 662px; position: relative; white-space: pre-wrap; width: 503px; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-wfn458 { 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: min-content; }\",\".framer-MEiwj .framer-35osuz-container, .framer-MEiwj .framer-1hevdox-container { flex: none; height: 439px; position: relative; width: 274px; }\",'.framer-MEiwj .framer-1p8z4h4, .framer-MEiwj .framer-1gyp7w9, .framer-MEiwj .framer-7avfep, .framer-MEiwj .framer-uzqdg1, .framer-MEiwj .framer-ar32x, .framer-MEiwj .framer-19jf8bx, .framer-MEiwj .framer-die0v3, .framer-MEiwj .framer-1nij2yp { align-content: center; align-items: center; background: radial-gradient(100% 100% at 50% 0%, #181c26 0%, rgb(16, 18, 25) 51.35135135135135%, var(--token-62ba8164-8476-438c-9264-f3c3bdd95ae9, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 2px 0px rgba(255, 255, 255, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 247px; will-change: var(--framer-will-change-override, transform); }',\".framer-MEiwj .framer-1v5t3q3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 662px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-17yzj1z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1i83gf6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 86px); overflow: visible; position: relative; width: 86px; }\",\".framer-MEiwj .framer-b75kh { -webkit-filter: blur(5px); aspect-ratio: 1 / 1; bottom: 0px; filter: blur(5px); flex: none; height: var(--framer-aspect-ratio-supported, 86px); left: 0px; opacity: 0.57; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\".framer-MEiwj .framer-13ozrma { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1fds6nj { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 673px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1txkf0b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-viq5k9, .framer-MEiwj .framer-19wjasa, .framer-MEiwj .framer-wzr4z5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-1hjjhgc, .framer-MEiwj .framer-1rgw5e2, .framer-MEiwj .framer-1f1e820, .framer-MEiwj .framer-1xyty3f, .framer-MEiwj .framer-jvi7nk, .framer-MEiwj .framer-8exbvs, .framer-MEiwj .framer-buwl4, .framer-MEiwj .framer-wvh9vs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-17p2waj, .framer-MEiwj .framer-13vo0gw, .framer-MEiwj .framer-ru7lh4, .framer-MEiwj .framer-7q4znw, .framer-MEiwj .framer-cic4k7, .framer-MEiwj .framer-7rdrp0, .framer-MEiwj .framer-o9dcfk, .framer-MEiwj .framer-ob91hq, .framer-MEiwj .framer-vtwy1m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-MEiwj .framer-p2qv6l, .framer-MEiwj .framer-1qllgpu, .framer-MEiwj .framer-214cd4, .framer-MEiwj .framer-1rw6ay7, .framer-MEiwj .framer-sqlfy8, .framer-MEiwj .framer-inenk5 { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-MEiwj .framer-wuvxt4, .framer-MEiwj .framer-abquok, .framer-MEiwj .framer-egyfnc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-MEiwj .framer-vsejnd, .framer-MEiwj .framer-e2lxvx { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-invalid-text-color: #999999; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }','.framer-MEiwj .framer-1xblgbe { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-MEiwj .framer-wcv8nx-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-3fa9rk { align-content: center; align-items: center; background: linear-gradient(180deg, #f0f0f0 0%, rgb(254, 254, 254) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-qp1uq6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1250px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-e5heyq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 449px; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-fozbvw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-hopepq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MEiwj .framer-i81jk3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; max-width: 1250px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-bkssbg, .framer-MEiwj .framer-171a8ds { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MEiwj .framer-tcqvam { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MEiwj .framer-uru1tc-container { flex: none; height: 909px; position: relative; width: 810px; }\",'.framer-MEiwj .framer-1wlr46h, .framer-MEiwj .framer-1rihfoh, .framer-MEiwj .framer-hinkzk, .framer-MEiwj .framer-1qg2ts6 { align-content: center; align-items: center; background: radial-gradient(40% 54% at 0% 0%, #232938 4.954954954954954%, rgb(20, 23, 31) 48.1981981981982%, var(--token-866d2d68-8c2c-4e0d-97c1-d1c3f29df55d, rgb(12, 14, 19)) /* {\"name\":\"Card\"} */ 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.67); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 40px 32px 40px; position: relative; width: 810px; will-change: var(--framer-will-change-override, transform); }',\".framer-MEiwj .framer-1bnp40x, .framer-MEiwj .framer-iwftz8, .framer-MEiwj .framer-1ptvhl1, .framer-MEiwj .framer-1b6n6uw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; max-width: 1342px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MEiwj .framer-180g3x6, .framer-MEiwj .framer-j9umus, .framer-MEiwj .framer-czl2vk, .framer-MEiwj .framer-56yptr { aspect-ratio: 1.1793478260869565 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 3px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 1px; width: var(--framer-aspect-ratio-supported, 476px); will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-1s1i6vf { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.86) 100%); bottom: -3px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: -1px; }\",\".framer-MEiwj .framer-1pnmk8c, .framer-MEiwj .framer-ygccid, .framer-MEiwj .framer-3i6a9n, .framer-MEiwj .framer-mi5x5v { background-color: var(--token-d5a39bc7-a47c-4404-aef6-4872390be3b2, #00ffa6); flex: none; height: 72px; overflow: visible; position: relative; width: 5px; }\",\".framer-MEiwj .framer-1wvw3cn, .framer-MEiwj .framer-gxjjfm, .framer-MEiwj .framer-81bjqk, .framer-MEiwj .framer-o5xugl { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-MEiwj .framer-v8r9y9, .framer-MEiwj .framer-1fltjzl { aspect-ratio: 1.1793478260869565 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: -2px; flex: none; overflow: hidden; position: absolute; right: -1px; top: 0px; width: var(--framer-aspect-ratio-supported, 479px); will-change: var(--framer-will-change-override, transform); }\",\".framer-MEiwj .framer-fvbvkp-container { -webkit-mask: linear-gradient(359deg, rgba(0, 0, 0, 0) 4%, rgba(0,0,0,1) 46.357685810810814%, rgba(0, 0, 0, 0) 96%) add; flex: none; height: 715px; left: 0px; mask: linear-gradient(359deg, rgba(0, 0, 0, 0) 4%, rgba(0,0,0,1) 46.357685810810814%, rgba(0, 0, 0, 0) 96%) add; opacity: 0.4; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MEiwj.framer-72rtr7, .framer-MEiwj .framer-2yt3x6, .framer-MEiwj .framer-1k8ax95, .framer-MEiwj .framer-13v55gb, .framer-MEiwj .framer-17mcwuj, .framer-MEiwj .framer-of8azn, .framer-MEiwj .framer-ye5zjh, .framer-MEiwj .framer-8wktpt, .framer-MEiwj .framer-153201f, .framer-MEiwj .framer-b6ofzt, .framer-MEiwj .framer-69kkig, .framer-MEiwj .framer-16fvvn2, .framer-MEiwj .framer-72gg4a, .framer-MEiwj .framer-ijt8y1, .framer-MEiwj .framer-1i8cy2u, .framer-MEiwj .framer-smc0pt, .framer-MEiwj .framer-1yat99k, .framer-MEiwj .framer-1vl9kq5, .framer-MEiwj .framer-159qpry, .framer-MEiwj .framer-1voxki5, .framer-MEiwj .framer-1oxandb, .framer-MEiwj .framer-vf1ba8, .framer-MEiwj .framer-yu38zd, .framer-MEiwj .framer-173exv9, .framer-MEiwj .framer-gsivxd, .framer-MEiwj .framer-1tyqpzv, .framer-MEiwj .framer-4nky4l, .framer-MEiwj .framer-1cu7zyf, .framer-MEiwj .framer-ukv1y0, .framer-MEiwj .framer-lqzv3o, .framer-MEiwj .framer-13ktf0t, .framer-MEiwj .framer-dgcz8a, .framer-MEiwj .framer-13udsoo, .framer-MEiwj .framer-1y18ozd, .framer-MEiwj .framer-10u0f42, .framer-MEiwj .framer-1cjtz3, .framer-MEiwj .framer-188fxj7, .framer-MEiwj .framer-1hqf97l, .framer-MEiwj .framer-1e29z30, .framer-MEiwj .framer-16rv2il, .framer-MEiwj .framer-1gskruq, .framer-MEiwj .framer-1fdp2we, .framer-MEiwj .framer-xmf7qf, .framer-MEiwj .framer-71ysm8, .framer-MEiwj .framer-10h2mhm, .framer-MEiwj .framer-pwtmi3, .framer-MEiwj .framer-1d5qps1, .framer-MEiwj .framer-11f4g9u, .framer-MEiwj .framer-1tslqr0, .framer-MEiwj .framer-gyp2e2, .framer-MEiwj .framer-c3p13r, .framer-MEiwj .framer-twhulf, .framer-MEiwj .framer-144b2ge, .framer-MEiwj .framer-nl26ab, .framer-MEiwj .framer-vy3ijp, .framer-MEiwj .framer-xbkst7, .framer-MEiwj .framer-crayuz, .framer-MEiwj .framer-12m0ke1, .framer-MEiwj .framer-1cn4ump, .framer-MEiwj .framer-ll4pxw, .framer-MEiwj .framer-1q3ti2z, .framer-MEiwj .framer-1rciplk, .framer-MEiwj .framer-1blnrm0, .framer-MEiwj .framer-10aqet3, .framer-MEiwj .framer-1czukvd, .framer-MEiwj .framer-1qyt5lg, .framer-MEiwj .framer-100l5wk, .framer-MEiwj .framer-1papv6s, .framer-MEiwj .framer-2bw81p, .framer-MEiwj .framer-pge3hz, .framer-MEiwj .framer-1t6zd9j, .framer-MEiwj .framer-dny647, .framer-MEiwj .framer-r2zf4i, .framer-MEiwj .framer-13ek1yz, .framer-MEiwj .framer-pfw4s3, .framer-MEiwj .framer-1hrnb9s, .framer-MEiwj .framer-g49o34, .framer-MEiwj .framer-ny7djr, .framer-MEiwj .framer-1xlbl7s, .framer-MEiwj .framer-kipuea, .framer-MEiwj .framer-1akg9y3, .framer-MEiwj .framer-l4r4q8, .framer-MEiwj .framer-xnzq9v, .framer-MEiwj .framer-qk6khx, .framer-MEiwj .framer-1y4jatj, .framer-MEiwj .framer-1wp2gwr, .framer-MEiwj .framer-ofogd9, .framer-MEiwj .framer-1ix2618, .framer-MEiwj .framer-vm1yyv, .framer-MEiwj .framer-1xhuujk, .framer-MEiwj .framer-1hrlwom, .framer-MEiwj .framer-2aump6, .framer-MEiwj .framer-evltmr, .framer-MEiwj .framer-ndfgz, .framer-MEiwj .framer-1grkg5o, .framer-MEiwj .framer-n38ilj, .framer-MEiwj .framer-7wmdiu, .framer-MEiwj .framer-1q9aeb6, .framer-MEiwj .framer-1nbisy9, .framer-MEiwj .framer-1r24mb9, .framer-MEiwj .framer-4t10sy, .framer-MEiwj .framer-10p900s, .framer-MEiwj .framer-1t9muqj, .framer-MEiwj .framer-upmwzn, .framer-MEiwj .framer-1chot2f, .framer-MEiwj .framer-1dffr2t, .framer-MEiwj .framer-12e1m7m, .framer-MEiwj .framer-7xws7i, .framer-MEiwj .framer-1k9yqsb, .framer-MEiwj .framer-1zy96k, .framer-MEiwj .framer-6v2vzk, .framer-MEiwj .framer-66jczq, .framer-MEiwj .framer-13d9zn, .framer-MEiwj .framer-4rlom5, .framer-MEiwj .framer-d454c5, .framer-MEiwj .framer-19j08l, .framer-MEiwj .framer-1uri6sx, .framer-MEiwj .framer-1es2dy4, .framer-MEiwj .framer-wfn458, .framer-MEiwj .framer-1p8z4h4, .framer-MEiwj .framer-1gyp7w9, .framer-MEiwj .framer-7avfep, .framer-MEiwj .framer-uzqdg1, .framer-MEiwj .framer-ar32x, .framer-MEiwj .framer-19jf8bx, .framer-MEiwj .framer-die0v3, .framer-MEiwj .framer-1nij2yp, .framer-MEiwj .framer-17yzj1z, .framer-MEiwj .framer-13ozrma, .framer-MEiwj .framer-1txkf0b, .framer-MEiwj .framer-viq5k9, .framer-MEiwj .framer-1hjjhgc, .framer-MEiwj .framer-1rgw5e2, .framer-MEiwj .framer-1f1e820, .framer-MEiwj .framer-wuvxt4, .framer-MEiwj .framer-19wjasa, .framer-MEiwj .framer-1xyty3f, .framer-MEiwj .framer-jvi7nk, .framer-MEiwj .framer-8exbvs, .framer-MEiwj .framer-abquok, .framer-MEiwj .framer-wzr4z5, .framer-MEiwj .framer-buwl4, .framer-MEiwj .framer-wvh9vs, .framer-MEiwj .framer-egyfnc, .framer-MEiwj .framer-3fa9rk, .framer-MEiwj .framer-qp1uq6, .framer-MEiwj .framer-fozbvw, .framer-MEiwj .framer-i81jk3, .framer-MEiwj .framer-bkssbg, .framer-MEiwj .framer-171a8ds, .framer-MEiwj .framer-tcqvam, .framer-MEiwj .framer-1wlr46h, .framer-MEiwj .framer-1bnp40x, .framer-MEiwj .framer-xuqsh9, .framer-MEiwj .framer-hif84e, .framer-MEiwj .framer-9wu4fv, .framer-MEiwj .framer-nsvnrc, .framer-MEiwj .framer-1wvw3cn, .framer-MEiwj .framer-1rihfoh, .framer-MEiwj .framer-iwftz8, .framer-MEiwj .framer-14u14qg, .framer-MEiwj .framer-170erjb, .framer-MEiwj .framer-1wz96hi, .framer-MEiwj .framer-18jxht6, .framer-MEiwj .framer-gxjjfm, .framer-MEiwj .framer-1rba6qy, .framer-MEiwj .framer-hinkzk, .framer-MEiwj .framer-1ptvhl1, .framer-MEiwj .framer-1m1ff72, .framer-MEiwj .framer-c1adq8, .framer-MEiwj .framer-1ee6no5, .framer-MEiwj .framer-o3rkfw, .framer-MEiwj .framer-81bjqk, .framer-MEiwj .framer-1l2uzdz, .framer-MEiwj .framer-f9cj4v, .framer-MEiwj .framer-1qg2ts6, .framer-MEiwj .framer-1b6n6uw, .framer-MEiwj .framer-15b43s8, .framer-MEiwj .framer-1i3k2f, .framer-MEiwj .framer-d8pbc3, .framer-MEiwj .framer-w03uif, .framer-MEiwj .framer-o5xugl, .framer-MEiwj .framer-1dh2aea, .framer-MEiwj .framer-1yszxe5, .framer-MEiwj .framer-16psfxh { gap: 0px; } .framer-MEiwj.framer-72rtr7 > *, .framer-MEiwj .framer-1k8ax95 > *, .framer-MEiwj .framer-1cjtz3 > *, .framer-MEiwj .framer-ll4pxw > *, .framer-MEiwj .framer-1papv6s > *, .framer-MEiwj .framer-g49o34 > *, .framer-MEiwj .framer-1wp2gwr > *, .framer-MEiwj .framer-evltmr > *, .framer-MEiwj .framer-1r24mb9 > *, .framer-MEiwj .framer-12e1m7m > *, .framer-MEiwj .framer-6v2vzk > *, .framer-MEiwj .framer-nsvnrc > *, .framer-MEiwj .framer-18jxht6 > *, .framer-MEiwj .framer-o3rkfw > *, .framer-MEiwj .framer-w03uif > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MEiwj.framer-72rtr7 > :first-child, .framer-MEiwj .framer-1k8ax95 > :first-child, .framer-MEiwj .framer-13v55gb > :first-child, .framer-MEiwj .framer-of8azn > :first-child, .framer-MEiwj .framer-ye5zjh > :first-child, .framer-MEiwj .framer-8wktpt > :first-child, .framer-MEiwj .framer-b6ofzt > :first-child, .framer-MEiwj .framer-16fvvn2 > :first-child, .framer-MEiwj .framer-1i8cy2u > :first-child, .framer-MEiwj .framer-smc0pt > :first-child, .framer-MEiwj .framer-1vl9kq5 > :first-child, .framer-MEiwj .framer-1voxki5 > :first-child, .framer-MEiwj .framer-1oxandb > :first-child, .framer-MEiwj .framer-yu38zd > :first-child, .framer-MEiwj .framer-173exv9 > :first-child, .framer-MEiwj .framer-4nky4l > :first-child, .framer-MEiwj .framer-1cu7zyf > :first-child, .framer-MEiwj .framer-ukv1y0 > :first-child, .framer-MEiwj .framer-lqzv3o > :first-child, .framer-MEiwj .framer-13ktf0t > :first-child, .framer-MEiwj .framer-dgcz8a > :first-child, .framer-MEiwj .framer-13udsoo > :first-child, .framer-MEiwj .framer-1y18ozd > :first-child, .framer-MEiwj .framer-10u0f42 > :first-child, .framer-MEiwj .framer-1cjtz3 > :first-child, .framer-MEiwj .framer-188fxj7 > :first-child, .framer-MEiwj .framer-1hqf97l > :first-child, .framer-MEiwj .framer-1e29z30 > :first-child, .framer-MEiwj .framer-16rv2il > :first-child, .framer-MEiwj .framer-1gskruq > :first-child, .framer-MEiwj .framer-1fdp2we > :first-child, .framer-MEiwj .framer-xmf7qf > :first-child, .framer-MEiwj .framer-71ysm8 > :first-child, .framer-MEiwj .framer-10h2mhm > :first-child, .framer-MEiwj .framer-pwtmi3 > :first-child, .framer-MEiwj .framer-1d5qps1 > :first-child, .framer-MEiwj .framer-11f4g9u > :first-child, .framer-MEiwj .framer-1tslqr0 > :first-child, .framer-MEiwj .framer-gyp2e2 > :first-child, .framer-MEiwj .framer-c3p13r > :first-child, .framer-MEiwj .framer-twhulf > :first-child, .framer-MEiwj .framer-144b2ge > :first-child, .framer-MEiwj .framer-nl26ab > :first-child, .framer-MEiwj .framer-vy3ijp > :first-child, .framer-MEiwj .framer-xbkst7 > :first-child, .framer-MEiwj .framer-crayuz > :first-child, .framer-MEiwj .framer-ll4pxw > :first-child, .framer-MEiwj .framer-1q3ti2z > :first-child, .framer-MEiwj .framer-1blnrm0 > :first-child, .framer-MEiwj .framer-10aqet3 > :first-child, .framer-MEiwj .framer-1czukvd > :first-child, .framer-MEiwj .framer-1papv6s > :first-child, .framer-MEiwj .framer-2bw81p > :first-child, .framer-MEiwj .framer-pge3hz > :first-child, .framer-MEiwj .framer-dny647 > :first-child, .framer-MEiwj .framer-r2zf4i > :first-child, .framer-MEiwj .framer-13ek1yz > :first-child, .framer-MEiwj .framer-g49o34 > :first-child, .framer-MEiwj .framer-ny7djr > :first-child, .framer-MEiwj .framer-kipuea > :first-child, .framer-MEiwj .framer-1akg9y3 > :first-child, .framer-MEiwj .framer-l4r4q8 > :first-child, .framer-MEiwj .framer-xnzq9v > :first-child, .framer-MEiwj .framer-1wp2gwr > :first-child, .framer-MEiwj .framer-ofogd9 > :first-child, .framer-MEiwj .framer-1ix2618 > :first-child, .framer-MEiwj .framer-vm1yyv > :first-child, .framer-MEiwj .framer-1xhuujk > :first-child, .framer-MEiwj .framer-evltmr > :first-child, .framer-MEiwj .framer-ndfgz > :first-child, .framer-MEiwj .framer-1grkg5o > :first-child, .framer-MEiwj .framer-n38ilj > :first-child, .framer-MEiwj .framer-7wmdiu > :first-child, .framer-MEiwj .framer-1r24mb9 > :first-child, .framer-MEiwj .framer-4t10sy > :first-child, .framer-MEiwj .framer-10p900s > :first-child, .framer-MEiwj .framer-1t9muqj > :first-child, .framer-MEiwj .framer-upmwzn > :first-child, .framer-MEiwj .framer-12e1m7m > :first-child, .framer-MEiwj .framer-7xws7i > :first-child, .framer-MEiwj .framer-1k9yqsb > :first-child, .framer-MEiwj .framer-6v2vzk > :first-child, .framer-MEiwj .framer-66jczq > :first-child, .framer-MEiwj .framer-d454c5 > :first-child, .framer-MEiwj .framer-19j08l > :first-child, .framer-MEiwj .framer-1es2dy4 > :first-child, .framer-MEiwj .framer-1p8z4h4 > :first-child, .framer-MEiwj .framer-1gyp7w9 > :first-child, .framer-MEiwj .framer-7avfep > :first-child, .framer-MEiwj .framer-uzqdg1 > :first-child, .framer-MEiwj .framer-ar32x > :first-child, .framer-MEiwj .framer-19jf8bx > :first-child, .framer-MEiwj .framer-die0v3 > :first-child, .framer-MEiwj .framer-1nij2yp > :first-child, .framer-MEiwj .framer-17yzj1z > :first-child, .framer-MEiwj .framer-13ozrma > :first-child, .framer-MEiwj .framer-1txkf0b > :first-child, .framer-MEiwj .framer-1hjjhgc > :first-child, .framer-MEiwj .framer-1rgw5e2 > :first-child, .framer-MEiwj .framer-1f1e820 > :first-child, .framer-MEiwj .framer-wuvxt4 > :first-child, .framer-MEiwj .framer-1xyty3f > :first-child, .framer-MEiwj .framer-jvi7nk > :first-child, .framer-MEiwj .framer-8exbvs > :first-child, .framer-MEiwj .framer-abquok > :first-child, .framer-MEiwj .framer-buwl4 > :first-child, .framer-MEiwj .framer-wvh9vs > :first-child, .framer-MEiwj .framer-egyfnc > :first-child, .framer-MEiwj .framer-3fa9rk > :first-child, .framer-MEiwj .framer-fozbvw > :first-child, .framer-MEiwj .framer-bkssbg > :first-child, .framer-MEiwj .framer-171a8ds > :first-child, .framer-MEiwj .framer-tcqvam > :first-child, .framer-MEiwj .framer-1wlr46h > :first-child, .framer-MEiwj .framer-1bnp40x > :first-child, .framer-MEiwj .framer-xuqsh9 > :first-child, .framer-MEiwj .framer-nsvnrc > :first-child, .framer-MEiwj .framer-1wvw3cn > :first-child, .framer-MEiwj .framer-1rihfoh > :first-child, .framer-MEiwj .framer-iwftz8 > :first-child, .framer-MEiwj .framer-14u14qg > :first-child, .framer-MEiwj .framer-18jxht6 > :first-child, .framer-MEiwj .framer-gxjjfm > :first-child, .framer-MEiwj .framer-1rba6qy > :first-child, .framer-MEiwj .framer-hinkzk > :first-child, .framer-MEiwj .framer-1ptvhl1 > :first-child, .framer-MEiwj .framer-1m1ff72 > :first-child, .framer-MEiwj .framer-o3rkfw > :first-child, .framer-MEiwj .framer-81bjqk > :first-child, .framer-MEiwj .framer-1l2uzdz > :first-child, .framer-MEiwj .framer-f9cj4v > :first-child, .framer-MEiwj .framer-1qg2ts6 > :first-child, .framer-MEiwj .framer-1b6n6uw > :first-child, .framer-MEiwj .framer-15b43s8 > :first-child, .framer-MEiwj .framer-w03uif > :first-child, .framer-MEiwj .framer-o5xugl > :first-child, .framer-MEiwj .framer-1dh2aea > :first-child, .framer-MEiwj .framer-1yszxe5 > :first-child, .framer-MEiwj .framer-16psfxh > :first-child { margin-top: 0px; } .framer-MEiwj.framer-72rtr7 > :last-child, .framer-MEiwj .framer-1k8ax95 > :last-child, .framer-MEiwj .framer-13v55gb > :last-child, .framer-MEiwj .framer-of8azn > :last-child, .framer-MEiwj .framer-ye5zjh > :last-child, .framer-MEiwj .framer-8wktpt > :last-child, .framer-MEiwj .framer-b6ofzt > :last-child, .framer-MEiwj .framer-16fvvn2 > :last-child, .framer-MEiwj .framer-1i8cy2u > :last-child, .framer-MEiwj .framer-smc0pt > :last-child, .framer-MEiwj .framer-1vl9kq5 > :last-child, .framer-MEiwj .framer-1voxki5 > :last-child, .framer-MEiwj .framer-1oxandb > :last-child, .framer-MEiwj .framer-yu38zd > :last-child, .framer-MEiwj .framer-173exv9 > :last-child, .framer-MEiwj .framer-4nky4l > :last-child, .framer-MEiwj .framer-1cu7zyf > :last-child, .framer-MEiwj .framer-ukv1y0 > :last-child, .framer-MEiwj .framer-lqzv3o > :last-child, .framer-MEiwj .framer-13ktf0t > :last-child, .framer-MEiwj .framer-dgcz8a > :last-child, .framer-MEiwj .framer-13udsoo > :last-child, .framer-MEiwj .framer-1y18ozd > :last-child, .framer-MEiwj .framer-10u0f42 > :last-child, .framer-MEiwj .framer-1cjtz3 > :last-child, .framer-MEiwj .framer-188fxj7 > :last-child, .framer-MEiwj .framer-1hqf97l > :last-child, .framer-MEiwj .framer-1e29z30 > :last-child, .framer-MEiwj .framer-16rv2il > :last-child, .framer-MEiwj .framer-1gskruq > :last-child, .framer-MEiwj .framer-1fdp2we > :last-child, .framer-MEiwj .framer-xmf7qf > :last-child, .framer-MEiwj .framer-71ysm8 > :last-child, .framer-MEiwj .framer-10h2mhm > :last-child, .framer-MEiwj .framer-pwtmi3 > :last-child, .framer-MEiwj .framer-1d5qps1 > :last-child, .framer-MEiwj .framer-11f4g9u > :last-child, .framer-MEiwj .framer-1tslqr0 > :last-child, .framer-MEiwj .framer-gyp2e2 > :last-child, .framer-MEiwj .framer-c3p13r > :last-child, .framer-MEiwj .framer-twhulf > :last-child, .framer-MEiwj .framer-144b2ge > :last-child, .framer-MEiwj .framer-nl26ab > :last-child, .framer-MEiwj .framer-vy3ijp > :last-child, .framer-MEiwj .framer-xbkst7 > :last-child, .framer-MEiwj .framer-crayuz > :last-child, .framer-MEiwj .framer-ll4pxw > :last-child, .framer-MEiwj .framer-1q3ti2z > :last-child, .framer-MEiwj .framer-1blnrm0 > :last-child, .framer-MEiwj .framer-10aqet3 > :last-child, .framer-MEiwj .framer-1czukvd > :last-child, .framer-MEiwj .framer-1papv6s > :last-child, .framer-MEiwj .framer-2bw81p > :last-child, .framer-MEiwj .framer-pge3hz > :last-child, .framer-MEiwj .framer-dny647 > :last-child, .framer-MEiwj .framer-r2zf4i > :last-child, .framer-MEiwj .framer-13ek1yz > :last-child, .framer-MEiwj .framer-g49o34 > :last-child, .framer-MEiwj .framer-ny7djr > :last-child, .framer-MEiwj .framer-kipuea > :last-child, .framer-MEiwj .framer-1akg9y3 > :last-child, .framer-MEiwj .framer-l4r4q8 > :last-child, .framer-MEiwj .framer-xnzq9v > :last-child, .framer-MEiwj .framer-1wp2gwr > :last-child, .framer-MEiwj .framer-ofogd9 > :last-child, .framer-MEiwj .framer-1ix2618 > :last-child, .framer-MEiwj .framer-vm1yyv > :last-child, .framer-MEiwj .framer-1xhuujk > :last-child, .framer-MEiwj .framer-evltmr > :last-child, .framer-MEiwj .framer-ndfgz > :last-child, .framer-MEiwj .framer-1grkg5o > :last-child, .framer-MEiwj .framer-n38ilj > :last-child, .framer-MEiwj .framer-7wmdiu > :last-child, .framer-MEiwj .framer-1r24mb9 > :last-child, .framer-MEiwj .framer-4t10sy > :last-child, .framer-MEiwj .framer-10p900s > :last-child, .framer-MEiwj .framer-1t9muqj > :last-child, .framer-MEiwj .framer-upmwzn > :last-child, .framer-MEiwj .framer-12e1m7m > :last-child, .framer-MEiwj .framer-7xws7i > :last-child, .framer-MEiwj .framer-1k9yqsb > :last-child, .framer-MEiwj .framer-6v2vzk > :last-child, .framer-MEiwj .framer-66jczq > :last-child, .framer-MEiwj .framer-d454c5 > :last-child, .framer-MEiwj .framer-19j08l > :last-child, .framer-MEiwj .framer-1es2dy4 > :last-child, .framer-MEiwj .framer-1p8z4h4 > :last-child, .framer-MEiwj .framer-1gyp7w9 > :last-child, .framer-MEiwj .framer-7avfep > :last-child, .framer-MEiwj .framer-uzqdg1 > :last-child, .framer-MEiwj .framer-ar32x > :last-child, .framer-MEiwj .framer-19jf8bx > :last-child, .framer-MEiwj .framer-die0v3 > :last-child, .framer-MEiwj .framer-1nij2yp > :last-child, .framer-MEiwj .framer-17yzj1z > :last-child, .framer-MEiwj .framer-13ozrma > :last-child, .framer-MEiwj .framer-1txkf0b > :last-child, .framer-MEiwj .framer-1hjjhgc > :last-child, .framer-MEiwj .framer-1rgw5e2 > :last-child, .framer-MEiwj .framer-1f1e820 > :last-child, .framer-MEiwj .framer-wuvxt4 > :last-child, .framer-MEiwj .framer-1xyty3f > :last-child, .framer-MEiwj .framer-jvi7nk > :last-child, .framer-MEiwj .framer-8exbvs > :last-child, .framer-MEiwj .framer-abquok > :last-child, .framer-MEiwj .framer-buwl4 > :last-child, .framer-MEiwj .framer-wvh9vs > :last-child, .framer-MEiwj .framer-egyfnc > :last-child, .framer-MEiwj .framer-3fa9rk > :last-child, .framer-MEiwj .framer-fozbvw > :last-child, .framer-MEiwj .framer-bkssbg > :last-child, .framer-MEiwj .framer-171a8ds > :last-child, .framer-MEiwj .framer-tcqvam > :last-child, .framer-MEiwj .framer-1wlr46h > :last-child, .framer-MEiwj .framer-1bnp40x > :last-child, .framer-MEiwj .framer-xuqsh9 > :last-child, .framer-MEiwj .framer-nsvnrc > :last-child, .framer-MEiwj .framer-1wvw3cn > :last-child, .framer-MEiwj .framer-1rihfoh > :last-child, .framer-MEiwj .framer-iwftz8 > :last-child, .framer-MEiwj .framer-14u14qg > :last-child, .framer-MEiwj .framer-18jxht6 > :last-child, .framer-MEiwj .framer-gxjjfm > :last-child, .framer-MEiwj .framer-1rba6qy > :last-child, .framer-MEiwj .framer-hinkzk > :last-child, .framer-MEiwj .framer-1ptvhl1 > :last-child, .framer-MEiwj .framer-1m1ff72 > :last-child, .framer-MEiwj .framer-o3rkfw > :last-child, .framer-MEiwj .framer-81bjqk > :last-child, .framer-MEiwj .framer-1l2uzdz > :last-child, .framer-MEiwj .framer-f9cj4v > :last-child, .framer-MEiwj .framer-1qg2ts6 > :last-child, .framer-MEiwj .framer-1b6n6uw > :last-child, .framer-MEiwj .framer-15b43s8 > :last-child, .framer-MEiwj .framer-w03uif > :last-child, .framer-MEiwj .framer-o5xugl > :last-child, .framer-MEiwj .framer-1dh2aea > :last-child, .framer-MEiwj .framer-1yszxe5 > :last-child, .framer-MEiwj .framer-16psfxh > :last-child { margin-bottom: 0px; } .framer-MEiwj .framer-2yt3x6 > *, .framer-MEiwj .framer-17mcwuj > *, .framer-MEiwj .framer-ijt8y1 > *, .framer-MEiwj .framer-1yat99k > *, .framer-MEiwj .framer-gsivxd > *, .framer-MEiwj .framer-1tyqpzv > *, .framer-MEiwj .framer-1zy96k > *, .framer-MEiwj .framer-4rlom5 > *, .framer-MEiwj .framer-1uri6sx > *, .framer-MEiwj .framer-viq5k9 > *, .framer-MEiwj .framer-19wjasa > *, .framer-MEiwj .framer-wzr4z5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MEiwj .framer-2yt3x6 > :first-child, .framer-MEiwj .framer-17mcwuj > :first-child, .framer-MEiwj .framer-153201f > :first-child, .framer-MEiwj .framer-69kkig > :first-child, .framer-MEiwj .framer-72gg4a > :first-child, .framer-MEiwj .framer-ijt8y1 > :first-child, .framer-MEiwj .framer-1yat99k > :first-child, .framer-MEiwj .framer-159qpry > :first-child, .framer-MEiwj .framer-vf1ba8 > :first-child, .framer-MEiwj .framer-gsivxd > :first-child, .framer-MEiwj .framer-1tyqpzv > :first-child, .framer-MEiwj .framer-12m0ke1 > :first-child, .framer-MEiwj .framer-1cn4ump > :first-child, .framer-MEiwj .framer-1rciplk > :first-child, .framer-MEiwj .framer-1qyt5lg > :first-child, .framer-MEiwj .framer-100l5wk > :first-child, .framer-MEiwj .framer-1t6zd9j > :first-child, .framer-MEiwj .framer-pfw4s3 > :first-child, .framer-MEiwj .framer-1hrnb9s > :first-child, .framer-MEiwj .framer-1xlbl7s > :first-child, .framer-MEiwj .framer-qk6khx > :first-child, .framer-MEiwj .framer-1y4jatj > :first-child, .framer-MEiwj .framer-1hrlwom > :first-child, .framer-MEiwj .framer-2aump6 > :first-child, .framer-MEiwj .framer-1q9aeb6 > :first-child, .framer-MEiwj .framer-1nbisy9 > :first-child, .framer-MEiwj .framer-1chot2f > :first-child, .framer-MEiwj .framer-1dffr2t > :first-child, .framer-MEiwj .framer-1zy96k > :first-child, .framer-MEiwj .framer-13d9zn > :first-child, .framer-MEiwj .framer-4rlom5 > :first-child, .framer-MEiwj .framer-1uri6sx > :first-child, .framer-MEiwj .framer-wfn458 > :first-child, .framer-MEiwj .framer-viq5k9 > :first-child, .framer-MEiwj .framer-19wjasa > :first-child, .framer-MEiwj .framer-wzr4z5 > :first-child, .framer-MEiwj .framer-qp1uq6 > :first-child, .framer-MEiwj .framer-i81jk3 > :first-child, .framer-MEiwj .framer-hif84e > :first-child, .framer-MEiwj .framer-9wu4fv > :first-child, .framer-MEiwj .framer-170erjb > :first-child, .framer-MEiwj .framer-1wz96hi > :first-child, .framer-MEiwj .framer-c1adq8 > :first-child, .framer-MEiwj .framer-1ee6no5 > :first-child, .framer-MEiwj .framer-1i3k2f > :first-child, .framer-MEiwj .framer-d8pbc3 > :first-child { margin-left: 0px; } .framer-MEiwj .framer-2yt3x6 > :last-child, .framer-MEiwj .framer-17mcwuj > :last-child, .framer-MEiwj .framer-153201f > :last-child, .framer-MEiwj .framer-69kkig > :last-child, .framer-MEiwj .framer-72gg4a > :last-child, .framer-MEiwj .framer-ijt8y1 > :last-child, .framer-MEiwj .framer-1yat99k > :last-child, .framer-MEiwj .framer-159qpry > :last-child, .framer-MEiwj .framer-vf1ba8 > :last-child, .framer-MEiwj .framer-gsivxd > :last-child, .framer-MEiwj .framer-1tyqpzv > :last-child, .framer-MEiwj .framer-12m0ke1 > :last-child, .framer-MEiwj .framer-1cn4ump > :last-child, .framer-MEiwj .framer-1rciplk > :last-child, .framer-MEiwj .framer-1qyt5lg > :last-child, .framer-MEiwj .framer-100l5wk > :last-child, .framer-MEiwj .framer-1t6zd9j > :last-child, .framer-MEiwj .framer-pfw4s3 > :last-child, .framer-MEiwj .framer-1hrnb9s > :last-child, .framer-MEiwj .framer-1xlbl7s > :last-child, .framer-MEiwj .framer-qk6khx > :last-child, .framer-MEiwj .framer-1y4jatj > :last-child, .framer-MEiwj .framer-1hrlwom > :last-child, .framer-MEiwj .framer-2aump6 > :last-child, .framer-MEiwj .framer-1q9aeb6 > :last-child, .framer-MEiwj .framer-1nbisy9 > :last-child, .framer-MEiwj .framer-1chot2f > :last-child, .framer-MEiwj .framer-1dffr2t > :last-child, .framer-MEiwj .framer-1zy96k > :last-child, .framer-MEiwj .framer-13d9zn > :last-child, .framer-MEiwj .framer-4rlom5 > :last-child, .framer-MEiwj .framer-1uri6sx > :last-child, .framer-MEiwj .framer-wfn458 > :last-child, .framer-MEiwj .framer-viq5k9 > :last-child, .framer-MEiwj .framer-19wjasa > :last-child, .framer-MEiwj .framer-wzr4z5 > :last-child, .framer-MEiwj .framer-qp1uq6 > :last-child, .framer-MEiwj .framer-i81jk3 > :last-child, .framer-MEiwj .framer-hif84e > :last-child, .framer-MEiwj .framer-9wu4fv > :last-child, .framer-MEiwj .framer-170erjb > :last-child, .framer-MEiwj .framer-1wz96hi > :last-child, .framer-MEiwj .framer-c1adq8 > :last-child, .framer-MEiwj .framer-1ee6no5 > :last-child, .framer-MEiwj .framer-1i3k2f > :last-child, .framer-MEiwj .framer-d8pbc3 > :last-child { margin-right: 0px; } .framer-MEiwj .framer-13v55gb > *, .framer-MEiwj .framer-ye5zjh > *, .framer-MEiwj .framer-nl26ab > *, .framer-MEiwj .framer-vy3ijp > *, .framer-MEiwj .framer-d454c5 > *, .framer-MEiwj .framer-1es2dy4 > *, .framer-MEiwj .framer-17yzj1z > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MEiwj .framer-of8azn > *, .framer-MEiwj .framer-1cu7zyf > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-MEiwj .framer-8wktpt > *, .framer-MEiwj .framer-16fvvn2 > *, .framer-MEiwj .framer-188fxj7 > *, .framer-MEiwj .framer-1hqf97l > *, .framer-MEiwj .framer-16rv2il > *, .framer-MEiwj .framer-1gskruq > *, .framer-MEiwj .framer-xmf7qf > *, .framer-MEiwj .framer-71ysm8 > *, .framer-MEiwj .framer-10h2mhm > *, .framer-MEiwj .framer-1d5qps1 > *, .framer-MEiwj .framer-11f4g9u > *, .framer-MEiwj .framer-gyp2e2 > *, .framer-MEiwj .framer-c3p13r > *, .framer-MEiwj .framer-twhulf > *, .framer-MEiwj .framer-1p8z4h4 > *, .framer-MEiwj .framer-1gyp7w9 > *, .framer-MEiwj .framer-7avfep > *, .framer-MEiwj .framer-uzqdg1 > *, .framer-MEiwj .framer-ar32x > *, .framer-MEiwj .framer-19jf8bx > *, .framer-MEiwj .framer-die0v3 > *, .framer-MEiwj .framer-1nij2yp > *, .framer-MEiwj .framer-1txkf0b > *, .framer-MEiwj .framer-fozbvw > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MEiwj .framer-153201f > *, .framer-MEiwj .framer-qk6khx > *, .framer-MEiwj .framer-1hrlwom > *, .framer-MEiwj .framer-i81jk3 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-MEiwj .framer-b6ofzt > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-MEiwj .framer-69kkig > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-MEiwj .framer-72gg4a > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-MEiwj .framer-1i8cy2u > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-MEiwj .framer-smc0pt > *, .framer-MEiwj .framer-lqzv3o > *, .framer-MEiwj .framer-dgcz8a > *, .framer-MEiwj .framer-13udsoo > *, .framer-MEiwj .framer-10u0f42 > *, .framer-MEiwj .framer-1e29z30 > *, .framer-MEiwj .framer-1fdp2we > *, .framer-MEiwj .framer-pwtmi3 > *, .framer-MEiwj .framer-1tslqr0 > *, .framer-MEiwj .framer-66jczq > *, .framer-MEiwj .framer-13ozrma > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-MEiwj .framer-1vl9kq5 > *, .framer-MEiwj .framer-yu38zd > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-MEiwj .framer-159qpry > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-MEiwj .framer-1voxki5 > *, .framer-MEiwj .framer-1oxandb > *, .framer-MEiwj .framer-173exv9 > *, .framer-MEiwj .framer-4nky4l > *, .framer-MEiwj .framer-1xhuujk > *, .framer-MEiwj .framer-19j08l > *, .framer-MEiwj .framer-1hjjhgc > *, .framer-MEiwj .framer-1rgw5e2 > *, .framer-MEiwj .framer-1f1e820 > *, .framer-MEiwj .framer-wuvxt4 > *, .framer-MEiwj .framer-1xyty3f > *, .framer-MEiwj .framer-jvi7nk > *, .framer-MEiwj .framer-8exbvs > *, .framer-MEiwj .framer-abquok > *, .framer-MEiwj .framer-buwl4 > *, .framer-MEiwj .framer-wvh9vs > *, .framer-MEiwj .framer-egyfnc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MEiwj .framer-vf1ba8 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-MEiwj .framer-ukv1y0 > *, .framer-MEiwj .framer-13ktf0t > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-MEiwj .framer-1y18ozd > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-MEiwj .framer-144b2ge > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-MEiwj .framer-xbkst7 > *, .framer-MEiwj .framer-10aqet3 > *, .framer-MEiwj .framer-r2zf4i > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-MEiwj .framer-crayuz > *, .framer-MEiwj .framer-1czukvd > *, .framer-MEiwj .framer-13ek1yz > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-MEiwj .framer-12m0ke1 > *, .framer-MEiwj .framer-1qyt5lg > *, .framer-MEiwj .framer-pfw4s3 > *, .framer-MEiwj .framer-1q9aeb6 > *, .framer-MEiwj .framer-1chot2f > *, .framer-MEiwj .framer-hif84e > *, .framer-MEiwj .framer-170erjb > *, .framer-MEiwj .framer-c1adq8 > *, .framer-MEiwj .framer-1i3k2f > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-MEiwj .framer-1cn4ump > *, .framer-MEiwj .framer-100l5wk > *, .framer-MEiwj .framer-1hrnb9s > *, .framer-MEiwj .framer-1y4jatj > *, .framer-MEiwj .framer-2aump6 > *, .framer-MEiwj .framer-1nbisy9 > *, .framer-MEiwj .framer-1dffr2t > *, .framer-MEiwj .framer-9wu4fv > *, .framer-MEiwj .framer-1wz96hi > *, .framer-MEiwj .framer-1ee6no5 > *, .framer-MEiwj .framer-d8pbc3 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-MEiwj .framer-1q3ti2z > *, .framer-MEiwj .framer-2bw81p > *, .framer-MEiwj .framer-pge3hz > *, .framer-MEiwj .framer-ny7djr > *, .framer-MEiwj .framer-xnzq9v > *, .framer-MEiwj .framer-ndfgz > *, .framer-MEiwj .framer-4t10sy > *, .framer-MEiwj .framer-7xws7i > *, .framer-MEiwj .framer-1k9yqsb > *, .framer-MEiwj .framer-bkssbg > *, .framer-MEiwj .framer-171a8ds > *, .framer-MEiwj .framer-1wvw3cn > *, .framer-MEiwj .framer-gxjjfm > *, .framer-MEiwj .framer-1rba6qy > *, .framer-MEiwj .framer-81bjqk > *, .framer-MEiwj .framer-1l2uzdz > *, .framer-MEiwj .framer-f9cj4v > *, .framer-MEiwj .framer-o5xugl > *, .framer-MEiwj .framer-1dh2aea > *, .framer-MEiwj .framer-1yszxe5 > *, .framer-MEiwj .framer-16psfxh > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-MEiwj .framer-1rciplk > *, .framer-MEiwj .framer-1t6zd9j > *, .framer-MEiwj .framer-1xlbl7s > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-MEiwj .framer-1blnrm0 > *, .framer-MEiwj .framer-dny647 > *, .framer-MEiwj .framer-kipuea > *, .framer-MEiwj .framer-vm1yyv > *, .framer-MEiwj .framer-7wmdiu > *, .framer-MEiwj .framer-upmwzn > *, .framer-MEiwj .framer-xuqsh9 > *, .framer-MEiwj .framer-14u14qg > *, .framer-MEiwj .framer-1m1ff72 > *, .framer-MEiwj .framer-15b43s8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-MEiwj .framer-1akg9y3 > *, .framer-MEiwj .framer-l4r4q8 > *, .framer-MEiwj .framer-ofogd9 > *, .framer-MEiwj .framer-1ix2618 > *, .framer-MEiwj .framer-1grkg5o > *, .framer-MEiwj .framer-n38ilj > *, .framer-MEiwj .framer-10p900s > *, .framer-MEiwj .framer-1t9muqj > *, .framer-MEiwj .framer-1wlr46h > *, .framer-MEiwj .framer-1bnp40x > *, .framer-MEiwj .framer-1rihfoh > *, .framer-MEiwj .framer-iwftz8 > *, .framer-MEiwj .framer-hinkzk > *, .framer-MEiwj .framer-1ptvhl1 > *, .framer-MEiwj .framer-1qg2ts6 > *, .framer-MEiwj .framer-1b6n6uw > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-MEiwj .framer-13d9zn > * { margin: 0px; margin-left: calc(66px / 2); margin-right: calc(66px / 2); } .framer-MEiwj .framer-wfn458 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MEiwj .framer-3fa9rk > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-MEiwj .framer-qp1uq6 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-MEiwj .framer-tcqvam > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-MEiwj[data-border=\"true\"]::after, .framer-MEiwj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-MEiwj.framer-72rtr7 { width: 810px; } .framer-MEiwj .framer-2yt3x6, .framer-MEiwj .framer-19j08l { order: 0; } .framer-MEiwj .framer-1k8ax95 { padding: 0px 40px 0px 40px; } .framer-MEiwj .framer-1y18ozd, .framer-MEiwj .framer-1es2dy4 { width: 100%; } .framer-MEiwj .framer-1vrqpbu-container { order: 2; } .framer-MEiwj .framer-1zy96k { order: 5; } .framer-MEiwj .framer-6v2vzk { padding: 150px 40px 150px 40px; } .framer-MEiwj .framer-13d9zn { flex-direction: column; } .framer-MEiwj .framer-4rlom5 { flex: none; flex-direction: column; gap: 40px; order: 1; width: 100%; } .framer-MEiwj .framer-d454c5 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-MEiwj .framer-17bnubx-container { order: 1; } .framer-MEiwj .framer-wfn458 { flex-direction: column; width: 100%; } .framer-MEiwj .framer-35osuz-container { height: 263px; width: 100%; } .framer-MEiwj .framer-1hevdox-container { height: 283px; width: 100%; } .framer-MEiwj .framer-12mxlii-container { order: 6; } .framer-MEiwj .framer-3fa9rk { order: 7; } .framer-MEiwj .framer-qp1uq6 { flex-direction: column; gap: 30px; } .framer-MEiwj .framer-fozbvw { flex: none; width: 100%; } .framer-MEiwj .framer-369xx2-container { order: 8; } .framer-MEiwj .framer-tcqvam { order: 4; } .framer-MEiwj .framer-fvbvkp-container { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MEiwj .framer-13d9zn, .framer-MEiwj .framer-4rlom5, .framer-MEiwj .framer-wfn458, .framer-MEiwj .framer-qp1uq6 { gap: 0px; } .framer-MEiwj .framer-13d9zn > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-MEiwj .framer-13d9zn > :first-child, .framer-MEiwj .framer-4rlom5 > :first-child, .framer-MEiwj .framer-wfn458 > :first-child, .framer-MEiwj .framer-qp1uq6 > :first-child { margin-top: 0px; } .framer-MEiwj .framer-13d9zn > :last-child, .framer-MEiwj .framer-4rlom5 > :last-child, .framer-MEiwj .framer-wfn458 > :last-child, .framer-MEiwj .framer-qp1uq6 > :last-child { margin-bottom: 0px; } .framer-MEiwj .framer-4rlom5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-MEiwj .framer-wfn458 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MEiwj .framer-qp1uq6 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 809px) { .framer-MEiwj.framer-72rtr7 { width: 390px; } .framer-MEiwj .framer-2yt3x6, .framer-MEiwj .framer-17mcwuj, .framer-MEiwj .framer-1zy96k { overflow: visible; } .framer-MEiwj .framer-1k8ax95 { max-width: 1200px; padding: 0px 20px 0px 20px; } .framer-MEiwj .framer-13v55gb { padding: 120px 0px 0px 0px; } .framer-MEiwj .framer-of8azn { gap: 30px; } .framer-MEiwj .framer-ye5zjh { gap: 20px; } .framer-MEiwj .framer-8wktpt { width: 385px; } .framer-MEiwj .framer-153201f, .framer-MEiwj .framer-1y18ozd, .framer-MEiwj .framer-e5heyq { width: 100%; } .framer-MEiwj .framer-kqjk5m { height: 34px; width: 129px; } .framer-MEiwj .framer-b6ofzt { gap: 4px; } .framer-MEiwj .framer-19ojnmp-container, .framer-MEiwj .framer-1wms0cd-container, .framer-MEiwj .framer-1ubuxcl-container, .framer-MEiwj .framer-1073mv8-container, .framer-MEiwj .framer-284v4r-container { height: 14px; width: 12px; } .framer-MEiwj .framer-1t34ilz { order: 0; } .framer-MEiwj .framer-10gbj7q { order: 1; will-change: var(--framer-will-change-effect-override, transform); } .framer-MEiwj .framer-72gg4a { flex-direction: column; gap: 20px; order: 2; } .framer-MEiwj .framer-15g7w19 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; } .framer-MEiwj .framer-a3sxgy-container { aspect-ratio: unset; height: 100%; left: unset; position: relative; right: unset; top: unset; width: auto; } .framer-MEiwj .framer-1cu7zyf { padding: 126px 0px 96px 0px; } .framer-MEiwj .framer-ukv1y0, .framer-MEiwj .framer-13ktf0t { max-width: unset; } .framer-MEiwj .framer-160ik4h-container, .framer-MEiwj .framer-19j08l, .framer-MEiwj .framer-xzqbrb-container { order: 2; } .framer-MEiwj .framer-120e1z8-container { order: 1; } .framer-MEiwj .framer-6v2vzk { max-width: 1200px; padding: 150px 20px 150px 20px; } .framer-MEiwj .framer-13d9zn, .framer-MEiwj .framer-viq5k9, .framer-MEiwj .framer-19wjasa, .framer-MEiwj .framer-wzr4z5, .framer-MEiwj .framer-i81jk3 { flex-direction: column; } .framer-MEiwj .framer-4rlom5 { flex: none; flex-direction: column; gap: 40px; order: 0; width: 100%; } .framer-MEiwj .framer-d454c5 { align-content: center; align-items: center; flex: none; order: 0; width: 100%; } .framer-MEiwj .framer-16whmyi { order: 3; } .framer-MEiwj .framer-1es2dy4 { order: 1; width: 100%; } .framer-MEiwj .framer-wfn458 { flex-direction: column; width: 100%; } .framer-MEiwj .framer-35osuz-container { height: 269px; order: 1; width: 100%; } .framer-MEiwj .framer-1v5t3q3 { flex: none; order: 0; width: 100%; } .framer-MEiwj .framer-1hevdox-container { height: 280px; order: 2; width: 100%; } .framer-MEiwj .framer-1hjjhgc, .framer-MEiwj .framer-1rgw5e2, .framer-MEiwj .framer-1f1e820, .framer-MEiwj .framer-1xyty3f, .framer-MEiwj .framer-jvi7nk, .framer-MEiwj .framer-8exbvs, .framer-MEiwj .framer-buwl4, .framer-MEiwj .framer-wvh9vs, .framer-MEiwj .framer-fozbvw, .framer-MEiwj .framer-bkssbg, .framer-MEiwj .framer-171a8ds { flex: none; width: 100%; } .framer-MEiwj .framer-ob91hq { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-MEiwj .framer-3fa9rk { padding: 80px 40px 80px 40px; } .framer-MEiwj .framer-qp1uq6 { flex-direction: column; gap: 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MEiwj .framer-of8azn, .framer-MEiwj .framer-ye5zjh, .framer-MEiwj .framer-b6ofzt, .framer-MEiwj .framer-72gg4a, .framer-MEiwj .framer-15g7w19, .framer-MEiwj .framer-13d9zn, .framer-MEiwj .framer-4rlom5, .framer-MEiwj .framer-wfn458, .framer-MEiwj .framer-viq5k9, .framer-MEiwj .framer-19wjasa, .framer-MEiwj .framer-wzr4z5, .framer-MEiwj .framer-qp1uq6, .framer-MEiwj .framer-i81jk3 { gap: 0px; } .framer-MEiwj .framer-of8azn > *, .framer-MEiwj .framer-qp1uq6 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MEiwj .framer-of8azn > :first-child, .framer-MEiwj .framer-ye5zjh > :first-child, .framer-MEiwj .framer-b6ofzt > :first-child, .framer-MEiwj .framer-72gg4a > :first-child, .framer-MEiwj .framer-13d9zn > :first-child, .framer-MEiwj .framer-4rlom5 > :first-child, .framer-MEiwj .framer-wfn458 > :first-child, .framer-MEiwj .framer-viq5k9 > :first-child, .framer-MEiwj .framer-19wjasa > :first-child, .framer-MEiwj .framer-wzr4z5 > :first-child, .framer-MEiwj .framer-qp1uq6 > :first-child, .framer-MEiwj .framer-i81jk3 > :first-child { margin-top: 0px; } .framer-MEiwj .framer-of8azn > :last-child, .framer-MEiwj .framer-ye5zjh > :last-child, .framer-MEiwj .framer-b6ofzt > :last-child, .framer-MEiwj .framer-72gg4a > :last-child, .framer-MEiwj .framer-13d9zn > :last-child, .framer-MEiwj .framer-4rlom5 > :last-child, .framer-MEiwj .framer-wfn458 > :last-child, .framer-MEiwj .framer-viq5k9 > :last-child, .framer-MEiwj .framer-19wjasa > :last-child, .framer-MEiwj .framer-wzr4z5 > :last-child, .framer-MEiwj .framer-qp1uq6 > :last-child, .framer-MEiwj .framer-i81jk3 > :last-child { margin-bottom: 0px; } .framer-MEiwj .framer-ye5zjh > *, .framer-MEiwj .framer-72gg4a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MEiwj .framer-b6ofzt > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-MEiwj .framer-15g7w19 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MEiwj .framer-15g7w19 > :first-child { margin-left: 0px; } .framer-MEiwj .framer-15g7w19 > :last-child { margin-right: 0px; } .framer-MEiwj .framer-13d9zn > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-MEiwj .framer-4rlom5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-MEiwj .framer-wfn458 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MEiwj .framer-viq5k9 > *, .framer-MEiwj .framer-19wjasa > *, .framer-MEiwj .framer-wzr4z5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MEiwj .framer-i81jk3 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}\",\"@media (min-width: 1440px) { .framer-MEiwj.framer-72rtr7 { width: 1440px; } .framer-MEiwj .framer-1k8ax95 { padding: 0px 100px 0px 100px; } .framer-MEiwj .framer-10gbj7q { max-width: 628px; will-change: var(--framer-will-change-effect-override, transform); } .framer-MEiwj .framer-smc0pt { right: 217px; } .framer-MEiwj .framer-1l1z2v4 { left: 178px; } .framer-MEiwj .framer-144b2ge { max-width: 100%; padding: 153px 100px 153px 100px; } .framer-MEiwj .framer-6v2vzk { padding: 150px 100px 150px 100px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9118.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FWVpfDVPB\":{\"layout\":[\"fixed\",\"auto\"]},\"UCGPDF5VO\":{\"layout\":[\"fixed\",\"auto\"]},\"Pd_SV8XXg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Xu3xov2KD\":{\"pattern\":\":Xu3xov2KD\",\"name\":\"\"},\"IEKt1NMQE\":{\"pattern\":\":IEKt1NMQE\",\"name\":\"start\"},\"B14SqwW4g\":{\"pattern\":\":B14SqwW4g\",\"name\":\"logos\"},\"FhLQxpKfm\":{\"pattern\":\":FhLQxpKfm\",\"name\":\"section-2\"},\"g6pN5oEej\":{\"pattern\":\":g6pN5oEej\",\"name\":\"section3\"},\"IZ9KJAN5k\":{\"pattern\":\":IZ9KJAN5k\",\"name\":\"body-transform-desktop\"},\"IiuTMqPsi\":{\"pattern\":\":IiuTMqPsi\",\"name\":\"section5\"},\"KMDiDUP1H\":{\"pattern\":\":KMDiDUP1H\",\"name\":\"form\"},\"wBpwGxJ0H\":{\"pattern\":\":wBpwGxJ0H\",\"name\":\"end\"},\"ZJLC9zZyp\":{\"pattern\":\":ZJLC9zZyp\",\"name\":\"footer\"},\"NiXnhEqvk\":{\"pattern\":\":NiXnhEqvk\",\"name\":\"body-transform-tablet\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-MEiwj\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9118.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{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:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BNWG6MUI4RTC6WEND2VPDH4MHMIVU3XZ/R5YXY5FMVG6PXU36GNEEA24MIPMEPGSM/CIM4KQCLZSMMLWPVH25IDDSTY4ENPHEY.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5ICO57VJIN252OT5L2KLEIPW754DTLAO/ZU64SLR2IEO66N27IVY5Z6JJJRTJECJK/TCTRLNEXANFIGSFCZTGQL7PZ5362GYK6.woff2\",weight:\"900\"},{family:\"Microgramma D Bold Extended\",source:\"custom\",url:\"https://framerusercontent.com/assets/RZtFrpWVXe49yN5FXlrrlauf1c.woff2\"}]},...PhosphorFonts,...ButtonsPrimaryFonts,...ButtonsSecondaryFonts,...DeviceFonts,...MiniReview1Fonts,...LottieFonts,...TickerFonts,...ButtonFonts,...NavigationNavigationFonts,...ComponentBenefitFonts,...SlideshowFonts,...CarouselFonts,...Button2Fonts,...SmoothScrollFonts,...OtherAccordionFonts,...GlobalFooterFonts,...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FWVpfDVPB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UCGPDF5VO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pd_SV8XXg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"Xu3xov2KD\\\":{\\\"pattern\\\":\\\":Xu3xov2KD\\\",\\\"name\\\":\\\"\\\"},\\\"IEKt1NMQE\\\":{\\\"pattern\\\":\\\":IEKt1NMQE\\\",\\\"name\\\":\\\"start\\\"},\\\"B14SqwW4g\\\":{\\\"pattern\\\":\\\":B14SqwW4g\\\",\\\"name\\\":\\\"logos\\\"},\\\"FhLQxpKfm\\\":{\\\"pattern\\\":\\\":FhLQxpKfm\\\",\\\"name\\\":\\\"section-2\\\"},\\\"g6pN5oEej\\\":{\\\"pattern\\\":\\\":g6pN5oEej\\\",\\\"name\\\":\\\"section3\\\"},\\\"IZ9KJAN5k\\\":{\\\"pattern\\\":\\\":IZ9KJAN5k\\\",\\\"name\\\":\\\"body-transform-desktop\\\"},\\\"IiuTMqPsi\\\":{\\\"pattern\\\":\\\":IiuTMqPsi\\\",\\\"name\\\":\\\"section5\\\"},\\\"KMDiDUP1H\\\":{\\\"pattern\\\":\\\":KMDiDUP1H\\\",\\\"name\\\":\\\"form\\\"},\\\"wBpwGxJ0H\\\":{\\\"pattern\\\":\\\":wBpwGxJ0H\\\",\\\"name\\\":\\\"end\\\"},\\\"ZJLC9zZyp\\\":{\\\"pattern\\\":\\\":ZJLC9zZyp\\\",\\\"name\\\":\\\"footer\\\"},\\\"NiXnhEqvk\\\":{\\\"pattern\\\":\\\":NiXnhEqvk\\\",\\\"name\\\":\\\"body-transform-tablet\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"9118.5\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "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", "filteredSlots", "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", "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", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "name1", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "QUIw8Gp80", "v_pYW9mfT", "AHW2bVdJO", "z44r8i_To", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "Image2", "RichText2", "css", "FramerxPW8uhK2k", "withCSS", "xPW8uhK2k_default", "addPropertyControls", "ControlType", "addFonts", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "VideoFonts", "getFonts", "Video", "CardsTeamFonts", "xPW8uhK2k_default", "SlideshowFonts", "Slideshow", "Video1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "toImageSrc", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "poster", "video", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "hkER3s2E3", "UXLq1sxOJ", "w02mljpJa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerhDGNsvLBw", "withCSS", "hDGNsvLBw_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "radiusForCorner", "value", "cornerIndex", "segments", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "radius", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "B_qgp_Xvy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "css", "Frameryd4YpzVEY", "withCSS", "yd4YpzVEY_default", "addPropertyControls", "ControlType", "addFonts", "HeroGlowFonts", "getFonts", "yd4YpzVEY_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ScreenContentFonts", "hDGNsvLBw_default", "ScreenContentControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "image", "poster", "variant1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gCAH6ImjH", "N0VtW9m0Q", "p075zLsbI", "emtXTtjus", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerIZhWJyPhk", "withCSS", "IZhWJyPhk_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "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", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "urRBn5pkB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "css", "FramernhGZ7W1q6", "withCSS", "nhGZ7W1q6_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "MaterialFonts", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1pwv2fr", "args", "onAppearqpc381", "onAppeark6udga", "onAppearfhqk8i", "onAppearsowjff", "onAppear1oya30c", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "Framerp2TXmrqrY", "withCSS", "p2TXmrqrY_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonsPrimaryFonts", "buZ6A_K3a_default", "ContainerWithOptimizedAppearEffect", "Container", "ButtonsSecondaryFonts", "tA15HPmex_default", "DeviceFonts", "IZhWJyPhk_default", "MotionDivWithFX", "withFX", "MiniReview1Fonts", "p2TXmrqrY_default", "RichTextWithFX", "LottieFonts", "Lottie", "TickerFonts", "Ticker", "ButtonFonts", "QluaRKeO3_default", "NavigationNavigationFonts", "YlslyniFN_default", "ComponentBenefitFonts", "nhGZ7W1q6_default", "SlideshowFonts", "Slideshow", "CarouselFonts", "Carousel", "Button2Fonts", "PNV4OoxI3_default", "SmoothScrollFonts", "SmoothScroll", "OtherAccordionFonts", "qluWa2nmw_default", "GlobalFooterFonts", "vZv_jfPCF_default", "VideoFonts", "Video", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "textEffect", "transition3", "animation3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "addImageAlt", "image", "alt", "inertia", "preventDefault", "e", "animation8", "animation9", "transition7", "animation10", "transition8", "animation11", "transition9", "animation12", "transition10", "animation13", "animation14", "transition11", "transition12", "animation15", "transformTemplate1", "_", "t", "animation16", "animation17", "transition13", "animation18", "transition14", "animation19", "transition15", "animation20", "transition16", "animation21", "transition17", "animation22", "transition18", "animation23", "transition19", "animation24", "transition20", "animation25", "transition21", "animation26", "transition22", "animation27", "transition23", "animation28", "transition24", "animation29", "transition25", "animation30", "animation31", "transformTemplate2", "transformTemplate3", "animation32", "transition26", "transition27", "textEffect1", "animation33", "transition28", "transition29", "animation34", "transition30", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "xhhXTHb64A1OOgZneh", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "elementId2", "ref3", "isDisplayed", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed1", "isDisplayed2", "elementId5", "ref6", "isDisplayed3", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "isDisplayed4", "elementId10", "ref11", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "Image2", "ComponentViewportProvider", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "SVG", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormSelect", "Link", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
