{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/ZSmipkqG8T6uEnWZBOWl/AGVAlZTw0Q2rhfusa1DK/eQS2vPzF9.js", "ssg:https://framerusercontent.com/modules/TtfcPk6HLlGerv5Z6dWj/BVsUP3Ne0fnthame1MI3/p4tgml675.js", "ssg:https://framerusercontent.com/modules/eJa9B8btxtJF9oNEUnIq/qnpwEYZ7nYcLPz01e3l9/Rn2UM8KEM.js", "ssg:https://framerusercontent.com/modules/42oASJLdpoLja6lrJzcB/r122pj3SK3FuXfzdlEuD/sI6QQARv3.js", "ssg:https://framerusercontent.com/modules/i3GXygdLJ1b22OxBFBPg/qQrUhqH4NQILzH7gQ75I/jLQ6WJGJ7.js", "ssg:https://framerusercontent.com/modules/aCswjgsjFtaHf7A106X6/t34Um19tKTiQKG6NBadY/Smvhxk9Lx.js", "ssg:https://framerusercontent.com/modules/rvUKNfum0A4quzMe02qO/WzGZRpycpHCAwMRa27Gv/kJA_5RkV8.js", "ssg:https://framerusercontent.com/modules/ezkBgwU7XKEk6HLCWpJa/J596GM6KaHwyYFEYQWDM/Yvr4anILU.js", "ssg:https://framerusercontent.com/modules/dEmxS1lNfl95eV7i9oTm/Tt30YxUjw7XAG0ji0UIo/pe3meem6y.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// 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));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\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"r3tYt44nJ\"];const serializationHash=\"framer-idDyN\";const variantClassNames={r3tYt44nJ:\"framer-v-1xv51ud\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r3tYt44nJ\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1xv51ud\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"r3tYt44nJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1li72bs-container\",layoutDependency:layoutDependency,layoutId:\"DjJTiijiC-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:25,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"DjJTiijiC\",layoutId:\"DjJTiijiC\",padding:10,paddingBottom:0,paddingLeft:50,paddingPerSide:true,paddingRight:50,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u2bwwi\",layoutDependency:layoutDependency,layoutId:\"zvYSnX6HW\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-1n7e2cr\",layoutDependency:layoutDependency,layoutId:\"YZu2qzKFS\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"The TW Team are fantastic to work with.  From developing collaborative briefs, to coming up with creative concepts that really challenge, they have become a trusted partner who will always strive to deliver to a high standard.\"})}),className:\"framer-110yx2p\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"z6GJcu_n1\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k7s8d1\",layoutDependency:layoutDependency,layoutId:\"ZwcWghR5J\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:800,pixelWidth:800,sizes:\"60px\",src:\"https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg\",srcSet:\"https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg 800w\"},className:\"framer-j8wnwk\",layoutDependency:layoutDependency,layoutId:\"VVcr9v7hu\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ja0uj6\",layoutDependency:layoutDependency,layoutId:\"UZpK_LLWK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Adam Coomber\"})}),className:\"framer-1duw60f\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"JtC3KI_tW\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Marketing Manager \",/*#__PURE__*/_jsx(motion.br,{}),\"at Zoetis UK\"]})}),className:\"framer-fqv2ji\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"YR3QmUmSQ\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xe4lrn\",layoutDependency:layoutDependency,layoutId:\"Aqy5j0SDJ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-lf9dte\",layoutDependency:layoutDependency,layoutId:\"Xz987ClR6\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"TW Creative provide us with a professional agency solution to our creative communication needs. They are receptive, responsive, and produce work of a high quality and on brand.\\xa0\\xa0\"})}),className:\"framer-12upf8w\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"DoZpjcx72\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lu0azs\",layoutDependency:layoutDependency,layoutId:\"AqPfSUwhL\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:374,pixelWidth:422,src:\"https://framerusercontent.com/images/PzEJAtgK9Wyb63caI6WuaodGgQw.png\"},className:\"framer-1dlsgmd\",layoutDependency:layoutDependency,layoutId:\"qujNmzsmC\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uzqdvl\",layoutDependency:layoutDependency,layoutId:\"yZZ0UoGrY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"CRM Team\"})}),className:\"framer-mgwkpz\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"PKK_kR3nb\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:\"Hyundai Capital\"})}),className:\"framer-1123u4\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"cHHkZFu3s\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lxn13p\",layoutDependency:layoutDependency,layoutId:\"jSkzBb87O\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-1xb7vya\",layoutDependency:layoutDependency,layoutId:\"W3IacSo20\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"We\u2019ve been delighted with the outcome of working with the team at TW Creative, right from the start they understood our brief and executed an innovative and fresh new campaign that has been extremely well received by our community.\"})}),className:\"framer-swf73e\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"lzcXLEMEv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hbo5m9\",layoutDependency:layoutDependency,layoutId:\"po2oLchd9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:524,pixelWidth:707,sizes:\"60px\",src:\"https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg\",srcSet:\"https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg 707w\"},className:\"framer-kn9q2h\",layoutDependency:layoutDependency,layoutId:\"uG7UojpES\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uqy79v\",layoutDependency:layoutDependency,layoutId:\"SUeB6JGDP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Jonny Hylton\\xa0\"})}),className:\"framer-195zsyv\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"jm8GuAwhW\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Foundation Director \",/*#__PURE__*/_jsx(motion.br,{}),\"at Reigate Grammar School\"]})}),className:\"framer-k0f5dq\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Usbg3rFlV\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pe8z9t\",layoutDependency:layoutDependency,layoutId:\"uCMjnsX9x\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-14eolil\",layoutDependency:layoutDependency,layoutId:\"FE7V_clb3\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:[\"TW Creative is an exceptional agency, with meticulous attention to detail and remarkable responsiveness to our specific needs.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"They excel in crafting imaginative concepts that resonate deeply with our intended messages, ensuring these are communicated effectively to our target audience. Their knack for blending creativity with a keen understanding of our vision makes them a valuable partner.\"]})}),className:\"framer-xxe5cq\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ANkn8GWWP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e9e1y5\",layoutDependency:layoutDependency,layoutId:\"BZjMf7u_7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:533,pixelWidth:577,sizes:\"60px\",src:\"https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg\",srcSet:\"https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg 577w\"},className:\"framer-14wxg1q\",layoutDependency:layoutDependency,layoutId:\"qXcpro071\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4djjs2\",layoutDependency:layoutDependency,layoutId:\"InG73HMxX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Nicky Love\"})}),className:\"framer-cfs430\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"lqO1Sy3lW\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Marketing Manager \",/*#__PURE__*/_jsx(motion.br,{}),\"at Carus Animal Health Limited\"]})}),className:\"framer-1ln36sx\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"pc19VozFj\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-idDyN.framer-x2ay2l, .framer-idDyN .framer-x2ay2l { display: block; }\",\".framer-idDyN.framer-1xv51ud { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 390px; }\",\".framer-idDyN .framer-1li72bs-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-idDyN .framer-1u2bwwi, .framer-idDyN .framer-1xe4lrn, .framer-idDyN .framer-lxn13p, .framer-idDyN .framer-pe8z9t { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: min-content; }\",\".framer-idDyN .framer-1n7e2cr, .framer-idDyN .framer-lf9dte, .framer-idDyN .framer-1xb7vya, .framer-idDyN .framer-14eolil { aspect-ratio: 1.0089285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 61px; }\",\".framer-idDyN .framer-110yx2p, .framer-idDyN .framer-12upf8w, .framer-idDyN .framer-swf73e, .framer-idDyN .framer-xxe5cq { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-idDyN .framer-k7s8d1, .framer-idDyN .framer-1lu0azs, .framer-idDyN .framer-1hbo5m9, .framer-idDyN .framer-e9e1y5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-idDyN .framer-j8wnwk, .framer-idDyN .framer-1dlsgmd, .framer-idDyN .framer-kn9q2h, .framer-idDyN .framer-14wxg1q { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-idDyN .framer-ja0uj6, .framer-idDyN .framer-1uzqdvl, .framer-idDyN .framer-uqy79v, .framer-idDyN .framer-4djjs2 { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-idDyN .framer-1duw60f, .framer-idDyN .framer-fqv2ji, .framer-idDyN .framer-mgwkpz, .framer-idDyN .framer-1123u4, .framer-idDyN .framer-195zsyv, .framer-idDyN .framer-k0f5dq, .framer-idDyN .framer-cfs430, .framer-idDyN .framer-1ln36sx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-idDyN.framer-1xv51ud, .framer-idDyN .framer-1u2bwwi, .framer-idDyN .framer-k7s8d1, .framer-idDyN .framer-ja0uj6, .framer-idDyN .framer-1xe4lrn, .framer-idDyN .framer-1lu0azs, .framer-idDyN .framer-1uzqdvl, .framer-idDyN .framer-lxn13p, .framer-idDyN .framer-1hbo5m9, .framer-idDyN .framer-uqy79v, .framer-idDyN .framer-pe8z9t, .framer-idDyN .framer-e9e1y5, .framer-idDyN .framer-4djjs2 { gap: 0px; } .framer-idDyN.framer-1xv51ud > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-idDyN.framer-1xv51ud > :first-child, .framer-idDyN .framer-k7s8d1 > :first-child, .framer-idDyN .framer-1lu0azs > :first-child, .framer-idDyN .framer-1hbo5m9 > :first-child, .framer-idDyN .framer-e9e1y5 > :first-child { margin-left: 0px; } .framer-idDyN.framer-1xv51ud > :last-child, .framer-idDyN .framer-k7s8d1 > :last-child, .framer-idDyN .framer-1lu0azs > :last-child, .framer-idDyN .framer-1hbo5m9 > :last-child, .framer-idDyN .framer-e9e1y5 > :last-child { margin-right: 0px; } .framer-idDyN .framer-1u2bwwi > *, .framer-idDyN .framer-1xe4lrn > *, .framer-idDyN .framer-lxn13p > *, .framer-idDyN .framer-pe8z9t > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-idDyN .framer-1u2bwwi > :first-child, .framer-idDyN .framer-ja0uj6 > :first-child, .framer-idDyN .framer-1xe4lrn > :first-child, .framer-idDyN .framer-1uzqdvl > :first-child, .framer-idDyN .framer-lxn13p > :first-child, .framer-idDyN .framer-uqy79v > :first-child, .framer-idDyN .framer-pe8z9t > :first-child, .framer-idDyN .framer-4djjs2 > :first-child { margin-top: 0px; } .framer-idDyN .framer-1u2bwwi > :last-child, .framer-idDyN .framer-ja0uj6 > :last-child, .framer-idDyN .framer-1xe4lrn > :last-child, .framer-idDyN .framer-1uzqdvl > :last-child, .framer-idDyN .framer-lxn13p > :last-child, .framer-idDyN .framer-uqy79v > :last-child, .framer-idDyN .framer-pe8z9t > :last-child, .framer-idDyN .framer-4djjs2 > :last-child { margin-bottom: 0px; } .framer-idDyN .framer-k7s8d1 > *, .framer-idDyN .framer-1lu0azs > *, .framer-idDyN .framer-1hbo5m9 > *, .framer-idDyN .framer-e9e1y5 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-idDyN .framer-ja0uj6 > *, .framer-idDyN .framer-1uzqdvl > *, .framer-idDyN .framer-uqy79v > *, .framer-idDyN .framer-4djjs2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 669\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereQS2vPzF9=withCSS(Component,css,\"framer-idDyN\");export default FramereQS2vPzF9;FramereQS2vPzF9.displayName=\"Testimonials Mobile\";FramereQS2vPzF9.defaultProps={height:669,width:390};addFonts(FramereQS2vPzF9,[{explicitInter:true,fonts:[{family:\"TASA Orbiter Deck SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/TwmQvYOoOpQ8HnPeFBoRgoo91rU.otf\"}]},...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereQS2vPzF9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"390\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"669\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eQS2vPzF9.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"bWZUjZPWm\"];const serializationHash=\"framer-oz8XJ\";const variantClassNames={bWZUjZPWm:\"framer-v-7ivfvn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bWZUjZPWm\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7ivfvn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bWZUjZPWm\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kzq1as-container\",layoutDependency:layoutDependency,layoutId:\"ZrNeOE29A-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"ZrNeOE29A\",layoutId:\"ZrNeOE29A\",padding:10,paddingBottom:0,paddingLeft:100,paddingPerSide:true,paddingRight:100,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zt4sd\",layoutDependency:layoutDependency,layoutId:\"of7amwRW6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-1isidk2\",layoutDependency:layoutDependency,layoutId:\"AwGg7qaNs\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"The TW Team are fantastic to work with.  From developing collaborative briefs, to coming up with creative concepts that really challenge, they have become a trusted partner who will always strive to deliver to a high standard.\"})}),className:\"framer-12gyqb3\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"jYQEHevpU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c5qmbr\",layoutDependency:layoutDependency,layoutId:\"gKRDimktr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:800,pixelWidth:800,sizes:\"60px\",src:\"https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg\",srcSet:\"https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg 800w\"},className:\"framer-1gvf5fk\",layoutDependency:layoutDependency,layoutId:\"dyL3girkc\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tjag70\",layoutDependency:layoutDependency,layoutId:\"q1m8z1_fl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Adam Coomber\"})}),className:\"framer-500d1z\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"sSbjvzP95\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Marketing Manager \",/*#__PURE__*/_jsx(motion.br,{}),\"at Zoetis UK\"]})}),className:\"framer-1kk8whe\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"rImmgU_5m\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-grsasg\",layoutDependency:layoutDependency,layoutId:\"ygCmGOy9t\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-154x1li\",layoutDependency:layoutDependency,layoutId:\"EaktTvyIv\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"TW Creative provide us with a professional agency solution to our creative communication needs. They are receptive, responsive, and produce work of a high quality and on brand.\\xa0\\xa0\"})}),className:\"framer-aa91pi\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"XjMi0EKuL\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ccwwsj\",layoutDependency:layoutDependency,layoutId:\"kJf_sHyya\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:374,pixelWidth:422,src:\"https://framerusercontent.com/images/PzEJAtgK9Wyb63caI6WuaodGgQw.png\"},className:\"framer-ndrsb0\",layoutDependency:layoutDependency,layoutId:\"KNwj0q1bG\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fu3odc\",layoutDependency:layoutDependency,layoutId:\"DV3PG0Clp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"CRM Team\"})}),className:\"framer-cej0h1\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bBREl1FMj\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:\"Hyundai Capital\"})}),className:\"framer-1egigq2\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"CRCF47Aqr\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1orid27\",layoutDependency:layoutDependency,layoutId:\"jediHiKBV\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-s8vu2p\",layoutDependency:layoutDependency,layoutId:\"ONFcNzbJi\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"We\u2019ve been delighted with the outcome of working with the team at TW Creative, right from the start they understood our brief and executed an innovative and fresh new campaign that has been extremely well received by our community.\"})}),className:\"framer-g9glu4\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"k0KXStGAu\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15a5c45\",layoutDependency:layoutDependency,layoutId:\"rfF7AsapN\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:524,pixelWidth:707,sizes:\"60px\",src:\"https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg\",srcSet:\"https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg 707w\"},className:\"framer-107qz8h\",layoutDependency:layoutDependency,layoutId:\"DFJktXGcz\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sneele\",layoutDependency:layoutDependency,layoutId:\"MAXoBSMS7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Jonny Hylton\\xa0\"})}),className:\"framer-7ljvtr\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"hcaRPJPoQ\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Foundation Director \",/*#__PURE__*/_jsx(motion.br,{}),\"at Reigate Grammar School\"]})}),className:\"framer-z6a1qv\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"lpeEv3XYd\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6qkwo\",layoutDependency:layoutDependency,layoutId:\"DOlsBCvne\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-1fcl2vq\",layoutDependency:layoutDependency,layoutId:\"dmmiHv5RB\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"TW Creative is an exceptional agency, with meticulous attention to detail and remarkable responsiveness to our specific needs.\"}),/*#__PURE__*/_jsxs(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:[/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{})]}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"They excel in crafting imaginative concepts that resonate deeply with our intended messages, ensuring these are communicated effectively to our target audience. Their knack for blending creativity with a keen understanding of our vision makes them a valuable partner.\"})]})}),className:\"framer-13dljro\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"iZ6Ui1N4a\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wd8iie\",layoutDependency:layoutDependency,layoutId:\"fjflSdG7q\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:533,pixelWidth:577,sizes:\"60px\",src:\"https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg\",srcSet:\"https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg 577w\"},className:\"framer-guth0y\",layoutDependency:layoutDependency,layoutId:\"a2ADjsTHQ\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1icjp45\",layoutDependency:layoutDependency,layoutId:\"f0WbL_Gr8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Nicky Love\"})}),className:\"framer-1ei79ic\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ga6oEsL08\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Marketing Manager \",/*#__PURE__*/_jsx(motion.br,{}),\"at Carus Animal Health Limited\"]})}),className:\"framer-81gach\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ZgiD0Mjqb\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oz8XJ.framer-1upi95l, .framer-oz8XJ .framer-1upi95l { display: block; }\",\".framer-oz8XJ.framer-7ivfvn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1200px; }\",\".framer-oz8XJ .framer-kzq1as-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-oz8XJ .framer-zt4sd, .framer-oz8XJ .framer-grsasg, .framer-oz8XJ .framer-1orid27, .framer-oz8XJ .framer-6qkwo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: min-content; }\",\".framer-oz8XJ .framer-1isidk2, .framer-oz8XJ .framer-154x1li, .framer-oz8XJ .framer-s8vu2p, .framer-oz8XJ .framer-1fcl2vq { aspect-ratio: 1.0089285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 61px; }\",\".framer-oz8XJ .framer-12gyqb3, .framer-oz8XJ .framer-aa91pi, .framer-oz8XJ .framer-g9glu4, .framer-oz8XJ .framer-13dljro { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-oz8XJ .framer-1c5qmbr, .framer-oz8XJ .framer-1ccwwsj, .framer-oz8XJ .framer-15a5c45, .framer-oz8XJ .framer-wd8iie { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-oz8XJ .framer-1gvf5fk, .framer-oz8XJ .framer-ndrsb0, .framer-oz8XJ .framer-107qz8h, .framer-oz8XJ .framer-guth0y { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-oz8XJ .framer-1tjag70, .framer-oz8XJ .framer-fu3odc, .framer-oz8XJ .framer-sneele, .framer-oz8XJ .framer-1icjp45 { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-oz8XJ .framer-500d1z, .framer-oz8XJ .framer-1kk8whe, .framer-oz8XJ .framer-cej0h1, .framer-oz8XJ .framer-1egigq2, .framer-oz8XJ .framer-7ljvtr, .framer-oz8XJ .framer-z6a1qv, .framer-oz8XJ .framer-1ei79ic, .framer-oz8XJ .framer-81gach { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oz8XJ.framer-7ivfvn, .framer-oz8XJ .framer-zt4sd, .framer-oz8XJ .framer-1c5qmbr, .framer-oz8XJ .framer-1tjag70, .framer-oz8XJ .framer-grsasg, .framer-oz8XJ .framer-1ccwwsj, .framer-oz8XJ .framer-fu3odc, .framer-oz8XJ .framer-1orid27, .framer-oz8XJ .framer-15a5c45, .framer-oz8XJ .framer-sneele, .framer-oz8XJ .framer-6qkwo, .framer-oz8XJ .framer-wd8iie, .framer-oz8XJ .framer-1icjp45 { gap: 0px; } .framer-oz8XJ.framer-7ivfvn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oz8XJ.framer-7ivfvn > :first-child, .framer-oz8XJ .framer-1c5qmbr > :first-child, .framer-oz8XJ .framer-1ccwwsj > :first-child, .framer-oz8XJ .framer-15a5c45 > :first-child, .framer-oz8XJ .framer-wd8iie > :first-child { margin-left: 0px; } .framer-oz8XJ.framer-7ivfvn > :last-child, .framer-oz8XJ .framer-1c5qmbr > :last-child, .framer-oz8XJ .framer-1ccwwsj > :last-child, .framer-oz8XJ .framer-15a5c45 > :last-child, .framer-oz8XJ .framer-wd8iie > :last-child { margin-right: 0px; } .framer-oz8XJ .framer-zt4sd > *, .framer-oz8XJ .framer-grsasg > *, .framer-oz8XJ .framer-1orid27 > *, .framer-oz8XJ .framer-6qkwo > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-oz8XJ .framer-zt4sd > :first-child, .framer-oz8XJ .framer-1tjag70 > :first-child, .framer-oz8XJ .framer-grsasg > :first-child, .framer-oz8XJ .framer-fu3odc > :first-child, .framer-oz8XJ .framer-1orid27 > :first-child, .framer-oz8XJ .framer-sneele > :first-child, .framer-oz8XJ .framer-6qkwo > :first-child, .framer-oz8XJ .framer-1icjp45 > :first-child { margin-top: 0px; } .framer-oz8XJ .framer-zt4sd > :last-child, .framer-oz8XJ .framer-1tjag70 > :last-child, .framer-oz8XJ .framer-grsasg > :last-child, .framer-oz8XJ .framer-fu3odc > :last-child, .framer-oz8XJ .framer-1orid27 > :last-child, .framer-oz8XJ .framer-sneele > :last-child, .framer-oz8XJ .framer-6qkwo > :last-child, .framer-oz8XJ .framer-1icjp45 > :last-child { margin-bottom: 0px; } .framer-oz8XJ .framer-1c5qmbr > *, .framer-oz8XJ .framer-1ccwwsj > *, .framer-oz8XJ .framer-15a5c45 > *, .framer-oz8XJ .framer-wd8iie > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-oz8XJ .framer-1tjag70 > *, .framer-oz8XJ .framer-fu3odc > *, .framer-oz8XJ .framer-sneele > *, .framer-oz8XJ .framer-1icjp45 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 729\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp4tgml675=withCSS(Component,css,\"framer-oz8XJ\");export default Framerp4tgml675;Framerp4tgml675.displayName=\"Testimonials\";Framerp4tgml675.defaultProps={height:729,width:1200};addFonts(Framerp4tgml675,[{explicitInter:true,fonts:[{family:\"TASA Orbiter Deck SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/TwmQvYOoOpQ8HnPeFBoRgoo91rU.otf\"}]},...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp4tgml675\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"729\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p4tgml675.map", "// Generated by Framer (1119174)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useActiveVariantCallback,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ZabhddkNw\",\"Q9Yl5Vy4r\",\"kvBCgBnw3\",\"WYiJZQ4Wo\",\"ul6IQZ5fb\",\"n0A1LDLol\",\"jK7XERrel\",\"WmhWOMRL4\",\"FDGr2J0tC\"];const serializationHash=\"framer-YXl49\";const variantClassNames={FDGr2J0tC:\"framer-v-ph070p\",jK7XERrel:\"framer-v-shlqw2\",kvBCgBnw3:\"framer-v-yy7l7f\",n0A1LDLol:\"framer-v-1yfj4fw\",Q9Yl5Vy4r:\"framer-v-1lzcfj4\",ul6IQZ5fb:\"framer-v-11jh8up\",WmhWOMRL4:\"framer-v-1wp4yvq\",WYiJZQ4Wo:\"framer-v-7doyze\",ZabhddkNw:\"framer-v-kiqtx8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"ZabhddkNw\",\"Variant 2\":\"Q9Yl5Vy4r\",\"Variant 3\":\"kvBCgBnw3\",\"Variant 4\":\"WYiJZQ4Wo\",\"Variant 5\":\"ul6IQZ5fb\",\"Variant 6\":\"n0A1LDLol\",\"Variant 7\":\"jK7XERrel\",\"Variant 8\":\"WmhWOMRL4\",\"Variant 9\":\"FDGr2J0tC\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ZabhddkNw\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ZabhddkNw\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear106phqm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Q9Yl5Vy4r\"),500);});const onAppearwgb4cr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kvBCgBnw3\"),500);});const onAppearfzxtro=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"WYiJZQ4Wo\"),500);});const onAppearvz2n9r=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ul6IQZ5fb\"),500);});const onAppear1hcyybc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"n0A1LDLol\"),500);});const onAppear1l7ieyq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"jK7XERrel\"),500);});const onAppearjar98t=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"WmhWOMRL4\"),500);});const onAppear11xpt14=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FDGr2J0tC\"),500);});const onAppeartkpz51=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ZabhddkNw\"),500);});useOnVariantChange(baseVariant,{default:onAppear106phqm,FDGr2J0tC:onAppeartkpz51,jK7XERrel:onAppearjar98t,kvBCgBnw3:onAppearfzxtro,n0A1LDLol:onAppear1l7ieyq,Q9Yl5Vy4r:onAppearwgb4cr,ul6IQZ5fb:onAppear1hcyybc,WmhWOMRL4:onAppear11xpt14,WYiJZQ4Wo:onAppearvz2n9r});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-YXl49\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-kiqtx8\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZabhddkNw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(153, 238, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({FDGr2J0tC:{\"data-framer-name\":\"Variant 9\"},jK7XERrel:{\"data-framer-name\":\"Variant 7\"},kvBCgBnw3:{\"data-framer-name\":\"Variant 3\"},n0A1LDLol:{\"data-framer-name\":\"Variant 6\"},Q9Yl5Vy4r:{\"data-framer-name\":\"Variant 2\"},ul6IQZ5fb:{\"data-framer-name\":\"Variant 5\"},WmhWOMRL4:{\"data-framer-name\":\"Variant 8\"},WYiJZQ4Wo:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/i0ScuaAmVxw758ukAmVH68lFY.jpg\",srcSet:\"https://framerusercontent.com/images/i0ScuaAmVxw758ukAmVH68lFY.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/i0ScuaAmVxw758ukAmVH68lFY.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/i0ScuaAmVxw758ukAmVH68lFY.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/i0ScuaAmVxw758ukAmVH68lFY.jpg 3840w\"},className:\"framer-1fiqy97\",layoutDependency:layoutDependency,layoutId:\"VLWsOr5kR\",...addPropertyOverrides({FDGr2J0tC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:900,pixelHeight:900,pixelWidth:900,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/S0okBCXM2zZZwWXsb84DlCZHY.jpg\",srcSet:\"https://framerusercontent.com/images/S0okBCXM2zZZwWXsb84DlCZHY.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/S0okBCXM2zZZwWXsb84DlCZHY.jpg 900w\"}},jK7XERrel:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:900,pixelHeight:900,pixelWidth:900,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/8WGWpqdoWeACRBJDvULB4QugOc.jpg\",srcSet:\"https://framerusercontent.com/images/8WGWpqdoWeACRBJDvULB4QugOc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/8WGWpqdoWeACRBJDvULB4QugOc.jpg 900w\"}},kvBCgBnw3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/O2kD4lOSmIw7PN85fNTfTKTLBM.jpg\",srcSet:\"https://framerusercontent.com/images/O2kD4lOSmIw7PN85fNTfTKTLBM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/O2kD4lOSmIw7PN85fNTfTKTLBM.jpg 900w\"}},n0A1LDLol:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:900,pixelHeight:900,pixelWidth:900,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/eIo6T6aPxXDbecm1trx2jCzmgs.jpg\",srcSet:\"https://framerusercontent.com/images/eIo6T6aPxXDbecm1trx2jCzmgs.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/eIo6T6aPxXDbecm1trx2jCzmgs.jpg 900w\"}},Q9Yl5Vy4r:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/51jLSRNVcVji5yLXDLKklVqcr5g.jpg\",srcSet:\"https://framerusercontent.com/images/51jLSRNVcVji5yLXDLKklVqcr5g.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/51jLSRNVcVji5yLXDLKklVqcr5g.jpg 900w\"}},ul6IQZ5fb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,pixelHeight:1333,pixelWidth:2e3,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/n8FGKXlX3ENs23WcT5LvTEKntpc.jpg\",srcSet:\"https://framerusercontent.com/images/n8FGKXlX3ENs23WcT5LvTEKntpc.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/n8FGKXlX3ENs23WcT5LvTEKntpc.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/n8FGKXlX3ENs23WcT5LvTEKntpc.jpg 2000w\"}},WmhWOMRL4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:900,pixelHeight:900,pixelWidth:900,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/9ZhMza7MY0leVDk4SAcAbgaanM.jpg\",srcSet:\"https://framerusercontent.com/images/9ZhMza7MY0leVDk4SAcAbgaanM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/9ZhMza7MY0leVDk4SAcAbgaanM.jpg 900w\"}},WYiJZQ4Wo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:900,pixelHeight:900,pixelWidth:900,sizes:\"min(351px, 100vw)\",src:\"https://framerusercontent.com/images/AQ9IjX2DClzw5A2ofHGgq4rM.jpg\",srcSet:\"https://framerusercontent.com/images/AQ9IjX2DClzw5A2ofHGgq4rM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/AQ9IjX2DClzw5A2ofHGgq4rM.jpg 900w\"}}},baseVariant,gestureVariant)})})})})});});const css=['.framer-YXl49 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YXl49 .framer-1fsdqet { display: block; }\",\".framer-YXl49 .framer-kiqtx8 { height: 350px; overflow: hidden; position: relative; width: 351px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YXl49 .framer-1fiqy97 { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 350\n * @framerIntrinsicWidth 351\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q9Yl5Vy4r\":{\"layout\":[\"fixed\",\"fixed\"]},\"kvBCgBnw3\":{\"layout\":[\"fixed\",\"fixed\"]},\"WYiJZQ4Wo\":{\"layout\":[\"fixed\",\"fixed\"]},\"ul6IQZ5fb\":{\"layout\":[\"fixed\",\"fixed\"]},\"n0A1LDLol\":{\"layout\":[\"fixed\",\"fixed\"]},\"jK7XERrel\":{\"layout\":[\"fixed\",\"fixed\"]},\"WmhWOMRL4\":{\"layout\":[\"fixed\",\"fixed\"]},\"FDGr2J0tC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n */const FramerRn2UM8KEM=withCSS(Component,css,\"framer-YXl49\");export default FramerRn2UM8KEM;FramerRn2UM8KEM.displayName=\"Loop Hero\";FramerRn2UM8KEM.defaultProps={height:350,width:351};addPropertyControls(FramerRn2UM8KEM,{variant:{options:[\"ZabhddkNw\",\"Q9Yl5Vy4r\",\"kvBCgBnw3\",\"WYiJZQ4Wo\",\"ul6IQZ5fb\",\"n0A1LDLol\",\"jK7XERrel\",\"WmhWOMRL4\",\"FDGr2J0tC\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRn2UM8KEM,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRn2UM8KEM\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"351\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q9Yl5Vy4r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kvBCgBnw3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WYiJZQ4Wo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ul6IQZ5fb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n0A1LDLol\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jK7XERrel\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WmhWOMRL4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FDGr2J0tC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"350\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rn2UM8KEM.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"BIP1h662x\"];const serializationHash=\"framer-y4MqF\";const variantClassNames={BIP1h662x:\"framer-v-9gxpqt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BIP1h662x\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9gxpqt\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BIP1h662x\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1txagsg-container\",layoutDependency:layoutDependency,layoutId:\"vMJs6saDW-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"vMJs6saDW\",layoutId:\"vMJs6saDW\",padding:10,paddingBottom:0,paddingLeft:100,paddingPerSide:true,paddingRight:100,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n8hzn1\",layoutDependency:layoutDependency,layoutId:\"Y_bFfiu8g\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-pk7itw\",layoutDependency:layoutDependency,layoutId:\"RtfVViPQE\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"The TW Team are fantastic to work with.  From developing collaborative briefs, to coming up with creative concepts that really challenge, they have become a trusted partner who will always strive to deliver to a high standard.\"})}),className:\"framer-cgb7gf\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"A5LwlR4he\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sk76er\",layoutDependency:layoutDependency,layoutId:\"nU_qq_JWt\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:800,pixelWidth:800,sizes:\"60px\",src:\"https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg\",srcSet:\"https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BVyDlQttgRrXEhvyoQ0UEAaN0.jpg 800w\"},className:\"framer-1663z7y\",layoutDependency:layoutDependency,layoutId:\"EK8nQNT3Y\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xr9egv\",layoutDependency:layoutDependency,layoutId:\"xnIoCE7mx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Adam Coomber\"})}),className:\"framer-7g290f\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ESdfz07r1\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Marketing Manager \",/*#__PURE__*/_jsx(motion.br,{}),\"at Zoetis UK\"]})}),className:\"framer-du1t51\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"IejM2Fqlk\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1it2cme\",layoutDependency:layoutDependency,layoutId:\"U7xWZABkR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-pqxiow\",layoutDependency:layoutDependency,layoutId:\"hAzUMzee0\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"TW Creative provide us with a professional agency solution to our creative communication needs. They are receptive, responsive, and produce work of a high quality and on brand.\\xa0\\xa0\"})}),className:\"framer-1nsxvqf\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"wLjjxunbb\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19l7nhx\",layoutDependency:layoutDependency,layoutId:\"HhteM7xBo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:374,pixelWidth:422,src:\"https://framerusercontent.com/images/PzEJAtgK9Wyb63caI6WuaodGgQw.png\"},className:\"framer-1pa5qsf\",layoutDependency:layoutDependency,layoutId:\"WTh2xWH75\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eue0sr\",layoutDependency:layoutDependency,layoutId:\"ozCZ5lzsX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"CRM Team\"})}),className:\"framer-3run0n\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"zNMDLDbwD\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:\"Hyundai Capital\"})}),className:\"framer-7cy3rn\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"leWluuafo\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kwry8\",layoutDependency:layoutDependency,layoutId:\"W6rmJ5sag\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-f7q9zf\",layoutDependency:layoutDependency,layoutId:\"zPqoJMlrQ\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"We\u2019ve been delighted with the outcome of working with the team at TW Creative, right from the start they understood our brief and executed an innovative and fresh new campaign that has been extremely well received by our community.\"})}),className:\"framer-58kxvy\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"mo4y12vRt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cd1mei\",layoutDependency:layoutDependency,layoutId:\"mTR9YdNvo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:524,pixelWidth:707,sizes:\"60px\",src:\"https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg\",srcSet:\"https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4z318HA6uF59HY2Bd01eQglpbg.jpg 707w\"},className:\"framer-je7et2\",layoutDependency:layoutDependency,layoutId:\"DojsjhkcI\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gas15d\",layoutDependency:layoutDependency,layoutId:\"s8kMYcva3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Jonny Hylton\\xa0\"})}),className:\"framer-16zv85z\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"L9v3H8vmB\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Foundation Director \",/*#__PURE__*/_jsx(motion.br,{}),\"at Reigate Grammar School\"]})}),className:\"framer-bdsk5b\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"JcGba8tYG\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10k6vgg\",layoutDependency:layoutDependency,layoutId:\"JMcAwbRNs\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:72,intrinsicWidth:92,pixelHeight:72,pixelWidth:92,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tTlwDopvq51w6Hdw5KRwEyBn5cw.svg\"},className:\"framer-1rt8auu\",layoutDependency:layoutDependency,layoutId:\"jAIOstYE1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:[\"TW Creative is an exceptional agency, with meticulous attention to detail and remarkable responsiveness to our specific needs.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"They excel in crafting imaginative concepts that resonate deeply with our intended messages, ensuring these are communicated effectively to our target audience. Their knack for blending creativity with a keen understanding of our vision makes them a valuable partner.\"]})}),className:\"framer-n57yjm\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"C__R2p4qx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-65v9x6\",layoutDependency:layoutDependency,layoutId:\"Co35aYKfv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:533,pixelWidth:577,sizes:\"60px\",src:\"https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg\",srcSet:\"https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fzkup0m0uD5ucsVfyDfj8Qtu4CI.jpg 577w\"},className:\"framer-1egdy45\",layoutDependency:layoutDependency,layoutId:\"i01CmG3XI\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lnqdfz\",layoutDependency:layoutDependency,layoutId:\"e2SwaYieu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99)))\"},children:\"Nicky Love\"})}),className:\"framer-xkvkzc\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"IpLQ7g4JD\",style:{\"--extracted-r6o4lv\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 171, 171))\"},children:[\"Marketing Manager \",/*#__PURE__*/_jsx(motion.br,{}),\"at Carus Animal Health Limited\"]})}),className:\"framer-wywwnl\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],layoutDependency:layoutDependency,layoutId:\"pySVeR9xF\",style:{\"--extracted-r6o4lv\":\"rgb(171, 171, 171)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y4MqF.framer-l0n096, .framer-y4MqF .framer-l0n096 { display: block; }\",\".framer-y4MqF.framer-9gxpqt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 810px; }\",\".framer-y4MqF .framer-1txagsg-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-y4MqF .framer-1n8hzn1, .framer-y4MqF .framer-1it2cme, .framer-y4MqF .framer-1kwry8, .framer-y4MqF .framer-10k6vgg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: min-content; }\",\".framer-y4MqF .framer-pk7itw, .framer-y4MqF .framer-pqxiow, .framer-y4MqF .framer-f7q9zf, .framer-y4MqF .framer-1rt8auu { aspect-ratio: 1.0089285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 61px; }\",\".framer-y4MqF .framer-cgb7gf, .framer-y4MqF .framer-1nsxvqf, .framer-y4MqF .framer-58kxvy, .framer-y4MqF .framer-n57yjm { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-y4MqF .framer-sk76er, .framer-y4MqF .framer-19l7nhx, .framer-y4MqF .framer-cd1mei, .framer-y4MqF .framer-65v9x6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-y4MqF .framer-1663z7y, .framer-y4MqF .framer-1pa5qsf, .framer-y4MqF .framer-je7et2, .framer-y4MqF .framer-1egdy45 { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-y4MqF .framer-xr9egv, .framer-y4MqF .framer-1eue0sr, .framer-y4MqF .framer-gas15d, .framer-y4MqF .framer-lnqdfz { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-y4MqF .framer-7g290f, .framer-y4MqF .framer-du1t51, .framer-y4MqF .framer-3run0n, .framer-y4MqF .framer-7cy3rn, .framer-y4MqF .framer-16zv85z, .framer-y4MqF .framer-bdsk5b, .framer-y4MqF .framer-xkvkzc, .framer-y4MqF .framer-wywwnl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y4MqF.framer-9gxpqt, .framer-y4MqF .framer-1n8hzn1, .framer-y4MqF .framer-sk76er, .framer-y4MqF .framer-xr9egv, .framer-y4MqF .framer-1it2cme, .framer-y4MqF .framer-19l7nhx, .framer-y4MqF .framer-1eue0sr, .framer-y4MqF .framer-1kwry8, .framer-y4MqF .framer-cd1mei, .framer-y4MqF .framer-gas15d, .framer-y4MqF .framer-10k6vgg, .framer-y4MqF .framer-65v9x6, .framer-y4MqF .framer-lnqdfz { gap: 0px; } .framer-y4MqF.framer-9gxpqt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-y4MqF.framer-9gxpqt > :first-child, .framer-y4MqF .framer-sk76er > :first-child, .framer-y4MqF .framer-19l7nhx > :first-child, .framer-y4MqF .framer-cd1mei > :first-child, .framer-y4MqF .framer-65v9x6 > :first-child { margin-left: 0px; } .framer-y4MqF.framer-9gxpqt > :last-child, .framer-y4MqF .framer-sk76er > :last-child, .framer-y4MqF .framer-19l7nhx > :last-child, .framer-y4MqF .framer-cd1mei > :last-child, .framer-y4MqF .framer-65v9x6 > :last-child { margin-right: 0px; } .framer-y4MqF .framer-1n8hzn1 > *, .framer-y4MqF .framer-1it2cme > *, .framer-y4MqF .framer-1kwry8 > *, .framer-y4MqF .framer-10k6vgg > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-y4MqF .framer-1n8hzn1 > :first-child, .framer-y4MqF .framer-xr9egv > :first-child, .framer-y4MqF .framer-1it2cme > :first-child, .framer-y4MqF .framer-1eue0sr > :first-child, .framer-y4MqF .framer-1kwry8 > :first-child, .framer-y4MqF .framer-gas15d > :first-child, .framer-y4MqF .framer-10k6vgg > :first-child, .framer-y4MqF .framer-lnqdfz > :first-child { margin-top: 0px; } .framer-y4MqF .framer-1n8hzn1 > :last-child, .framer-y4MqF .framer-xr9egv > :last-child, .framer-y4MqF .framer-1it2cme > :last-child, .framer-y4MqF .framer-1eue0sr > :last-child, .framer-y4MqF .framer-1kwry8 > :last-child, .framer-y4MqF .framer-gas15d > :last-child, .framer-y4MqF .framer-10k6vgg > :last-child, .framer-y4MqF .framer-lnqdfz > :last-child { margin-bottom: 0px; } .framer-y4MqF .framer-sk76er > *, .framer-y4MqF .framer-19l7nhx > *, .framer-y4MqF .framer-cd1mei > *, .framer-y4MqF .framer-65v9x6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-y4MqF .framer-xr9egv > *, .framer-y4MqF .framer-1eue0sr > *, .framer-y4MqF .framer-gas15d > *, .framer-y4MqF .framer-lnqdfz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 669\n * @framerIntrinsicWidth 810\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersI6QQARv3=withCSS(Component,css,\"framer-y4MqF\");export default FramersI6QQARv3;FramersI6QQARv3.displayName=\"Testimonials Tablet\";FramersI6QQARv3.defaultProps={height:669,width:810};addFonts(FramersI6QQARv3,[{explicitInter:true,fonts:[{family:\"TASA Orbiter Deck SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/TwmQvYOoOpQ8HnPeFBoRgoo91rU.otf\"}]},...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersI6QQARv3\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"669\",\"framerIntrinsicWidth\":\"810\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sI6QQARv3.map", "// Generated by Framer (78454af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"XJ3dW2uXo\",\"SoXs_5aKH\"];const serializationHash=\"framer-RzERG\";const variantClassNames={SoXs_5aKH:\"framer-v-87qsk9\",XJ3dW2uXo:\"framer-v-6374n6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"XJ3dW2uXo\",\"Variant 2\":\"SoXs_5aKH\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"XJ3dW2uXo\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XJ3dW2uXo\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6374n6\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"XJ3dW2uXo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({SoXs_5aKH:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l24jaj\",layoutDependency:layoutDependency,layoutId:\"fpa4rGrLy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2048,pixelHeight:1365,pixelWidth:2048,sizes:\"528px\",src:\"https://framerusercontent.com/images/X7SR08Z17u75ncu1Cx4C1wS8Q.jpg\",srcSet:\"https://framerusercontent.com/images/X7SR08Z17u75ncu1Cx4C1wS8Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X7SR08Z17u75ncu1Cx4C1wS8Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X7SR08Z17u75ncu1Cx4C1wS8Q.jpg 2048w\"},className:\"framer-95ryz6\",layoutDependency:layoutDependency,layoutId:\"OvOinU6cc\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({SoXs_5aKH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2048,pixelHeight:1365,pixelWidth:2048,sizes:\"300px\",src:\"https://framerusercontent.com/images/X7SR08Z17u75ncu1Cx4C1wS8Q.jpg\",srcSet:\"https://framerusercontent.com/images/X7SR08Z17u75ncu1Cx4C1wS8Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X7SR08Z17u75ncu1Cx4C1wS8Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X7SR08Z17u75ncu1Cx4C1wS8Q.jpg 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:890,intrinsicWidth:1332,pixelHeight:3840,pixelWidth:5760,sizes:\"1040px\",src:\"https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg 5760w\"},className:\"framer-164gdgf\",layoutDependency:layoutDependency,layoutId:\"UbfE__zbn\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({SoXs_5aKH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:890,intrinsicWidth:1332,pixelHeight:3840,pixelWidth:5760,sizes:\"300px\",src:\"https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/bEnS9dLz5miTfa0leAE3HDS6kNM.jpg 5760w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:890,intrinsicWidth:1332,pixelHeight:5760,pixelWidth:3840,sizes:\"528px\",src:\"https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg 5760w\"},className:\"framer-1h2c4bi\",layoutDependency:layoutDependency,layoutId:\"ACawVFrLC\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({SoXs_5aKH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:890,intrinsicWidth:1332,pixelHeight:5760,pixelWidth:3840,sizes:\"300px\",src:\"https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NJX7Rr1Lr0wTsg6q9S1cfZdkKo.jpg 5760w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1877,intrinsicWidth:2048,pixelHeight:1200,pixelWidth:800,sizes:\"528px\",src:\"https://framerusercontent.com/images/hhYbzqR947QvFMqqm2kBCS0STTM.jpg\",srcSet:\"https://framerusercontent.com/images/hhYbzqR947QvFMqqm2kBCS0STTM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/hhYbzqR947QvFMqqm2kBCS0STTM.jpg 800w\"},className:\"framer-ukm1wj\",layoutDependency:layoutDependency,layoutId:\"HKzGFNLBr\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({SoXs_5aKH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1877,intrinsicWidth:2048,pixelHeight:1200,pixelWidth:800,sizes:\"300px\",src:\"https://framerusercontent.com/images/hhYbzqR947QvFMqqm2kBCS0STTM.jpg\",srcSet:\"https://framerusercontent.com/images/hhYbzqR947QvFMqqm2kBCS0STTM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/hhYbzqR947QvFMqqm2kBCS0STTM.jpg 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:768,pixelHeight:1417,pixelWidth:2048,sizes:\"1088px\",src:\"https://framerusercontent.com/images/PhIgHR3hc6Wv3s58rBitbwl016k.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PhIgHR3hc6Wv3s58rBitbwl016k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PhIgHR3hc6Wv3s58rBitbwl016k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PhIgHR3hc6Wv3s58rBitbwl016k.jpg 2048w\"},className:\"framer-155xp77\",layoutDependency:layoutDependency,layoutId:\"DvIQeS4WV\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({SoXs_5aKH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:768,pixelHeight:1417,pixelWidth:2048,sizes:\"300px\",src:\"https://framerusercontent.com/images/PhIgHR3hc6Wv3s58rBitbwl016k.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PhIgHR3hc6Wv3s58rBitbwl016k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PhIgHR3hc6Wv3s58rBitbwl016k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PhIgHR3hc6Wv3s58rBitbwl016k.jpg 2048w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RzERG.framer-1b9o26s, .framer-RzERG .framer-1b9o26s { display: block; }\",\".framer-RzERG.framer-6374n6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 700px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-RzERG .framer-1l24jaj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 35px 0px 0px; position: relative; width: min-content; }\",\".framer-RzERG .framer-95ryz6, .framer-RzERG .framer-1h2c4bi, .framer-RzERG .framer-ukm1wj { flex: none; height: 800px; position: relative; width: 528px; z-index: 1; }\",\".framer-RzERG .framer-164gdgf { flex: none; height: 800px; position: relative; width: 1040px; z-index: 1; }\",\".framer-RzERG .framer-155xp77 { flex: none; height: 800px; position: relative; width: 1088px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-RzERG.framer-6374n6, .framer-RzERG .framer-1l24jaj { gap: 0px; } .framer-RzERG.framer-6374n6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-RzERG.framer-6374n6 > :first-child, .framer-RzERG .framer-1l24jaj > :first-child { margin-left: 0px; } .framer-RzERG.framer-6374n6 > :last-child, .framer-RzERG .framer-1l24jaj > :last-child { margin-right: 0px; } .framer-RzERG .framer-1l24jaj > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } }\",\".framer-RzERG.framer-v-87qsk9 .framer-95ryz6, .framer-RzERG.framer-v-87qsk9 .framer-164gdgf, .framer-RzERG.framer-v-87qsk9 .framer-1h2c4bi, .framer-RzERG.framer-v-87qsk9 .framer-ukm1wj, .framer-RzERG.framer-v-87qsk9 .framer-155xp77 { height: 450px; width: 300px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 3887\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"700px\",null]},\"SoXs_5aKH\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"700px\",null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjLQ6WJGJ7=withCSS(Component,css,\"framer-RzERG\");export default FramerjLQ6WJGJ7;FramerjLQ6WJGJ7.displayName=\"Ticker - Images\";FramerjLQ6WJGJ7.defaultProps={height:800,width:3887};addPropertyControls(FramerjLQ6WJGJ7,{variant:{options:[\"XJ3dW2uXo\",\"SoXs_5aKH\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjLQ6WJGJ7,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjLQ6WJGJ7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"3887\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"700px\\\",null]},\\\"SoXs_5aKH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"700px\\\",null]}}}\",\"framerIntrinsicHeight\":\"800\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jLQ6WJGJ7.map", "// Generated by Framer (532f6a7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import TickerImages from\"https://framerusercontent.com/modules/i3GXygdLJ1b22OxBFBPg/qQrUhqH4NQILzH7gQ75I/jLQ6WJGJ7.js\";const TickerImagesFonts=getFonts(TickerImages);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"SYLNfkSvj\",\"xtYOa1IIG\"];const variantClassNames={SYLNfkSvj:\"framer-v-g7nlyp\",xtYOa1IIG:\"framer-v-1ysb8cc\"};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 humanReadableVariantMap={\"Variant 1\":\"SYLNfkSvj\",\"Variant 2\":\"xtYOa1IIG\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"SYLNfkSvj\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"SYLNfkSvj\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-koUNi\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-g7nlyp\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"SYLNfkSvj\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({xtYOa1IIG:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16ovkp2-container\",layoutDependency:layoutDependency,layoutId:\"JxhE10FRK-container\",transition:transition,children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.4,id:\"JxhE10FRK\",layoutId:\"JxhE10FRK\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hxc7d8-container\",layoutDependency:layoutDependency,layoutId:\"iUm5Wx73f-container\",transition:transition,children:/*#__PURE__*/_jsx(TickerImages,{height:\"100%\",id:\"iUm5Wx73f\",layoutId:\"iUm5Wx73f\",variant:\"XJ3dW2uXo\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hxc7d8-container\",layoutDependency:layoutDependency,layoutId:\"iUm5Wx73f-container\",transition:transition,children:/*#__PURE__*/_jsx(TickerImages,{height:\"100%\",id:\"iUm5Wx73f\",layoutId:\"iUm5Wx73f\",variant:\"XJ3dW2uXo\",width:\"100%\"})})],speed:140,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({xtYOa1IIG:{sizingOptions:{heightType:false,widthType:false}}},baseVariant,gestureVariant)})})})})});});const css=['.framer-koUNi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-koUNi .framer-16jceua { display: block; }\",\".framer-koUNi .framer-g7nlyp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-koUNi .framer-16ovkp2-container { flex: none; height: 820px; position: relative; width: 100%; }\",\".framer-koUNi .framer-hxc7d8-container { height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-koUNi .framer-g7nlyp { gap: 0px; } .framer-koUNi .framer-g7nlyp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-koUNi .framer-g7nlyp > :first-child { margin-top: 0px; } .framer-koUNi .framer-g7nlyp > :last-child { margin-bottom: 0px; } }\",\".framer-koUNi.framer-v-1ysb8cc .framer-16ovkp2-container { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 820\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xtYOa1IIG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */const FramerSmvhxk9Lx=withCSS(Component,css,\"framer-koUNi\");export default FramerSmvhxk9Lx;FramerSmvhxk9Lx.displayName=\"About Ticker\";FramerSmvhxk9Lx.defaultProps={height:820,width:1200};addPropertyControls(FramerSmvhxk9Lx,{variant:{options:[\"SYLNfkSvj\",\"xtYOa1IIG\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSmvhxk9Lx,[...TickerImagesFonts,...TickerFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSmvhxk9Lx\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xtYOa1IIG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"820\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter\"]);export const fonts=[];export const css=['.framer-idV8o .framer-styles-preset-uanazn:not(.rich-text-wrapper), .framer-idV8o .framer-styles-preset-uanazn.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #4d4d4d; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-idV8o\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;TASA Orbiter Text Medium\"]);export const fonts=[{family:\"TASA Orbiter Text Medium\",moduleAsset:{localModuleIdentifier:\"local-module:css/Yvr4anILU:default\",url:\"assets/HAWg0Kphk4GdhJJxItkdLrChE.otf\"},url:new URL(\"assets/HAWg0Kphk4GdhJJxItkdLrChE.otf\",\"https://framerusercontent.com/modules/ezkBgwU7XKEk6HLCWpJa/J596GM6KaHwyYFEYQWDM/Yvr4anILU.js\").href}];export const css=['.framer-Zm7xj .framer-styles-preset-bts9y3:not(.rich-text-wrapper), .framer-Zm7xj .framer-styles-preset-bts9y3.rich-text-wrapper p { --framer-font-family: \"TASA Orbiter Text Medium\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-0079f825-bef3-4419-a118-1f0d23265e98, #636363); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Zm7xj .framer-styles-preset-bts9y3:not(.rich-text-wrapper), .framer-Zm7xj .framer-styles-preset-bts9y3.rich-text-wrapper p { --framer-font-family: \"TASA Orbiter Text Medium\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-0079f825-bef3-4419-a118-1f0d23265e98, #636363); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Zm7xj .framer-styles-preset-bts9y3:not(.rich-text-wrapper), .framer-Zm7xj .framer-styles-preset-bts9y3.rich-text-wrapper p { --framer-font-family: \"TASA Orbiter Text Medium\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-0079f825-bef3-4419-a118-1f0d23265e98, #636363); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-Zm7xj\";\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 (8857874)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import ButtonInline from\"#framer/local/canvasComponent/a4WkopxgK/a4WkopxgK.js\";import TestimonialsMobile from\"#framer/local/canvasComponent/eQS2vPzF9/eQS2vPzF9.js\";import MainNav from\"#framer/local/canvasComponent/fiAGcNNXC/fiAGcNNXC.js\";import Testimonials from\"#framer/local/canvasComponent/p4tgml675/p4tgml675.js\";import FooterDark from\"#framer/local/canvasComponent/PY4qwyip1/PY4qwyip1.js\";import Divider from\"#framer/local/canvasComponent/qS_TV69OF/qS_TV69OF.js\";import LoopHero from\"#framer/local/canvasComponent/Rn2UM8KEM/Rn2UM8KEM.js\";import TestimonialsTablet from\"#framer/local/canvasComponent/sI6QQARv3/sI6QQARv3.js\";import AboutTicker from\"#framer/local/canvasComponent/Smvhxk9Lx/Smvhxk9Lx.js\";import HeroHeader from\"#framer/local/canvasComponent/vlNPcqzGG/vlNPcqzGG.js\";import*as sharedStyle from\"#framer/local/css/eVasCjDVY/eVasCjDVY.js\";import*as sharedStyle2 from\"#framer/local/css/kJA_5RkV8/kJA_5RkV8.js\";import*as sharedStyle1 from\"#framer/local/css/Yvr4anILU/Yvr4anILU.js\";import metadataProvider from\"#framer/local/webPageMetadata/pe3meem6y/pe3meem6y.js\";const MainNavFonts=getFonts(MainNav);const HeroHeaderFonts=getFonts(HeroHeader);const LoopHeroFonts=getFonts(LoopHero);const ContainerWithFX=withFX(Container);const AboutTickerFonts=getFonts(AboutTicker);const ButtonInlineFonts=getFonts(ButtonInline);const MotionHeaderWithFX=withFX(motion.header);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const DividerFonts=getFonts(Divider);const TestimonialsMobileFonts=getFonts(TestimonialsMobile);const TestimonialsTabletFonts=getFonts(TestimonialsTablet);const TestimonialsFonts=getFonts(Testimonials);const FooterDarkFonts=getFonts(FooterDark);const cycleOrder=[\"quncGJcbp\",\"UA1NdKKrx\",\"Z7NXBXjta\"];const breakpoints={quncGJcbp:\"(min-width: 1200px) and (max-width: 3140.497187364777px)\",UA1NdKKrx:\"(max-width: 1199px)\",Z7NXBXjta:\"(min-width: 3141.497187364777px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JgXQS\";const variantClassNames={quncGJcbp:\"framer-v-4drq0x\",UA1NdKKrx:\"framer-v-14bg5fr\",Z7NXBXjta:\"framer-v-6czoqr\"};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation={cursor:\"grabbing\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={delay:0,duration:10,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:-360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.3,ease:[.85,-.01,.96,.61],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"quncGJcbp\",Phone:\"Z7NXBXjta\",Tablet:\"UA1NdKKrx\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"quncGJcbp\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-JgXQS`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-JgXQS`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const id=useRouteElementId(\"iDFCxXOc7\");const ref2=React.useRef(null);const id1=useRouteElementId(\"NWCcRRMiH\");const ref3=React.useRef(null);const router=useRouter();const id2=useRouteElementId(\"ltdvC3iLB\");const ref4=React.useRef(null);const id3=useRouteElementId(\"BtCyTKIk1\");const ref5=React.useRef(null);const id4=useRouteElementId(\"VpQW9xo2_\");const ref6=React.useRef(null);const id5=useRouteElementId(\"ldaPtLeC7\");const ref7=React.useRef(null);const id6=useRouteElementId(\"jZmCgAt74\");const ref8=React.useRef(null);const id7=useRouteElementId(\"Y9zu_PsTV\");const ref9=React.useRef(null);const id8=useRouteElementId(\"tDZEjikzp\");const ref10=React.useRef(null);const id9=useRouteElementId(\"Vs0x1Pf_i\");const ref11=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Z7NXBXjta\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"UA1NdKKrx\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"UA1NdKKrx\",\"Z7NXBXjta\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"quncGJcbp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4drq0x\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k4ioj2-container\",\"data-framer-name\":\"Navbar Float\",layoutScroll:true,name:\"Navbar Float\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{variant:\"WJwkOVSvW\"}},children:/*#__PURE__*/_jsx(MainNav,{height:\"100%\",id:\"MRSAU2NLw\",layoutId:\"MRSAU2NLw\",name:\"Navbar Float\",style:{width:\"100%\"},variant:\"zecjx165d\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3raie5\",children:[/*#__PURE__*/_jsxs(MotionHeaderWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aafb8z\",\"data-framer-name\":\"Hero\",id:id,name:\"Hero\",ref:ref2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v1fqo3-container\",children:/*#__PURE__*/_jsx(HeroHeader,{height:\"100%\",id:\"iORmlX6pY\",layoutId:\"iORmlX6pY\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gy738\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3ymmk\",id:id1,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1um6oq\",\"data-styles-preset\":\"eVasCjDVY\",children:\"CREATING\"})}),className:\"framer-1afaes4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:90}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jyp3g6-container\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{transformPerspective:1200},transformTemplate:transformTemplate1,whileTap:animation,children:/*#__PURE__*/_jsx(LoopHero,{height:\"100%\",id:\"zX1usoVlL\",layoutId:\"zX1usoVlL\",style:{height:\"100%\",width:\"100%\"},variant:\"ZabhddkNw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1um6oq\",\"data-styles-preset\":\"eVasCjDVY\",children:\"UNIQUE+BOLD\"})}),className:\"framer-1jjnx39\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1um6oq\",\"data-styles-preset\":\"eVasCjDVY\",children:\"PROJECTS\"})}),className:\"framer-ys06vf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Display SemiBold\", \"TASA Orbiter Display SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"uppercase\"},children:[\"Unlock your\",/*#__PURE__*/_jsx(\"br\",{}),\"brand\u2019s potential\"]})}),className:\"framer-1vy4uvd\",fonts:[\"CUSTOM;TASA Orbiter Display SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uyo3jg-container\",children:/*#__PURE__*/_jsx(AboutTicker,{height:\"100%\",id:\"Ffw6lThfT\",layoutId:\"Ffw6lThfT\",style:{width:\"100%\"},variant:\"SYLNfkSvj\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ke1n0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"Established over 30 years ago, we draw on our experience and talent to help brands flourish.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"Established over 30 years ago, we draw on our experience and talent to help brands flourish.\"})}),className:\"framer-1w2vm7a\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined},{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined},{href:{webPageId:\"pe3meem6y\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ea41k2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{pV65bEmEr:resolvedLinks[1]},Z7NXBXjta:{pV65bEmEr:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonInline,{height:\"100%\",id:\"AvThZGlek\",k7OKtVfWt:\"get in touch\",layoutId:\"AvThZGlek\",pV65bEmEr:resolvedLinks[0],variant:\"JsMniBhia\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-35e7hs\",id:id2,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12mci84\",id:id3,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l6jgsy\",id:id4,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"THINK\"})})},Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"THINK\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"300px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"THINK\"})}),className:\"framer-ki10un\",fonts:[\"CUSTOM;TASA Orbiter Display Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Future-proof your brand, make it simple, bold and timeless.\"})})},Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Future-proof your brand, make it simple, bold and timeless.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Future-proof your brand, make it simple, bold and timeless.\"})}),className:\"framer-xmm0my\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n68fiq\",id:id5,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,loading:\"lazy\",pixelHeight:560,pixelWidth:560,sizes:\"60px\",src:\"https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg\",srcSet:\"https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg 560w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:560,pixelWidth:560,sizes:\"42px\",src:\"https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg\",srcSet:\"https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg 560w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,loading:\"lazy\",pixelHeight:560,pixelWidth:560,sizes:\"245px\",src:\"https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg\",srcSet:\"https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/j9VrLd5B5rJdO0l23IVF3Mmub0.svg 560w\"},className:\"framer-xnsoux\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"CREATE\"})})},Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"CREATE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"300px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"CREATE\"})}),className:\"framer-1k3v2or\",fonts:[\"CUSTOM;TASA Orbiter Display Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oih76i\",id:id6,ref:ref8,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"EXECUTE\"})})},Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"EXECUTE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEaXNwbGF5IEJvbGQ=\",\"--framer-font-family\":'\"TASA Orbiter Display Bold\", \"TASA Orbiter Display Bold Placeholder\", sans-serif',\"--framer-font-size\":\"300px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-transform\":\"uppercase\"},children:\"EXECUTE\"})}),className:\"framer-m1kj22\",fonts:[\"CUSTOM;TASA Orbiter Display Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-py8hjs\",\"data-framer-name\":\"Track\",id:id7,name:\"Track\",ref:ref9,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-itofwh\",id:id8,ref:ref10,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1erxaep\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:2.6,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2682,intrinsicWidth:3658,loading:\"lazy\",pixelHeight:2682,pixelWidth:3658,sizes:\"95vw\",src:\"https://framerusercontent.com/images/OLm3r0uugDO63DBCjweQJcLz3YM.jpg\",srcSet:\"https://framerusercontent.com/images/OLm3r0uugDO63DBCjweQJcLz3YM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OLm3r0uugDO63DBCjweQJcLz3YM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OLm3r0uugDO63DBCjweQJcLz3YM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OLm3r0uugDO63DBCjweQJcLz3YM.jpg 3658w\"},className:\"framer-rtnlem\",style:{transformPerspective:1200}})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ytd6v0\",children:/*#__PURE__*/_jsxs(MotionHeaderWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1le2m63\",\"data-framer-name\":\"Content Wrapper\",id:id9,name:\"Content Wrapper\",ref:ref11,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dondal\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.95em\",\"--framer-text-alignment\":\"left\"},children:\"            Our 18th-century building with a beating modern heart.\"})})},Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\"},children:\"            Our 18th-century building with a beating modern heart.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBEZWNrIFNlbWlCb2xk\",\"--framer-font-family\":'\"TASA Orbiter Deck SemiBold\", \"TASA Orbiter Deck SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.95em\",\"--framer-text-alignment\":\"left\"},children:\"            Our 18th-century building with a beating modern heart.\"})}),className:\"framer-10eftl6\",fonts:[\"CUSTOM;TASA Orbiter Deck SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jc49c0\",\"data-framer-name\":\"divider wrapper\",name:\"divider wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kqkrgb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{variant:\"W3pOtuyVm\"}},children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"AGmafcG3s\",layoutId:\"AGmafcG3s\",style:{width:\"100%\"},variant:\"jMVWHpp1E\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qlgxga\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3c8z90\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gdqwe0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u91hku\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Meet the team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Meet the team\"})}),className:\"framer-zd4nse\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14eqjgy\",\"data-framer-name\":\"Grid 1\",name:\"Grid 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmtej7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7k4jf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1377,positionX:\"center\",positionY:\"center\",sizes:\"calc(max((min(100vw, 1680px) - 120px) / 3, 200px) * 0.9999)\",src:\"https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg\",srcSet:\"https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg?scale-down-to=1024 688w,https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg 1377w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg\",srcSet:\"https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg?scale-down-to=1024 688w,https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg 1377w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1377,positionX:\"center\",positionY:\"center\",sizes:\"calc(max((min(100vw, 1680px) - 260px) / 4, 200px) * 0.9999)\",src:\"https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg\",srcSet:\"https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg?scale-down-to=1024 688w,https://framerusercontent.com/images/15kUx3D00UpG6C5MytCQ8Spow.jpg 1377w\"},className:\"framer-xrlmn5\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg\",srcSet:\"https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg\",srcSet:\"https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg\",srcSet:\"https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AGlcQCAjZMY9pXrplS9CqinaQA.jpg 896w\"},className:\"framer-1cq3wxh\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pe35yf\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Erica\"})}),className:\"framer-yzqu7d\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Client Services Director\"})}),className:\"framer-1g62xmy\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mp8h3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg\",srcSet:\"https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg\",srcSet:\"https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg\",srcSet:\"https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/RDlWFTpkJsjdtGeuhtw3RGO4cQ.jpg 1543w\"},className:\"framer-1eibz3j\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg\",srcSet:\"https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg\",srcSet:\"https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg\",srcSet:\"https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nYgbiBSpPaLTPj9oSUwbZ1yUKJI.jpg 896w\"},className:\"framer-bpnpzk\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f1eo3i\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Laura\"})}),className:\"framer-7ul3ni\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Account Director\"})}),className:\"framer-ythq2e\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4d95b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg\",srcSet:\"https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg\",srcSet:\"https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg\",srcSet:\"https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/nDLlmHMwczPZgRzY6l4HyBpOA.jpg 1543w\"},className:\"framer-f0us2b\",\"data-framer-name\":\"Hover\",name:\"Hover\",transformTemplate:transformTemplate2,whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg\",srcSet:\"https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg\",srcSet:\"https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg\",srcSet:\"https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nKZBlSLc7RkCXzjCd0abS0Ss4Zc.jpg 896w\"},className:\"framer-eq0ew3\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10xzn4s\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Si\"})}),className:\"framer-1sx4zu9\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Creative Director\"})}),className:\"framer-mk3t2i\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-195o7if\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg\",srcSet:\"https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg\",srcSet:\"https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg\",srcSet:\"https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/3SrdFEP0WkCSz2RqrLm9J5cks.jpg 1543w\"},className:\"framer-gy3rrm\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg\",srcSet:\"https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg\",srcSet:\"https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg\",srcSet:\"https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5ILqa7zNvUPr2qVXh2ZNF8lxZI.jpg 896w\"},className:\"framer-101i2gs\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wnpa6a\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Paul\"})}),className:\"framer-1kxukbj\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Senior Designer\"})}),className:\"framer-88g1q9\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nxrple\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg\",srcSet:\"https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg\",srcSet:\"https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg\",srcSet:\"https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/bWb8rQSmXIJwsRSf1wjxYbJNk.jpg 1543w\"},className:\"framer-1957dyl\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg\",srcSet:\"https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg\",srcSet:\"https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg\",srcSet:\"https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ckMZf4kfEeMGJsv6NgaDNaYsacg.jpg 896w\"},className:\"framer-ots2st\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2t43s2\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Rachel\"})}),className:\"framer-nqkidv\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Senior Account Manager\"})}),className:\"framer-gpe6v0\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cpxe5k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg\",srcSet:\"https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg\",srcSet:\"https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg\",srcSet:\"https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/x58Tapu3ctKH51SPZ31z93rl0M.jpg 1543w\"},className:\"framer-188cs40\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg\",srcSet:\"https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg\",srcSet:\"https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg\",srcSet:\"https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mEM3kIy6xJ4hQNNmJlfL6x9hI8.jpg 896w\"},className:\"framer-19ryi28\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pm6gog\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Ross\"})}),className:\"framer-jdaiym\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Designer\"})}),className:\"framer-2bezid\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jdjhhc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg\",srcSet:\"https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg\",srcSet:\"https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg\",srcSet:\"https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/oYSPG9KyaMV9nZ16xR6VVYOZhc.jpg 1543w\"},className:\"framer-16he8gz\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:890,loading:\"lazy\",pixelHeight:896,pixelWidth:890,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/MwIIXF5W2gw2LecELiubOjdiYY.jpg\",srcSet:\"https://framerusercontent.com/images/MwIIXF5W2gw2LecELiubOjdiYY.jpg 890w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:890,loading:\"lazy\",pixelHeight:896,pixelWidth:890,src:\"https://framerusercontent.com/images/MwIIXF5W2gw2LecELiubOjdiYY.jpg\",srcSet:\"https://framerusercontent.com/images/MwIIXF5W2gw2LecELiubOjdiYY.jpg 890w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:890,loading:\"lazy\",pixelHeight:896,pixelWidth:890,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/MwIIXF5W2gw2LecELiubOjdiYY.jpg\",srcSet:\"https://framerusercontent.com/images/MwIIXF5W2gw2LecELiubOjdiYY.jpg 890w\"},className:\"framer-et3ksd\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-stlrx\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Michelle\"})}),className:\"framer-1dzf1d7\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Operations Manager\"})}),className:\"framer-13nc3ma\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1idph5m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg\",srcSet:\"https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg\",srcSet:\"https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg\",srcSet:\"https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/SHH3uGEwsLez7oulmAUdTD58.jpg 1543w\"},className:\"framer-cv8s99\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg\",srcSet:\"https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg\",srcSet:\"https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg\",srcSet:\"https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RaIMK6EzGEHs1v3UpJGlRoPcU.jpg 896w\"},className:\"framer-1su53q7\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u85u92\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Greg\"})}),className:\"framer-h22pfg\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Senior Designer\"})}),className:\"framer-6p69uu\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h1k49z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg\",srcSet:\"https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg\",srcSet:\"https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg\",srcSet:\"https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/DyCA4hRy2qXb2cgoqi9fGgS6Fo.jpg 1543w\"},className:\"framer-18pgxyd\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg\",srcSet:\"https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg\",srcSet:\"https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg\",srcSet:\"https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EcMsVcLftDdHIR7S6UGbID427xk.jpg 896w\"},className:\"framer-8a55aj\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nts3qc\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Elisha \"})}),className:\"framer-ld65us\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Senior Account Manager\"})}),className:\"framer-hz9nvp\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1voi3w0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg\",srcSet:\"https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg\",srcSet:\"https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg\",srcSet:\"https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/J60JUptGCZsTS20mp72CHkargZ8.jpg 1543w\"},className:\"framer-1wggo7\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg\",srcSet:\"https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg\",srcSet:\"https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg\",srcSet:\"https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6Eqzp5tD9L9vuJp4jVbhJEvO8I.jpg 896w\"},className:\"framer-18jlkjo\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ipbtw9\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Mark\"})}),className:\"framer-3atrv2\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Managing Director\"})}),className:\"framer-1fwyb31\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jsmlk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg\",srcSet:\"https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg\",srcSet:\"https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg\",srcSet:\"https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/1U5TpiiJgCqmvunBO4dNXSgocjI.jpg 1543w\"},className:\"framer-1s6yagf\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg\",srcSet:\"https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg\",srcSet:\"https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg\",srcSet:\"https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZHjjyDxuGQVUN894lCO7Vacf2M.jpg 896w\"},className:\"framer-va0jo9\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ln09a1\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Rachel\"})}),className:\"framer-le04rj\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Senior Account Executive\"})}),className:\"framer-52mkmk\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10tbqfq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg\",srcSet:\"https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg\",srcSet:\"https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg\",srcSet:\"https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/RhTWfdprWpbkRE6MB1fmf1bO5Wk.jpg 1543w\"},className:\"framer-ukcjf8\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg\",srcSet:\"https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg\",srcSet:\"https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg\",srcSet:\"https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nDdl32pwaRuCekrshV5GSoP4AEQ.jpg 896w\"},className:\"framer-1bbq7hs\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4sxfaz\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Sam\"})}),className:\"framer-1bboi8f\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Designer\"})}),className:\"framer-1rdabzp\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w9bcqs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg\",srcSet:\"https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg\",srcSet:\"https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"top\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg\",srcSet:\"https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/tdsOHYFi4uMWonyyLVY9NE09z4o.jpg 1543w\"},className:\"framer-67j1p1\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg\",srcSet:\"https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg\",srcSet:\"https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg\",srcSet:\"https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PGcmA80B8jkEGpT8IPXHJ62QM.jpg 896w\"},className:\"framer-5lr3l7\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10w7jin\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Emma\"})}),className:\"framer-mo5424\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Account Director\"})}),className:\"framer-1u5r7u3\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sh72tu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg\",srcSet:\"https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg\",srcSet:\"https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg\",srcSet:\"https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/776WEqYuxKSiGwAgD5gmoGQoc4.jpg 1543w\"},className:\"framer-huntds\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg\",srcSet:\"https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg 896w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,src:\"https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg\",srcSet:\"https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:896,pixelWidth:896,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg\",srcSet:\"https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8HhfnfiZ6QWXqpZR39fFfWbdJ8.jpg 896w\"},className:\"framer-onpecz\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yyw1yu\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Emily\"})}),className:\"framer-1ra9s08\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Senior Account Executive\"})}),className:\"framer-7f4mmj\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o6ujoo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg\",srcSet:\"https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg 1543w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg\",srcSet:\"https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg 1543w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1543,loading:\"lazy\",pixelHeight:2048,pixelWidth:1543,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg\",srcSet:\"https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/IM65jBgafU0xXyqKsihchGqaYk.jpg 1543w\"},className:\"framer-s052p5\",\"data-framer-name\":\"Hover\",name:\"Hover\",whileHover:animation2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:3840,pixelWidth:3840,sizes:\"max((min(100vw, 1680px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=512 512w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png 3840w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:3840,pixelWidth:3840,src:\"https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=512 512w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:896,intrinsicWidth:896,loading:\"lazy\",pixelHeight:3840,pixelWidth:3840,sizes:\"max((min(100vw, 1680px) - 260px) / 4, 200px)\",src:\"https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=512 512w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vhoQowhbTRM5YW6zBmlS90xb7KE.png 3840w\"},className:\"framer-10qrzkq\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nxyl98\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Leana\"})}),className:\"framer-1yhih5l\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"TASA Orbiter Text Regular\", \"TASA Orbiter Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Designer\"})}),className:\"framer-dmfes4\",fonts:[\"CUSTOM;TASA Orbiter Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10sqk3w\",\"data-framer-name\":\"divider wrapper\",name:\"divider wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-390itz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{variant:\"W3pOtuyVm\"}},children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"xsONkL4vk\",layoutId:\"xsONkL4vk\",style:{width:\"100%\"},variant:\"jMVWHpp1E\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hx0yu1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s9ny8q\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k307pi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12a8ms\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:677,loading:\"lazy\",pixelHeight:256,pixelWidth:677,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 4, 50px), 120px)\",src:\"https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp\",srcSet:\"https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp 677w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:677,loading:\"lazy\",pixelHeight:256,pixelWidth:677,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 75px) / 2, 50px) * 0.5896, 120px)\",src:\"https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp\",srcSet:\"https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp 677w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:256,intrinsicWidth:677,loading:\"lazy\",pixelHeight:256,pixelWidth:677,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 5, 50px), 120px)\",src:\"https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp\",srcSet:\"https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Q0gaQF0maLOedeFDoJdpiwx1Qw.webp 677w\"},className:\"framer-pjzq4\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mk9jkq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:114,intrinsicWidth:544,loading:\"lazy\",pixelHeight:114,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 4, 50px), 120px)\",src:\"https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp\",srcSet:\"https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp 544w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:114,intrinsicWidth:544,loading:\"lazy\",pixelHeight:114,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 75px) / 2, 50px) * 0.5936, 120px)\",src:\"https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp\",srcSet:\"https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp 544w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:114,intrinsicWidth:544,loading:\"lazy\",pixelHeight:114,pixelWidth:544,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 5, 50px), 120px)\",src:\"https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp\",srcSet:\"https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SDtcCxb60ZuzdTWcsYyVmcMC5tA.webp 544w\"},className:\"framer-9gbsj3\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua8d6q\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:422,intrinsicWidth:234,loading:\"lazy\",pixelHeight:422,pixelWidth:234,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lkDxzQRIhd3uSaWN6qTcAGUr8eI.webp\"},className:\"framer-1i8g3iz\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1deh8q0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:244,intrinsicWidth:915,loading:\"lazy\",pixelHeight:244,pixelWidth:915,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 4, 50px), 120px)\",src:\"https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp\",srcSet:\"https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp 915w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:244,intrinsicWidth:915,loading:\"lazy\",pixelHeight:244,pixelWidth:915,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 75px) / 2, 50px), 120px)\",src:\"https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp\",srcSet:\"https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp 915w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:244,intrinsicWidth:915,loading:\"lazy\",pixelHeight:244,pixelWidth:915,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 5, 50px), 120px)\",src:\"https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp\",srcSet:\"https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0u40v7I4qiuh4dKcOTuvVBdAQ.webp 915w\"},className:\"framer-1hd8qf3\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-132n8rb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:220,intrinsicWidth:719,loading:\"lazy\",pixelHeight:220,pixelWidth:719,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 4, 50px), 120px)\",src:\"https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp\",srcSet:\"https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp 719w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:220,intrinsicWidth:719,loading:\"lazy\",pixelHeight:220,pixelWidth:719,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 75px) / 2, 50px) * 0.5896, 120px)\",src:\"https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp\",srcSet:\"https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp 719w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:220,intrinsicWidth:719,loading:\"lazy\",pixelHeight:220,pixelWidth:719,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 5, 50px), 120px)\",src:\"https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp\",srcSet:\"https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fnLzso283lQNwAuPGTfhswdigZ4.webp 719w\"},className:\"framer-1szawll\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h6okcq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2625,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:2625,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 4, 50px), 120px)\",src:\"https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp\",srcSet:\"https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp 4096w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2625,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:2625,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 75px) / 2, 50px) * 0.5936, 120px)\",src:\"https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp\",srcSet:\"https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2625,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:2625,pixelWidth:4096,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 5, 50px), 120px)\",src:\"https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp\",srcSet:\"https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Fpn4sE4KK0TFaJw7ZIB975ZZkk.webp 4096w\"},className:\"framer-1qx0mmg\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4e49f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:872,intrinsicWidth:745,loading:\"lazy\",pixelHeight:872,pixelWidth:745,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 4, 50px), 120px)\",src:\"https://framerusercontent.com/images/BDZI1PBokGpCGLZdL4vVGnECEP4.webp\",srcSet:\"https://framerusercontent.com/images/BDZI1PBokGpCGLZdL4vVGnECEP4.webp 745w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:872,intrinsicWidth:745,loading:\"lazy\",pixelHeight:872,pixelWidth:745,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 75px) / 2, 50px) * 0.5896, 120px)\",src:\"https://framerusercontent.com/images/BDZI1PBokGpCGLZdL4vVGnECEP4.webp\",srcSet:\"https://framerusercontent.com/images/BDZI1PBokGpCGLZdL4vVGnECEP4.webp 745w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:872,intrinsicWidth:745,loading:\"lazy\",pixelHeight:872,pixelWidth:745,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 5, 50px), 120px)\",src:\"https://framerusercontent.com/images/BDZI1PBokGpCGLZdL4vVGnECEP4.webp\",srcSet:\"https://framerusercontent.com/images/BDZI1PBokGpCGLZdL4vVGnECEP4.webp 745w\"},className:\"framer-7kk3po\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-107c1y9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:248,intrinsicWidth:440,loading:\"lazy\",pixelHeight:248,pixelWidth:440,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/rxfprnh3AQOS6jyMuM87O9QgF8.webp\"},className:\"framer-8tvw6j\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a7fddi\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:425,intrinsicWidth:351,loading:\"lazy\",pixelHeight:425,pixelWidth:351,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/K9vcReIYKET3QEVHd8MEEexK2I.webp\"},className:\"framer-1635n59\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11yjuoe\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:143,intrinsicWidth:615,loading:\"lazy\",pixelHeight:143,pixelWidth:615,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 4, 50px), 120px)\",src:\"https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp\",srcSet:\"https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp 615w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:143,intrinsicWidth:615,loading:\"lazy\",pixelHeight:143,pixelWidth:615,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 75px) / 2, 50px), 120px)\",src:\"https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp\",srcSet:\"https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp 615w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:143,intrinsicWidth:615,loading:\"lazy\",pixelHeight:143,pixelWidth:615,positionX:\"center\",positionY:\"center\",sizes:\"min(max((min(100vw, 1680px) - 280px) / 5, 50px), 120px)\",src:\"https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp\",srcSet:\"https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MI0fxeKDQzWxcQs98Ir4XfTkkaE.webp 615w\"},className:\"framer-14mcpy0\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vk4yn1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:169,intrinsicWidth:250,loading:\"lazy\",pixelHeight:169,pixelWidth:250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BRuWXu9HBSHC1SyZWv7EmQ7Dcco.png\"},className:\"framer-n1anlh\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q2zbcy\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:185,loading:\"lazy\",pixelHeight:32,pixelWidth:185,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lgxHO7kIwJGeQXIbCnc5dHB2TM.png\"},className:\"framer-1ou0hvs\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u2i4at\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:137,intrinsicWidth:360,loading:\"lazy\",pixelHeight:137,pixelWidth:360,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mXq5kEMxRBLuGAb7TUB8MvTEFI.png\"},className:\"framer-15flpqi\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:809,pixelWidth:3065,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 280px) / 4, 50px)\",src:\"https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png\",srcSet:\"https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png 3065w\"}},Z7NXBXjta:{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:809,pixelWidth:3065,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 75px) / 2, 50px)\",src:\"https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png\",srcSet:\"https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png 3065w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:\"lazy\",pixelHeight:809,pixelWidth:3065,positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1680px) - 280px) / 5, 50px)\",src:\"https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png\",srcSet:\"https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Omkex4GiSGZW1HSBepM8hEHE.png 3065w\"},className:\"framer-2xsn2h\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",pixelHeight:296,pixelWidth:786,sizes:\"184px\",src:\"https://framerusercontent.com/images/elgHZyj5w50byxbuvKLKSXHdAw4.png\",srcSet:\"https://framerusercontent.com/images/elgHZyj5w50byxbuvKLKSXHdAw4.png?scale-down-to=512 512w,https://framerusercontent.com/images/elgHZyj5w50byxbuvKLKSXHdAw4.png 786w\"},className:\"framer-1tr9r6e\"})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j6iuwh\",\"data-framer-name\":\"divider wrapper\",name:\"divider wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sirywj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{variant:\"W3pOtuyVm\"}},children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"IMh9Lgb1R\",layoutId:\"IMh9Lgb1R\",style:{width:\"100%\"},variant:\"jMVWHpp1E\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qdgumy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7jwbv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-icpsg9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2pywr\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Our Approach\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Our Approach\"})}),className:\"framer-13xumc8\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r99tvk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Your brand is your digital DNA. We extract its essence, its core purpose, and translate it into every touchpoint to bring remarkable visions to life. From big, innovative concepts to simple, straightforward ideas, we believe in the power of elegance and clarity.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Our design philosophy is built on surpassing expectations and nurturing lasting relationships, based on shared aspirations.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Whether you\u2019re a corporate giant, independently-owned business, or challenging start-up, we're nimble enough to adapt to your unique needs, with the strategic expertise to elevate your brand\u2019s trajectory.\"})]})},Z7NXBXjta:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Your brand is your digital DNA. We extract its essence, its core purpose, and translate it into every touchpoint to bring remarkable visions to life. From big, innovative concepts to simple, straightforward ideas, we believe in the power of elegance and clarity.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Our design philosophy is built on surpassing expectations and nurturing lasting relationships, based on shared aspirations.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Whether you\u2019re a corporate giant, independently-owned business, or challenging start-up, we're nimble enough to adapt to your unique needs, with the strategic expertise to elevate your brand\u2019s trajectory.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Your brand is your digital DNA. We extract its essence, its core purpose, and translate it into every touchpoint to bring remarkable visions to life. From big, innovative concepts to simple, straightforward ideas, we believe in the power of elegance and clarity.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Our design philosophy is built on surpassing expectations and nurturing lasting relationships, based on shared aspirations.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", \"TASA Orbiter Text Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Whether you\u2019re a corporate giant, independently-owned business, or challenging start-up, we're nimble enough to adapt to your unique needs, with the strategic expertise to elevate your brand\u2019s trajectory.\"})]}),className:\"framer-1cj3g1\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sjny5g\",\"data-framer-name\":\"divider wrapper\",name:\"divider wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-199w50q-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{variant:\"W3pOtuyVm\"}},children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"BzkDGtrpo\",layoutId:\"BzkDGtrpo\",style:{width:\"100%\"},variant:\"jMVWHpp1E\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u2n336\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zi3g1f\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ynim4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p8al6o\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Services\"})})},Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Services\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Services\"})}),className:\"framer-hdi17v\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d982w9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n8xqcy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-bts9y3\",\"data-styles-preset\":\"Yvr4anILU\",children:[\"Digital\",/*#__PURE__*/_jsx(\"br\",{}),\"Brand Strategy\",/*#__PURE__*/_jsx(\"br\",{}),\"Brand Identity\",/*#__PURE__*/_jsx(\"br\",{}),\"Campaign Creation\"]})}),className:\"framer-sttyl0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-bts9y3\",\"data-styles-preset\":\"Yvr4anILU\",children:[\"Motion Design\",/*#__PURE__*/_jsx(\"br\",{}),\"Animation\",/*#__PURE__*/_jsx(\"br\",{}),\"Presentation Design\",/*#__PURE__*/_jsx(\"br\",{}),\"Design Systems\"]})}),className:\"framer-n4fxce\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wtxn2x\",\"data-framer-name\":\"divider wrapper\",name:\"divider wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s4eyzp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{variant:\"W3pOtuyVm\"}},children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"PTjZbopPX\",layoutId:\"PTjZbopPX\",style:{width:\"100%\"},variant:\"jMVWHpp1E\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nuh5xp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m9x4sj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4g3ci\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12qrs7n\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Clients\"})})},Z7NXBXjta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Clients\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1RBU0EgT3JiaXRlciBUZXh0IE1lZGl1bQ==\",\"--framer-font-family\":'\"TASA Orbiter Text Medium\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-0079f825-bef3-4419-a118-1f0d23265e98, rgb(99, 99, 99))\"},children:\"Clients\"})}),className:\"framer-yacvbt\",fonts:[\"CUSTOM;TASA Orbiter Text Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r42b7r\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ahqmpt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-uanazn\",\"data-styles-preset\":\"kJA_5RkV8\",children:[\"The Brain Tumour Charity\",/*#__PURE__*/_jsx(\"br\",{}),\"Canon\",/*#__PURE__*/_jsx(\"br\",{}),\"Hyundai Finance \",/*#__PURE__*/_jsx(\"br\",{}),\"Inigo\",/*#__PURE__*/_jsx(\"br\",{}),\"ESP Utilities\",/*#__PURE__*/_jsx(\"br\",{}),\"South Western Railway\",/*#__PURE__*/_jsx(\"br\",{}),\"Zephyr X\",/*#__PURE__*/_jsx(\"br\",{}),\"Echo.Bravo\"]})}),className:\"framer-1avzcw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-uanazn\",\"data-styles-preset\":\"kJA_5RkV8\",children:[\"Kimberly-Clark Professional\",/*#__PURE__*/_jsx(\"br\",{}),\"OOMI\",/*#__PURE__*/_jsx(\"br\",{}),\"The Plum Agency\",/*#__PURE__*/_jsx(\"br\",{}),\"Santander Consumer Finance\",/*#__PURE__*/_jsx(\"br\",{}),\"Zoetis\",/*#__PURE__*/_jsx(\"br\",{}),\"Kia Finance\",/*#__PURE__*/_jsx(\"br\",{}),\"Reigate Grammar School\"]})}),className:\"framer-dlbguf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-elpwlp\",\"data-framer-name\":\"divider wrapper\",name:\"divider wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19l06q5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{variant:\"W3pOtuyVm\"}},children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"rcEXZNX3N\",layoutId:\"rcEXZNX3N\",style:{width:\"100%\"},variant:\"jMVWHpp1E\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z7NXBXjta:{width:\"392px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5sczvq-container hidden-4drq0x hidden-14bg5fr\",children:/*#__PURE__*/_jsx(TestimonialsMobile,{height:\"100%\",id:\"ATeYh3c3H\",layoutId:\"ATeYh3c3H\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{width:\"812px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ksn6sm-container hidden-4drq0x hidden-6czoqr\",children:/*#__PURE__*/_jsx(TestimonialsTablet,{height:\"100%\",id:\"v2yEcBnJZ\",layoutId:\"v2yEcBnJZ\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"min(100vw, 1680px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-33l29j-container hidden-14bg5fr hidden-6czoqr\",children:/*#__PURE__*/_jsx(Testimonials,{height:\"100%\",id:\"mGzRisqCr\",layoutId:\"mGzRisqCr\",style:{width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b6y4gj\",\"data-framer-name\":\"Footer Wrapper\",name:\"Footer Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19b7e0i-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UA1NdKKrx:{variant:\"rkrHz0ah_\"},Z7NXBXjta:{variant:\"Y10ZKe2Ul\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"DMudl4X6S\",layoutId:\"DMudl4X6S\",style:{width:\"100%\"},variant:\"QJB2HTk1R\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-JgXQS { background: white; }`,\".framer-JgXQS.framer-113vv6p, .framer-JgXQS .framer-113vv6p { display: block; }\",\".framer-JgXQS.framer-4drq0x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-JgXQS .framer-1k4ioj2-container { bottom: 0px; flex: none; height: auto; left: 0px; position: fixed; right: 0px; z-index: 10; }\",\".framer-JgXQS .framer-3raie5, .framer-JgXQS .framer-ytd6v0 { align-content: center; align-items: center; background-color: #ffffff; 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: 100%; z-index: 8; }\",\".framer-JgXQS .framer-1aafb8z { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 0px 60px 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-JgXQS .framer-1v1fqo3-container { flex: none; height: 86px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-gy738 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; min-height: 90vh; overflow: visible; padding: 80px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1j3ymmk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1afaes4, .framer-JgXQS .framer-1jjnx39, .framer-JgXQS .framer-ys06vf, .framer-JgXQS .framer-ki10un, .framer-JgXQS .framer-1k3v2or, .framer-JgXQS .framer-m1kj22 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JgXQS .framer-jyp3g6-container { aspect-ratio: 0.8076923076923077 / 1; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 396px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 320px; z-index: 2; }\",\".framer-JgXQS .framer-1vy4uvd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 35%; word-break: break-word; word-wrap: break-word; }\",\".framer-JgXQS .framer-1uyo3jg-container, .framer-JgXQS .framer-33l29j-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JgXQS .framer-5ke1n0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 80px 35px 80px 35px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1w2vm7a, .framer-JgXQS .framer-10eftl6 { --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-JgXQS .framer-1ea41k2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-JgXQS .framer-35e7hs { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 220px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-JgXQS .framer-12mci84 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1380px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-l6jgsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-xmm0my { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; }\",\".framer-JgXQS .framer-1n68fiq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-xnsoux { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 245px); overflow: hidden; position: relative; width: 245px; }\",\".framer-JgXQS .framer-oih76i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-py8hjs { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 3000px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 7; }\",\".framer-JgXQS .framer-itofwh { flex: none; height: 100vh; overflow: hidden; position: sticky; top: 0px; width: 95%; will-change: transform; z-index: 1; }\",\".framer-JgXQS .framer-1erxaep { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: 100vh; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 100vh / 2); will-change: var(--framer-will-change-override, transform); z-index: 8; }\",\".framer-JgXQS .framer-rtnlem { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JgXQS .framer-1le2m63 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px 0px 60px 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-JgXQS .framer-dondal, .framer-JgXQS .framer-1s9ny8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 60px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-jc49c0, .framer-JgXQS .framer-10sqk3w, .framer-JgXQS .framer-1j6iuwh, .framer-JgXQS .framer-1sjny5g, .framer-JgXQS .framer-wtxn2x, .framer-JgXQS .framer-elpwlp { 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-JgXQS .framer-1kqkrgb-container, .framer-JgXQS .framer-390itz-container, .framer-JgXQS .framer-1sirywj-container, .framer-JgXQS .framer-199w50q-container, .framer-JgXQS .framer-1s4eyzp-container, .framer-JgXQS .framer-19l06q5-container { flex: none; height: auto; position: relative; width: 1620px; }\",\".framer-JgXQS .framer-1qlgxga, .framer-JgXQS .framer-qdgumy, .framer-JgXQS .framer-1u2n336, .framer-JgXQS .framer-nuh5xp { 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: flex-start; max-width: 1680px; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-3c8z90, .framer-JgXQS .framer-1x7jwbv, .framer-JgXQS .framer-zi3g1f, .framer-JgXQS .framer-1m9x4sj { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.7 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-JgXQS .framer-1gdqwe0, .framer-JgXQS .framer-icpsg9 { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JgXQS .framer-1u91hku, .framer-JgXQS .framer-x2pywr, .framer-JgXQS .framer-1p8al6o, .framer-JgXQS .framer-12qrs7n { background-color: var(--token-0079f825-bef3-4419-a118-1f0d23265e98, #636363); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; overflow: hidden; position: relative; width: 8px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JgXQS .framer-zd4nse, .framer-JgXQS .framer-13xumc8, .framer-JgXQS .framer-1cj3g1, .framer-JgXQS .framer-sttyl0, .framer-JgXQS .framer-n4fxce, .framer-JgXQS .framer-1avzcw, .framer-JgXQS .framer-dlbguf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-JgXQS .framer-14eqjgy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-cmtej7 { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1f7k4jf, .framer-JgXQS .framer-1mp8h3, .framer-JgXQS .framer-195o7if, .framer-JgXQS .framer-1nxrple, .framer-JgXQS .framer-cpxe5k, .framer-JgXQS .framer-jdjhhc, .framer-JgXQS .framer-1idph5m, .framer-JgXQS .framer-1h1k49z, .framer-JgXQS .framer-1voi3w0, .framer-JgXQS .framer-jsmlk, .framer-JgXQS .framer-10tbqfq, .framer-JgXQS .framer-1w9bcqs, .framer-JgXQS .framer-sh72tu, .framer-JgXQS .framer-o6ujoo { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-xrlmn5 { aspect-ratio: 1.0017776224193569 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 235px); left: 0px; opacity: 0; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-JgXQS .framer-1cq3wxh, .framer-JgXQS .framer-bpnpzk, .framer-JgXQS .framer-eq0ew3, .framer-JgXQS .framer-101i2gs, .framer-JgXQS .framer-ots2st, .framer-JgXQS .framer-19ryi28, .framer-JgXQS .framer-et3ksd, .framer-JgXQS .framer-1su53q7, .framer-JgXQS .framer-8a55aj, .framer-JgXQS .framer-18jlkjo, .framer-JgXQS .framer-va0jo9, .framer-JgXQS .framer-1bbq7hs, .framer-JgXQS .framer-5lr3l7, .framer-JgXQS .framer-onpecz, .framer-JgXQS .framer-10qrzkq { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 235px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JgXQS .framer-pe35yf, .framer-JgXQS .framer-1f1eo3i, .framer-JgXQS .framer-10xzn4s, .framer-JgXQS .framer-1wnpa6a, .framer-JgXQS .framer-2t43s2, .framer-JgXQS .framer-pm6gog, .framer-JgXQS .framer-stlrx, .framer-JgXQS .framer-1u85u92, .framer-JgXQS .framer-1nts3qc, .framer-JgXQS .framer-ipbtw9, .framer-JgXQS .framer-ln09a1, .framer-JgXQS .framer-4sxfaz, .framer-JgXQS .framer-10w7jin, .framer-JgXQS .framer-yyw1yu, .framer-JgXQS .framer-nxyl98 { 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: center; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-yzqu7d, .framer-JgXQS .framer-7ul3ni, .framer-JgXQS .framer-1sx4zu9, .framer-JgXQS .framer-1kxukbj, .framer-JgXQS .framer-nqkidv, .framer-JgXQS .framer-jdaiym, .framer-JgXQS .framer-1dzf1d7, .framer-JgXQS .framer-h22pfg, .framer-JgXQS .framer-ld65us, .framer-JgXQS .framer-3atrv2, .framer-JgXQS .framer-le04rj, .framer-JgXQS .framer-1bboi8f, .framer-JgXQS .framer-mo5424, .framer-JgXQS .framer-1ra9s08, .framer-JgXQS .framer-1yhih5l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JgXQS .framer-1g62xmy, .framer-JgXQS .framer-ythq2e, .framer-JgXQS .framer-mk3t2i, .framer-JgXQS .framer-88g1q9, .framer-JgXQS .framer-gpe6v0, .framer-JgXQS .framer-2bezid, .framer-JgXQS .framer-13nc3ma, .framer-JgXQS .framer-6p69uu, .framer-JgXQS .framer-hz9nvp, .framer-JgXQS .framer-1fwyb31, .framer-JgXQS .framer-52mkmk, .framer-JgXQS .framer-1rdabzp, .framer-JgXQS .framer-1u5r7u3, .framer-JgXQS .framer-7f4mmj, .framer-JgXQS .framer-dmfes4 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JgXQS .framer-1eibz3j, .framer-JgXQS .framer-gy3rrm, .framer-JgXQS .framer-1957dyl, .framer-JgXQS .framer-188cs40, .framer-JgXQS .framer-16he8gz, .framer-JgXQS .framer-cv8s99, .framer-JgXQS .framer-18pgxyd, .framer-JgXQS .framer-1wggo7, .framer-JgXQS .framer-1s6yagf, .framer-JgXQS .framer-ukcjf8, .framer-JgXQS .framer-67j1p1, .framer-JgXQS .framer-huntds, .framer-JgXQS .framer-s052p5 { aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 235px); left: 0px; opacity: 0; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-JgXQS .framer-4d95b { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-f0us2b { aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 235px); left: 50%; opacity: 0; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-JgXQS .framer-1hx0yu1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 7; }\",\".framer-JgXQS .framer-1k307pi { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-12a8ms, .framer-JgXQS .framer-mk9jkq { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-pjzq4, .framer-JgXQS .framer-9gbsj3, .framer-JgXQS .framer-1i8g3iz, .framer-JgXQS .framer-1szawll, .framer-JgXQS .framer-1qx0mmg, .framer-JgXQS .framer-7kk3po, .framer-JgXQS .framer-1635n59 { aspect-ratio: 1.7450980392156863 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 69px); max-width: 120px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1ua8d6q, .framer-JgXQS .framer-132n8rb, .framer-JgXQS .framer-1h6okcq, .framer-JgXQS .framer-k4e49f, .framer-JgXQS .framer-107c1y9, .framer-JgXQS .framer-a7fddi, .framer-JgXQS .framer-11yjuoe, .framer-JgXQS .framer-1vk4yn1, .framer-JgXQS .framer-1q2zbcy, .framer-JgXQS .framer-u2i4at { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1deh8q0 { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 69px; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1hd8qf3 { flex: none; height: 69%; max-width: 120px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JgXQS .framer-8tvw6j { aspect-ratio: 1.7450980392156863 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 59px); max-width: 120px; overflow: hidden; position: relative; width: 55%; }\",\".framer-JgXQS .framer-14mcpy0 { flex: none; height: 50px; max-width: 120px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JgXQS .framer-n1anlh { flex: none; height: 70px; max-width: 120px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1ou0hvs { flex: none; height: 50px; max-width: 160px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JgXQS .framer-15flpqi { flex: none; height: 60px; max-width: 140px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JgXQS .framer-2xsn2h { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: center; min-height: 50px; padding: 0px; position: relative; width: 100%; }\",\".framer-JgXQS .framer-1tr9r6e { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 71px; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 184px; }\",\".framer-JgXQS .framer-1r99tvk, .framer-JgXQS .framer-d982w9, .framer-JgXQS .framer-r42b7r { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-JgXQS .framer-2ynim4, .framer-JgXQS .framer-1r4g3ci { 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-JgXQS .framer-hdi17v, .framer-JgXQS .framer-yacvbt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 448px; word-break: break-word; word-wrap: break-word; }\",\".framer-JgXQS .framer-n8xqcy, .framer-JgXQS .framer-1ahqmpt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-JgXQS .framer-5sczvq-container { flex: none; height: auto; position: relative; width: 392px; }\",\".framer-JgXQS .framer-1ksn6sm-container { flex: none; height: auto; position: relative; width: 812px; }\",\".framer-JgXQS .framer-b6y4gj { align-content: center; align-items: center; background-color: #99eeff; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-JgXQS .framer-19b7e0i-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JgXQS.framer-4drq0x, .framer-JgXQS .framer-3raie5, .framer-JgXQS .framer-1aafb8z, .framer-JgXQS .framer-gy738, .framer-JgXQS .framer-1j3ymmk, .framer-JgXQS .framer-5ke1n0, .framer-JgXQS .framer-35e7hs, .framer-JgXQS .framer-12mci84, .framer-JgXQS .framer-1n68fiq, .framer-JgXQS .framer-oih76i, .framer-JgXQS .framer-py8hjs, .framer-JgXQS .framer-ytd6v0, .framer-JgXQS .framer-1le2m63, .framer-JgXQS .framer-dondal, .framer-JgXQS .framer-jc49c0, .framer-JgXQS .framer-1qlgxga, .framer-JgXQS .framer-3c8z90, .framer-JgXQS .framer-1gdqwe0, .framer-JgXQS .framer-14eqjgy, .framer-JgXQS .framer-1f7k4jf, .framer-JgXQS .framer-1cq3wxh, .framer-JgXQS .framer-pe35yf, .framer-JgXQS .framer-1mp8h3, .framer-JgXQS .framer-bpnpzk, .framer-JgXQS .framer-1f1eo3i, .framer-JgXQS .framer-4d95b, .framer-JgXQS .framer-eq0ew3, .framer-JgXQS .framer-10xzn4s, .framer-JgXQS .framer-195o7if, .framer-JgXQS .framer-101i2gs, .framer-JgXQS .framer-1wnpa6a, .framer-JgXQS .framer-1nxrple, .framer-JgXQS .framer-ots2st, .framer-JgXQS .framer-2t43s2, .framer-JgXQS .framer-cpxe5k, .framer-JgXQS .framer-19ryi28, .framer-JgXQS .framer-pm6gog, .framer-JgXQS .framer-jdjhhc, .framer-JgXQS .framer-et3ksd, .framer-JgXQS .framer-stlrx, .framer-JgXQS .framer-1idph5m, .framer-JgXQS .framer-1su53q7, .framer-JgXQS .framer-1u85u92, .framer-JgXQS .framer-1h1k49z, .framer-JgXQS .framer-8a55aj, .framer-JgXQS .framer-1nts3qc, .framer-JgXQS .framer-1voi3w0, .framer-JgXQS .framer-18jlkjo, .framer-JgXQS .framer-ipbtw9, .framer-JgXQS .framer-jsmlk, .framer-JgXQS .framer-va0jo9, .framer-JgXQS .framer-ln09a1, .framer-JgXQS .framer-10tbqfq, .framer-JgXQS .framer-1bbq7hs, .framer-JgXQS .framer-4sxfaz, .framer-JgXQS .framer-1w9bcqs, .framer-JgXQS .framer-5lr3l7, .framer-JgXQS .framer-10w7jin, .framer-JgXQS .framer-sh72tu, .framer-JgXQS .framer-onpecz, .framer-JgXQS .framer-yyw1yu, .framer-JgXQS .framer-o6ujoo, .framer-JgXQS .framer-10qrzkq, .framer-JgXQS .framer-nxyl98, .framer-JgXQS .framer-10sqk3w, .framer-JgXQS .framer-1hx0yu1, .framer-JgXQS .framer-1s9ny8q, .framer-JgXQS .framer-12a8ms, .framer-JgXQS .framer-mk9jkq, .framer-JgXQS .framer-1ua8d6q, .framer-JgXQS .framer-1deh8q0, .framer-JgXQS .framer-132n8rb, .framer-JgXQS .framer-1h6okcq, .framer-JgXQS .framer-k4e49f, .framer-JgXQS .framer-107c1y9, .framer-JgXQS .framer-a7fddi, .framer-JgXQS .framer-11yjuoe, .framer-JgXQS .framer-1vk4yn1, .framer-JgXQS .framer-1q2zbcy, .framer-JgXQS .framer-u2i4at, .framer-JgXQS .framer-2xsn2h, .framer-JgXQS .framer-1tr9r6e, .framer-JgXQS .framer-1j6iuwh, .framer-JgXQS .framer-qdgumy, .framer-JgXQS .framer-1x7jwbv, .framer-JgXQS .framer-icpsg9, .framer-JgXQS .framer-1r99tvk, .framer-JgXQS .framer-1sjny5g, .framer-JgXQS .framer-1u2n336, .framer-JgXQS .framer-zi3g1f, .framer-JgXQS .framer-2ynim4, .framer-JgXQS .framer-d982w9, .framer-JgXQS .framer-n8xqcy, .framer-JgXQS .framer-wtxn2x, .framer-JgXQS .framer-nuh5xp, .framer-JgXQS .framer-1m9x4sj, .framer-JgXQS .framer-1r4g3ci, .framer-JgXQS .framer-r42b7r, .framer-JgXQS .framer-1ahqmpt, .framer-JgXQS .framer-elpwlp, .framer-JgXQS .framer-b6y4gj { gap: 0px; } .framer-JgXQS.framer-4drq0x > *, .framer-JgXQS .framer-1aafb8z > *, .framer-JgXQS .framer-12mci84 > *, .framer-JgXQS .framer-1le2m63 > *, .framer-JgXQS .framer-14eqjgy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JgXQS.framer-4drq0x > :first-child, .framer-JgXQS .framer-3raie5 > :first-child, .framer-JgXQS .framer-1aafb8z > :first-child, .framer-JgXQS .framer-gy738 > :first-child, .framer-JgXQS .framer-1j3ymmk > :first-child, .framer-JgXQS .framer-5ke1n0 > :first-child, .framer-JgXQS .framer-35e7hs > :first-child, .framer-JgXQS .framer-12mci84 > :first-child, .framer-JgXQS .framer-py8hjs > :first-child, .framer-JgXQS .framer-ytd6v0 > :first-child, .framer-JgXQS .framer-1le2m63 > :first-child, .framer-JgXQS .framer-dondal > :first-child, .framer-JgXQS .framer-14eqjgy > :first-child, .framer-JgXQS .framer-1f7k4jf > :first-child, .framer-JgXQS .framer-1cq3wxh > :first-child, .framer-JgXQS .framer-pe35yf > :first-child, .framer-JgXQS .framer-1mp8h3 > :first-child, .framer-JgXQS .framer-bpnpzk > :first-child, .framer-JgXQS .framer-1f1eo3i > :first-child, .framer-JgXQS .framer-4d95b > :first-child, .framer-JgXQS .framer-eq0ew3 > :first-child, .framer-JgXQS .framer-10xzn4s > :first-child, .framer-JgXQS .framer-195o7if > :first-child, .framer-JgXQS .framer-101i2gs > :first-child, .framer-JgXQS .framer-1wnpa6a > :first-child, .framer-JgXQS .framer-1nxrple > :first-child, .framer-JgXQS .framer-ots2st > :first-child, .framer-JgXQS .framer-2t43s2 > :first-child, .framer-JgXQS .framer-cpxe5k > :first-child, .framer-JgXQS .framer-19ryi28 > :first-child, .framer-JgXQS .framer-pm6gog > :first-child, .framer-JgXQS .framer-jdjhhc > :first-child, .framer-JgXQS .framer-et3ksd > :first-child, .framer-JgXQS .framer-stlrx > :first-child, .framer-JgXQS .framer-1idph5m > :first-child, .framer-JgXQS .framer-1su53q7 > :first-child, .framer-JgXQS .framer-1u85u92 > :first-child, .framer-JgXQS .framer-1h1k49z > :first-child, .framer-JgXQS .framer-8a55aj > :first-child, .framer-JgXQS .framer-1nts3qc > :first-child, .framer-JgXQS .framer-1voi3w0 > :first-child, .framer-JgXQS .framer-18jlkjo > :first-child, .framer-JgXQS .framer-ipbtw9 > :first-child, .framer-JgXQS .framer-jsmlk > :first-child, .framer-JgXQS .framer-va0jo9 > :first-child, .framer-JgXQS .framer-ln09a1 > :first-child, .framer-JgXQS .framer-10tbqfq > :first-child, .framer-JgXQS .framer-1bbq7hs > :first-child, .framer-JgXQS .framer-4sxfaz > :first-child, .framer-JgXQS .framer-1w9bcqs > :first-child, .framer-JgXQS .framer-5lr3l7 > :first-child, .framer-JgXQS .framer-10w7jin > :first-child, .framer-JgXQS .framer-sh72tu > :first-child, .framer-JgXQS .framer-onpecz > :first-child, .framer-JgXQS .framer-yyw1yu > :first-child, .framer-JgXQS .framer-o6ujoo > :first-child, .framer-JgXQS .framer-10qrzkq > :first-child, .framer-JgXQS .framer-nxyl98 > :first-child, .framer-JgXQS .framer-1hx0yu1 > :first-child, .framer-JgXQS .framer-1s9ny8q > :first-child { margin-top: 0px; } .framer-JgXQS.framer-4drq0x > :last-child, .framer-JgXQS .framer-3raie5 > :last-child, .framer-JgXQS .framer-1aafb8z > :last-child, .framer-JgXQS .framer-gy738 > :last-child, .framer-JgXQS .framer-1j3ymmk > :last-child, .framer-JgXQS .framer-5ke1n0 > :last-child, .framer-JgXQS .framer-35e7hs > :last-child, .framer-JgXQS .framer-12mci84 > :last-child, .framer-JgXQS .framer-py8hjs > :last-child, .framer-JgXQS .framer-ytd6v0 > :last-child, .framer-JgXQS .framer-1le2m63 > :last-child, .framer-JgXQS .framer-dondal > :last-child, .framer-JgXQS .framer-14eqjgy > :last-child, .framer-JgXQS .framer-1f7k4jf > :last-child, .framer-JgXQS .framer-1cq3wxh > :last-child, .framer-JgXQS .framer-pe35yf > :last-child, .framer-JgXQS .framer-1mp8h3 > :last-child, .framer-JgXQS .framer-bpnpzk > :last-child, .framer-JgXQS .framer-1f1eo3i > :last-child, .framer-JgXQS .framer-4d95b > :last-child, .framer-JgXQS .framer-eq0ew3 > :last-child, .framer-JgXQS .framer-10xzn4s > :last-child, .framer-JgXQS .framer-195o7if > :last-child, .framer-JgXQS .framer-101i2gs > :last-child, .framer-JgXQS .framer-1wnpa6a > :last-child, .framer-JgXQS .framer-1nxrple > :last-child, .framer-JgXQS .framer-ots2st > :last-child, .framer-JgXQS .framer-2t43s2 > :last-child, .framer-JgXQS .framer-cpxe5k > :last-child, .framer-JgXQS .framer-19ryi28 > :last-child, .framer-JgXQS .framer-pm6gog > :last-child, .framer-JgXQS .framer-jdjhhc > :last-child, .framer-JgXQS .framer-et3ksd > :last-child, .framer-JgXQS .framer-stlrx > :last-child, .framer-JgXQS .framer-1idph5m > :last-child, .framer-JgXQS .framer-1su53q7 > :last-child, .framer-JgXQS .framer-1u85u92 > :last-child, .framer-JgXQS .framer-1h1k49z > :last-child, .framer-JgXQS .framer-8a55aj > :last-child, .framer-JgXQS .framer-1nts3qc > :last-child, .framer-JgXQS .framer-1voi3w0 > :last-child, .framer-JgXQS .framer-18jlkjo > :last-child, .framer-JgXQS .framer-ipbtw9 > :last-child, .framer-JgXQS .framer-jsmlk > :last-child, .framer-JgXQS .framer-va0jo9 > :last-child, .framer-JgXQS .framer-ln09a1 > :last-child, .framer-JgXQS .framer-10tbqfq > :last-child, .framer-JgXQS .framer-1bbq7hs > :last-child, .framer-JgXQS .framer-4sxfaz > :last-child, .framer-JgXQS .framer-1w9bcqs > :last-child, .framer-JgXQS .framer-5lr3l7 > :last-child, .framer-JgXQS .framer-10w7jin > :last-child, .framer-JgXQS .framer-sh72tu > :last-child, .framer-JgXQS .framer-onpecz > :last-child, .framer-JgXQS .framer-yyw1yu > :last-child, .framer-JgXQS .framer-o6ujoo > :last-child, .framer-JgXQS .framer-10qrzkq > :last-child, .framer-JgXQS .framer-nxyl98 > :last-child, .framer-JgXQS .framer-1hx0yu1 > :last-child, .framer-JgXQS .framer-1s9ny8q > :last-child { margin-bottom: 0px; } .framer-JgXQS .framer-3raie5 > *, .framer-JgXQS .framer-py8hjs > *, .framer-JgXQS .framer-ytd6v0 > *, .framer-JgXQS .framer-pe35yf > *, .framer-JgXQS .framer-1f1eo3i > *, .framer-JgXQS .framer-10xzn4s > *, .framer-JgXQS .framer-1wnpa6a > *, .framer-JgXQS .framer-2t43s2 > *, .framer-JgXQS .framer-pm6gog > *, .framer-JgXQS .framer-stlrx > *, .framer-JgXQS .framer-1u85u92 > *, .framer-JgXQS .framer-1nts3qc > *, .framer-JgXQS .framer-ipbtw9 > *, .framer-JgXQS .framer-ln09a1 > *, .framer-JgXQS .framer-4sxfaz > *, .framer-JgXQS .framer-10w7jin > *, .framer-JgXQS .framer-yyw1yu > *, .framer-JgXQS .framer-nxyl98 > *, .framer-JgXQS .framer-1hx0yu1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JgXQS .framer-gy738 > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-JgXQS .framer-1j3ymmk > *, .framer-JgXQS .framer-1cq3wxh > *, .framer-JgXQS .framer-bpnpzk > *, .framer-JgXQS .framer-eq0ew3 > *, .framer-JgXQS .framer-101i2gs > *, .framer-JgXQS .framer-ots2st > *, .framer-JgXQS .framer-19ryi28 > *, .framer-JgXQS .framer-et3ksd > *, .framer-JgXQS .framer-1su53q7 > *, .framer-JgXQS .framer-8a55aj > *, .framer-JgXQS .framer-18jlkjo > *, .framer-JgXQS .framer-va0jo9 > *, .framer-JgXQS .framer-1bbq7hs > *, .framer-JgXQS .framer-5lr3l7 > *, .framer-JgXQS .framer-onpecz > *, .framer-JgXQS .framer-10qrzkq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-JgXQS .framer-5ke1n0 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-JgXQS .framer-35e7hs > * { margin: 0px; margin-bottom: calc(220px / 2); margin-top: calc(220px / 2); } .framer-JgXQS .framer-1n68fiq > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-JgXQS .framer-1n68fiq > :first-child, .framer-JgXQS .framer-oih76i > :first-child, .framer-JgXQS .framer-jc49c0 > :first-child, .framer-JgXQS .framer-1qlgxga > :first-child, .framer-JgXQS .framer-3c8z90 > :first-child, .framer-JgXQS .framer-1gdqwe0 > :first-child, .framer-JgXQS .framer-10sqk3w > :first-child, .framer-JgXQS .framer-12a8ms > :first-child, .framer-JgXQS .framer-mk9jkq > :first-child, .framer-JgXQS .framer-1ua8d6q > :first-child, .framer-JgXQS .framer-1deh8q0 > :first-child, .framer-JgXQS .framer-132n8rb > :first-child, .framer-JgXQS .framer-1h6okcq > :first-child, .framer-JgXQS .framer-k4e49f > :first-child, .framer-JgXQS .framer-107c1y9 > :first-child, .framer-JgXQS .framer-a7fddi > :first-child, .framer-JgXQS .framer-11yjuoe > :first-child, .framer-JgXQS .framer-1vk4yn1 > :first-child, .framer-JgXQS .framer-1q2zbcy > :first-child, .framer-JgXQS .framer-u2i4at > :first-child, .framer-JgXQS .framer-2xsn2h > :first-child, .framer-JgXQS .framer-1tr9r6e > :first-child, .framer-JgXQS .framer-1j6iuwh > :first-child, .framer-JgXQS .framer-qdgumy > :first-child, .framer-JgXQS .framer-1x7jwbv > :first-child, .framer-JgXQS .framer-icpsg9 > :first-child, .framer-JgXQS .framer-1r99tvk > :first-child, .framer-JgXQS .framer-1sjny5g > :first-child, .framer-JgXQS .framer-1u2n336 > :first-child, .framer-JgXQS .framer-zi3g1f > :first-child, .framer-JgXQS .framer-2ynim4 > :first-child, .framer-JgXQS .framer-d982w9 > :first-child, .framer-JgXQS .framer-n8xqcy > :first-child, .framer-JgXQS .framer-wtxn2x > :first-child, .framer-JgXQS .framer-nuh5xp > :first-child, .framer-JgXQS .framer-1m9x4sj > :first-child, .framer-JgXQS .framer-1r4g3ci > :first-child, .framer-JgXQS .framer-r42b7r > :first-child, .framer-JgXQS .framer-1ahqmpt > :first-child, .framer-JgXQS .framer-elpwlp > :first-child, .framer-JgXQS .framer-b6y4gj > :first-child { margin-left: 0px; } .framer-JgXQS .framer-1n68fiq > :last-child, .framer-JgXQS .framer-oih76i > :last-child, .framer-JgXQS .framer-jc49c0 > :last-child, .framer-JgXQS .framer-1qlgxga > :last-child, .framer-JgXQS .framer-3c8z90 > :last-child, .framer-JgXQS .framer-1gdqwe0 > :last-child, .framer-JgXQS .framer-10sqk3w > :last-child, .framer-JgXQS .framer-12a8ms > :last-child, .framer-JgXQS .framer-mk9jkq > :last-child, .framer-JgXQS .framer-1ua8d6q > :last-child, .framer-JgXQS .framer-1deh8q0 > :last-child, .framer-JgXQS .framer-132n8rb > :last-child, .framer-JgXQS .framer-1h6okcq > :last-child, .framer-JgXQS .framer-k4e49f > :last-child, .framer-JgXQS .framer-107c1y9 > :last-child, .framer-JgXQS .framer-a7fddi > :last-child, .framer-JgXQS .framer-11yjuoe > :last-child, .framer-JgXQS .framer-1vk4yn1 > :last-child, .framer-JgXQS .framer-1q2zbcy > :last-child, .framer-JgXQS .framer-u2i4at > :last-child, .framer-JgXQS .framer-2xsn2h > :last-child, .framer-JgXQS .framer-1tr9r6e > :last-child, .framer-JgXQS .framer-1j6iuwh > :last-child, .framer-JgXQS .framer-qdgumy > :last-child, .framer-JgXQS .framer-1x7jwbv > :last-child, .framer-JgXQS .framer-icpsg9 > :last-child, .framer-JgXQS .framer-1r99tvk > :last-child, .framer-JgXQS .framer-1sjny5g > :last-child, .framer-JgXQS .framer-1u2n336 > :last-child, .framer-JgXQS .framer-zi3g1f > :last-child, .framer-JgXQS .framer-2ynim4 > :last-child, .framer-JgXQS .framer-d982w9 > :last-child, .framer-JgXQS .framer-n8xqcy > :last-child, .framer-JgXQS .framer-wtxn2x > :last-child, .framer-JgXQS .framer-nuh5xp > :last-child, .framer-JgXQS .framer-1m9x4sj > :last-child, .framer-JgXQS .framer-1r4g3ci > :last-child, .framer-JgXQS .framer-r42b7r > :last-child, .framer-JgXQS .framer-1ahqmpt > :last-child, .framer-JgXQS .framer-elpwlp > :last-child, .framer-JgXQS .framer-b6y4gj > :last-child { margin-right: 0px; } .framer-JgXQS .framer-oih76i > *, .framer-JgXQS .framer-jc49c0 > *, .framer-JgXQS .framer-1qlgxga > *, .framer-JgXQS .framer-3c8z90 > *, .framer-JgXQS .framer-1gdqwe0 > *, .framer-JgXQS .framer-10sqk3w > *, .framer-JgXQS .framer-1ua8d6q > *, .framer-JgXQS .framer-1deh8q0 > *, .framer-JgXQS .framer-132n8rb > *, .framer-JgXQS .framer-1h6okcq > *, .framer-JgXQS .framer-k4e49f > *, .framer-JgXQS .framer-107c1y9 > *, .framer-JgXQS .framer-a7fddi > *, .framer-JgXQS .framer-11yjuoe > *, .framer-JgXQS .framer-1vk4yn1 > *, .framer-JgXQS .framer-1q2zbcy > *, .framer-JgXQS .framer-u2i4at > *, .framer-JgXQS .framer-2xsn2h > *, .framer-JgXQS .framer-1tr9r6e > *, .framer-JgXQS .framer-1j6iuwh > *, .framer-JgXQS .framer-qdgumy > *, .framer-JgXQS .framer-1x7jwbv > *, .framer-JgXQS .framer-icpsg9 > *, .framer-JgXQS .framer-1r99tvk > *, .framer-JgXQS .framer-1sjny5g > *, .framer-JgXQS .framer-1u2n336 > *, .framer-JgXQS .framer-zi3g1f > *, .framer-JgXQS .framer-2ynim4 > *, .framer-JgXQS .framer-d982w9 > *, .framer-JgXQS .framer-wtxn2x > *, .framer-JgXQS .framer-nuh5xp > *, .framer-JgXQS .framer-1m9x4sj > *, .framer-JgXQS .framer-1r4g3ci > *, .framer-JgXQS .framer-r42b7r > *, .framer-JgXQS .framer-elpwlp > *, .framer-JgXQS .framer-b6y4gj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JgXQS .framer-dondal > *, .framer-JgXQS .framer-1s9ny8q > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-JgXQS .framer-1f7k4jf > *, .framer-JgXQS .framer-1mp8h3 > *, .framer-JgXQS .framer-4d95b > *, .framer-JgXQS .framer-195o7if > *, .framer-JgXQS .framer-1nxrple > *, .framer-JgXQS .framer-cpxe5k > *, .framer-JgXQS .framer-jdjhhc > *, .framer-JgXQS .framer-1idph5m > *, .framer-JgXQS .framer-1h1k49z > *, .framer-JgXQS .framer-1voi3w0 > *, .framer-JgXQS .framer-jsmlk > *, .framer-JgXQS .framer-10tbqfq > *, .framer-JgXQS .framer-1w9bcqs > *, .framer-JgXQS .framer-sh72tu > *, .framer-JgXQS .framer-o6ujoo > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-JgXQS .framer-12a8ms > *, .framer-JgXQS .framer-mk9jkq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-JgXQS .framer-n8xqcy > *, .framer-JgXQS .framer-1ahqmpt > * { margin: 0px; margin-left: calc(46px / 2); margin-right: calc(46px / 2); } }\",\"@media (min-width: 1200px) and (max-width: 3140.497187364777px) { .framer-JgXQS .hidden-4drq0x { display: none !important; } }\",`@media (max-width: 1199px) { .framer-JgXQS .hidden-14bg5fr { display: none !important; } .${metadata.bodyClassName}-framer-JgXQS { background: white; } .framer-JgXQS.framer-4drq0x { aspect-ratio: 0.5192557334487234 / 1; height: var(--framer-aspect-ratio-supported, 12391px); width: 810px; } .framer-JgXQS .framer-1k4ioj2-container, .framer-JgXQS .framer-1v1fqo3-container, .framer-JgXQS .framer-dondal, .framer-JgXQS .framer-12a8ms { order: 0; } .framer-JgXQS .framer-3raie5, .framer-JgXQS .framer-1w2vm7a, .framer-JgXQS .framer-1k3v2or, .framer-JgXQS .framer-10sqk3w, .framer-JgXQS .framer-mk9jkq { order: 1; } .framer-JgXQS .framer-gy738 { gap: 60px; min-height: 500px; order: 1; } .framer-JgXQS .framer-jyp3g6-container { aspect-ratio: 1.002857142857143 / 1; height: var(--framer-aspect-ratio-supported, 199px); width: 200px; } .framer-JgXQS .framer-1vy4uvd { width: 50%; } .framer-JgXQS .framer-1uyo3jg-container, .framer-JgXQS .framer-1ea41k2-container, .framer-JgXQS .framer-py8hjs, .framer-JgXQS .framer-1qlgxga, .framer-JgXQS .framer-1ua8d6q { order: 2; } .framer-JgXQS .framer-5ke1n0 { order: 3; padding: 80px 35px 60px 35px; } .framer-JgXQS .framer-12mci84 { padding: 0px 20px 0px 20px; } .framer-JgXQS .framer-xmm0my { width: 200px; } .framer-JgXQS .framer-1n68fiq { gap: 20px; } .framer-JgXQS .framer-xnsoux { height: var(--framer-aspect-ratio-supported, 60px); order: 0; width: 60px; } .framer-JgXQS .framer-ytd6v0, .framer-JgXQS .framer-1deh8q0 { order: 3; } .framer-JgXQS .framer-jc49c0, .framer-JgXQS .framer-a7fddi { order: 8; } .framer-JgXQS .framer-14eqjgy { order: 3; padding: 100px 40px 100px 40px; } .framer-JgXQS .framer-cmtej7 { grid-template-columns: repeat(3, minmax(200px, 1fr)); } .framer-JgXQS .framer-xrlmn5, .framer-JgXQS .framer-1cq3wxh, .framer-JgXQS .framer-1eibz3j, .framer-JgXQS .framer-bpnpzk, .framer-JgXQS .framer-f0us2b, .framer-JgXQS .framer-eq0ew3, .framer-JgXQS .framer-gy3rrm, .framer-JgXQS .framer-101i2gs, .framer-JgXQS .framer-1957dyl, .framer-JgXQS .framer-ots2st, .framer-JgXQS .framer-188cs40, .framer-JgXQS .framer-19ryi28, .framer-JgXQS .framer-16he8gz, .framer-JgXQS .framer-et3ksd, .framer-JgXQS .framer-cv8s99, .framer-JgXQS .framer-1su53q7, .framer-JgXQS .framer-18pgxyd, .framer-JgXQS .framer-8a55aj, .framer-JgXQS .framer-1wggo7, .framer-JgXQS .framer-18jlkjo, .framer-JgXQS .framer-1s6yagf, .framer-JgXQS .framer-va0jo9, .framer-JgXQS .framer-ukcjf8, .framer-JgXQS .framer-1bbq7hs, .framer-JgXQS .framer-67j1p1, .framer-JgXQS .framer-5lr3l7, .framer-JgXQS .framer-huntds, .framer-JgXQS .framer-onpecz, .framer-JgXQS .framer-s052p5, .framer-JgXQS .framer-10qrzkq { height: var(--framer-aspect-ratio-supported, 230px); } .framer-JgXQS .framer-1hx0yu1, .framer-JgXQS .framer-1h6okcq { order: 5; } .framer-JgXQS .framer-1k307pi { grid-template-columns: repeat(4, minmax(50px, 1fr)); padding: 0px 30px 0px 30px; } .framer-JgXQS .framer-132n8rb, .framer-JgXQS .framer-elpwlp, .framer-JgXQS .framer-b6y4gj { order: 4; } .framer-JgXQS .framer-k4e49f, .framer-JgXQS .framer-wtxn2x { order: 6; } .framer-JgXQS .framer-107c1y9, .framer-JgXQS .framer-qdgumy { order: 7; } .framer-JgXQS .framer-8tvw6j { width: 78%; } .framer-JgXQS .framer-11yjuoe, .framer-JgXQS .framer-1u2n336 { order: 9; } .framer-JgXQS .framer-1vk4yn1, .framer-JgXQS .framer-1j6iuwh { order: 10; } .framer-JgXQS .framer-1q2zbcy, .framer-JgXQS .framer-nuh5xp { order: 11; } .framer-JgXQS .framer-u2i4at, .framer-JgXQS .framer-1sjny5g { order: 12; } .framer-JgXQS .framer-2xsn2h { order: 13; } .framer-JgXQS .framer-1tr9r6e, .framer-JgXQS .framer-1ksn6sm-container { order: 14; } .framer-JgXQS .framer-n8xqcy, .framer-JgXQS .framer-1ahqmpt { flex-direction: column; gap: 0px; } .framer-JgXQS .framer-sttyl0, .framer-JgXQS .framer-n4fxce, .framer-JgXQS .framer-1avzcw, .framer-JgXQS .framer-dlbguf { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JgXQS .framer-gy738, .framer-JgXQS .framer-1n68fiq, .framer-JgXQS .framer-n8xqcy, .framer-JgXQS .framer-1ahqmpt { gap: 0px; } .framer-JgXQS .framer-gy738 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-JgXQS .framer-gy738 > :first-child, .framer-JgXQS .framer-n8xqcy > :first-child, .framer-JgXQS .framer-1ahqmpt > :first-child { margin-top: 0px; } .framer-JgXQS .framer-gy738 > :last-child, .framer-JgXQS .framer-n8xqcy > :last-child, .framer-JgXQS .framer-1ahqmpt > :last-child { margin-bottom: 0px; } .framer-JgXQS .framer-1n68fiq > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-JgXQS .framer-1n68fiq > :first-child { margin-left: 0px; } .framer-JgXQS .framer-1n68fiq > :last-child { margin-right: 0px; } .framer-JgXQS .framer-n8xqcy > *, .framer-JgXQS .framer-1ahqmpt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (min-width: 3141.497187364777px) { .framer-JgXQS .hidden-6czoqr { display: none !important; } .${metadata.bodyClassName}-framer-JgXQS { background: white; } .framer-JgXQS.framer-4drq0x { aspect-ratio: 0.5192557334487234 / 1; height: var(--framer-aspect-ratio-supported, 6050px); width: 390px; } .framer-JgXQS .framer-1k4ioj2-container { order: 0; right: unset; width: 100%; } .framer-JgXQS .framer-3raie5, .framer-JgXQS .framer-1w2vm7a, .framer-JgXQS .framer-1k3v2or, .framer-JgXQS .framer-10sqk3w, .framer-JgXQS .framer-mk9jkq { order: 1; } .framer-JgXQS .framer-1aafb8z, .framer-JgXQS .framer-1le2m63 { padding: 0px; } .framer-JgXQS .framer-1v1fqo3-container, .framer-JgXQS .framer-ki10un, .framer-JgXQS .framer-10eftl6, .framer-JgXQS .framer-12a8ms { order: 0; } .framer-JgXQS .framer-gy738 { gap: 30px; order: 1; padding: 0px 30px 200px 30px; } .framer-JgXQS .framer-1j3ymmk, .framer-JgXQS .framer-12mci84 { padding: 0px 30px 0px 30px; } .framer-JgXQS .framer-jyp3g6-container { aspect-ratio: 1.002857142857143 / 1; height: var(--framer-aspect-ratio-supported, 160px); width: 160px; } .framer-JgXQS .framer-1vy4uvd { width: 75%; } .framer-JgXQS .framer-1uyo3jg-container, .framer-JgXQS .framer-1ea41k2-container, .framer-JgXQS .framer-1ua8d6q { order: 2; } .framer-JgXQS .framer-5ke1n0 { order: 3; padding: 80px 35px 60px 35px; } .framer-JgXQS .framer-l6jgsy { justify-content: space-between; } .framer-JgXQS .framer-xmm0my { flex: 0.8 0 0px; order: 1; width: 1px; } .framer-JgXQS .framer-1n68fiq { gap: 10px; justify-content: center; width: min-content; } .framer-JgXQS .framer-xnsoux { height: var(--framer-aspect-ratio-supported, 42px); order: 0; width: 42px; } .framer-JgXQS .framer-oih76i { width: min-content; } .framer-JgXQS .framer-py8hjs { height: min-content; order: 2; } .framer-JgXQS .framer-ytd6v0 { order: 3; } .framer-JgXQS .framer-dondal { order: 0; padding: 60px 20px 30px 20px; } .framer-JgXQS .framer-jc49c0, .framer-JgXQS .framer-k4e49f { order: 6; } .framer-JgXQS .framer-1qlgxga { flex-direction: column; order: 2; } .framer-JgXQS .framer-3c8z90, .framer-JgXQS .framer-1x7jwbv { flex: none; width: 70%; } .framer-JgXQS .framer-zd4nse, .framer-JgXQS .framer-13xumc8 { flex: 0.75 0 0px; } .framer-JgXQS .framer-14eqjgy { order: 3; padding: 20px; } .framer-JgXQS .framer-cmtej7 { gap: 10px; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); } .framer-JgXQS .framer-1f7k4jf, .framer-JgXQS .framer-pe35yf, .framer-JgXQS .framer-1mp8h3, .framer-JgXQS .framer-4d95b, .framer-JgXQS .framer-195o7if, .framer-JgXQS .framer-1nxrple, .framer-JgXQS .framer-cpxe5k, .framer-JgXQS .framer-jdjhhc, .framer-JgXQS .framer-1idph5m, .framer-JgXQS .framer-1h1k49z, .framer-JgXQS .framer-1voi3w0, .framer-JgXQS .framer-jsmlk, .framer-JgXQS .framer-10tbqfq, .framer-JgXQS .framer-1w9bcqs, .framer-JgXQS .framer-sh72tu, .framer-JgXQS .framer-o6ujoo { gap: 13px; padding: 0px 0px 20px 0px; } .framer-JgXQS .framer-xrlmn5, .framer-JgXQS .framer-1eibz3j, .framer-JgXQS .framer-bpnpzk, .framer-JgXQS .framer-f0us2b, .framer-JgXQS .framer-eq0ew3, .framer-JgXQS .framer-gy3rrm, .framer-JgXQS .framer-101i2gs, .framer-JgXQS .framer-1957dyl, .framer-JgXQS .framer-ots2st, .framer-JgXQS .framer-188cs40, .framer-JgXQS .framer-19ryi28, .framer-JgXQS .framer-16he8gz, .framer-JgXQS .framer-et3ksd, .framer-JgXQS .framer-cv8s99, .framer-JgXQS .framer-1su53q7, .framer-JgXQS .framer-18pgxyd, .framer-JgXQS .framer-8a55aj, .framer-JgXQS .framer-1wggo7, .framer-JgXQS .framer-18jlkjo, .framer-JgXQS .framer-1s6yagf, .framer-JgXQS .framer-va0jo9, .framer-JgXQS .framer-ukcjf8, .framer-JgXQS .framer-1bbq7hs, .framer-JgXQS .framer-67j1p1, .framer-JgXQS .framer-5lr3l7, .framer-JgXQS .framer-huntds, .framer-JgXQS .framer-onpecz, .framer-JgXQS .framer-s052p5, .framer-JgXQS .framer-10qrzkq { height: var(--framer-aspect-ratio-supported, 200px); } .framer-JgXQS .framer-1cq3wxh { gap: 13px; height: var(--framer-aspect-ratio-supported, 200px); padding: 0px 0px 20px 0px; } .framer-JgXQS .framer-1hx0yu1, .framer-JgXQS .framer-1h6okcq { order: 5; } .framer-JgXQS .framer-1s9ny8q { padding: 30px 20px 30px 20px; } .framer-JgXQS .framer-1k307pi { gap: 35px; grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-JgXQS .framer-pjzq4, .framer-JgXQS .framer-9gbsj3, .framer-JgXQS .framer-1i8g3iz, .framer-JgXQS .framer-1szawll, .framer-JgXQS .framer-1qx0mmg, .framer-JgXQS .framer-7kk3po, .framer-JgXQS .framer-1635n59 { width: 59%; } .framer-JgXQS .framer-1deh8q0 { height: min-content; order: 3; } .framer-JgXQS .framer-1hd8qf3, .framer-JgXQS .framer-14mcpy0, .framer-JgXQS .framer-15flpqi { height: 30px; } .framer-JgXQS .framer-132n8rb, .framer-JgXQS .framer-elpwlp, .framer-JgXQS .framer-b6y4gj { order: 4; } .framer-JgXQS .framer-107c1y9 { order: 7; } .framer-JgXQS .framer-8tvw6j { height: var(--framer-aspect-ratio-supported, 69px); width: 48%; } .framer-JgXQS .framer-a7fddi, .framer-JgXQS .framer-wtxn2x { order: 8; } .framer-JgXQS .framer-11yjuoe { order: 9; } .framer-JgXQS .framer-1vk4yn1, .framer-JgXQS .framer-1sjny5g { order: 10; } .framer-JgXQS .framer-n1anlh { height: 50px; } .framer-JgXQS .framer-1q2zbcy { order: 11; } .framer-JgXQS .framer-1ou0hvs { height: 30px; max-width: 140px; } .framer-JgXQS .framer-u2i4at, .framer-JgXQS .framer-1j6iuwh { order: 12; } .framer-JgXQS .framer-2xsn2h { height: 47px; min-height: unset; order: 13; } .framer-JgXQS .framer-1tr9r6e { height: 61px; order: 14; } .framer-JgXQS .framer-qdgumy { flex-direction: column; order: 7; } .framer-JgXQS .framer-1r99tvk { flex: none; justify-content: flex-start; width: 100%; } .framer-JgXQS .framer-1u2n336 { flex-direction: column; order: 9; } .framer-JgXQS .framer-zi3g1f, .framer-JgXQS .framer-d982w9, .framer-JgXQS .framer-1m9x4sj, .framer-JgXQS .framer-r42b7r { flex: none; width: 100%; } .framer-JgXQS .framer-2ynim4, .framer-JgXQS .framer-1r4g3ci { width: 100%; } .framer-JgXQS .framer-hdi17v, .framer-JgXQS .framer-yacvbt { flex: 0.75 0 0px; width: 1px; } .framer-JgXQS .framer-n8xqcy { gap: 20px; } .framer-JgXQS .framer-sttyl0 { flex: 0.75 0 0px; order: 0; } .framer-JgXQS .framer-n4fxce { flex: 0.75 0 0px; order: 1; } .framer-JgXQS .framer-nuh5xp { flex-direction: column; order: 11; } .framer-JgXQS .framer-1ahqmpt { flex-direction: column; gap: 0px; } .framer-JgXQS .framer-1avzcw, .framer-JgXQS .framer-dlbguf { flex: none; width: 75%; } .framer-JgXQS .framer-5sczvq-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JgXQS .framer-gy738, .framer-JgXQS .framer-1n68fiq, .framer-JgXQS .framer-1qlgxga, .framer-JgXQS .framer-cmtej7, .framer-JgXQS .framer-1f7k4jf, .framer-JgXQS .framer-1cq3wxh, .framer-JgXQS .framer-pe35yf, .framer-JgXQS .framer-1mp8h3, .framer-JgXQS .framer-4d95b, .framer-JgXQS .framer-195o7if, .framer-JgXQS .framer-1nxrple, .framer-JgXQS .framer-cpxe5k, .framer-JgXQS .framer-jdjhhc, .framer-JgXQS .framer-1idph5m, .framer-JgXQS .framer-1h1k49z, .framer-JgXQS .framer-1voi3w0, .framer-JgXQS .framer-jsmlk, .framer-JgXQS .framer-10tbqfq, .framer-JgXQS .framer-1w9bcqs, .framer-JgXQS .framer-sh72tu, .framer-JgXQS .framer-o6ujoo, .framer-JgXQS .framer-1k307pi, .framer-JgXQS .framer-qdgumy, .framer-JgXQS .framer-1u2n336, .framer-JgXQS .framer-n8xqcy, .framer-JgXQS .framer-nuh5xp, .framer-JgXQS .framer-1ahqmpt { gap: 0px; } .framer-JgXQS .framer-gy738 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-JgXQS .framer-gy738 > :first-child, .framer-JgXQS .framer-1qlgxga > :first-child, .framer-JgXQS .framer-1f7k4jf > :first-child, .framer-JgXQS .framer-1cq3wxh > :first-child, .framer-JgXQS .framer-pe35yf > :first-child, .framer-JgXQS .framer-1mp8h3 > :first-child, .framer-JgXQS .framer-4d95b > :first-child, .framer-JgXQS .framer-195o7if > :first-child, .framer-JgXQS .framer-1nxrple > :first-child, .framer-JgXQS .framer-cpxe5k > :first-child, .framer-JgXQS .framer-jdjhhc > :first-child, .framer-JgXQS .framer-1idph5m > :first-child, .framer-JgXQS .framer-1h1k49z > :first-child, .framer-JgXQS .framer-1voi3w0 > :first-child, .framer-JgXQS .framer-jsmlk > :first-child, .framer-JgXQS .framer-10tbqfq > :first-child, .framer-JgXQS .framer-1w9bcqs > :first-child, .framer-JgXQS .framer-sh72tu > :first-child, .framer-JgXQS .framer-o6ujoo > :first-child, .framer-JgXQS .framer-qdgumy > :first-child, .framer-JgXQS .framer-1u2n336 > :first-child, .framer-JgXQS .framer-nuh5xp > :first-child, .framer-JgXQS .framer-1ahqmpt > :first-child { margin-top: 0px; } .framer-JgXQS .framer-gy738 > :last-child, .framer-JgXQS .framer-1qlgxga > :last-child, .framer-JgXQS .framer-1f7k4jf > :last-child, .framer-JgXQS .framer-1cq3wxh > :last-child, .framer-JgXQS .framer-pe35yf > :last-child, .framer-JgXQS .framer-1mp8h3 > :last-child, .framer-JgXQS .framer-4d95b > :last-child, .framer-JgXQS .framer-195o7if > :last-child, .framer-JgXQS .framer-1nxrple > :last-child, .framer-JgXQS .framer-cpxe5k > :last-child, .framer-JgXQS .framer-jdjhhc > :last-child, .framer-JgXQS .framer-1idph5m > :last-child, .framer-JgXQS .framer-1h1k49z > :last-child, .framer-JgXQS .framer-1voi3w0 > :last-child, .framer-JgXQS .framer-jsmlk > :last-child, .framer-JgXQS .framer-10tbqfq > :last-child, .framer-JgXQS .framer-1w9bcqs > :last-child, .framer-JgXQS .framer-sh72tu > :last-child, .framer-JgXQS .framer-o6ujoo > :last-child, .framer-JgXQS .framer-qdgumy > :last-child, .framer-JgXQS .framer-1u2n336 > :last-child, .framer-JgXQS .framer-nuh5xp > :last-child, .framer-JgXQS .framer-1ahqmpt > :last-child { margin-bottom: 0px; } .framer-JgXQS .framer-1n68fiq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JgXQS .framer-1n68fiq > :first-child, .framer-JgXQS .framer-n8xqcy > :first-child { margin-left: 0px; } .framer-JgXQS .framer-1n68fiq > :last-child, .framer-JgXQS .framer-n8xqcy > :last-child { margin-right: 0px; } .framer-JgXQS .framer-1qlgxga > *, .framer-JgXQS .framer-qdgumy > *, .framer-JgXQS .framer-1u2n336 > *, .framer-JgXQS .framer-nuh5xp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JgXQS .framer-cmtej7 > *, .framer-JgXQS .framer-cmtej7 > :first-child, .framer-JgXQS .framer-cmtej7 > :last-child, .framer-JgXQS .framer-1k307pi > *, .framer-JgXQS .framer-1k307pi > :first-child, .framer-JgXQS .framer-1k307pi > :last-child { margin: 0px; } .framer-JgXQS .framer-1f7k4jf > *, .framer-JgXQS .framer-1cq3wxh > *, .framer-JgXQS .framer-pe35yf > *, .framer-JgXQS .framer-1mp8h3 > *, .framer-JgXQS .framer-4d95b > *, .framer-JgXQS .framer-195o7if > *, .framer-JgXQS .framer-1nxrple > *, .framer-JgXQS .framer-cpxe5k > *, .framer-JgXQS .framer-jdjhhc > *, .framer-JgXQS .framer-1idph5m > *, .framer-JgXQS .framer-1h1k49z > *, .framer-JgXQS .framer-1voi3w0 > *, .framer-JgXQS .framer-jsmlk > *, .framer-JgXQS .framer-10tbqfq > *, .framer-JgXQS .framer-1w9bcqs > *, .framer-JgXQS .framer-sh72tu > *, .framer-JgXQS .framer-o6ujoo > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-JgXQS .framer-n8xqcy > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-JgXQS .framer-1ahqmpt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12408.4\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UA1NdKKrx\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z7NXBXjta\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerpe3meem6y=withCSS(Component,css,\"framer-JgXQS\");export default Framerpe3meem6y;Framerpe3meem6y.displayName=\"About\";Framerpe3meem6y.defaultProps={height:12408.4,width:1200};addFonts(Framerpe3meem6y,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"TASA Orbiter Display SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/EeP5YdZ9SVgUwq3xs5nEvLOTaY.otf\"},{family:\"TASA Orbiter Deck SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/TwmQvYOoOpQ8HnPeFBoRgoo91rU.otf\"},{family:\"TASA Orbiter Display Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/SCZq6aHgY6wqBlIs4oTY99mCA.otf\"},{family:\"TASA Orbiter Text Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/HAWg0Kphk4GdhJJxItkdLrChE.otf\"},{family:\"TASA Orbiter Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/5FlyheiChjzlDAB26c4Z3OB8RBg.otf\"}]},...MainNavFonts,...HeroHeaderFonts,...LoopHeroFonts,...AboutTickerFonts,...ButtonInlineFonts,...DividerFonts,...TestimonialsMobileFonts,...TestimonialsTabletFonts,...TestimonialsFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpe3meem6y\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"12408.4\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UA1NdKKrx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z7NXBXjta\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "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", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Carousel", "u", "Image2", "RichText2", "css", "FramereQS2vPzF9", "withCSS", "eQS2vPzF9_default", "addFonts", "CarouselFonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Carousel", "u", "Image2", "RichText2", "css", "Framerp4tgml675", "withCSS", "p4tgml675_default", "addFonts", "CarouselFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear106phqm", "args", "onAppearwgb4cr", "onAppearfzxtro", "onAppearvz2n9r", "onAppear1hcyybc", "onAppear1l7ieyq", "onAppearjar98t", "onAppear11xpt14", "onAppeartkpz51", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Image2", "css", "FramerRn2UM8KEM", "withCSS", "Rn2UM8KEM_default", "addPropertyControls", "ControlType", "addFonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Carousel", "u", "Image2", "RichText2", "css", "FramersI6QQARv3", "withCSS", "sI6QQARv3_default", "addFonts", "CarouselFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "css", "FramerjLQ6WJGJ7", "withCSS", "jLQ6WJGJ7_default", "addPropertyControls", "ControlType", "addFonts", "TickerImagesFonts", "getFonts", "jLQ6WJGJ7_default", "TickerFonts", "Ticker", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "css", "FramerSmvhxk9Lx", "withCSS", "Smvhxk9Lx_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MainNavFonts", "getFonts", "fiAGcNNXC_default", "HeroHeaderFonts", "vlNPcqzGG_default", "LoopHeroFonts", "Rn2UM8KEM_default", "ContainerWithFX", "withFX", "Container", "AboutTickerFonts", "Smvhxk9Lx_default", "ButtonInlineFonts", "a4WkopxgK_default", "MotionHeaderWithFX", "motion", "ImageWithFX", "Image2", "MotionDivWithFX", "DividerFonts", "qS_TV69OF_default", "TestimonialsMobileFonts", "eQS2vPzF9_default", "TestimonialsTabletFonts", "sI6QQARv3_default", "TestimonialsFonts", "p4tgml675_default", "FooterDarkFonts", "PY4qwyip1_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "inertia", "preventDefault", "e", "animation", "transformTemplate1", "_", "t", "transition1", "animation1", "transition2", "animation2", "transformTemplate2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "useRouteElementId", "ref2", "id1", "ref3", "router", "useRouter", "id2", "ref4", "id3", "ref5", "id4", "ref6", "id5", "ref7", "id6", "ref8", "id7", "ref9", "id8", "ref10", "id9", "ref11", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "fiAGcNNXC_default", "MotionHeaderWithFX", "vlNPcqzGG_default", "RichText2", "x", "ContainerWithFX", "Rn2UM8KEM_default", "Smvhxk9Lx_default", "ResolveLinks", "resolvedLinks", "a4WkopxgK_default", "ImageWithFX", "MotionDivWithFX", "qS_TV69OF_default", "Image2", "eQS2vPzF9_default", "sI6QQARv3_default", "p4tgml675_default", "PY4qwyip1_default", "css", "Framerpe3meem6y", "withCSS", "pe3meem6y_default", "addFonts", "MainNavFonts", "HeroHeaderFonts", "LoopHeroFonts", "AboutTickerFonts", "ButtonInlineFonts", "DividerFonts", "TestimonialsMobileFonts", "TestimonialsTabletFonts", "TestimonialsFonts", "FooterDarkFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
