{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js", "ssg:https://framerusercontent.com/modules/rCVHYwDYMSlOzjtisIsF/ouY0puY7eeznYRgMWAf9/g4M4YozXE.js", "ssg:https://framerusercontent.com/modules/yBmedsFHbc2JiHdc0dCc/DOXa8DblNzq9VHCNkW4h/JGLuNu3Mv.js", "ssg:https://framerusercontent.com/modules/U5Qa0NY7B91aelAamedH/SVVO37LWicWUH5aHQz5k/LWGGcDQrX.js", "ssg:https://framerusercontent.com/modules/jrrMSAgoJphCzvSgfMn7/0afqAZIswsU4kHDeMq6O/pKhJGuOko.js", "ssg:https://framerusercontent.com/modules/1cgLQt76RI9oLe4FGwdM/v2mRp8As7q1z2kx5ljbo/VwmcYhlWW.js", "ssg:https://framerusercontent.com/modules/zjKeVAncenxfpHK5dMal/7NB9fg3Bj3XGpUdnP0wO/IuD9XQNCv.js", "ssg:https://framerusercontent.com/modules/QeHT59qgaNM9wMd4XXRZ/5fybTV3mT3wBRqiJetkj/jZR8ms2My.js", "ssg:https://ga.jspm.io/npm:@vimeo/player@2.16.4/dist/player.es.js", "ssg:https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js", "ssg:https://framerusercontent.com/modules/i9TiP5IyyTZI5sQwm7ZT/nPJqBAP0hX0nj2KxteYl/MN3Kq19sc.js", "ssg:https://framerusercontent.com/modules/UPM6TeHgZ0yG5nLAVq5k/mMeaKyseGzDWAlN2jvXQ/WJ_Ej4yH9.js", "ssg:https://framerusercontent.com/modules/6D8OolkRoDWmSoK8kbKx/3sEExUaBOre1Nj1h7qPb/OLb8_0CQr.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (b0998f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,ResolveLinks,RichText,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/g3g1lb0qoVBN6xtsXVHU/MvJH0jEj1xJM8XGSbUDE/b9iObomCN.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Ijz7XDnpwBmnmODSlOTh/VkxpBPv3JCLBhab03pIu/V2w8nJMqw.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KlSeGx4GZVkoaUomUee3/oBYk6YVoCre76OMkcyxQ/VnJm24UTZ.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/a1tjYIhkz0Z1SElua0Zj/bfzFteGs2dktLoaYF90Q/yJgUjBGaA.js\";import ButtonDefault from\"https://framerusercontent.com/modules/HVcNefbq7jUxy6XdWbg0/Sue7De0ukPExwnwsvM6W/fEMkYOVCD.js\";const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonDefaultFonts=getFonts(ButtonDefault);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"pPLJ4ml2O\",\"CimKZvyRp\",\"fcP7M7E7Z\",\"ETAOqbHjU\",\"dKovz3vrV\"];const serializationHash=\"framer-KRgZO\";const variantClassNames={CimKZvyRp:\"framer-v-1382q49\",dKovz3vrV:\"framer-v-vw8y7f\",ETAOqbHjU:\"framer-v-195vov3\",fcP7M7E7Z:\"framer-v-2jdwmz\",pPLJ4ml2O:\"framer-v-10m40l1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20};const transition2={damping:60,delay:.2,mass:3.4,stiffness:320,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:-20};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition3={damping:60,delay:.4,mass:3.4,stiffness:320,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:20};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition4={damping:60,delay:.6,mass:3.4,stiffness:320,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:40};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0};const transition5={damping:60,delay:.8,mass:3.4,stiffness:320,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:-40,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Small\":\"CimKZvyRp\",\"Variant 5\":\"dKovz3vrV\",Desktop:\"pPLJ4ml2O\",Phone:\"ETAOqbHjU\",Tablet:\"fcP7M7E7Z\"};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:\"pPLJ4ml2O\"};};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,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pPLJ4ml2O\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"ETAOqbHjU\",\"dKovz3vrV\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ETAOqbHjU\",\"dKovz3vrV\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10m40l1\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pPLJ4ml2O\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CimKZvyRp:{\"data-framer-name\":\"Desktop Small\"},dKovz3vrV:{\"data-framer-name\":\"Variant 5\"},ETAOqbHjU:{\"data-framer-name\":\"Phone\"},fcP7M7E7Z:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rkiq1z\",\"data-framer-name\":\"About Container\",layoutDependency:layoutDependency,layoutId:\"HS21LftkL\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-zxmlom\",\"data-border\":true,\"data-framer-name\":\"About label\",layoutDependency:layoutDependency,layoutId:\"uSi20mrBP\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgba(255, 255, 255, 0.5)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gt4niu\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"a21GH1V1o\",svg:'<svg width=\"25\" height=\"24\" viewBox=\"0 0 25 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.5 19.9988C21.5 20.5511 21.0523 20.9988 20.5 20.9988H4.5C3.94772 20.9988 3.5 20.5511 3.5 19.9988V9.48785C3.5 9.17926 3.64247 8.88795 3.88606 8.6985L11.8861 2.47627C12.2472 2.19541 12.7528 2.19541 13.1139 2.47627L21.1139 8.6985C21.3575 8.88795 21.5 9.17926 21.5 9.48785V19.9988ZM19.5 18.9988V9.97693L12.5 4.53249L5.5 9.97693V18.9988H19.5ZM7.5 14.9988H17.5V16.9988H7.5V14.9988Z\" fill=\"url(#paint0_linear_0_34058)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_34058\" x1=\"12.5\" y1=\"2.26562\" x2=\"12.5\" y2=\"20.9988\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lstuvv\",\"data-styles-preset\":\"VnJm24UTZ\",children:\"About Us\"})}),className:\"framer-mi6hza\",\"data-framer-name\":\"About Us\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UY9Hy1Ksg\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unlock Your Potential as a Forex Affiliate Marketer \u2013 Access Top Brokers and Cutting-edge Tools!\"})}),className:\"framer-7p7oy5\",\"data-framer-name\":\"Unlock Your Potential as a Forex Affiliate Marketer \u2013 Access Top Brokers and Cutting-edge Tools!.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tSpxM4ok1\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ecuvf9\",\"data-framer-name\":\"Our mission\",layoutDependency:layoutDependency,layoutId:\"H1rdYfmjK\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-blb5wt\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Agrk9Jt96\",style:{backgroundColor:\"rgb(221, 237, 255)\",borderBottomLeftRadius:42,borderBottomRightRadius:42,borderTopLeftRadius:42,borderTopRightRadius:42,mask:\"url('https://framerusercontent.com/images/koVTDpvV1K71fhAzQNEa1gnhHZ4.png') alpha no-repeat top / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/koVTDpvV1K71fhAzQNEa1gnhHZ4.png') alpha no-repeat top / cover add\"},variants:{dKovz3vrV:{borderTopLeftRadius:0,mask:\"url('https://framerusercontent.com/images/JZrTJt2DsCB0EDwsWlrDwbCFVo.png') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/JZrTJt2DsCB0EDwsWlrDwbCFVo.png') alpha no-repeat top left / cover add\"},ETAOqbHjU:{borderTopLeftRadius:0,mask:\"url('https://framerusercontent.com/images/JZrTJt2DsCB0EDwsWlrDwbCFVo.png') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/JZrTJt2DsCB0EDwsWlrDwbCFVo.png') alpha no-repeat top left / cover add\"},fcP7M7E7Z:{mask:\"url('https://framerusercontent.com/images/Z2sVQZNbilTCwc6I7CTvbnaI.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/Z2sVQZNbilTCwc6I7CTvbnaI.svg') alpha no-repeat center / cover add\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"Our Mission\"})}),className:\"framer-1wxh6wi\",\"data-framer-name\":\"Our Mission\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WdATk3PyC\",style:{\"--extracted-1of0zx5\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"At Wealth Wave Affiliation, our mission is to revolutionize the Forex Affiliate industry by providing a community-driven network that prioritizes transparency, integrity, and the success of our Affiliates. We aim to create an inclusive and collaborative environment where Affiliates can thrive, grow together, and achieve their financial goals.\"})}),className:\"framer-1otc4ar\",\"data-framer-name\":\"At Wealth Wave Affiliation, our mission is to revolutionize the Forex Affiliate industry by providing a community-driven network that prioritizes transparency, integrity, and the success of our Affiliates. We aim to create an inclusive and collaborative environment where Affiliates can thrive, grow together, and achieve their financial goals.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nBBHCXOQ7\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"150px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||946)-0-1050)/2)+0+196+0+0+60+198,...addPropertyOverrides({dKovz3vrV:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1106.5)-0-1065)/2)+0+196+0+0+52+198},ETAOqbHjU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1106.5)-0-1065)/2)+0+196+0+0+52+198},fcP7M7E7Z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||967)-0-1050)/2)+0+196+0+0+60+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pe1yfe-container\",layoutDependency:layoutDependency,layoutId:\"WNChl4srY-container\",children:/*#__PURE__*/_jsx(ButtonDefault,{height:\"100%\",id:\"WNChl4srY\",layoutId:\"WNChl4srY\",MiM25CTG9:resolvedLinks[0],PNHaHyi21:\"Sign up now\",style:{height:\"100%\",width:\"100%\"},variant:\"Fiw1pFniJ\",width:\"100%\",...addPropertyOverrides({CimKZvyRp:{MiM25CTG9:resolvedLinks[1]},dKovz3vrV:{MiM25CTG9:resolvedLinks[4]},ETAOqbHjU:{MiM25CTG9:resolvedLinks[3]},fcP7M7E7Z:{MiM25CTG9:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1m8ybfb-container\",layoutDependency:layoutDependency,layoutId:\"K9U3Wkk4k-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-7a43f17f-968d-448f-867c-736543a9a47c, rgb(255, 255, 255))\",arrowGap:10,arrowPadding:-55,arrowPaddingBottom:-62,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/elHOjnFIBPidSdKlpIwVcs4ws8.svg\",rightArrow:\"https://framerusercontent.com/images/flnKJkYFpxSPTzUIuRb5wU6pAc.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:0,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",id:\"K9U3Wkk4k\",intervalControl:3,itemAmount:3,layoutId:\"K9U3Wkk4k\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fgzl97\",\"data-framer-name\":\"One Platform, Multiple Brokers\",layoutDependency:layoutDependency,layoutId:\"FQ2Noixy0\",style:{backgroundColor:\"rgb(222, 238, 255)\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopRightRadius:50,mask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rynwok\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"JmDGeel_Y\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/V9CY6sC74xCrP16bWhzes6xe6AQ.png\"},className:\"framer-1hq2xkh\",\"data-framer-name\":\"image 37\",layoutDependency:layoutDependency,layoutId:\"D0WojXC5R\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-eynzt\",\"data-styles-preset\":\"yJgUjBGaA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"One Platform, Multiple Brokers\"})}),className:\"framer-1mf06fe\",\"data-framer-name\":\"One Platform, Multiple Brokers\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eTgdXqBAN\",style:{\"--extracted-a0htzi\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:[\"Our \",/*#__PURE__*/_jsx(motion.strong,{children:\"CellExpert optimization\"}),\" feature enables seamless management of\",/*#__PURE__*/_jsx(motion.strong,{children:\" multiple brokers\"}),\" in a single, unified interface. This flexibility allows you to refer clients to alternative brokers if they are restricted by region or already have accounts elsewhere. By consolidating your efforts, you\u2019ll \",/*#__PURE__*/_jsx(motion.strong,{children:\"never miss out on a lead\"}),\" and can maximize your earning potential in one streamlined system.\"]})}),className:\"framer-1prieb6\",\"data-framer-name\":\"Our CellExpert optimization feature enables seamless management of multiple brokers in a single, unified overview. This flexibility allows you to refer clients to alternative brokers if they\u2019re restricted by region or already have accounts elsewhere, ensuring you never miss out on a lead.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"wOTZ8j6rh\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3cwbvq\",\"data-framer-name\":\"Personalised Support with Industry Experts\",layoutDependency:layoutDependency,layoutId:\"l_UbmgWnM\",style:{backgroundColor:\"rgb(222, 238, 255)\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopRightRadius:50,mask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18mt2nh\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"KhUI4CkEO\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/cR9ZSmzaEH65JNcgF78ZGrsx6O0.png\"},className:\"framer-9yx2gs\",\"data-framer-name\":\"image 38\",layoutDependency:layoutDependency,layoutId:\"tLJEM11BG\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-eynzt\",\"data-styles-preset\":\"yJgUjBGaA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"Personalised Support with Industry Experts\"})}),className:\"framer-19w0pmo\",\"data-framer-name\":\"Personalised Support with Industry Experts\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fZOuRKtaB\",style:{\"--extracted-a0htzi\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:[\"At Wealth Wave Affiliation, we connect you with \",/*#__PURE__*/_jsx(motion.strong,{children:\"the best in the business\"}),\". Our experienced account managers and coaches provide tailored strategies that elevate your affiliate marketing efforts. With over \",/*#__PURE__*/_jsx(motion.strong,{children:\"10,000 First Time Deposits (FTDs)\"}),\" driven through their own brands, our team also includes marketers and content creators ready to help expand your reach and grow your success every step of the way.\"]})}),className:\"framer-tt5e6n\",\"data-framer-name\":\"At Wealth Wave Affiliation, we connect you with only the best in the business. Our dedicated account managers and coaches bring extensive industry expertise, having driven over 10,000 First Time Deposits (FTDs) with their own brands. You'll have direct access to professionals who know exactly how to elevate your Affiliate strategy. Additionally, our team includes experienced marketers and content creators to support your growth and maximise your reach.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"id6C0rr5B\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ot8vu\",\"data-framer-name\":\"Licensed and Fully Compliant\",layoutDependency:layoutDependency,layoutId:\"ReowcFc3Z\",style:{backgroundColor:\"rgb(222, 238, 255)\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopRightRadius:50,mask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ije268\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"KI0EVGlfZ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:130,intrinsicWidth:103,pixelHeight:130,pixelWidth:103,src:\"https://framerusercontent.com/images/hA9OCWvATmW2uRVyDOsGO3YPvnc.png\"},className:\"framer-1honva5\",\"data-framer-name\":\"Group 1000005518\",layoutDependency:layoutDependency,layoutId:\"kjLbEMfxR\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-eynzt\",\"data-styles-preset\":\"yJgUjBGaA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"Licensed and Fully Compliant\"})}),className:\"framer-16qh0ca\",\"data-framer-name\":\"Transparent, Real-Time Insights\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UyfV5hNxO\",style:{\"--extracted-a0htzi\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:[\"Wealth Wave Affiliation provides you with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"fully licensed setup\"}),\" to operate under, ensuring compliance with all regulatory requirements. By working through WWA, you \",/*#__PURE__*/_jsx(motion.strong,{children:\"gain access to our license\"}),\" and expert legal support, all \",/*#__PURE__*/_jsx(motion.strong,{children:\"free of charge\"}),\". In case of any legal issues, our team will handle them for you, allowing you to grow your business with peace of mind and full confidence.\"]})}),className:\"framer-41c4ig\",\"data-framer-name\":\"Our dashboard offers complete transparency, displaying all the critical metrics you need to optimise your Affiliate success, including your personal ROI. Unlike competitors who may withhold stats, we believe in full transparency. You can track your performance in real time, monitor your ROI, and understand exactly what\u2019s required to reach your payment thresholds. Additionally, we handle all broker communications on your behalf, with your dedicated support manager available to assist you every step of the way, so you can focus fully on growing your Affiliate business.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"IC3_zr937\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2kbptw\",\"data-framer-name\":\"Transparent, Real-Time Insights\",layoutDependency:layoutDependency,layoutId:\"k53ZOFT_z\",style:{backgroundColor:\"rgb(222, 238, 255)\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopRightRadius:50,mask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b0v664\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"QJsjt1TaG\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/PchD1JsgYmJLnktpbCWkcqmwHw.png\"},className:\"framer-tjrq41\",\"data-framer-name\":\"image 39\",layoutDependency:layoutDependency,layoutId:\"JSnc4OvJC\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-eynzt\",\"data-styles-preset\":\"yJgUjBGaA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"Transparent, Real-Time Insights\"})}),className:\"framer-dochpt\",\"data-framer-name\":\"Transparent, Real-Time Insights\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V8L4GAUwx\",style:{\"--extracted-a0htzi\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:[\"Our dashboard ensures \",/*#__PURE__*/_jsx(motion.strong,{children:\"complete transparency\"}),\", displaying all essential metrics to optimize your affiliate performance, including your \",/*#__PURE__*/_jsx(motion.strong,{children:\"personal ROI\"}),\". Monitor your results in real time, stay informed of your payment thresholds, and let us handle broker communications on your behalf. With \",/*#__PURE__*/_jsx(motion.strong,{children:\"dedicated support managers\"}),\", we ensure you focus on growing your affiliate business without unnecessary hassle.\"]})}),className:\"framer-98wj93\",\"data-framer-name\":\"Our dashboard offers complete transparency, displaying all the critical metrics you need to optimise your Affiliate success, including your personal ROI. Unlike competitors who may withhold stats, we believe in full transparency. You can track your performance in real time, monitor your ROI, and understand exactly what\u2019s required to reach your payment thresholds. Additionally, we handle all broker communications on your behalf, with your dedicated support manager available to assist you every step of the way, so you can focus fully on growing your Affiliate business.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"aNNo8vDUg\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:66,delay:0,mass:10,stiffness:160,type:\"spring\"},width:\"100%\",...addPropertyOverrides({fcP7M7E7Z:{arrowOptions:{arrowFill:\"var(--token-7a43f17f-968d-448f-867c-736543a9a47c, rgb(255, 255, 255))\",arrowGap:10,arrowPadding:4,arrowPaddingBottom:-59,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/elHOjnFIBPidSdKlpIwVcs4ws8.svg\",rightArrow:\"https://framerusercontent.com/images/flnKJkYFpxSPTzUIuRb5wU6pAc.svg\",showMouseControls:true},itemAmount:2}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-7ggbv6-container\",\"data-framer-name\":\"Mobile\",layoutDependency:layoutDependency,layoutId:\"Oxf9iQjlW-container\",name:\"Mobile\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-7a43f17f-968d-448f-867c-736543a9a47c, rgb(255, 255, 255))\",arrowGap:10,arrowPadding:4,arrowPaddingBottom:-63,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/elHOjnFIBPidSdKlpIwVcs4ws8.svg\",rightArrow:\"https://framerusercontent.com/images/flnKJkYFpxSPTzUIuRb5wU6pAc.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",id:\"Oxf9iQjlW\",intervalControl:3,itemAmount:3,layoutId:\"Oxf9iQjlW\",name:\"Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3cwbvq\",\"data-framer-name\":\"Personalised Support with Industry Experts\",layoutDependency:layoutDependency,layoutId:\"l_UbmgWnM\",style:{backgroundColor:\"rgb(222, 238, 255)\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopRightRadius:50,mask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18mt2nh\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"KhUI4CkEO\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/cR9ZSmzaEH65JNcgF78ZGrsx6O0.png\"},className:\"framer-9yx2gs\",\"data-framer-name\":\"image 38\",layoutDependency:layoutDependency,layoutId:\"tLJEM11BG\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-eynzt\",\"data-styles-preset\":\"yJgUjBGaA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"Personalised Support with Industry Experts\"})}),className:\"framer-19w0pmo\",\"data-framer-name\":\"Personalised Support with Industry Experts\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fZOuRKtaB\",style:{\"--extracted-a0htzi\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:[\"At Wealth Wave Affiliation, we connect you with \",/*#__PURE__*/_jsx(motion.strong,{children:\"the best in the business\"}),\". Our experienced account managers and coaches provide tailored strategies that elevate your affiliate marketing efforts. With over \",/*#__PURE__*/_jsx(motion.strong,{children:\"10,000 First Time Deposits (FTDs)\"}),\" driven through their own brands, our team also includes marketers and content creators ready to help expand your reach and grow your success every step of the way.\"]})}),className:\"framer-tt5e6n\",\"data-framer-name\":\"At Wealth Wave Affiliation, we connect you with only the best in the business. Our dedicated account managers and coaches bring extensive industry expertise, having driven over 10,000 First Time Deposits (FTDs) with their own brands. You'll have direct access to professionals who know exactly how to elevate your Affiliate strategy. Additionally, our team includes experienced marketers and content creators to support your growth and maximise your reach.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"id6C0rr5B\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ot8vu\",\"data-framer-name\":\"Licensed and Fully Compliant\",layoutDependency:layoutDependency,layoutId:\"ReowcFc3Z\",style:{backgroundColor:\"rgb(222, 238, 255)\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopRightRadius:50,mask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ije268\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"KI0EVGlfZ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:130,intrinsicWidth:103,pixelHeight:130,pixelWidth:103,src:\"https://framerusercontent.com/images/hA9OCWvATmW2uRVyDOsGO3YPvnc.png\"},className:\"framer-1honva5\",\"data-framer-name\":\"Group 1000005518\",layoutDependency:layoutDependency,layoutId:\"kjLbEMfxR\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-eynzt\",\"data-styles-preset\":\"yJgUjBGaA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"Licensed and Fully Compliant\"})}),className:\"framer-16qh0ca\",\"data-framer-name\":\"Transparent, Real-Time Insights\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UyfV5hNxO\",style:{\"--extracted-a0htzi\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:[\"Wealth Wave Affiliation provides you with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"fully licensed setup\"}),\" to operate under, ensuring compliance with all regulatory requirements. By working through WWA, you \",/*#__PURE__*/_jsx(motion.strong,{children:\"gain access to our license\"}),\" and expert legal support, all \",/*#__PURE__*/_jsx(motion.strong,{children:\"free of charge\"}),\". In case of any legal issues, our team will handle them for you, allowing you to grow your business with peace of mind and full confidence.\"]})}),className:\"framer-41c4ig\",\"data-framer-name\":\"Our dashboard offers complete transparency, displaying all the critical metrics you need to optimise your Affiliate success, including your personal ROI. Unlike competitors who may withhold stats, we believe in full transparency. You can track your performance in real time, monitor your ROI, and understand exactly what\u2019s required to reach your payment thresholds. Additionally, we handle all broker communications on your behalf, with your dedicated support manager available to assist you every step of the way, so you can focus fully on growing your Affiliate business.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"IC3_zr937\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2kbptw\",\"data-framer-name\":\"Transparent, Real-Time Insights\",layoutDependency:layoutDependency,layoutId:\"k53ZOFT_z\",style:{backgroundColor:\"rgb(222, 238, 255)\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopRightRadius:50,mask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b0v664\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"QJsjt1TaG\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/PchD1JsgYmJLnktpbCWkcqmwHw.png\"},className:\"framer-tjrq41\",\"data-framer-name\":\"image 39\",layoutDependency:layoutDependency,layoutId:\"JSnc4OvJC\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-eynzt\",\"data-styles-preset\":\"yJgUjBGaA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"Transparent, Real-Time Insights\"})}),className:\"framer-dochpt\",\"data-framer-name\":\"Transparent, Real-Time Insights\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V8L4GAUwx\",style:{\"--extracted-a0htzi\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:[\"Our dashboard ensures \",/*#__PURE__*/_jsx(motion.strong,{children:\"complete transparency\"}),\", displaying all essential metrics to optimize your affiliate performance, including your \",/*#__PURE__*/_jsx(motion.strong,{children:\"personal ROI\"}),\". Monitor your results in real time, stay informed of your payment thresholds, and let us handle broker communications on your behalf. With \",/*#__PURE__*/_jsx(motion.strong,{children:\"dedicated support managers\"}),\", we ensure you focus on growing your affiliate business without unnecessary hassle.\"]})}),className:\"framer-98wj93\",\"data-framer-name\":\"Our dashboard offers complete transparency, displaying all the critical metrics you need to optimise your Affiliate success, including your personal ROI. Unlike competitors who may withhold stats, we believe in full transparency. You can track your performance in real time, monitor your ROI, and understand exactly what\u2019s required to reach your payment thresholds. Additionally, we handle all broker communications on your behalf, with your dedicated support manager available to assist you every step of the way, so you can focus fully on growing your Affiliate business.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"aNNo8vDUg\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fgzl97\",\"data-framer-name\":\"One Platform, Multiple Brokers\",layoutDependency:layoutDependency,layoutId:\"FQ2Noixy0\",style:{backgroundColor:\"rgb(222, 238, 255)\",borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopRightRadius:50,mask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/VbvZOOj16dvvh8vd3wXmbyXDUNs.svg') alpha no-repeat top left / cover add\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rynwok\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"JmDGeel_Y\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/V9CY6sC74xCrP16bWhzes6xe6AQ.png\"},className:\"framer-1hq2xkh\",\"data-framer-name\":\"image 37\",layoutDependency:layoutDependency,layoutId:\"D0WojXC5R\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-eynzt\",\"data-styles-preset\":\"yJgUjBGaA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:\"One Platform, Multiple Brokers\"})}),className:\"framer-1mf06fe\",\"data-framer-name\":\"One Platform, Multiple Brokers\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eTgdXqBAN\",style:{\"--extracted-a0htzi\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-ul2mjf\",\"data-styles-preset\":\"V2w8nJMqw\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)))\"},children:[\"Our \",/*#__PURE__*/_jsx(motion.strong,{children:\"CellExpert optimization\"}),\" feature enables seamless management of\",/*#__PURE__*/_jsx(motion.strong,{children:\" multiple brokers\"}),\" in a single, unified interface. This flexibility allows you to refer clients to alternative brokers if they are restricted by region or already have accounts elsewhere. By consolidating your efforts, you\u2019ll \",/*#__PURE__*/_jsx(motion.strong,{children:\"never miss out on a lead\"}),\" and can maximize your earning potential in one streamlined system.\"]})}),className:\"framer-1prieb6\",\"data-framer-name\":\"Our CellExpert optimization feature enables seamless management of multiple brokers in a single, unified overview. This flexibility allows you to refer clients to alternative brokers if they\u2019re restricted by region or already have accounts elsewhere, ensuring you never miss out on a lead.\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"wOTZ8j6rh\",style:{\"--extracted-r6o4lv\":\"var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:60,delay:0,mass:3.4,stiffness:320,type:\"spring\"},width:\"100%\",...addPropertyOverrides({dKovz3vrV:{itemAmount:1},ETAOqbHjU:{itemAmount:1}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KRgZO.framer-1kgzg1i, .framer-KRgZO .framer-1kgzg1i { display: block; }\",\".framer-KRgZO.framer-10m40l1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-KRgZO .framer-rkiq1z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-KRgZO .framer-zxmlom { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-KRgZO .framer-gt4niu { flex: none; height: 24px; position: relative; width: 25px; }\",\".framer-KRgZO .framer-mi6hza, .framer-KRgZO .framer-1wxh6wi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KRgZO .framer-7p7oy5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 611px; word-break: break-word; word-wrap: break-word; }\",\".framer-KRgZO .framer-ecuvf9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-KRgZO .framer-blb5wt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-KRgZO .framer-1otc4ar { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 955px; word-break: break-word; word-wrap: break-word; }\",\".framer-KRgZO .framer-1pe1yfe-container { flex: none; height: 45px; position: relative; width: 150px; }\",\".framer-KRgZO .framer-1m8ybfb-container { flex: none; height: 469px; position: relative; width: 100%; }\",\".framer-KRgZO .framer-fgzl97, .framer-KRgZO .framer-3ot8vu, .framer-KRgZO .framer-2kbptw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 545px; justify-content: flex-start; overflow: hidden; padding: 46px; position: relative; width: 376px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KRgZO .framer-1rynwok, .framer-KRgZO .framer-18mt2nh, .framer-KRgZO .framer-1ije268, .framer-KRgZO .framer-b0v664 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-KRgZO .framer-1hq2xkh { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); position: relative; width: 98px; }\",\".framer-KRgZO .framer-1mf06fe, .framer-KRgZO .framer-1prieb6, .framer-KRgZO .framer-19w0pmo, .framer-KRgZO .framer-tt5e6n, .framer-KRgZO .framer-16qh0ca, .framer-KRgZO .framer-dochpt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KRgZO .framer-3cwbvq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 46px; position: relative; width: 376px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KRgZO .framer-9yx2gs { aspect-ratio: 1.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); position: relative; width: 72px; }\",\".framer-KRgZO .framer-1honva5 { aspect-ratio: 0.7923076923076923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; width: 52px; }\",\".framer-KRgZO .framer-41c4ig, .framer-KRgZO .framer-98wj93 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 10; }\",\".framer-KRgZO .framer-tjrq41 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); position: relative; width: 65px; }\",\".framer-KRgZO .framer-7ggbv6-container { flex: none; height: 545px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KRgZO.framer-10m40l1, .framer-KRgZO .framer-rkiq1z, .framer-KRgZO .framer-zxmlom, .framer-KRgZO .framer-ecuvf9, .framer-KRgZO .framer-blb5wt, .framer-KRgZO .framer-fgzl97, .framer-KRgZO .framer-1rynwok, .framer-KRgZO .framer-3cwbvq, .framer-KRgZO .framer-18mt2nh, .framer-KRgZO .framer-3ot8vu, .framer-KRgZO .framer-1ije268, .framer-KRgZO .framer-2kbptw, .framer-KRgZO .framer-b0v664 { gap: 0px; } .framer-KRgZO.framer-10m40l1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KRgZO.framer-10m40l1 > :first-child, .framer-KRgZO .framer-zxmlom > :first-child { margin-left: 0px; } .framer-KRgZO.framer-10m40l1 > :last-child, .framer-KRgZO .framer-zxmlom > :last-child { margin-right: 0px; } .framer-KRgZO .framer-rkiq1z > *, .framer-KRgZO .framer-ecuvf9 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-KRgZO .framer-rkiq1z > :first-child, .framer-KRgZO .framer-ecuvf9 > :first-child, .framer-KRgZO .framer-blb5wt > :first-child, .framer-KRgZO .framer-fgzl97 > :first-child, .framer-KRgZO .framer-1rynwok > :first-child, .framer-KRgZO .framer-3cwbvq > :first-child, .framer-KRgZO .framer-18mt2nh > :first-child, .framer-KRgZO .framer-3ot8vu > :first-child, .framer-KRgZO .framer-1ije268 > :first-child, .framer-KRgZO .framer-2kbptw > :first-child, .framer-KRgZO .framer-b0v664 > :first-child { margin-top: 0px; } .framer-KRgZO .framer-rkiq1z > :last-child, .framer-KRgZO .framer-ecuvf9 > :last-child, .framer-KRgZO .framer-blb5wt > :last-child, .framer-KRgZO .framer-fgzl97 > :last-child, .framer-KRgZO .framer-1rynwok > :last-child, .framer-KRgZO .framer-3cwbvq > :last-child, .framer-KRgZO .framer-18mt2nh > :last-child, .framer-KRgZO .framer-3ot8vu > :last-child, .framer-KRgZO .framer-1ije268 > :last-child, .framer-KRgZO .framer-2kbptw > :last-child, .framer-KRgZO .framer-b0v664 > :last-child { margin-bottom: 0px; } .framer-KRgZO .framer-zxmlom > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-KRgZO .framer-blb5wt > *, .framer-KRgZO .framer-1rynwok > *, .framer-KRgZO .framer-18mt2nh > *, .framer-KRgZO .framer-1ije268 > *, .framer-KRgZO .framer-b0v664 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KRgZO .framer-fgzl97 > *, .framer-KRgZO .framer-3cwbvq > *, .framer-KRgZO .framer-3ot8vu > *, .framer-KRgZO .framer-2kbptw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-KRgZO.framer-v-1382q49.framer-10m40l1 { width: 1200px; }\",\".framer-KRgZO.framer-v-1382q49 .framer-blb5wt { order: 0; }\",\".framer-KRgZO.framer-v-1382q49 .framer-1m8ybfb-container { order: 1; }\",\".framer-KRgZO.framer-v-2jdwmz.framer-10m40l1 { gap: 0px; width: 810px; }\",\".framer-KRgZO.framer-v-2jdwmz .framer-rkiq1z { padding: 0px 30px 0px 30px; }\",\".framer-KRgZO.framer-v-2jdwmz .framer-ecuvf9, .framer-KRgZO.framer-v-195vov3 .framer-ecuvf9, .framer-KRgZO.framer-v-vw8y7f .framer-ecuvf9 { align-content: center; align-items: center; }\",\".framer-KRgZO.framer-v-2jdwmz .framer-1otc4ar, .framer-KRgZO.framer-v-195vov3 .framer-7p7oy5, .framer-KRgZO.framer-v-195vov3 .framer-1otc4ar, .framer-KRgZO.framer-v-vw8y7f .framer-7p7oy5, .framer-KRgZO.framer-v-vw8y7f .framer-1otc4ar { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KRgZO.framer-v-2jdwmz.framer-10m40l1 { gap: 0px; } .framer-KRgZO.framer-v-2jdwmz.framer-10m40l1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KRgZO.framer-v-2jdwmz.framer-10m40l1 > :first-child { margin-left: 0px; } .framer-KRgZO.framer-v-2jdwmz.framer-10m40l1 > :last-child { margin-right: 0px; } }\",\".framer-KRgZO.framer-v-195vov3.framer-10m40l1, .framer-KRgZO.framer-v-vw8y7f.framer-10m40l1 { padding: 0px 15px 0px 15px; width: 390px; }\",\".framer-KRgZO.framer-v-195vov3 .framer-blb5wt, .framer-KRgZO.framer-v-vw8y7f .framer-blb5wt { order: 0; padding: 52px 44px 42px 44px; }\",\".framer-KRgZO.framer-v-195vov3 .framer-1wxh6wi, .framer-KRgZO.framer-v-vw8y7f .framer-1wxh6wi { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KRgZO.framer-v-195vov3 .framer-7ggbv6-container, .framer-KRgZO.framer-v-vw8y7f .framer-7ggbv6-container { height: 510px; order: 2; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-KRgZO[data-border=\"true\"]::after, .framer-KRgZO [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 946\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CimKZvyRp\":{\"layout\":[\"fixed\",\"auto\"]},\"fcP7M7E7Z\":{\"layout\":[\"fixed\",\"auto\"]},\"ETAOqbHjU\":{\"layout\":[\"fixed\",\"auto\"]},\"dKovz3vrV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg4M4YozXE=withCSS(Component,css,\"framer-KRgZO\");export default Framerg4M4YozXE;Framerg4M4YozXE.displayName=\"About Section\";Framerg4M4YozXE.defaultProps={height:946,width:1440};addPropertyControls(Framerg4M4YozXE,{variant:{options:[\"pPLJ4ml2O\",\"CimKZvyRp\",\"fcP7M7E7Z\",\"ETAOqbHjU\",\"dKovz3vrV\"],optionTitles:[\"Desktop\",\"Desktop Small\",\"Tablet\",\"Phone\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerg4M4YozXE,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ButtonDefaultFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg4M4YozXE\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CimKZvyRp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fcP7M7E7Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ETAOqbHjU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dKovz3vrV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"946\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g4M4YozXE.map", "// Generated by Framer (1a71db7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-regular\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"}]}];export const css=['.framer-ANSns .framer-styles-preset-lhoz0c:not(.rich-text-wrapper), .framer-ANSns .framer-styles-preset-lhoz0c.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7a43f17f-968d-448f-867c-736543a9a47c, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-ANSns\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium italic\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-mlDYV .framer-styles-preset-1jwqo63:not(.rich-text-wrapper), .framer-mlDYV .framer-styles-preset-1jwqo63.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: italic; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-7a43f17f-968d-448f-867c-736543a9a47c, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-mlDYV\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0998f3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-regular\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"}]}];export const css=['.framer-Xo6My .framer-styles-preset-10x9xsn:not(.rich-text-wrapper), .framer-Xo6My .framer-styles-preset-10x9xsn.rich-text-wrapper h6 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7a43f17f-968d-448f-867c-736543a9a47c, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-Xo6My .framer-styles-preset-10x9xsn:not(.rich-text-wrapper), .framer-Xo6My .framer-styles-preset-10x9xsn.rich-text-wrapper h6 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7a43f17f-968d-448f-867c-736543a9a47c, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Xo6My .framer-styles-preset-10x9xsn:not(.rich-text-wrapper), .framer-Xo6My .framer-styles-preset-10x9xsn.rich-text-wrapper h6 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7a43f17f-968d-448f-867c-736543a9a47c, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Xo6My .framer-styles-preset-10x9xsn:not(.rich-text-wrapper), .framer-Xo6My .framer-styles-preset-10x9xsn.rich-text-wrapper h6 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7a43f17f-968d-448f-867c-736543a9a47c, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Xo6My\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1a71db7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-rcftZ .framer-styles-preset-d60a3w:not(.rich-text-wrapper), .framer-rcftZ .framer-styles-preset-d60a3w.rich-text-wrapper h4 { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0.01em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-7a43f17f-968d-448f-867c-736543a9a47c, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-rcftZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/yBmedsFHbc2JiHdc0dCc/DOXa8DblNzq9VHCNkW4h/JGLuNu3Mv.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/U5Qa0NY7B91aelAamedH/SVVO37LWicWUH5aHQz5k/LWGGcDQrX.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/jrrMSAgoJphCzvSgfMn7/0afqAZIswsU4kHDeMq6O/pKhJGuOko.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/KlSeGx4GZVkoaUomUee3/oBYk6YVoCre76OMkcyxQ/VnJm24UTZ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1cgLQt76RI9oLe4FGwdM/v2mRp8As7q1z2kx5ljbo/VwmcYhlWW.js\";const cycleOrder=[\"bKM4biL15\",\"fNCccvfw1\"];const serializationHash=\"framer-NaA5I\";const variantClassNames={bKM4biL15:\"framer-v-1nokc4f\",fNCccvfw1:\"framer-v-6y99rz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"bKM4biL15\",Mobile:\"fNCccvfw1\"};const getProps=({desc,height,id,image,name1,role,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,a4Xv8nro6:(_ref=desc!==null&&desc!==void 0?desc:props.a4Xv8nro6)!==null&&_ref!==void 0?_ref:\"I\u2019ve been with Wealth Wave Affiliation for a few months now, and the difference is incredible. My account manager, who\u2019s truly a pro in the industry, has helped me refine my strategies to drive higher conversions. They even have top-notch marketers and content creators available to help me build engaging campaigns. It\u2019s a complete, well-supported solution with people who genuinely understand the industry.\",iQgvewGe6:(_ref1=name1!==null&&name1!==void 0?name1:props.iQgvewGe6)!==null&&_ref1!==void 0?_ref1:\"Laura S\",KpJDaBY8w:(_ref2=role!==null&&role!==void 0?role:props.KpJDaBY8w)!==null&&_ref2!==void 0?_ref2:\"Affiliate Search Engine\",LVCFC_zO_:(_ref3=image!==null&&image!==void 0?image:props.LVCFC_zO_)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/xmtofnMmggzQ6Slp56hj3LnM.png\"},TxX966cAH:(_ref4=title!==null&&title!==void 0?title:props.TxX966cAH)!==null&&_ref4!==void 0?_ref4:\"Personalized Support and Real Results\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"bKM4biL15\"};};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,TxX966cAH,a4Xv8nro6,iQgvewGe6,KpJDaBY8w,LVCFC_zO_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bKM4biL15\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:684,pixelWidth:975,positionX:\"left\",positionY:\"top\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/S7tocAY6VN9QcEYGIxfl01wDY.png\",srcSet:\"https://framerusercontent.com/images/S7tocAY6VN9QcEYGIxfl01wDY.png?scale-down-to=512 512w,https://framerusercontent.com/images/S7tocAY6VN9QcEYGIxfl01wDY.png 975w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nokc4f\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"bKM4biL15\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({fNCccvfw1:{\"data-framer-name\":\"Mobile\",background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:998,pixelWidth:569,positionX:\"left\",positionY:\"top\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/TjOAB2DuVfUN3eGtal4wNhRjU0.png\",srcSet:\"https://framerusercontent.com/images/TjOAB2DuVfUN3eGtal4wNhRjU0.png 569w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vx6ktx\",layoutDependency:layoutDependency,layoutId:\"GxmiLQNtg\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rq5h49\",\"data-framer-name\":\"Group 1000004518\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:31,layoutDependency:layoutDependency,layoutId:\"coEZS_il8\",svg:'<svg width=\"31\" height=\"23\" viewBox=\"0 0 31 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.80418 22.2786C2.93491 22.2786 0 17.6761 0 13.1404C0 6.00322 5.06939 1.33405 11.873 0L13.4072 5.603C10.6057 6.13662 6.47014 8.1377 6.47014 11.4728C7.07046 11.1393 7.80418 10.9392 8.60461 10.9392C11.6729 10.9392 14.0075 13.4739 14.0075 16.5422C14.0075 17.6094 13.7407 18.5433 13.2071 19.4104C12.6068 20.2775 11.873 21.0113 10.9392 21.4782C10.0054 22.0118 8.93813 22.2786 7.80418 22.2786ZM24.1463 22.2786C19.277 22.2786 16.3421 17.6761 16.3421 13.1404C16.3421 6.00322 21.4115 1.33405 28.2151 0L29.7493 5.603C26.9478 6.13662 22.8122 8.1377 22.8122 11.4728C23.4126 11.1393 24.1463 10.9392 24.9467 10.9392C28.015 10.9392 30.3496 13.4739 30.3496 16.5422C30.3496 17.6094 30.0828 18.5433 29.5492 19.4104C28.9489 20.2775 28.2151 21.0113 27.2813 21.4782C26.3475 22.0118 25.2802 22.2786 24.1463 22.2786Z\" fill=\"#0078FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l541qy\",\"data-framer-name\":\"Frame 1000005563\",layoutDependency:layoutDependency,layoutId:\"oDBW_8Roo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-d60a3w\",\"data-styles-preset\":\"VwmcYhlWW\",children:\"Personalized Support and Real Results\"})}),className:\"framer-2vmbo1\",\"data-framer-name\":\"Personalized Support and Real Results\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cNVzX5EsF\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:TxX966cAH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jwqo63\",\"data-styles-preset\":\"LWGGcDQrX\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(127, 136, 162))\"},children:\"I\u2019ve been with Wealth Wave Affiliation for a few months now, and the difference is incredible. My account manager, who\u2019s truly a pro in the industry, has helped me refine my strategies to drive higher conversions. They even have top-notch marketers and content creators available to help me build engaging campaigns. It\u2019s a complete, well-supported solution with people who genuinely understand the industry.\"})}),className:\"framer-14jer2y\",\"data-framer-name\":\"I\u2019ve been with Wealth Wave Affiliation for a few months now, and the difference is incredible. My account manager, who\u2019s truly a pro in the industry, has helped me refine my strategies to drive higher conversions. They even have top-notch marketers and content creators available to help me build engaging campaigns. It\u2019s a complete, well-supported solution with people who genuinely understand the industry.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V_o0SRVbc\",style:{\"--extracted-r6o4lv\":\"rgb(127, 136, 162)\",\"--framer-paragraph-spacing\":\"0px\"},text:a4Xv8nro6,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cq5l6\",\"data-framer-name\":\"Group 1000004517\",layoutDependency:layoutDependency,layoutId:\"YeC4B_hXr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19by5rq\",\"data-framer-name\":\"Frame 1000004493\",layoutDependency:layoutDependency,layoutId:\"mRpAjPEzj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-10x9xsn\",\"data-styles-preset\":\"pKhJGuOko\",children:\"Laura S\"})}),className:\"framer-1dxdyhm\",\"data-framer-name\":\"Laura S\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sKQv2FC7Q\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:iQgvewGe6,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fNCccvfw1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lstuvv\",\"data-styles-preset\":\"VnJm24UTZ\",children:\"Laura S\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lhoz0c\",\"data-styles-preset\":\"JGLuNu3Mv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-65e6c126-17f7-484a-8ca5-5516b746d38d, rgb(127, 136, 162)))\"},children:\"Affiliate Search Engine\"})}),className:\"framer-1kk5s65\",\"data-framer-name\":\"Affiliate Search Engine\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CAhMkQgCw\",style:{\"--extracted-r6o4lv\":\"var(--token-65e6c126-17f7-484a-8ca5-5516b746d38d, rgb(127, 136, 162))\",\"--framer-paragraph-spacing\":\"0px\"},text:KpJDaBY8w,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e1u3mm\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"kP2K4hCUj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eop04q\",layoutDependency:layoutDependency,layoutId:\"qbHu480K3\",style:{background:\"linear-gradient(154.081116179913deg, rgba(0, 172, 255, 0.5) 0%, rgba(0, 99, 255, 0.5) 100%)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+(0+244.8+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||508)-80-306.8)/1*1)+0+0+6),pixelHeight:101,pixelWidth:101,sizes:\"50px\",...toResponsiveImage(LVCFC_zO_),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1l22wc1\",\"data-framer-name\":\"Group 1000004482\",layoutDependency:layoutDependency,layoutId:\"Nso8YjdfO\",style:{borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999,boxShadow:\"0px 5px 13px 0px rgba(10, 93, 222, 0.25)\"},...addPropertyOverrides({fNCccvfw1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+(0+244.8+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||665)-80-286.8)/1*1)+0+0+6),pixelHeight:101,pixelWidth:101,sizes:\"30px\",...toResponsiveImage(LVCFC_zO_),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NaA5I.framer-bwlhiv, .framer-NaA5I .framer-bwlhiv { display: block; }\",\".framer-NaA5I.framer-1nokc4f { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 508px; overflow: visible; padding: 40px; position: relative; width: 650px; }\",\".framer-NaA5I .framer-vx6ktx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NaA5I .framer-1rq5h49 { flex: none; height: 23px; position: relative; width: 31px; }\",\".framer-NaA5I .framer-l541qy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NaA5I .framer-2vmbo1, .framer-NaA5I .framer-14jer2y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NaA5I .framer-cq5l6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NaA5I .framer-19by5rq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NaA5I .framer-1dxdyhm, .framer-NaA5I .framer-1kk5s65 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NaA5I .framer-1e1u3mm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NaA5I .framer-1eop04q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 6px; position: relative; width: min-content; }\",\".framer-NaA5I .framer-1l22wc1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NaA5I .framer-vx6ktx, .framer-NaA5I .framer-l541qy, .framer-NaA5I .framer-19by5rq, .framer-NaA5I .framer-1e1u3mm, .framer-NaA5I .framer-1eop04q { gap: 0px; } .framer-NaA5I .framer-vx6ktx > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-NaA5I .framer-vx6ktx > :first-child, .framer-NaA5I .framer-l541qy > :first-child, .framer-NaA5I .framer-19by5rq > :first-child { margin-top: 0px; } .framer-NaA5I .framer-vx6ktx > :last-child, .framer-NaA5I .framer-l541qy > :last-child, .framer-NaA5I .framer-19by5rq > :last-child { margin-bottom: 0px; } .framer-NaA5I .framer-l541qy > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-NaA5I .framer-19by5rq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-NaA5I .framer-1e1u3mm > *, .framer-NaA5I .framer-1eop04q > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NaA5I .framer-1e1u3mm > :first-child, .framer-NaA5I .framer-1eop04q > :first-child { margin-left: 0px; } .framer-NaA5I .framer-1e1u3mm > :last-child, .framer-NaA5I .framer-1eop04q > :last-child { margin-right: 0px; } }\",\".framer-NaA5I.framer-v-6y99rz.framer-1nokc4f { min-height: 665px; width: 380px; }\",\".framer-NaA5I.framer-v-6y99rz .framer-19by5rq { gap: 4px; }\",\".framer-NaA5I.framer-v-6y99rz .framer-1l22wc1 { height: var(--framer-aspect-ratio-supported, 30px); width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NaA5I.framer-v-6y99rz .framer-19by5rq { gap: 0px; } .framer-NaA5I.framer-v-6y99rz .framer-19by5rq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-NaA5I.framer-v-6y99rz .framer-19by5rq > :first-child { margin-top: 0px; } .framer-NaA5I.framer-v-6y99rz .framer-19by5rq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-NaA5I[data-border=\"true\"]::after, .framer-NaA5I [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 508\n * @framerIntrinsicWidth 650\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"508px\",null]},\"fNCccvfw1\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"665px\",null]}}}\n * @framerVariables {\"TxX966cAH\":\"title\",\"a4Xv8nro6\":\"desc\",\"iQgvewGe6\":\"name1\",\"KpJDaBY8w\":\"role\",\"LVCFC_zO_\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIuD9XQNCv=withCSS(Component,css,\"framer-NaA5I\");export default FramerIuD9XQNCv;FramerIuD9XQNCv.displayName=\"Testimonial Card\";FramerIuD9XQNCv.defaultProps={height:508,width:650};addPropertyControls(FramerIuD9XQNCv,{variant:{options:[\"bKM4biL15\",\"fNCccvfw1\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},TxX966cAH:{defaultValue:\"Personalized Support and Real Results\",displayTextArea:true,title:\"Title\",type:ControlType.String},a4Xv8nro6:{defaultValue:\"I\u2019ve been with Wealth Wave Affiliation for a few months now, and the difference is incredible. My account manager, who\u2019s truly a pro in the industry, has helped me refine my strategies to drive higher conversions. They even have top-notch marketers and content creators available to help me build engaging campaigns. It\u2019s a complete, well-supported solution with people who genuinely understand the industry.\",displayTextArea:false,title:\"Desc\",type:ControlType.String},iQgvewGe6:{defaultValue:\"Laura S\",displayTextArea:false,title:\"Name\",type:ControlType.String},KpJDaBY8w:{defaultValue:\"Affiliate Search Engine\",displayTextArea:false,title:\"Role\",type:ControlType.String},LVCFC_zO_:{__defaultAssetReference:\"data:framer/asset-reference,xmtofnMmggzQ6Slp56hj3LnM.png?originalFilename=Frame+%281%29.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerIuD9XQNCv,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIuD9XQNCv\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"508\",\"framerIntrinsicWidth\":\"650\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"508px\\\",null]},\\\"fNCccvfw1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"665px\\\",null]}}}\",\"framerVariables\":\"{\\\"TxX966cAH\\\":\\\"title\\\",\\\"a4Xv8nro6\\\":\\\"desc\\\",\\\"iQgvewGe6\\\":\\\"name1\\\",\\\"KpJDaBY8w\\\":\\\"role\\\",\\\"LVCFC_zO_\\\":\\\"image\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/g3g1lb0qoVBN6xtsXVHU/MvJH0jEj1xJM8XGSbUDE/b9iObomCN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Wje6PjY4hENKmz92jcUj/8SOcl4X3WbFmPu1pSU3q/eS9z7tUN6.js\";import TestimonialCard from\"https://framerusercontent.com/modules/zjKeVAncenxfpHK5dMal/7NB9fg3Bj3XGpUdnP0wO/IuD9XQNCv.js\";const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const TestimonialCardFonts=getFonts(TestimonialCard);const TickerFonts=getFonts(Ticker);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"ZAjPYVomK\",\"jmkXwdD2O\",\"OUAQAe8y6\",\"hbiV2Tbiy\"];const serializationHash=\"framer-dtgS1\";const variantClassNames={hbiV2Tbiy:\"framer-v-1a9z89v\",jmkXwdD2O:\"framer-v-1hohkoj\",OUAQAe8y6:\"framer-v-1xmx7k\",ZAjPYVomK:\"framer-v-1oy8932\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20};const transition2={damping:60,delay:.2,mass:3.4,stiffness:320,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:-20};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition3={damping:60,delay:.4,mass:3.4,stiffness:320,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:40};const transition4={damping:60,delay:.6,mass:3.4,stiffness:320,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Small\":\"jmkXwdD2O\",Desktop:\"ZAjPYVomK\",Phone:\"hbiV2Tbiy\",Tablet:\"OUAQAe8y6\"};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:\"ZAjPYVomK\"};};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,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZAjPYVomK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"hbiV2Tbiy\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"hbiV2Tbiy\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1oy8932\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZAjPYVomK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({hbiV2Tbiy:{\"data-framer-name\":\"Phone\"},jmkXwdD2O:{\"data-framer-name\":\"Desktop Small\"},OUAQAe8y6:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pmq6b9\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ILF46KN0U\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sufobs\",\"data-framer-name\":\"Label + h2\",layoutDependency:layoutDependency,layoutId:\"bdkO6ldot\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-h0iwe3\",\"data-border\":true,\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"uUUu5A2vH\",style:{\"--border-bottom-width\":\"0.800000011920929px\",\"--border-color\":\"rgba(255, 255, 255, 0.5)\",\"--border-left-width\":\"0.800000011920929px\",\"--border-right-width\":\"0.800000011920929px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.800000011920929px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yduds7\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"db_oxrGNu\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2 8.99374C2 5.68349 4.67654 3 8.00066 3H15.9993C19.3134 3 22 5.69478 22 8.99374V21H8.00066C4.68659 21 2 18.3052 2 15.0063V8.99374ZM20 19V8.99374C20 6.79539 18.2049 5 15.9993 5H8.00066C5.78458 5 4 6.78458 4 8.99374V15.0063C4 17.2046 5.79512 19 8.00066 19H20ZM14 11H16V13H14V11ZM8 11H10V13H8V11Z\" fill=\"url(#paint0_linear_0_42274)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42274\" x1=\"12\" y1=\"3\" x2=\"12\" y2=\"21\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(8837deg, rgb(161, 196, 255) 0%, rgb(24, 109, 248) 64.5%)\"},children:\"Success Stories\"})})}),className:\"framer-1xz48wc\",\"data-framer-name\":\"Success Stories\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kqi_YDOpe\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\"},children:\"What Our Clients Are Saying\"})}),className:\"framer-1392r7b\",\"data-framer-name\":\"What Our Clients Are Saying\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Gh2dmok2N\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Testimonials or case studies from satisfied clients, building credibility and social proof.\"})}),className:\"framer-2q56w4\",\"data-framer-name\":\"Testimonials or case studies from satisfied clients, building credibility and social proof.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cNAsdzHic\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15q3hc3-container\",layoutDependency:layoutDependency,layoutId:\"hwvxfdNEe-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:40,overflow:false},gap:35,height:\"100%\",hoverFactor:.25,id:\"hwvxfdNEe\",layoutId:\"hwvxfdNEe\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"650px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1grx40x-container\",layoutDependency:layoutDependency,layoutId:\"BpXULYf0j-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{a4Xv8nro6:\"I was banned in the UK by the FCA for providing signals, which completely shut down my operations. Thanks to Wealth Wave Affiliation, I was able to get back on track. They not only provided me with a license to operate under, but also helped me unban my Telegram channel, which was critical for reaching my audience.\",height:\"100%\",id:\"BpXULYf0j\",iQgvewGe6:\"Laura S\",KpJDaBY8w:\"Affiliate Search Engine\",layoutId:\"BpXULYf0j\",style:{width:\"100%\"},TxX966cAH:\"Personalized Support and Real Results\",variant:\"bKM4biL15\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"650px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-382mqr-container\",layoutDependency:layoutDependency,layoutId:\"VRT1gYtW3-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{a4Xv8nro6:\"Their license truly gives me a safe feeling and allows me to operate freely in the space, knowing I\u2019m fully compliant. That said, they don\u2019t take compliance lightly. Their team checks my brand weekly to ensure I meet all regulations, and they were quite strict during the process of granting me access to their license.\",height:\"100%\",id:\"VRT1gYtW3\",iQgvewGe6:\"James T.\",KpJDaBY8w:\"Affiliate Signals\",layoutId:\"VRT1gYtW3\",LVCFC_zO_:addImageAlt({src:\"https://framerusercontent.com/images/kDsfMpHuBagnCKUW2iOniBEALUg.png\"},\"\"),style:{width:\"100%\"},TxX966cAH:\"Effortless Multi-Broker Management\",variant:\"bKM4biL15\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"650px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mtu9t6-container\",layoutDependency:layoutDependency,layoutId:\"gyBuvjghO-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{a4Xv8nro6:\"If you\u2019re serious about this industry and want to do things the right way, Wealth Wave Affiliation is the partner you need. They don\u2019t just support you; they hold you accountable, which is exactly what sets them apart.\",height:\"100%\",id:\"gyBuvjghO\",iQgvewGe6:\"Michael R\",KpJDaBY8w:\"CPA Affiliate\",layoutId:\"gyBuvjghO\",LVCFC_zO_:addImageAlt({src:\"https://framerusercontent.com/images/4uiRMJmwxYElIlFxsXfyfuYaLng.png\"},\"\"),style:{width:\"100%\"},TxX966cAH:\"Transparent Insights and Reliable Payouts\",variant:\"bKM4biL15\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17nhwya-container\",layoutDependency:layoutDependency,layoutId:\"Bs_r7GCc4-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-10,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:35,height:\"100%\",id:\"Bs_r7GCc4\",intervalControl:1.5,itemAmount:1,layoutId:\"Bs_r7GCc4\",padding:0,paddingBottom:40,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"380px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qs7zzs-container\",layoutDependency:layoutDependency,layoutId:\"xf9ch7cxV-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{a4Xv8nro6:\"I was banned in the UK by the FCA for providing signals, which completely shut down my operations. Thanks to Wealth Wave Affiliation, I was able to get back on track. They not only provided me with a license to operate under, but also helped me unban my Telegram channel, which was critical for reaching my audience.\",height:\"100%\",id:\"xf9ch7cxV\",iQgvewGe6:\"Laura S\",KpJDaBY8w:\"Affiliate Search Engine\",layoutId:\"xf9ch7cxV\",style:{width:\"100%\"},TxX966cAH:\"Personalized Support and Real Results\",variant:\"fNCccvfw1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"380px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s4nmwq-container\",layoutDependency:layoutDependency,layoutId:\"hQNc6UiLh-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{a4Xv8nro6:\"Their license truly gives me a safe feeling and allows me to operate freely in the space, knowing I\u2019m fully compliant. That said, they don\u2019t take compliance lightly. Their team checks my brand weekly to ensure I meet all regulations, and they were quite strict during the process of granting me access to their license.\",height:\"100%\",id:\"hQNc6UiLh\",iQgvewGe6:\"James T.\",KpJDaBY8w:\"Affiliate Signals\",layoutId:\"hQNc6UiLh\",LVCFC_zO_:addImageAlt({src:\"https://framerusercontent.com/images/kDsfMpHuBagnCKUW2iOniBEALUg.png\"},\"\"),style:{width:\"100%\"},TxX966cAH:\"Effortless Multi-Broker Management\",variant:\"fNCccvfw1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"380px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1csorys-container\",layoutDependency:layoutDependency,layoutId:\"mchR6PuMy-container\",children:/*#__PURE__*/_jsx(TestimonialCard,{a4Xv8nro6:\"If you\u2019re serious about this industry and want to do things the right way, Wealth Wave Affiliation is the partner you need. They don\u2019t just support you; they hold you accountable, which is exactly what sets them apart.\",height:\"100%\",id:\"mchR6PuMy\",iQgvewGe6:\"Michael R\",KpJDaBY8w:\"CPA Affiliate\",layoutId:\"mchR6PuMy\",LVCFC_zO_:addImageAlt({src:\"https://framerusercontent.com/images/4uiRMJmwxYElIlFxsXfyfuYaLng.png\"},\"\"),style:{width:\"100%\"},TxX966cAH:\"Transparent Insights and Reliable Payouts\",variant:\"fNCccvfw1\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({hbiV2Tbiy:{dragControl:true,intervalControl:3}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dtgS1.framer-1lt8a9r, .framer-dtgS1 .framer-1lt8a9r { display: block; }\",\".framer-dtgS1.framer-1oy8932 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-dtgS1 .framer-1pmq6b9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-dtgS1 .framer-1sufobs { 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: 897px; }\",\".framer-dtgS1 .framer-h0iwe3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-dtgS1 .framer-yduds7 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-dtgS1 .framer-1xz48wc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dtgS1 .framer-1392r7b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 897px; word-break: break-word; word-wrap: break-word; }\",\".framer-dtgS1 .framer-2q56w4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 476px; word-break: break-word; word-wrap: break-word; }\",\".framer-dtgS1 .framer-15q3hc3-container { flex: none; height: 508px; position: relative; width: 100%; z-index: 4; }\",\".framer-dtgS1 .framer-1grx40x-container, .framer-dtgS1 .framer-382mqr-container, .framer-dtgS1 .framer-1mtu9t6-container { height: auto; position: relative; width: 650px; }\",\".framer-dtgS1 .framer-17nhwya-container { flex: none; height: 665px; position: relative; width: 100%; }\",\".framer-dtgS1 .framer-1qs7zzs-container, .framer-dtgS1 .framer-s4nmwq-container, .framer-dtgS1 .framer-1csorys-container { height: auto; position: relative; width: 380px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dtgS1.framer-1oy8932, .framer-dtgS1 .framer-1pmq6b9, .framer-dtgS1 .framer-1sufobs, .framer-dtgS1 .framer-h0iwe3 { gap: 0px; } .framer-dtgS1.framer-1oy8932 > *, .framer-dtgS1 .framer-h0iwe3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dtgS1.framer-1oy8932 > :first-child, .framer-dtgS1 .framer-h0iwe3 > :first-child { margin-left: 0px; } .framer-dtgS1.framer-1oy8932 > :last-child, .framer-dtgS1 .framer-h0iwe3 > :last-child { margin-right: 0px; } .framer-dtgS1 .framer-1pmq6b9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dtgS1 .framer-1pmq6b9 > :first-child, .framer-dtgS1 .framer-1sufobs > :first-child { margin-top: 0px; } .framer-dtgS1 .framer-1pmq6b9 > :last-child, .framer-dtgS1 .framer-1sufobs > :last-child { margin-bottom: 0px; } .framer-dtgS1 .framer-1sufobs > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-dtgS1.framer-v-1hohkoj.framer-1oy8932 { width: 1200px; }\",\".framer-dtgS1.framer-v-1xmx7k.framer-1oy8932 { width: 810px; }\",\".framer-dtgS1.framer-v-1a9z89v.framer-1oy8932 { width: 390px; }\",\".framer-dtgS1.framer-v-1a9z89v .framer-1pmq6b9 { max-width: 87%; overflow: visible; }\",\".framer-dtgS1.framer-v-1a9z89v .framer-1sufobs, .framer-dtgS1.framer-v-1a9z89v .framer-1392r7b, .framer-dtgS1.framer-v-1a9z89v .framer-2q56w4 { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-dtgS1[data-border=\"true\"]::after, .framer-dtgS1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 807\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jmkXwdD2O\":{\"layout\":[\"fixed\",\"auto\"]},\"OUAQAe8y6\":{\"layout\":[\"fixed\",\"auto\"]},\"hbiV2Tbiy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjZR8ms2My=withCSS(Component,css,\"framer-dtgS1\");export default FramerjZR8ms2My;FramerjZR8ms2My.displayName=\"Testimonial Section\";FramerjZR8ms2My.defaultProps={height:807,width:1440};addPropertyControls(FramerjZR8ms2My,{variant:{options:[\"ZAjPYVomK\",\"jmkXwdD2O\",\"OUAQAe8y6\",\"hbiV2Tbiy\"],optionTitles:[\"Desktop\",\"Desktop Small\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjZR8ms2My,[{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\"}]},...TestimonialCardFonts,...TickerFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjZR8ms2My\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"807\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jmkXwdD2O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OUAQAe8y6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hbiV2Tbiy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}function _defineProperties(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||false;r.configurable=true;\"value\"in r&&(r.writable=true);Object.defineProperty(e,r.key,r)}}function _createClass(e,t,n){t&&_defineProperties(e.prototype,t);n&&_defineProperties(e,n);return e}\n/**\n * Check to see this is a node environment.\n * @type {Boolean}\n */var e=\"undefined\"!==typeof global&&\"[object global]\"==={}.toString.call(global);\n/**\n * Get the name of the method for a given getter or setter.\n *\n * @param {string} prop The name of the property.\n * @param {string} type Either \u201Cget\u201D or \u201Cset\u201D.\n * @return {string}\n */function getMethodName(e,t){return 0===e.indexOf(t.toLowerCase())?e:\"\".concat(t.toLowerCase()).concat(e.substr(0,1).toUpperCase()).concat(e.substr(1))}\n/**\n * Check to see if the object is a DOM Element.\n *\n * @param {*} element The object to check.\n * @return {boolean}\n */function isDomElement(e){return Boolean(e&&1===e.nodeType&&\"nodeName\"in e&&e.ownerDocument&&e.ownerDocument.defaultView)}\n/**\n * Check to see whether the value is a number.\n *\n * @see http://dl.dropboxusercontent.com/u/35146/js/tests/isNumber.html\n * @param {*} value The value to check.\n * @param {boolean} integer Check if the value is an integer.\n * @return {boolean}\n */function isInteger(e){return!isNaN(parseFloat(e))&&isFinite(e)&&Math.floor(e)==e}\n/**\n * Check to see if the URL is a Vimeo url.\n *\n * @param {string} url The url string.\n * @return {boolean}\n */function isVimeoUrl(e){return/^(https?:)?\\/\\/((player|www)\\.)?vimeo\\.com(?=$|\\/)/.test(e)}\n/**\n * Get the Vimeo URL from an element.\n * The element must have either a data-vimeo-id or data-vimeo-url attribute.\n *\n * @param {object} oEmbedParameters The oEmbed parameters.\n * @return {string}\n */function getVimeoUrl(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};var t=e.id;var n=e.url;var r=t||n;if(!r)throw new Error(\"An id or url must be passed, either in an options object or as a data-vimeo-id or data-vimeo-url attribute.\");if(isInteger(r))return\"https://vimeo.com/\".concat(r);if(isVimeoUrl(r))return r.replace(\"http:\",\"https:\");if(t)throw new TypeError(\"\u201C\".concat(t,\"\u201D is not a valid video id.\"));throw new TypeError(\"\u201C\".concat(r,\"\u201D is not a vimeo.com url.\"))}var t=\"undefined\"!==typeof Array.prototype.indexOf;var n=\"undefined\"!==typeof window&&\"undefined\"!==typeof window.postMessage;if(!e&&(!t||!n))throw new Error(\"Sorry, the Vimeo Player API is not available in this browser.\");var r=\"undefined\"!==typeof globalThis?globalThis:\"undefined\"!==typeof window?window:\"undefined\"!==typeof global?global:\"undefined\"!==typeof self?self:{};function createCommonjsModule(e,t){return t={exports:{}},e(t,t.exports),t.exports\n/*!\n * weakmap-polyfill v2.0.1 - ECMAScript6 WeakMap polyfill\n * https://github.com/polygonplanet/weakmap-polyfill\n * Copyright (c) 2015-2020 Polygon Planet <polygon.planet.aqua@gmail.com>\n * @license MIT\n */}(function(e){if(!e.WeakMap){var t=Object.prototype.hasOwnProperty;var defineProperty=function(e,t,n){Object.defineProperty?Object.defineProperty(e,t,{configurable:true,writable:true,value:n}):e[t]=n};e.WeakMap=function(){function WeakMap(){if(void 0===this)throw new TypeError(\"Constructor WeakMap requires 'new'\");defineProperty(this,\"_id\",genId(\"_WeakMap\"));if(arguments.length>0)throw new TypeError(\"WeakMap iterable is not supported\")}defineProperty(WeakMap.prototype,\"delete\",(function(e){checkInstance(this,\"delete\");if(!isObject(e))return false;var t=e[this._id];if(t&&t[0]===e){delete e[this._id];return true}return false}));defineProperty(WeakMap.prototype,\"get\",(function(e){checkInstance(this,\"get\");if(isObject(e)){var t=e[this._id];return t&&t[0]===e?t[1]:void 0}}));defineProperty(WeakMap.prototype,\"has\",(function(e){checkInstance(this,\"has\");if(!isObject(e))return false;var t=e[this._id];return!(!t||t[0]!==e)}));defineProperty(WeakMap.prototype,\"set\",(function(e,t){checkInstance(this,\"set\");if(!isObject(e))throw new TypeError(\"Invalid value used as weak map key\");var n=e[this._id];if(n&&n[0]===e){n[1]=t;return this}defineProperty(e,this._id,[e,t]);return this}));function checkInstance(e,n){if(!isObject(e)||!t.call(e,\"_id\"))throw new TypeError(n+\" method called on incompatible receiver \"+typeof e)}function genId(e){return e+\"_\"+rand()+\".\"+rand()}function rand(){return Math.random().toString().substring(2)}defineProperty(WeakMap,\"_polyfill\",true);return WeakMap}()}function isObject(e){return Object(e)===e}})(\"undefined\"!==typeof self?self:\"undefined\"!==typeof window?window:(\"undefined\"!==typeof r,r));var o=createCommonjsModule((function(e){(function UMD(t,n,r){n[t]=n[t]||r();e.exports&&(e.exports=n[t])})(\"Promise\",(\"undefined\"!=typeof r,r),(function DEF(){var e,t,n,r=Object.prototype.toString,o=\"undefined\"!=typeof setImmediate?function timer(e){return setImmediate(e)}:setTimeout;try{Object.defineProperty({},\"x\",{});e=function builtInProp(e,t,n,r){return Object.defineProperty(e,t,{value:n,writable:true,configurable:false!==r})}}catch(t){e=function builtInProp(e,t,n){e[t]=n;return e}}n=function Queue(){var e,n,r;function Item(e,t){this.fn=e;this.self=t;this.next=void 0}return{add:function add(t,o){r=new Item(t,o);n?n.next=r:e=r;n=r;r=void 0},drain:function drain(){var r=e;e=n=t=void 0;while(r){r.fn.call(r.self);r=r.next}}}}();function schedule(e,r){n.add(e,r);t||(t=o(n.drain))}function isThenable(e){var t,n=typeof e;null==e||\"object\"!=n&&\"function\"!=n||(t=e.then);return\"function\"==typeof t&&t}function notify(){for(var e=0;e<this.chain.length;e++)notifyIsolated(this,1===this.state?this.chain[e].success:this.chain[e].failure,this.chain[e]);this.chain.length=0}function notifyIsolated(e,t,n){var r,o;try{if(false===t)n.reject(e.msg);else{r=true===t?e.msg:t.call(void 0,e.msg);r===n.promise?n.reject(TypeError(\"Promise-chain cycle\")):(o=isThenable(r))?o.call(r,n.resolve,n.reject):n.resolve(r)}}catch(e){n.reject(e)}}function resolve(e){var t,n=this;if(!n.triggered){n.triggered=true;n.def&&(n=n.def);try{if(t=isThenable(e))schedule((function(){var r=new MakeDefWrapper(n);try{t.call(e,(function $resolve$(){resolve.apply(r,arguments)}),(function $reject$(){reject.apply(r,arguments)}))}catch(e){reject.call(r,e)}}));else{n.msg=e;n.state=1;n.chain.length>0&&schedule(notify,n)}}catch(e){reject.call(new MakeDefWrapper(n),e)}}}function reject(e){var t=this;if(!t.triggered){t.triggered=true;t.def&&(t=t.def);t.msg=e;t.state=2;t.chain.length>0&&schedule(notify,t)}}function iteratePromises(e,t,n,r){for(var o=0;o<t.length;o++)(function IIFE(o){e.resolve(t[o]).then((function $resolver$(e){n(o,e)}),r)})(o)}function MakeDefWrapper(e){this.def=e;this.triggered=false}function MakeDef(e){this.promise=e;this.state=0;this.triggered=false;this.chain=[];this.msg=void 0}function Promise(e){if(\"function\"!=typeof e)throw TypeError(\"Not a function\");if(0!==this.__NPO__)throw TypeError(\"Not a promise\");this.__NPO__=1;var t=new MakeDef(this);this.then=function then(e,n){var r={success:\"function\"!=typeof e||e,failure:\"function\"==typeof n&&n};r.promise=new this.constructor((function extractChain(e,t){if(\"function\"!=typeof e||\"function\"!=typeof t)throw TypeError(\"Not a function\");r.resolve=e;r.reject=t}));t.chain.push(r);0!==t.state&&schedule(notify,t);return r.promise};this.catch=function $catch$(e){return this.then(void 0,e)};try{e.call(void 0,(function publicResolve(e){resolve.call(t,e)}),(function publicReject(e){reject.call(t,e)}))}catch(e){reject.call(t,e)}}var i=e({},\"constructor\",Promise,false);Promise.prototype=i;e(i,\"__NPO__\",0,false);e(Promise,\"resolve\",(function Promise$resolve(e){var t=this;return e&&\"object\"==typeof e&&1===e.__NPO__?e:new t((function executor(t,n){if(\"function\"!=typeof t||\"function\"!=typeof n)throw TypeError(\"Not a function\");t(e)}))}));e(Promise,\"reject\",(function Promise$reject(e){return new this((function executor(t,n){if(\"function\"!=typeof t||\"function\"!=typeof n)throw TypeError(\"Not a function\");n(e)}))}));e(Promise,\"all\",(function Promise$all(e){var t=this;return\"[object Array]\"!=r.call(e)?t.reject(TypeError(\"Not an array\")):0===e.length?t.resolve([]):new t((function executor(n,r){if(\"function\"!=typeof n||\"function\"!=typeof r)throw TypeError(\"Not a function\");var o=e.length,i=Array(o),a=0;iteratePromises(t,e,(function resolver(e,t){i[e]=t;++a===o&&n(i)}),r)}))}));e(Promise,\"race\",(function Promise$race(e){var t=this;return\"[object Array]\"!=r.call(e)?t.reject(TypeError(\"Not an array\")):new t((function executor(n,r){if(\"function\"!=typeof n||\"function\"!=typeof r)throw TypeError(\"Not a function\");iteratePromises(t,e,(function resolver(e,t){n(t)}),r)}))}));return Promise}))}));var i=new WeakMap;\n/**\n * Store a callback for a method or event for a player.\n *\n * @param {Player} player The player object.\n * @param {string} name The method or event name.\n * @param {(function(this:Player, *): void|{resolve: function, reject: function})} callback\n *        The callback to call or an object with resolve and reject functions for a promise.\n * @return {void}\n */function storeCallback(e,t,n){var r=i.get(e.element)||{};t in r||(r[t]=[]);r[t].push(n);i.set(e.element,r)}\n/**\n * Get the callbacks for a player and event or method.\n *\n * @param {Player} player The player object.\n * @param {string} name The method or event name\n * @return {function[]}\n */function getCallbacks(e,t){var n=i.get(e.element)||{};return n[t]||[]}\n/**\n * Remove a stored callback for a method or event for a player.\n *\n * @param {Player} player The player object.\n * @param {string} name The method or event name\n * @param {function} [callback] The specific callback to remove.\n * @return {boolean} Was this the last callback?\n */function removeCallback(e,t,n){var r=i.get(e.element)||{};if(!r[t])return true;if(!n){r[t]=[];i.set(e.element,r);return true}var o=r[t].indexOf(n);-1!==o&&r[t].splice(o,1);i.set(e.element,r);return r[t]&&0===r[t].length}\n/**\n * Return the first stored callback for a player and event or method.\n *\n * @param {Player} player The player object.\n * @param {string} name The method or event name.\n * @return {function} The callback, or false if there were none\n */function shiftCallbacks(e,t){var n=getCallbacks(e,t);if(n.length<1)return false;var r=n.shift();removeCallback(e,t,r);return r}\n/**\n * Move callbacks associated with an element to another element.\n *\n * @param {HTMLElement} oldElement The old element.\n * @param {HTMLElement} newElement The new element.\n * @return {void}\n */function swapCallbacks(e,t){var n=i.get(e);i.set(t,n);i.delete(e)}var a=[\"autopause\",\"autoplay\",\"background\",\"byline\",\"color\",\"controls\",\"dnt\",\"height\",\"id\",\"interactive_params\",\"keyboard\",\"loop\",\"maxheight\",\"maxwidth\",\"muted\",\"playsinline\",\"portrait\",\"responsive\",\"speed\",\"texttrack\",\"title\",\"transparent\",\"url\",\"width\"];\n/**\n * Get the 'data-vimeo'-prefixed attributes from an element as an object.\n *\n * @param {HTMLElement} element The element.\n * @param {Object} [defaults={}] The default values to use.\n * @return {Object<string, string>}\n */function getOEmbedParameters(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return a.reduce((function(t,n){var r=e.getAttribute(\"data-vimeo-\".concat(n));(r||\"\"===r)&&(t[n]=\"\"===r?1:r);return t}),t)}\n/**\n * Create an embed from oEmbed data inside an element.\n *\n * @param {object} data The oEmbed data.\n * @param {HTMLElement} element The element to put the iframe in.\n * @return {HTMLIFrameElement} The iframe embed.\n */function createEmbed(e,t){var n=e.html;if(!t)throw new TypeError(\"An element must be provided\");if(null!==t.getAttribute(\"data-vimeo-initialized\"))return t.querySelector(\"iframe\");var r=document.createElement(\"div\");r.innerHTML=n;t.appendChild(r.firstChild);t.setAttribute(\"data-vimeo-initialized\",\"true\");return t.querySelector(\"iframe\")}\n/**\n * Make an oEmbed call for the specified URL.\n *\n * @param {string} videoUrl The vimeo.com url for the video.\n * @param {Object} [params] Parameters to pass to oEmbed.\n * @param {HTMLElement} element The element.\n * @return {Promise}\n */function getOEmbedData(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};var n=arguments.length>2?arguments[2]:void 0;return new Promise((function(r,o){if(!isVimeoUrl(e))throw new TypeError(\"\u201C\".concat(e,\"\u201D is not a vimeo.com url.\"));var i=\"https://vimeo.com/api/oembed.json?url=\".concat(encodeURIComponent(e));for(var a in t)t.hasOwnProperty(a)&&(i+=\"&\".concat(a,\"=\").concat(encodeURIComponent(t[a])));var u=\"XDomainRequest\"in window?new XDomainRequest:new XMLHttpRequest;u.open(\"GET\",i,true);u.onload=function(){if(404!==u.status)if(403!==u.status)try{var t=JSON.parse(u.responseText);if(403===t.domain_status_code){createEmbed(t,n);o(new Error(\"\u201C\".concat(e,\"\u201D is not embeddable.\")));return}r(t)}catch(e){o(e)}else o(new Error(\"\u201C\".concat(e,\"\u201D is not embeddable.\")));else o(new Error(\"\u201C\".concat(e,\"\u201D was not found.\")))};u.onerror=function(){var e=u.status?\" (\".concat(u.status,\")\"):\"\";o(new Error(\"There was an error fetching the embed code from Vimeo\".concat(e,\".\")))};u.send()}))}\n/**\n * Initialize all embeds within a specific element\n *\n * @param {HTMLElement} [parent=document] The parent element.\n * @return {void}\n */function initializeEmbeds(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document;var t=[].slice.call(e.querySelectorAll(\"[data-vimeo-id], [data-vimeo-url]\"));var n=function handleError(e){\"console\"in window&&console.error&&console.error(\"There was an error creating an embed: \".concat(e))};t.forEach((function(e){try{if(null!==e.getAttribute(\"data-vimeo-defer\"))return;var t=getOEmbedParameters(e);var r=getVimeoUrl(t);getOEmbedData(r,t,e).then((function(t){return createEmbed(t,e)})).catch(n)}catch(e){n(e)}}))}\n/**\n * Resize embeds when messaged by the player.\n *\n * @param {HTMLElement} [parent=document] The parent element.\n * @return {void}\n */function resizeEmbeds(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document;if(!window.VimeoPlayerResizeEmbeds_){window.VimeoPlayerResizeEmbeds_=true;var t=function onMessage(t){if(isVimeoUrl(t.origin)&&t.data&&\"spacechange\"===t.data.event){var n=e.querySelectorAll(\"iframe\");for(var r=0;r<n.length;r++)if(n[r].contentWindow===t.source){var o=n[r].parentElement;o.style.paddingBottom=\"\".concat(t.data.data[0].bottom,\"px\");break}}};window.addEventListener(\"message\",t)}}\n/**\n * Parse a message received from postMessage.\n *\n * @param {*} data The data received from postMessage.\n * @return {object}\n */function parseMessageData(e){if(\"string\"===typeof e)try{e=JSON.parse(e)}catch(e){console.warn(e);return{}}return e}\n/**\n * Post a message to the specified target.\n *\n * @param {Player} player The player object to use.\n * @param {string} method The API method to call.\n * @param {object} params The parameters to send to the player.\n * @return {void}\n */function postMessage(e,t,n){if(e.element.contentWindow&&e.element.contentWindow.postMessage){var r={method:t};void 0!==n&&(r.value=n);var o=parseFloat(navigator.userAgent.toLowerCase().replace(/^.*msie (\\d+).*$/,\"$1\"));o>=8&&o<10&&(r=JSON.stringify(r));e.element.contentWindow.postMessage(r,e.origin)}}\n/**\n * Parse the data received from a message event.\n *\n * @param {Player} player The player that received the message.\n * @param {(Object|string)} data The message data. Strings will be parsed into JSON.\n * @return {void}\n */function processData(e,t){t=parseMessageData(t);var n=[];var r;if(t.event){if(\"error\"===t.event){var o=getCallbacks(e,t.data.method);o.forEach((function(n){var r=new Error(t.data.message);r.name=t.data.name;n.reject(r);removeCallback(e,t.data.method,n)}))}n=getCallbacks(e,\"event:\".concat(t.event));r=t.data}else if(t.method){var i=shiftCallbacks(e,t.method);if(i){n.push(i);r=t.value}}n.forEach((function(t){try{if(\"function\"===typeof t){t.call(e,r);return}t.resolve(r)}catch(e){}}))}function initializeScreenfull(){var e=function(){var e;var t=[[\"requestFullscreen\",\"exitFullscreen\",\"fullscreenElement\",\"fullscreenEnabled\",\"fullscreenchange\",\"fullscreenerror\"],[\"webkitRequestFullscreen\",\"webkitExitFullscreen\",\"webkitFullscreenElement\",\"webkitFullscreenEnabled\",\"webkitfullscreenchange\",\"webkitfullscreenerror\"],[\"webkitRequestFullScreen\",\"webkitCancelFullScreen\",\"webkitCurrentFullScreenElement\",\"webkitCancelFullScreen\",\"webkitfullscreenchange\",\"webkitfullscreenerror\"],[\"mozRequestFullScreen\",\"mozCancelFullScreen\",\"mozFullScreenElement\",\"mozFullScreenEnabled\",\"mozfullscreenchange\",\"mozfullscreenerror\"],[\"msRequestFullscreen\",\"msExitFullscreen\",\"msFullscreenElement\",\"msFullscreenEnabled\",\"MSFullscreenChange\",\"MSFullscreenError\"]];var n=0;var r=t.length;var o={};for(;n<r;n++){e=t[n];if(e&&e[1]in document){for(n=0;n<e.length;n++)o[t[0][n]]=e[n];return o}}return false}();var t={fullscreenchange:e.fullscreenchange,fullscreenerror:e.fullscreenerror};var n={request:function request(t){return new Promise((function(r,o){var i=function onFullScreenEntered(){n.off(\"fullscreenchange\",onFullScreenEntered);r()};n.on(\"fullscreenchange\",i);t=t||document.documentElement;var a=t[e.requestFullscreen]();a instanceof Promise&&a.then(i).catch(o)}))},exit:function exit(){return new Promise((function(t,r){if(n.isFullscreen){var o=function onFullScreenExit(){n.off(\"fullscreenchange\",onFullScreenExit);t()};n.on(\"fullscreenchange\",o);var i=document[e.exitFullscreen]();i instanceof Promise&&i.then(o).catch(r)}else t()}))},on:function on(e,n){var r=t[e];r&&document.addEventListener(r,n)},off:function off(e,n){var r=t[e];r&&document.removeEventListener(r,n)}};Object.defineProperties(n,{isFullscreen:{get:function get(){return Boolean(document[e.fullscreenElement])}},element:{enumerable:true,get:function get(){return document[e.fullscreenElement]}},isEnabled:{enumerable:true,get:function get(){return Boolean(document[e.fullscreenEnabled])}}});return n}var u=new WeakMap;var l=new WeakMap;var s={};var c=function(){\n/**\n   * Create a Player.\n   *\n   * @param {(HTMLIFrameElement|HTMLElement|string|jQuery)} element A reference to the Vimeo\n   *        player iframe, and id, or a jQuery object.\n   * @param {object} [options] oEmbed parameters to use when creating an embed in the element.\n   * @return {Player}\n   */\nfunction Player(e){var t=this;var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};_classCallCheck(this,Player);if(window.jQuery&&e instanceof jQuery){e.length>1&&window.console&&console.warn&&console.warn(\"A jQuery object with multiple elements was passed, using the first element.\");e=e[0]}\"undefined\"!==typeof document&&\"string\"===typeof e&&(e=document.getElementById(e));if(!isDomElement(e))throw new TypeError(\"You must pass either a valid element or a valid id.\");if(\"IFRAME\"!==e.nodeName){var r=e.querySelector(\"iframe\");r&&(e=r)}if(\"IFRAME\"===e.nodeName&&!isVimeoUrl(e.getAttribute(\"src\")||\"\"))throw new Error(\"The player element passed isn\u2019t a Vimeo embed.\");if(u.has(e))return u.get(e);this._window=e.ownerDocument.defaultView;this.element=e;this.origin=\"*\";var i=new o((function(r,o){t._onMessage=function(e){if(isVimeoUrl(e.origin)&&t.element.contentWindow===e.source){\"*\"===t.origin&&(t.origin=e.origin);var n=parseMessageData(e.data);var i=n&&\"error\"===n.event;var a=i&&n.data&&\"ready\"===n.data.method;if(a){var u=new Error(n.data.message);u.name=n.data.name;o(u)}else{var l=n&&\"ready\"===n.event;var s=n&&\"ping\"===n.method;if(l||s){t.element.setAttribute(\"data-ready\",\"true\");r()}else processData(t,n)}}};t._window.addEventListener(\"message\",t._onMessage);if(\"IFRAME\"!==t.element.nodeName){var i=getOEmbedParameters(e,n);var a=getVimeoUrl(i);getOEmbedData(a,i,e).then((function(n){var r=createEmbed(n,e);t.element=r;t._originalElement=e;swapCallbacks(e,r);u.set(t.element,t);return n})).catch(o)}}));l.set(this,i);u.set(this.element,this);\"IFRAME\"===this.element.nodeName&&postMessage(this,\"ping\");if(s.isEnabled){var a=function exitFullscreen(){return s.exit()};this.fullscreenchangeHandler=function(){s.isFullscreen?storeCallback(t,\"event:exitFullscreen\",a):removeCallback(t,\"event:exitFullscreen\",a);t.ready().then((function(){postMessage(t,\"fullscreenchange\",s.isFullscreen)}))};s.on(\"fullscreenchange\",this.fullscreenchangeHandler)}return this}\n/**\n   * Get a promise for a method.\n   *\n   * @param {string} name The API method to call.\n   * @param {Object} [args={}] Arguments to send via postMessage.\n   * @return {Promise}\n   */_createClass(Player,[{key:\"callMethod\",value:function callMethod(e){var t=this;var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new o((function(r,o){return t.ready().then((function(){storeCallback(t,e,{resolve:r,reject:o});postMessage(t,e,n)})).catch(o)}))}\n/**\n     * Get a promise for the value of a player property.\n     *\n     * @param {string} name The property name\n     * @return {Promise}\n     */},{key:\"get\",value:function get(e){var t=this;return new o((function(n,r){e=getMethodName(e,\"get\");return t.ready().then((function(){storeCallback(t,e,{resolve:n,reject:r});postMessage(t,e)})).catch(r)}))}\n/**\n     * Get a promise for setting the value of a player property.\n     *\n     * @param {string} name The API method to call.\n     * @param {mixed} value The value to set.\n     * @return {Promise}\n     */},{key:\"set\",value:function set(e,t){var n=this;return new o((function(r,o){e=getMethodName(e,\"set\");if(void 0===t||null===t)throw new TypeError(\"There must be a value to set.\");return n.ready().then((function(){storeCallback(n,e,{resolve:r,reject:o});postMessage(n,e,t)})).catch(o)}))}\n/**\n     * Add an event listener for the specified event. Will call the\n     * callback with a single parameter, `data`, that contains the data for\n     * that event.\n     *\n     * @param {string} eventName The name of the event.\n     * @param {function(*)} callback The function to call when the event fires.\n     * @return {void}\n     */},{key:\"on\",value:function on(e,t){if(!e)throw new TypeError(\"You must pass an event name.\");if(!t)throw new TypeError(\"You must pass a callback function.\");if(\"function\"!==typeof t)throw new TypeError(\"The callback must be a function.\");var n=getCallbacks(this,\"event:\".concat(e));0===n.length&&this.callMethod(\"addEventListener\",e).catch((function(){}));storeCallback(this,\"event:\".concat(e),t)}\n/**\n     * Remove an event listener for the specified event. Will remove all\n     * listeners for that event if a `callback` isn\u2019t passed, or only that\n     * specific callback if it is passed.\n     *\n     * @param {string} eventName The name of the event.\n     * @param {function} [callback] The specific callback to remove.\n     * @return {void}\n     */},{key:\"off\",value:function off(e,t){if(!e)throw new TypeError(\"You must pass an event name.\");if(t&&\"function\"!==typeof t)throw new TypeError(\"The callback must be a function.\");var n=removeCallback(this,\"event:\".concat(e),t);n&&this.callMethod(\"removeEventListener\",e).catch((function(e){}))}\n/**\n     * Load a new video into this embed. The promise will be resolved if\n     * the video is successfully loaded, or it will be rejected if it could\n     * not be loaded.\n     *\n     * @param {number|string|object} options The id of the video, the url of the video, or an object with embed options.\n     * @return {LoadVideoPromise}\n     */},{key:\"loadVideo\",value:function loadVideo(e){return this.callMethod(\"loadVideo\",e)}},{key:\"ready\",value:function ready(){var e=l.get(this)||new o((function(e,t){t(new Error(\"Unknown player. Probably unloaded.\"))}));return o.resolve(e)}\n/**\n     * Add a cue point to the player.\n     *\n     * @param {number} time The time for the cue point.\n     * @param {object} [data] Arbitrary data to be returned with the cue point.\n     * @return {AddCuePointPromise}\n     */},{key:\"addCuePoint\",value:function addCuePoint(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.callMethod(\"addCuePoint\",{time:e,data:t})}\n/**\n     * Remove a cue point from the video.\n     *\n     * @param {string} id The id of the cue point to remove.\n     * @return {RemoveCuePointPromise}\n     */},{key:\"removeCuePoint\",value:function removeCuePoint(e){return this.callMethod(\"removeCuePoint\",e)}\n/**\n     * A representation of a text track on a video.\n     *\n     * @typedef {Object} VimeoTextTrack\n     * @property {string} language The ISO language code.\n     * @property {string} kind The kind of track it is (captions or subtitles).\n     * @property {string} label The human\u2010readable label for the track.\n     */\n/**\n     * Enable the text track with the specified language, and optionally the\n     * specified kind (captions or subtitles).\n     *\n     * When set via the API, the track language will not change the viewer\u2019s\n     * stored preference.\n     *\n     * @param {string} language The two\u2010letter language code.\n     * @param {string} [kind] The kind of track to enable (captions or subtitles).\n     * @return {EnableTextTrackPromise}\n     */},{key:\"enableTextTrack\",value:function enableTextTrack(e,t){if(!e)throw new TypeError(\"You must pass a language.\");return this.callMethod(\"enableTextTrack\",{language:e,kind:t})}},{key:\"disableTextTrack\",value:function disableTextTrack(){return this.callMethod(\"disableTextTrack\")}},{key:\"pause\",value:function pause(){return this.callMethod(\"pause\")}},{key:\"play\",value:function play(){return this.callMethod(\"play\")}},{key:\"requestFullscreen\",value:function requestFullscreen(){return s.isEnabled?s.request(this.element):this.callMethod(\"requestFullscreen\")}},{key:\"exitFullscreen\",value:function exitFullscreen(){return s.isEnabled?s.exit():this.callMethod(\"exitFullscreen\")}},{key:\"getFullscreen\",value:function getFullscreen(){return s.isEnabled?o.resolve(s.isFullscreen):this.get(\"fullscreen\")}},{key:\"requestPictureInPicture\",value:function requestPictureInPicture(){return this.callMethod(\"requestPictureInPicture\")}},{key:\"exitPictureInPicture\",value:function exitPictureInPicture(){return this.callMethod(\"exitPictureInPicture\")}},{key:\"getPictureInPicture\",value:function getPictureInPicture(){return this.get(\"pictureInPicture\")}},{key:\"unload\",value:function unload(){return this.callMethod(\"unload\")}},{key:\"destroy\",value:function destroy(){var e=this;return new o((function(t){l.delete(e);u.delete(e.element);if(e._originalElement){u.delete(e._originalElement);e._originalElement.removeAttribute(\"data-vimeo-initialized\")}e.element&&\"IFRAME\"===e.element.nodeName&&e.element.parentNode&&(e.element.parentNode.parentNode&&e._originalElement&&e._originalElement!==e.element.parentNode?e.element.parentNode.parentNode.removeChild(e.element.parentNode):e.element.parentNode.removeChild(e.element));if(e.element&&\"DIV\"===e.element.nodeName&&e.element.parentNode){e.element.removeAttribute(\"data-vimeo-initialized\");var n=e.element.querySelector(\"iframe\");n&&n.parentNode&&(n.parentNode.parentNode&&e._originalElement&&e._originalElement!==n.parentNode?n.parentNode.parentNode.removeChild(n.parentNode):n.parentNode.removeChild(n))}e._window.removeEventListener(\"message\",e._onMessage);s.isEnabled&&s.off(\"fullscreenchange\",e.fullscreenchangeHandler);t()}))}},{key:\"getAutopause\",value:function getAutopause(){return this.get(\"autopause\")}\n/**\n     * Enable or disable the autopause behavior of this player.\n     *\n     * By default, when another video is played in the same browser, this\n     * player will automatically pause. Unless you have a specific reason\n     * for doing so, we recommend that you leave autopause set to the\n     * default (`true`).\n     *\n     * @param {boolean} autopause\n     * @return {SetAutopausePromise}\n     */},{key:\"setAutopause\",value:function setAutopause(e){return this.set(\"autopause\",e)}},{key:\"getBuffered\",value:function getBuffered(){return this.get(\"buffered\")}\n/**\n     * @typedef {Object} CameraProperties\n     * @prop {number} props.yaw - Number between 0 and 360.\n     * @prop {number} props.pitch - Number between -90 and 90.\n     * @prop {number} props.roll - Number between -180 and 180.\n     * @prop {number} props.fov - The field of view in degrees.\n     */},{key:\"getCameraProps\",value:function getCameraProps(){return this.get(\"cameraProps\")}\n/**\n     * For 360\u00B0 videos set the camera properties for this player.\n     *\n     * @param {CameraProperties} camera The camera properties\n     * @return {SetCameraPromise}\n     */},{key:\"setCameraProps\",value:function setCameraProps(e){return this.set(\"cameraProps\",e)}\n/**\n     * A representation of a chapter.\n     *\n     * @typedef {Object} VimeoChapter\n     * @property {number} startTime The start time of the chapter.\n     * @property {object} title The title of the chapter.\n     * @property {number} index The place in the order of Chapters. Starts at 1.\n     */},{key:\"getChapters\",value:function getChapters(){return this.get(\"chapters\")}},{key:\"getCurrentChapter\",value:function getCurrentChapter(){return this.get(\"currentChapter\")}},{key:\"getColor\",value:function getColor(){return this.get(\"color\")}\n/**\n     * Set the color of this player to a hex or rgb string. Setting the\n     * color may fail if the owner of the video has set their embed\n     * preferences to force a specific color.\n     *\n     * @param {string} color The hex or rgb color string to set.\n     * @return {SetColorPromise}\n     */},{key:\"setColor\",value:function setColor(e){return this.set(\"color\",e)}\n/**\n     * A representation of a cue point.\n     *\n     * @typedef {Object} VimeoCuePoint\n     * @property {number} time The time of the cue point.\n     * @property {object} data The data passed when adding the cue point.\n     * @property {string} id The unique id for use with removeCuePoint.\n     */},{key:\"getCuePoints\",value:function getCuePoints(){return this.get(\"cuePoints\")}},{key:\"getCurrentTime\",value:function getCurrentTime(){return this.get(\"currentTime\")}\n/**\n     * Set the current playback position in seconds. If the player was\n     * paused, it will remain paused. Likewise, if the player was playing,\n     * it will resume playing once the video has buffered.\n     *\n     * You can provide an accurate time and the player will attempt to seek\n     * to as close to that time as possible. The exact time will be the\n     * fulfilled value of the promise.\n     *\n     * @param {number} currentTime\n     * @return {SetCurrentTimePromise}\n     */},{key:\"setCurrentTime\",value:function setCurrentTime(e){return this.set(\"currentTime\",e)}},{key:\"getDuration\",value:function getDuration(){return this.get(\"duration\")}},{key:\"getEnded\",value:function getEnded(){return this.get(\"ended\")}},{key:\"getLoop\",value:function getLoop(){return this.get(\"loop\")}\n/**\n     * Set the loop state of the player. When set to `true`, the player\n     * will start over immediately once playback ends.\n     *\n     * @param {boolean} loop\n     * @return {SetLoopPromise}\n     */},{key:\"setLoop\",value:function setLoop(e){return this.set(\"loop\",e)}\n/**\n     * Set the muted state of the player. When set to `true`, the player\n     * volume will be muted.\n     *\n     * @param {boolean} muted\n     * @return {SetMutedPromise}\n     */},{key:\"setMuted\",value:function setMuted(e){return this.set(\"muted\",e)}},{key:\"getMuted\",value:function getMuted(){return this.get(\"muted\")}},{key:\"getPaused\",value:function getPaused(){return this.get(\"paused\")}},{key:\"getPlaybackRate\",value:function getPlaybackRate(){return this.get(\"playbackRate\")}\n/**\n     * Set the playback rate of the player on a scale from `0.5` to `2`. When set\n     * via the API, the playback rate will not be synchronized to other\n     * players or stored as the viewer's preference.\n     *\n     * @param {number} playbackRate\n     * @return {SetPlaybackRatePromise}\n     */},{key:\"setPlaybackRate\",value:function setPlaybackRate(e){return this.set(\"playbackRate\",e)}},{key:\"getPlayed\",value:function getPlayed(){return this.get(\"played\")}},{key:\"getQualities\",value:function getQualities(){return this.get(\"qualities\")}},{key:\"getQuality\",value:function getQuality(){return this.get(\"quality\")}\n/**\n     * Set a video quality.\n     *\n     * @param {string} quality\n     * @return {SetQualityPromise}\n     */},{key:\"setQuality\",value:function setQuality(e){return this.set(\"quality\",e)}},{key:\"getSeekable\",value:function getSeekable(){return this.get(\"seekable\")}},{key:\"getSeeking\",value:function getSeeking(){return this.get(\"seeking\")}},{key:\"getTextTracks\",value:function getTextTracks(){return this.get(\"textTracks\")}},{key:\"getVideoEmbedCode\",value:function getVideoEmbedCode(){return this.get(\"videoEmbedCode\")}},{key:\"getVideoId\",value:function getVideoId(){return this.get(\"videoId\")}},{key:\"getVideoTitle\",value:function getVideoTitle(){return this.get(\"videoTitle\")}},{key:\"getVideoWidth\",value:function getVideoWidth(){return this.get(\"videoWidth\")}},{key:\"getVideoHeight\",value:function getVideoHeight(){return this.get(\"videoHeight\")}},{key:\"getVideoUrl\",value:function getVideoUrl(){return this.get(\"videoUrl\")}},{key:\"getVolume\",value:function getVolume(){return this.get(\"volume\")}\n/**\n     * Set the volume of the player on a scale from `0` to `1`. When set\n     * via the API, the volume level will not be synchronized to other\n     * players or stored as the viewer\u2019s preference.\n     *\n     * Most mobile devices do not support setting the volume. An error will\n     * *not* be triggered in that situation.\n     *\n     * @param {number} volume\n     * @return {SetVolumePromise}\n     */},{key:\"setVolume\",value:function setVolume(e){return this.set(\"volume\",e)}}]);return Player}();if(!e){s=initializeScreenfull();initializeEmbeds();resizeEmbeds()}export{c as default};\n\n//# sourceMappingURL=player.es.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import Player from\"@vimeo/player\";import{useEffect,useRef,useState}from\"react\";import{useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";const vimeoRegex=/^https?:\\/\\/vimeo\\.com\\/(\\d+)/;/**\n * VIMEO\n *\n * @framerIntrinsicWidth 480\n * @framerIntrinsicHeight 270\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps borderRadius, backgroundColor\n */ const Vimeo=withCSS(function Vimeo({video,autoplay,mute,controls,loop,titles,backgroundColor,onPlay=()=>{},onEnd=()=>{},style,...props}){const[key,setKey]=useState(0);const player=useRef();const borderRadius=useRadius(props);useEffect(()=>{if(!player.current)return;const[,id]=video.match(vimeoRegex)?video.match(vimeoRegex):[null,0];const embeddedPlayer=new Player(player.current,{id,autopause:false,autoplay:RenderTarget.current()===RenderTarget.canvas?false:autoplay,byline:titles,controls:controls,loop:loop,title:titles,muted:mute,responsive:true});embeddedPlayer.on(\"play\",onPlay);embeddedPlayer.on(\"ended\",onEnd);},[player,key]);useEffect(()=>{setKey(key=>key+1);},[video,autoplay,mute,controls,loop,titles]);return /*#__PURE__*/ _jsx(motion.div,{style:{background:backgroundColor,...style,borderRadius,position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",overflow:\"hidden\"},...props,children:/*#__PURE__*/ _jsx(\"div\",{className:\"framer-vimeo\",ref:player,style:{width:\"100%\",height:\"100%\"}},key)});},[\".framer-vimeo > div { padding: 0 !important; width: 100%; height: 100%; }\",]);Vimeo.defaultProps={video:\"https://vimeo.com/642263700\",autoplay:false,loop:false,mute:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0};addPropertyControls(Vimeo,{video:{title:\"URL\",type:ControlType.String},...borderRadiusControl,controls:{title:\"Controls\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\"},autoplay:{title:\"Autoplay\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// playOnCanvas: {\n//     title: \"On Canvas\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Play\",\n//     disabledTitle: \"Pause\",\n// },\nloop:{title:\"Loop\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},mute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// titles: {\n//     title: \"Titles\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n// },\nbackgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0, 0, 0, 0)\"},onPlay:{type:ControlType.EventHandler},onEnd:{type:ControlType.EventHandler}});export default Vimeo;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Vimeo\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"270\",\"framerIntrinsicWidth\":\"480\",\"framerComponentPresetProps\":\"borderRadius, backgroundColor\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vimeo.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import PlayButton from\"https://framerusercontent.com/modules/HbQEPdnX1UNryg0ylODL/r2ucXFNLsoZl3HtkE8y0/L2oUUQ640.js\";const VimeoFonts=getFonts(Vimeo);const PlayButtonFonts=getFonts(PlayButton);const PlayButtonControls=getPropertyControls(PlayButton);const enabledGestures={iPiCO81Gn:{hover:true}};const cycleOrder=[\"BSc3J4xdW\",\"iPiCO81Gn\"];const serializationHash=\"framer-Ri9ob\";const variantClassNames={BSc3J4xdW:\"framer-v-57jk1j\",iPiCO81Gn:\"framer-v-1s60e3o\"};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 radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Variant 4\":\"ur89XhYrn\",Dekstop:\"U5DvjL1i9\",Mobile:\"OxmSy3TgA\",Pause:\"GsmvjPkpt\"};const humanReadableVariantMap={VideoPause:\"BSc3J4xdW\",VideoPlay:\"iPiCO81Gn\"};const getProps=({height,id,playSize,radius,vimeoURL,width,...props})=>{var _ref,_humanReadableEnumMap_playSize,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,EbnF0RpmW:(_ref=radius!==null&&radius!==void 0?radius:props.EbnF0RpmW)!==null&&_ref!==void 0?_ref:\"0px\",KqlvaerX6:(_ref2=(_ref1=(_humanReadableEnumMap_playSize=humanReadableEnumMap[playSize])!==null&&_humanReadableEnumMap_playSize!==void 0?_humanReadableEnumMap_playSize:playSize)!==null&&_ref1!==void 0?_ref1:props.KqlvaerX6)!==null&&_ref2!==void 0?_ref2:\"U5DvjL1i9\",UOzbU_ivP:(_ref3=vimeoURL!==null&&vimeoURL!==void 0?vimeoURL:props.UOzbU_ivP)!==null&&_ref3!==void 0?_ref3:\"https://vimeo.com/642263700\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"BSc3J4xdW\"};};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,UOzbU_ivP,EbnF0RpmW,KqlvaerX6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BSc3J4xdW\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const wCvVs6Krkk0ved9=activeVariantCallback(async(...args)=>{setVariant(\"iPiCO81Gn\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"iPiCO81Gn-hover\")return false;if(baseVariant===\"iPiCO81Gn\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-57jk1j\",className,classNames),\"data-framer-name\":\"VideoPause\",layoutDependency:layoutDependency,layoutId:\"BSc3J4xdW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:radiusForCorner(EbnF0RpmW,3),borderBottomRightRadius:radiusForCorner(EbnF0RpmW,2),borderTopLeftRadius:radiusForCorner(EbnF0RpmW,0),borderTopRightRadius:radiusForCorner(EbnF0RpmW,1),...style},...addPropertyOverrides({\"iPiCO81Gn-hover\":{\"data-framer-name\":undefined},iPiCO81Gn:{\"data-framer-name\":\"VideoPlay\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ewnaa0-container\",layoutDependency:layoutDependency,layoutId:\"Yk314BOwy-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Yk314BOwy\",isMixedBorderRadius:false,layoutId:\"Yk314BOwy\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:UOzbU_ivP,width:\"100%\",...addPropertyOverrides({iPiCO81Gn:{autoplay:true,controls:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1150,pixelWidth:2044,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/eXtvmkdwUYoxftQox4eu2oGWemQ.png\",srcSet:\"https://framerusercontent.com/images/eXtvmkdwUYoxftQox4eu2oGWemQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/eXtvmkdwUYoxftQox4eu2oGWemQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eXtvmkdwUYoxftQox4eu2oGWemQ.png 2044w\"},className:\"framer-yye3gy\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"YsW7Tyj7j\",style:{opacity:1},variants:{iPiCO81Gn:{opacity:0}}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||592)*.5008431703204049-59),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g3dbih-container\",layoutDependency:layoutDependency,layoutId:\"J4GWV2Pkw-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PlayButton,{height:\"100%\",id:\"J4GWV2Pkw\",layoutId:\"J4GWV2Pkw\",variant:KqlvaerX6,wCvVs6Krk:wCvVs6Krkk0ved9,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ri9ob.framer-15wts6l, .framer-Ri9ob .framer-15wts6l { display: block; }\",\".framer-Ri9ob.framer-57jk1j { height: 592px; overflow: hidden; position: relative; width: 1052px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ri9ob .framer-ewnaa0-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-Ri9ob .framer-yye3gy { bottom: 0px; flex: none; left: 0px; overflow: visible; pointer-events: none; position: absolute; right: 0px; top: 0px; }\",\".framer-Ri9ob .framer-1g3dbih-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: auto; z-index: 9; }\",\".framer-Ri9ob.framer-v-1s60e3o.framer-57jk1j { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 592\n * @framerIntrinsicWidth 1052\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"iPiCO81Gn\":{\"layout\":[\"fixed\",\"fixed\"]},\"EpRXRohS4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"UOzbU_ivP\":\"vimeoURL\",\"EbnF0RpmW\":\"radius\",\"KqlvaerX6\":\"playSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMN3Kq19sc=withCSS(Component,css,\"framer-Ri9ob\");export default FramerMN3Kq19sc;FramerMN3Kq19sc.displayName=\"VideoPlayerVimeo\";FramerMN3Kq19sc.defaultProps={height:592,width:1052};addPropertyControls(FramerMN3Kq19sc,{variant:{options:[\"BSc3J4xdW\",\"iPiCO81Gn\"],optionTitles:[\"VideoPause\",\"VideoPlay\"],title:\"Variant\",type:ControlType.Enum},UOzbU_ivP:{defaultValue:\"https://vimeo.com/642263700\",placeholder:\"Copy paste your Vimeo link here\",title:\"Vimeo URL\",type:ControlType.String},EbnF0RpmW:{defaultValue:\"0px\",title:\"Radius\",type:ControlType.BorderRadius},KqlvaerX6:(PlayButtonControls===null||PlayButtonControls===void 0?void 0:PlayButtonControls[\"variant\"])&&{...PlayButtonControls[\"variant\"],defaultValue:\"U5DvjL1i9\",description:undefined,hidden:undefined,title:\"Play Size\"}});addFonts(FramerMN3Kq19sc,[{explicitInter:true,fonts:[]},...VimeoFonts,...PlayButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMN3Kq19sc\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iPiCO81Gn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EpRXRohS4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1052\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"592\",\"framerVariables\":\"{\\\"UOzbU_ivP\\\":\\\"vimeoURL\\\",\\\"EbnF0RpmW\\\":\\\"radius\\\",\\\"KqlvaerX6\\\":\\\"playSize\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MN3Kq19sc.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/NBALiaDCzea5PgwL7i9q/wAFaVcX35LGRgNT1ue8u/BGhF81FGi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KlSeGx4GZVkoaUomUee3/oBYk6YVoCre76OMkcyxQ/VnJm24UTZ.js\";const serializationHash=\"framer-VDZ7b\";const variantClassNames={O6OcgGxWQ:\"framer-v-1yo33eh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,name1,role,width,...props})=>{var _ref,_ref1,_ref2;return{...props,RoFyvfQkS:(_ref=name1!==null&&name1!==void 0?name1:props.RoFyvfQkS)!==null&&_ref!==void 0?_ref:\"Luuk\",V3IrghVVi:(_ref1=role!==null&&role!==void 0?role:props.V3IrghVVi)!==null&&_ref1!==void 0?_ref1:\"CEO & Founder\",xY3nKxXQP:(_ref2=image!==null&&image!==void 0?image:props.xY3nKxXQP)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/y1QXwqaLgOYHKDmK2rOM36sH2s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/y1QXwqaLgOYHKDmK2rOM36sH2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/y1QXwqaLgOYHKDmK2rOM36sH2s.png 1024w\"}};};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,xY3nKxXQP,V3IrghVVi,RoFyvfQkS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"O6OcgGxWQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",intrinsicHeight:294,intrinsicWidth:262,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:904,pixelWidth:806,positionX:\"left\",positionY:\"top\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/zBxaQZTfrgLl7k8q5TEhms3s14.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zBxaQZTfrgLl7k8q5TEhms3s14.png 806w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yo33eh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"O6OcgGxWQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(27px)\",WebkitBackdropFilter:\"blur(27px)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15qwyev\",layoutDependency:layoutDependency,layoutId:\"QbN778ALQ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||330.5)-60-347.2)/2+0+0)+0+0),sizes:\"219px\",...toResponsiveImage(xY3nKxXQP),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1h2f3kc\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"CTHswkWKW\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-152yhf5\",\"data-framer-name\":\"Group 1000004599\",layoutDependency:layoutDependency,layoutId:\"sg_TSNvkK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lstuvv\",\"data-styles-preset\":\"VnJm24UTZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(8837deg, rgb(161, 196, 255) 0%, rgb(24, 109, 248) 64.5%)\"},children:\"CEO & Founder\"})})}),className:\"framer-hfeqe5\",\"data-framer-name\":\"CEO & Founder\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QiGu7Q9fk\",style:{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\",\"--framer-paragraph-spacing\":\"0px\"},text:V3IrghVVi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1ook3j5\",\"data-styles-preset\":\"BGhF81FGi\",children:\"Luuk\"})}),className:\"framer-1l0oygj\",\"data-framer-name\":\"Luuk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fDlpuxOQa\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:RoFyvfQkS,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VDZ7b.framer-xoyvt4, .framer-VDZ7b .framer-xoyvt4 { display: block; }\",\".framer-VDZ7b.framer-1yo33eh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 283px; }\",\".framer-VDZ7b .framer-15qwyev { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-VDZ7b .framer-1h2f3kc { flex: none; height: 200px; position: relative; width: 219px; }\",\".framer-VDZ7b .framer-152yhf5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VDZ7b .framer-hfeqe5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 182px; word-break: break-word; word-wrap: break-word; }\",\".framer-VDZ7b .framer-1l0oygj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VDZ7b.framer-1yo33eh, .framer-VDZ7b .framer-15qwyev, .framer-VDZ7b .framer-152yhf5 { gap: 0px; } .framer-VDZ7b.framer-1yo33eh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VDZ7b.framer-1yo33eh > :first-child, .framer-VDZ7b .framer-15qwyev > :first-child, .framer-VDZ7b .framer-152yhf5 > :first-child { margin-top: 0px; } .framer-VDZ7b.framer-1yo33eh > :last-child, .framer-VDZ7b .framer-15qwyev > :last-child, .framer-VDZ7b .framer-152yhf5 > :last-child { margin-bottom: 0px; } .framer-VDZ7b .framer-15qwyev > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VDZ7b .framer-152yhf5 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 330.5\n * @framerIntrinsicWidth 283\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xY3nKxXQP\":\"image\",\"V3IrghVVi\":\"role\",\"RoFyvfQkS\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWJ_Ej4yH9=withCSS(Component,css,\"framer-VDZ7b\");export default FramerWJ_Ej4yH9;FramerWJ_Ej4yH9.displayName=\"Team Card\";FramerWJ_Ej4yH9.defaultProps={height:330.5,width:283};addPropertyControls(FramerWJ_Ej4yH9,{xY3nKxXQP:{__defaultAssetReference:\"data:framer/asset-reference,y1QXwqaLgOYHKDmK2rOM36sH2s.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},V3IrghVVi:{defaultValue:\"CEO & Founder\",displayTextArea:true,title:\"Role\",type:ControlType.String},RoFyvfQkS:{defaultValue:\"Luuk\",displayTextArea:true,title:\"Name\",type:ControlType.String}});addFonts(FramerWJ_Ej4yH9,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWJ_Ej4yH9\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"330.5\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"283\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"xY3nKxXQP\\\":\\\"image\\\",\\\"V3IrghVVi\\\":\\\"role\\\",\\\"RoFyvfQkS\\\":\\\"name1\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/d9ZONLqTB9uCj5kbWKll/Globe.js\";import Accordion from\"#framer/local/canvasComponent/aZmkgJAN2/aZmkgJAN2.js\";import Circular from\"#framer/local/canvasComponent/bCGbR42VQ/bCGbR42VQ.js\";import HeroComp2 from\"#framer/local/canvasComponent/cCbmF4EfC/cCbmF4EfC.js\";import Cursor from\"#framer/local/canvasComponent/CUAOoVGk2/CUAOoVGk2.js\";import CardWorks2 from\"#framer/local/canvasComponent/DIHVrLOZq/DIHVrLOZq.js\";import ButtonDefault from\"#framer/local/canvasComponent/fEMkYOVCD/fEMkYOVCD.js\";import AboutSection from\"#framer/local/canvasComponent/g4M4YozXE/g4M4YozXE.js\";import CardWorks1 from\"#framer/local/canvasComponent/g8UEJEgtl/g8UEJEgtl.js\";import Footer from\"#framer/local/canvasComponent/guMYC8K6d/guMYC8K6d.js\";import HeroComp3 from\"#framer/local/canvasComponent/hGnHpVxac/hGnHpVxac.js\";import CardWorks3 from\"#framer/local/canvasComponent/HORUIDMWP/HORUIDMWP.js\";import HeroComp4 from\"#framer/local/canvasComponent/i_z0Uey7b/i_z0Uey7b.js\";import TestimonialSection from\"#framer/local/canvasComponent/jZR8ms2My/jZR8ms2My.js\";import VideoPlayerVimeo from\"#framer/local/canvasComponent/MN3Kq19sc/MN3Kq19sc.js\";import HeroComp1 from\"#framer/local/canvasComponent/MwNEHoJ_M/MwNEHoJ_M.js\";import LocationTag from\"#framer/local/canvasComponent/qwAbz16hP/qwAbz16hP.js\";import TeamCard from\"#framer/local/canvasComponent/WJ_Ej4yH9/WJ_Ej4yH9.js\";import Navbar from\"#framer/local/canvasComponent/yvRepLCGi/yvRepLCGi.js\";import*as sharedStyle2 from\"#framer/local/css/b9iObomCN/b9iObomCN.js\";import*as sharedStyle3 from\"#framer/local/css/BGhF81FGi/BGhF81FGi.js\";import*as sharedStyle1 from\"#framer/local/css/eS9z7tUN6/eS9z7tUN6.js\";import*as sharedStyle from\"#framer/local/css/pTRwMpAhn/pTRwMpAhn.js\";import metadataProvider from\"#framer/local/webPageMetadata/OLb8_0CQr/OLb8_0CQr.js\";const NavbarFonts=getFonts(Navbar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonDefaultFonts=getFonts(ButtonDefault);const HeroComp1Fonts=getFonts(HeroComp1);const HeroComp3Fonts=getFonts(HeroComp3);const HeroComp4Fonts=getFonts(HeroComp4);const VideoPlayerVimeoFonts=getFonts(VideoPlayerVimeo);const HeroComp2Fonts=getFonts(HeroComp2);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const AboutSectionFonts=getFonts(AboutSection);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const CardWorks1Fonts=getFonts(CardWorks1);const CardWorks2Fonts=getFonts(CardWorks2);const CardWorks3Fonts=getFonts(CardWorks3);const ImageWithFX=withFX(Image);const CircularFonts=getFonts(Circular);const TestimonialSectionFonts=getFonts(TestimonialSection);const TeamCardFonts=getFonts(TeamCard);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const AccordionFonts=getFonts(Accordion);const GlobeFonts=getFonts(Globe);const LocationTagFonts=getFonts(LocationTag);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={MmUs0dCFf:\"(min-width: 1200px) and (max-width: 1439px)\",mUrBVyLtp:\"(min-width: 1440px)\",RuaE8c7Bl:\"(max-width: 809px)\",zmWWTKHAC:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-s2ANx\";const variantClassNames={MmUs0dCFf:\"framer-v-p7k5n\",mUrBVyLtp:\"framer-v-1bumiad\",RuaE8c7Bl:\"framer-v-16iwrlm\",zmWWTKHAC:\"framer-v-i8wxrf\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition1={damping:60,delay:.6,mass:3.4,stiffness:320,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transition2={damping:60,delay:.7,mass:3.4,stiffness:320,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition3={damping:60,delay:.8,mass:3.4,stiffness:320,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:60,delay:.9,mass:3.4,stiffness:320,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:60,delay:1,mass:3.4,stiffness:320,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:60,delay:1.3,mass:3.4,stiffness:320,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition7={damping:60,delay:1.4,mass:3.4,stiffness:320,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:60,delay:1.6,mass:3.4,stiffness:320,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0};const transition9={damping:60,delay:1.2,mass:3.4,stiffness:320,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={damping:60,delay:1.5,mass:3.4,stiffness:320,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20};const transition11={damping:60,delay:.2,mass:3.4,stiffness:320,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:-20};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition12={damping:60,delay:.4,mass:3.4,stiffness:320,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:40};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:40};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:-40};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:-40};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:40};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-40};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:-40,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Small\":\"MmUs0dCFf\",Desktop:\"mUrBVyLtp\",Phone:\"RuaE8c7Bl\",Tablet:\"zmWWTKHAC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mUrBVyLtp\"};};const transition13={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const cursor={alignment:\"center\",component:Cursor,offset:{x:10,y:20},placement:\"right\",transition:transition13,variant:\"CPI0HoNUa\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"zmWWTKHAC\",\"RuaE8c7Bl\"].includes(baseVariant))return true;return false;};const elementId=useRouteElementId(\"ChshPUWBJ\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"RuaE8c7Bl\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"RuaE8c7Bl\")return false;return true;};const elementId1=useRouteElementId(\"m6LuwbGcR\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"PIpIGRS_P\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"eyyzsclyW\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"tdkJN1cuQ\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"srBiIGKnz\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"eoiOrLJ1u\");const ref8=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({\"10t8ap7\":cursor});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"mUrBVyLtp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-9dad9c20-e130-4cac-9799-d96e91d32c34, rgb(0, 17, 69)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1bumiad\",className),\"data-framer-cursor\":\"10t8ap7\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11cgb2d\",\"data-framer-name\":\"Page background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-1462),pixelHeight:1961,pixelWidth:1961,sizes:\"562px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-1159),pixelHeight:1961,pixelWidth:1961,sizes:\"899px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"},className:\"framer-18qiquo\",\"data-framer-name\":\"Layer blurr footer\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240.25,intrinsicWidth:510,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:961,pixelWidth:2040,sizes:`calc(${componentViewport?.width||\"100vw\"} + 130px)`,src:\"https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png 2040w\"},transformTemplate:undefined},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240.25,intrinsicWidth:510,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:961,pixelWidth:2040,sizes:\"790px\",src:\"https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png 2040w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:240.25,intrinsicWidth:510,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:961,pixelWidth:2040,sizes:\"1284px\",src:\"https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wd4PXfNDi2sZugTuUnUdIXpOry0.png 2040w\"},className:\"framer-39icx0\",\"data-framer-name\":\"Elipse hero light\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322.75,intrinsicWidth:882.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1291,pixelWidth:3530,sizes:`calc(${componentViewport?.width||\"100vw\"} + 818px)`,src:\"https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png 3530w\"}},RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322.75,intrinsicWidth:882.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1291,pixelWidth:3530,sizes:`calc(${componentViewport?.width||\"100vw\"} + 362px)`,src:\"https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png 3530w\"}},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322.75,intrinsicWidth:882.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1291,pixelWidth:3530,sizes:`calc(${componentViewport?.width||\"100vw\"} + 819px)`,src:\"https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png 3530w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322.75,intrinsicWidth:882.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1291,pixelWidth:3530,sizes:`calc(${componentViewport?.width||\"100vw\"} + 310px)`,src:\"https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EDqZcNCMeJC6pKdl4KOYoOGifh0.png 3530w\"},className:\"framer-1pk2lc\",\"data-framer-name\":\"W's\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:235,intrinsicWidth:360.75,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-216),pixelHeight:940,pixelWidth:1443,sizes:`calc(${componentViewport?.width||\"100vw\"} + 185px)`,src:\"https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=512 512w,https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png 1443w\"}},RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:235,intrinsicWidth:360.75,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5.5),pixelHeight:940,pixelWidth:1443,sizes:`calc(${componentViewport?.width||\"100vw\"} + 252px)`,src:\"https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=512 512w,https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png 1443w\"}},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:235,intrinsicWidth:360.75,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5.5),pixelHeight:940,pixelWidth:1443,sizes:`calc(${componentViewport?.width||\"100vw\"} + 194px)`,src:\"https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=512 512w,https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png 1443w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:235,intrinsicWidth:360.75,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-216),pixelHeight:940,pixelWidth:1443,sizes:`calc(${componentViewport?.width||\"100vw\"} + 6px)`,src:\"https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=512 512w,https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dDi1eY5zSjlpzdPIucLFF96fgdY.png 1443w\"},className:\"framer-1woo8t1\",\"data-framer-name\":\"Ellipse 2024 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+356),pixelHeight:1440,pixelWidth:1440,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.2513)`,src:\"https://framerusercontent.com/images/7Kb56wJ8ltdgmIjbI7OqDNHhM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7Kb56wJ8ltdgmIjbI7OqDNHhM.png?scale-down-to=512 512w,https://framerusercontent.com/images/7Kb56wJ8ltdgmIjbI7OqDNHhM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7Kb56wJ8ltdgmIjbI7OqDNHhM.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+339),pixelHeight:1440,pixelWidth:1440,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7Kb56wJ8ltdgmIjbI7OqDNHhM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7Kb56wJ8ltdgmIjbI7OqDNHhM.png?scale-down-to=512 512w,https://framerusercontent.com/images/7Kb56wJ8ltdgmIjbI7OqDNHhM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7Kb56wJ8ltdgmIjbI7OqDNHhM.png 1440w\"},className:\"framer-dvum7v\",\"data-framer-name\":\"Elipse hero behind video\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:301.25,intrinsicWidth:301.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1965),pixelHeight:1205,pixelWidth:1206,sizes:\"708px\",src:\"https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png 1206w\"}},RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:301.25,intrinsicWidth:301.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2544.5),pixelHeight:1205,pixelWidth:1206,sizes:\"591px\",src:\"https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png 1206w\"}},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:301.25,intrinsicWidth:301.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2515),pixelHeight:1205,pixelWidth:1206,sizes:\"730px\",src:\"https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png 1206w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:301.25,intrinsicWidth:301.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2101.3203125),pixelHeight:1205,pixelWidth:1206,sizes:\"764px\",src:\"https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FWZl6dxWWVHNjN9QuudIBV1U8Y.png 1206w\"},className:\"framer-7tomrt\",\"data-framer-name\":\"Blurr bg\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19sbtbd\",\"data-framer-name\":\"Dome with W\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cqgn4a\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:470.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2030+1440-1287+1),pixelHeight:1266,pixelWidth:1882,sizes:\"1618px\",src:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png 1882w\"}},RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:470.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2936+1206-1083+.5),pixelHeight:1266,pixelWidth:1882,sizes:`calc(${componentViewport?.width||\"100vw\"} + 849px)`,src:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png 1882w\"},transformTemplate:undefined},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:470.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1916+1440-1381+1),pixelHeight:1266,pixelWidth:1882,sizes:\"1618px\",src:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png 1882w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:470.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2100+1440-1265+1),pixelHeight:1266,pixelWidth:1882,sizes:\"1618px\",src:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png 1882w\"},className:\"framer-qitgd7\",\"data-framer-name\":\"W 3\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-oed0lv\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66pdwk\",\"data-framer-name\":\"Dome with W Footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bele6p\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:470.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7234.5+1449.5-876+1),pixelHeight:1266,pixelWidth:1882,sizes:\"1618px\",src:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png 1882w\"}},RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:470.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-1493+993-828+.5),pixelHeight:1266,pixelWidth:1882,sizes:`calc(${componentViewport?.width||\"100vw\"} + 939px)`,src:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png 1882w\"},transformTemplate:undefined},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:470.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9716+924-876+.7500000000002274),pixelHeight:1266,pixelWidth:1882,sizes:`calc(${componentViewport?.width||\"100vw\"} + 1327px)`,src:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png 1882w\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:316.5,intrinsicWidth:470.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7501+1254-840+1),pixelHeight:1266,pixelWidth:1882,sizes:\"1618px\",src:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NNMJLy70X4zoYeOcWST3Tw4RfcU.png 1882w\"},className:\"framer-xsb0of\",\"data-framer-name\":\"W 3\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wwwcza\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1awtfg1 hidden-1bumiad hidden-p7k5n\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-5047),pixelHeight:1961,pixelWidth:1961,sizes:\"390px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-4625),pixelHeight:1961,pixelWidth:1961,sizes:\"759px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"},className:\"framer-z7hesu\",\"data-framer-name\":\"Layer blurr Testimonials\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-4123.5),pixelHeight:1961,pixelWidth:1961,sizes:\"651px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"}},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-3533),pixelHeight:1961,pixelWidth:1961,sizes:\"733px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-3429),pixelHeight:1961,pixelWidth:1961,sizes:\"899px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"},className:\"framer-1uy7rba\",\"data-framer-name\":\"Layer blurr team\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-4123.5),pixelHeight:1961,pixelWidth:1961,sizes:\"651px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"},transformTemplate:undefined},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-3533),pixelHeight:1961,pixelWidth:1961,sizes:\"733px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490.25,intrinsicWidth:490.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9163-2597),pixelHeight:1961,pixelWidth:1961,sizes:\"1231px\",src:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=512 512w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oazD3IdiZqnJyjrTXsWxDGOSCY.png 1961w\"},className:\"framer-1pw0049\",\"data-framer-name\":\"Layer blurr FAQ\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-hc9303-container\",\"data-framer-appear-id\":\"hc9303\",initial:animation1,layoutScroll:true,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{variant:\"b79Qf6QHm\"},RuaE8c7Bl:{variant:\"frFC6cXKT\"},zmWWTKHAC:{variant:\"XTElTZX6R\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"cPqNBxIf_\",layoutId:\"cPqNBxIf_\",style:{width:\"100%\"},variant:\"u0Aiw2zGz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1uckbjz\",\"data-framer-name\":\"Hero Section\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ba9fqn\",\"data-framer-name\":\"Hero Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0a9lz\",\"data-framer-name\":\"H1 + Sub + CTA\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1865s2k\",\"data-styles-preset\":\"pTRwMpAhn\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, rgba(255, 255, 255, 0.6) 0%, rgb(255, 255, 255) 52.2523%, rgba(255, 255, 255, 0.6) 95%)\"},children:\"The Most Transparent Affiliate Network in the Industry\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1865s2k\",\"data-styles-preset\":\"pTRwMpAhn\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, rgba(255, 255, 255, 0.6) 19%, var(--token-7a43f17f-968d-448f-867c-736543a9a47c, rgb(255, 255, 255)) 42.7928%, rgba(255, 255, 255, 0.7) 80%)\"},children:\"The Most Transparent Affiliate \"})}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1865s2k\",\"data-styles-preset\":\"pTRwMpAhn\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(270deg, rgba(255, 255, 255, 0.6) 19%, var(--token-7a43f17f-968d-448f-867c-736543a9a47c, rgb(255, 255, 255)) 42.7928%, rgba(255, 255, 255, 0.7) 80%)\"},children:\"Network in the Industry\"})})]}),className:\"framer-cap21\",\"data-framer-appear-id\":\"cap21\",fonts:[\"Inter\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-65e6c126-17f7-484a-8ca5-5516b746d38d, rgb(127, 136, 162))\"},children:\"Unlock Your Potential as a Forex Affiliate Marketer \u2013 Access Top Brokers and Cutting-edge Tools!\"})}),className:\"framer-ncyr0x\",\"data-framer-appear-id\":\"ncyr0x\",fonts:[\"Inter\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uqv9cr\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+0+0+0+0+0+224+1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"150px\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-b6kbdb-container\",\"data-framer-appear-id\":\"b6kbdb\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{MiM25CTG9:resolvedLinks[3]},RuaE8c7Bl:{MiM25CTG9:resolvedLinks[2]},zmWWTKHAC:{MiM25CTG9:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonDefault,{height:\"100%\",id:\"qKLEXn_gL\",layoutId:\"qKLEXn_gL\",MiM25CTG9:resolvedLinks[0],PNHaHyi21:\"Sign up now\",style:{height:\"100%\",width:\"100%\"},variant:\"Fiw1pFniJ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":PIpIGRS_P\",webPageId:\"OLb8_0CQr\"},implicitPathVariables:undefined},{href:{hash:\":PIpIGRS_P\",webPageId:\"OLb8_0CQr\"},implicitPathVariables:undefined},{href:{hash:\":PIpIGRS_P\",webPageId:\"OLb8_0CQr\"},implicitPathVariables:undefined},{href:{hash:\":PIpIGRS_P\",webPageId:\"OLb8_0CQr\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+0+0+0+0+0+224+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-12k2mu-container\",\"data-framer-appear-id\":\"12k2mu\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{MiM25CTG9:resolvedLinks1[3]},RuaE8c7Bl:{MiM25CTG9:resolvedLinks1[2]},zmWWTKHAC:{MiM25CTG9:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonDefault,{height:\"100%\",id:\"VjXDprsMA\",layoutId:\"VjXDprsMA\",MiM25CTG9:resolvedLinks1[0],PNHaHyi21:\"Learn More\",variant:\"VyXAywgDV\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y2ul\",\"data-framer-name\":\"VSL\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7kag50 hidden-1bumiad hidden-i8wxrf hidden-p7k5n\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+0+0+0+321+0+219+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1wj3rmx-container\",\"data-framer-appear-id\":\"1wj3rmx\",initial:animation8,optimized:true,children:/*#__PURE__*/_jsx(HeroComp1,{height:\"100%\",id:\"rEEIHPdIl\",layoutId:\"rEEIHPdIl\",variant:\"LTUoYgUOw\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkbuq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{height:88,y:(componentViewport?.y||0)+91+0+0+0+321+0+219+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-x43usd-container\",\"data-framer-appear-id\":\"x43usd\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(HeroComp3,{height:\"100%\",id:\"FvApI6MTe\",layoutId:\"FvApI6MTe\",style:{height:\"100%\",width:\"100%\"},variant:\"oFdQJmBuS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{height:88,y:(componentViewport?.y||0)+91+0+0+0+321+0+219+0+0+98}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-g94l0o-container\",\"data-framer-appear-id\":\"g94l0o\",initial:animation11,optimized:true,children:/*#__PURE__*/_jsx(HeroComp4,{height:\"100%\",id:\"J0GdFXrDr\",layoutId:\"J0GdFXrDr\",style:{height:\"100%\",width:\"100%\"},variant:\"mnsEpGseX\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:158.25,intrinsicWidth:271.25,pixelHeight:633,pixelWidth:1085,sizes:\"939px\",src:\"https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png 1085w\"}},RuaE8c7Bl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:158.25,intrinsicWidth:271.25,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+91+0+0+0+321+0+0),pixelHeight:633,pixelWidth:1085,sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 34px)`,src:\"https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png 1085w\"}},zmWWTKHAC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:158.25,intrinsicWidth:271.25,pixelHeight:633,pixelWidth:1085,sizes:\"749px\",src:\"https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png 1085w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation12,background:{alt:\"\",fit:\"fill\",intrinsicHeight:158.25,intrinsicWidth:271.25,pixelHeight:633,pixelWidth:1085,sizes:\"1121px\",src:\"https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ni6EiFGk3ZRWkzwXBRTPkvXtpjY.png 1085w\"},className:\"framer-13tcovx\",\"data-framer-appear-id\":\"13tcovx\",\"data-framer-name\":\"Video bg\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.75,intrinsicWidth:255.5},className:\"framer-c2qvho\",\"data-framer-name\":\"Dashboard 11\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+0+0+0+321+0+0+-192.99999999999994+0},zmWWTKHAC:{height:397,width:\"705.4797px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:595,width:\"1057.3311px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-50842s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{EbnF0RpmW:\"10px\",KqlvaerX6:\"OxmSy3TgA\"}},children:/*#__PURE__*/_jsx(VideoPlayerVimeo,{EbnF0RpmW:\"24px\",height:\"100%\",id:\"jdfSLu2LA\",KqlvaerX6:\"U5DvjL1i9\",layoutId:\"jdfSLu2LA\",style:{height:\"100%\",width:\"100%\"},UOzbU_ivP:\"https://vimeo.com/1057252600?share=copy\",variant:\"BSc3J4xdW\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vqpz89 hidden-16iwrlm\",\"data-framer-name\":\"Group 1000004470\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1laglpk-container\",\"data-framer-appear-id\":\"1laglpk\",initial:animation11,optimized:true,children:/*#__PURE__*/_jsx(HeroComp4,{height:\"100%\",id:\"tTQ2FCjdX\",layoutId:\"tTQ2FCjdX\",variant:\"jEwhovqCK\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1dcpc2e-container\",\"data-framer-appear-id\":\"1dcpc2e\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(HeroComp3,{height:\"100%\",id:\"xDC4txoEB\",layoutId:\"xDC4txoEB\",variant:\"XNDO_4X5l\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1ces4l-container hidden-16iwrlm\",\"data-framer-appear-id\":\"1ces4l\",initial:animation8,optimized:true,children:/*#__PURE__*/_jsx(HeroComp1,{height:\"100%\",id:\"jRrmHRrRH\",layoutId:\"jRrmHRrRH\",variant:\"wO1_XACIt\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:123,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmWWTKHAC:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation13,className:\"framer-4avbn1-container hidden-16iwrlm\",\"data-framer-appear-id\":\"4avbn1\",initial:animation3,optimized:true,transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(HeroComp2,{height:\"100%\",id:\"VnYZwuowd\",layoutId:\"VnYZwuowd\",variant:\"Oqh_fTkr3\",width:\"100%\"})})})})]})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+826}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:946,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8mohj1-container\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{variant:\"CimKZvyRp\"},RuaE8c7Bl:{variant:\"ETAOqbHjU\"},zmWWTKHAC:{variant:\"fcP7M7E7Z\"}},children:/*#__PURE__*/_jsx(AboutSection,{height:\"100%\",id:\"m6LuwbGcR\",layoutId:\"m6LuwbGcR\",style:{width:\"100%\"},variant:\"pPLJ4ml2O\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-s3eesp\",\"data-framer-name\":\"How its works Section\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17pg9vv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xo68tj\",\"data-framer-name\":\"Label + h2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cfseu1\",\"data-border\":true,\"data-framer-name\":\"How it works label\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jayapy\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"24\" viewBox=\"0 0 25 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.67071 3C9.08254 1.83481 10.1938 1 11.5 1H13.5C14.8062 1 15.9175 1.83481 16.3293 3H21.5C22.0523 3 22.5 3.44772 22.5 4V20C22.5 20.5523 22.0523 21 21.5 21H3.5C2.94772 21 2.5 20.5523 2.5 20V4C2.5 3.44772 2.94772 3 3.5 3H8.67071ZM4.5 5V19H20.5V5H16.3293C15.9175 6.16519 14.8062 7 13.5 7H11.5C10.1938 7 9.08254 6.16519 8.67071 5H4.5ZM11.5 3C10.9477 3 10.5 3.44772 10.5 4C10.5 4.55228 10.9477 5 11.5 5H13.5C14.0523 5 14.5 4.55228 14.5 4C14.5 3.44772 14.0523 3 13.5 3H11.5ZM10.5 9L15.5 12L10.5 15V9Z\" fill=\"url(#paint0_linear_0_30674)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_30674\" x1=\"12.5\" y1=\"1\" x2=\"12.5\" y2=\"21\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"How it works\"})}),className:\"framer-1oylbmy\",\"data-framer-name\":\"How it works\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\"},children:\"How to Get Started\"})}),className:\"framer-6b0cvs\",\"data-framer-name\":\"How to Get Started\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wyb3vt\",\"data-framer-name\":\"Frame 1000005599\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.87)`,y:(componentViewport?.y||0)+91+1772+120+30+162+0+0},zmWWTKHAC:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94), min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94) / 2)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:475,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1160px) - 58px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vuaoig-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{variant:\"zU3HTezdO\"}},children:/*#__PURE__*/_jsx(CardWorks1,{height:\"100%\",id:\"lXmfaI497\",layoutId:\"lXmfaI497\",style:{width:\"100%\"},variant:\"oMnjGNaBC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.87)`,y:(componentViewport?.y||0)+91+1772+120+30+162+0+504},zmWWTKHAC:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94), min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94) / 2)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:475,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1160px) - 58px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-128oqgs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{variant:\"gPvm7O9PF\"},zmWWTKHAC:{variant:\"gPvm7O9PF\"}},children:/*#__PURE__*/_jsx(CardWorks2,{height:\"100%\",id:\"knmM5y69H\",layoutId:\"knmM5y69H\",style:{width:\"100%\"},variant:\"uaQJYvOAY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.87)`,y:(componentViewport?.y||0)+91+1772+120+30+162+0+1008},zmWWTKHAC:{width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94), min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94) / 2)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:475,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1160px) - 58px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yq7b3x-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{style:{width:\"100%\"},variant:\"S5rxOJ7y1\"},zmWWTKHAC:{style:{maxHeight:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardWorks3,{height:\"100%\",id:\"LIO9GaB5Q\",layoutId:\"LIO9GaB5Q\",style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},variant:\"B7GB1zjhs\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-r6eu57\",\"data-framer-name\":\"Commission Section\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wcxsc7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwa5lz\",\"data-framer-name\":\"Label + h2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rif59h\",\"data-border\":true,\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1quozlh\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.67493 4.25667C9.60294 1.03828 15.4084 1.26236 19.075 4.92893C22.9802 8.83418 22.9802 15.1658 19.075 19.0711C15.1697 22.9763 8.83808 22.9763 4.93284 19.0711C2.40834 16.5466 1.51578 13.0081 2.25513 9.76666L2.33177 9.45394L4.2662 9.96315C3.56869 12.623 4.26231 15.5721 6.34705 17.6569C9.47124 20.781 14.5365 20.781 17.6607 17.6569C20.7849 14.5327 20.7849 9.46734 17.6607 6.34315C14.8431 3.5255 10.4465 3.24903 7.31908 5.51375L7.09788 5.67983L8.11482 6.6967L3.51862 7.75736L4.57928 3.16117L5.67493 4.25667ZM13.0039 6V8H15.5039V10H10.0039C9.72776 10 9.5039 10.2239 9.5039 10.5C9.5039 10.7455 9.68078 10.9496 9.91403 10.9919L10.0039 11H14.0039C15.3846 11 16.5039 12.1193 16.5039 13.5C16.5039 14.8807 15.3846 16 14.0039 16H13.0039V18H11.0039V16H8.5039V14H14.0039C14.28 14 14.5039 13.7761 14.5039 13.5C14.5039 13.2545 14.327 13.0504 14.0938 13.0081L14.0039 13H10.0039C8.62319 13 7.5039 11.8807 7.5039 10.5C7.5039 9.11929 8.62319 8 10.0039 8H11.0039V6H13.0039Z\" fill=\"url(#paint0_linear_0_42151)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42151\" x1=\"12.0039\" y1=\"2\" x2=\"12.0039\" y2=\"22\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(8837deg, rgb(161, 196, 255) 0%, rgb(24, 109, 248) 64.5%)\"},children:\"Commission and payouts\"})})}),className:\"framer-h24jkb\",\"data-framer-name\":\"Commission and payouts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Commission Structure and Payment\"})})},zmWWTKHAC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Commission Structure and Payment\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",children:\"Our Commission Structure and Payment\"})}),className:\"framer-mc5fwd\",\"data-framer-name\":\"Our Commission Structure and Payment\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Whether you\u2019re a seasoned Affiliate marketer or just starting your journey, Wealth Wave Affiliation offers a wealth of benefits. As a member, you'll enjoy competitive commission rates and exclusive offers which are performance-based.\"})})},zmWWTKHAC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Whether you\u2019re a seasoned Affiliate marketer or just starting your journey, Wealth Wave Affiliation offers a wealth of benefits. As a member, you'll enjoy competitive commission rates and exclusive offers which are performance-based.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"Whether you\u2019re a seasoned Affiliate marketer or just starting your journey, Wealth Wave Affiliation offers a wealth of benefits. As a member, you'll enjoy competitive commission rates and exclusive offers which are performance-based.\"})}),className:\"framer-uk9p2m\",\"data-framer-name\":\"Whether you\u2019re a seasoned Affiliate marketer or just starting your journey, Wealth Wave Affiliation offers a wealth of benefits. As a member, you'll enjoy competitive commission rates and exclusive offers which are performance-based.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-chnazl\",\"data-framer-name\":\"Content cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ubsts6\",\"data-framer-name\":\"Frame 1000004439\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+91+3567+120+0+286+0+0+0+0),pixelHeight:690,pixelWidth:740,positionX:\"left\",positionY:\"top\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.87)`,src:\"https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png\",srcSet:\"https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png 740w\"}},zmWWTKHAC:{background:{alt:\"\",fit:\"stretch\",pixelHeight:690,pixelWidth:1140,positionX:\"left\",positionY:\"top\",sizes:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94), min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94) * 0.8)`,src:\"https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png\",srcSet:\"https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png 1140w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",pixelHeight:690,pixelWidth:1140,positionX:\"left\",positionY:\"top\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1160px)`,src:\"https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png\",srcSet:\"https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png 1140w\"},className:\"framer-17zfquq\",\"data-framer-name\":\"Group 1000005436\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-467qvh\",\"data-framer-name\":\"Frame 1000005453\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8dfr2\",\"data-framer-name\":\"Frame 1000005298\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ook3j5\",\"data-styles-preset\":\"BGhF81FGi\",children:\"Commission\"})}),className:\"framer-1iy4ydt\",\"data-framer-name\":\"Commission\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(127, 136, 162)\"},children:[\"Each Affiliate who signs up with our network will receive a custom deal tailored to their specific traffic. This personalized deal can potentially reach\\xa0up to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$800 CPA\"}),\"\\xa0(Cost Per Acquisition).\\xa0\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(127, 136, 162)\"},children:[\"Each Affiliate who signs up with our network will receive a custom deal tailored to their specific traffic. This personalized deal can potentially reach\\xa0up to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$800 CPA\"}),\"\\xa0(Cost Per Acquisition).\\xa0\"]})}),className:\"framer-1x9s255\",\"data-framer-name\":\"Each Affiliate who signs up with our network will receive a custom deal tailored to their specific traffic. This personalized deal can potentially reach\\xa0up to $800 CPA\\xa0(Cost Per Acquisition).\\xa0\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oa1s2z\",\"data-framer-name\":\"Svg Design (3)\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:60,style:{rotate:31},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 60 40\"><path fill=\"#478BEB\" fill-rule=\"evenodd\" d=\"m38.383 34.386 2.586 2.586a2 2 0 0 0 2.828 0l15.556-15.556a2 2 0 0 0 0-2.829L43.797 3.031a2 2 0 0 0-2.828 0l-2.586 2.586 12.97 12.97a2 2 0 0 1 0 2.829z\" clip-rule=\"evenodd\" opacity=\".2\"/><path fill=\"#478BEB\" fill-rule=\"evenodd\" d=\"m30.383 34.386 2.586 2.586a2 2 0 0 0 2.828 0l15.556-15.556a2 2 0 0 0 0-2.829L35.797 3.031a2 2 0 0 0-2.828 0l-2.586 2.586 12.97 12.97a2 2 0 0 1 0 2.829z\" clip-rule=\"evenodd\" opacity=\".4\"/><rect width=\"26\" height=\"26\" x=\"26.383\" y=\"1.617\" fill=\"#478BEB\" opacity=\".7\" rx=\"2\" transform=\"rotate(45 26.383 1.617)\"/><rect width=\"26\" height=\"26\" x=\"18.383\" y=\"1.617\" fill=\"#478BEB\" rx=\"2\" transform=\"rotate(45 18.383 1.617)\"/><mask id=\"b\" width=\"36\" height=\"36\" x=\"0\" y=\"2\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:alpha\"><rect width=\"25\" height=\"25\" x=\"18.383\" y=\"2.324\" stroke=\"#000\" rx=\"1.5\" transform=\"rotate(45 18.383 2.324)\"/></mask><g filter=\"url(#a)\" mask=\"url(#b)\" style=\"mix-blend-mode:overlay\"><ellipse cx=\"18.5\" cy=\"2\" fill=\"#B3B3B3\" rx=\"14.5\" ry=\"15\"/></g><mask id=\"d\" width=\"60\" height=\"36\" x=\"0\" y=\"2\" maskUnits=\"userSpaceOnUse\" style=\"mask-type:alpha\"><path fill=\"#42A9F3\" fill-rule=\"evenodd\" d=\"m32.97 36.972-2.585-2.586-2.586 2.586a2 2 0 0 1-2.829 0l-2.585-2.586-2.586 2.586a2 2 0 0 1-2.829 0L1.414 21.416a2 2 0 0 1 0-2.829L16.97 3.031a2 2 0 0 1 2.829 0l2.585 2.586L24.97 3.03a2 2 0 0 1 2.829 0l2.585 2.586L32.97 3.03a2 2 0 0 1 2.829 0l2.586 2.586L40.97 3.03a2 2 0 0 1 2.829 0l15.556 15.556a2 2 0 0 1 0 2.829L43.799 36.972a2 2 0 0 1-2.829 0l-2.585-2.586-2.586 2.586a2 2 0 0 1-2.829 0\" clip-rule=\"evenodd\"/></mask><g filter=\"url(#c)\" mask=\"url(#d)\" opacity=\".6\" style=\"mix-blend-mode:plus-lighter\"><ellipse cx=\"10\" cy=\"-8.5\" fill=\"#149CB7\" rx=\"32\" ry=\"22.5\"/></g><defs><filter id=\"a\" width=\"69\" height=\"70\" x=\"-16\" y=\"-33\" color-interpolation-filters=\"sRGB\" filterUnits=\"userSpaceOnUse\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur result=\"effect1_foregroundBlur_3162_4365\" stdDeviation=\"10\"/></filter><filter id=\"c\" width=\"92\" height=\"73\" x=\"-36\" y=\"-45\" color-interpolation-filters=\"sRGB\" filterUnits=\"userSpaceOnUse\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur result=\"effect1_foregroundBlur_3162_4365\" stdDeviation=\"7\"/></filter></defs></svg>',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:445,intrinsicWidth:377,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+91+3567+120+0+286+0+0+0+365),pixelHeight:690,pixelWidth:740,positionX:\"left\",positionY:\"top\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.87)`,src:\"https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png 740w\"}},zmWWTKHAC:{background:{alt:\"\",fit:\"stretch\",pixelHeight:690,pixelWidth:1140,positionX:\"left\",positionY:\"top\",sizes:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94), min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94) * 0.8)`,src:\"https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png\",srcSet:\"https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png 1140w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",pixelHeight:690,pixelWidth:1140,positionX:\"left\",positionY:\"top\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1160px)`,src:\"https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png\",srcSet:\"https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tTYVxRhea7QlKYENHqqS7SJ5e5E.png 1140w\"},className:\"framer-1a103e9\",\"data-framer-name\":\"Group 1000005436\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12x9uzh\",\"data-framer-name\":\"Frame 1000005453\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-npi8wo\",\"data-framer-name\":\"Frame 1000005298\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ook3j5\",\"data-styles-preset\":\"BGhF81FGi\",children:\"Reliable Payments\"})}),className:\"framer-38k2q0\",\"data-framer-name\":\"Commission\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(127, 136, 162)\"},children:[\"We prioritize timely and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:\"reliable payments\"}),\" to our Affiliates, ensuring that you can rely on a steady flow of income from your efforts. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:\"Our transparent payment schedule\"}),\" allows you to plan and manage your finances effectively.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(127, 136, 162)\"},children:[\"We prioritize timely and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:\"reliable payments\"}),\" to our Affiliates, ensuring that you can rely on a steady flow of income from your efforts. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(10, 10, 10))\"},children:\"Our transparent payment schedule\"}),\" allows you to plan and manage your finances effectively.\"]})}),className:\"framer-zeuzc4\",\"data-framer-name\":\"Each Affiliate who signs up with our network will receive a custom deal tailored to their specific traffic. This personalized deal can potentially reach\\xa0up to $800 CPA\\xa0(Cost Per Acquisition).\\xa0\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wi9b85\",\"data-framer-name\":\"Mask group payments\",fill:\"black\",intrinsicHeight:188,intrinsicWidth:216,svg:'<svg width=\"216\" height=\"188\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m67.618 106.785-37.932 17.148a6.936 6.936 0 0 1-9.18-3.464L3.358 82.537a6.938 6.938 0 0 1 3.464-9.18l37.932-17.148a6.938 6.938 0 0 1 9.18 3.464l17.148 37.932a6.938 6.938 0 0 1-3.464 9.18Z\" fill=\"#478BEB\"/><mask id=\"b\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"55\" width=\"70\" height=\"70\"><path d=\"m66.665 104.675-37.932 17.148a4.627 4.627 0 0 1-6.12-2.309L5.465 81.582a4.625 4.625 0 0 1 2.31-6.12l37.931-17.148a4.625 4.625 0 0 1 6.12 2.31l17.148 37.931a4.625 4.625 0 0 1-2.309 6.12Z\" stroke=\"#000\" stroke-width=\"4.625\"/></mask><g style=\"mix-blend-mode:overlay\" filter=\"url(#a)\" mask=\"url(#b)\"><path d=\"M3.098 115.647c25.605-11.576 36.978-41.716 25.403-67.32-11.575-25.605-41.715-36.978-67.32-25.403C-64.424 34.5-75.797 64.64-64.222 90.244c11.576 25.605 41.716 36.978 67.32 25.403Z\" fill=\"#B3B3B3\"/></g><path opacity=\".8\" d=\"M126.623 80.109 88.691 97.257a6.938 6.938 0 0 1-9.18-3.464L62.363 55.861a6.938 6.938 0 0 1 3.464-9.18l37.932-17.148a6.937 6.937 0 0 1 9.18 3.464l17.148 37.932a6.936 6.936 0 0 1-3.464 9.18Z\" fill=\"#478BEB\"/><path opacity=\".6\" d=\"m153.298 139.114-37.932 17.148a6.938 6.938 0 0 1-9.18-3.464l-17.148-37.932a6.937 6.937 0 0 1 3.464-9.18l37.931-17.148a6.94 6.94 0 0 1 9.18 3.464l17.149 37.932a6.942 6.942 0 0 1-3.464 9.18Zm32.33-85.68-37.932 17.148a6.937 6.937 0 0 1-9.18-3.464l-17.148-37.932a6.936 6.936 0 0 1 3.464-9.18l37.932-17.148a6.937 6.937 0 0 1 9.18 3.464l17.148 37.932a6.936 6.936 0 0 1-3.464 9.18Z\" fill=\"#478BEB\"/><path opacity=\".8\" d=\"M94.293 165.792 56.36 182.941a6.94 6.94 0 0 1-9.18-3.464l-17.148-37.932a6.94 6.94 0 0 1 3.464-9.18l37.931-17.148a6.94 6.94 0 0 1 9.18 3.464l17.149 37.931a6.94 6.94 0 0 1-3.464 9.18Z\" fill=\"#478BEB\"/><path opacity=\".6\" d=\"m120.967 224.796-37.931 17.148a6.94 6.94 0 0 1-9.18-3.464l-17.149-37.931a6.94 6.94 0 0 1 3.464-9.18l37.932-17.148a6.942 6.942 0 0 1 5.308-.17 6.942 6.942 0 0 1 3.872 3.633l17.148 37.932a6.942 6.942 0 0 1 .17 5.308 6.94 6.94 0 0 1-3.634 3.872Z\" fill=\"#478BEB\"/><path opacity=\".4\" d=\"m202.17 106.873-25.287 11.432a4.624 4.624 0 0 1-6.12-2.309L159.33 90.708a4.627 4.627 0 0 1 2.31-6.12l25.288-11.432a4.624 4.624 0 0 1 6.12 2.31l11.432 25.287a4.627 4.627 0 0 1-2.31 6.12Zm-30.425 89.895L146.457 208.2a4.626 4.626 0 0 1-6.12-2.31l-11.432-25.288a4.626 4.626 0 0 1 2.31-6.12l25.288-11.432a4.626 4.626 0 0 1 6.12 2.31l11.432 25.288a4.626 4.626 0 0 1-2.31 6.12Z\" fill=\"#478BEB\"/><path opacity=\".2\" d=\"m230.75 170.091-25.288 11.432a4.626 4.626 0 0 1-6.12-2.309l-11.432-25.288a4.624 4.624 0 0 1 2.31-6.12l25.288-11.432a4.622 4.622 0 0 1 6.12 2.309l11.432 25.288a4.627 4.627 0 0 1-2.31 6.12Z\" fill=\"#478BEB\"/><mask id=\"d\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"2\" y=\"2\" width=\"232\" height=\"241\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m67.618 106.792-37.932 17.149a6.94 6.94 0 0 1-9.18-3.464L3.358 82.545a6.938 6.938 0 0 1 3.464-9.18l37.932-17.148a6.938 6.938 0 0 1 9.18 3.464l17.148 37.931a6.938 6.938 0 0 1-3.464 9.18Zm59.005-26.674L88.691 97.266a6.938 6.938 0 0 1-9.18-3.464L62.363 55.87a6.938 6.938 0 0 1 3.464-9.18l37.932-17.148a6.938 6.938 0 0 1 9.18 3.464l17.148 37.932a6.936 6.936 0 0 1-3.464 9.18Zm-11.257 76.153 37.932-17.148a6.94 6.94 0 0 0 3.464-9.18l-17.148-37.932a6.937 6.937 0 0 0-9.18-3.464l-37.932 17.148a6.937 6.937 0 0 0-3.464 9.18l17.148 37.932a6.935 6.935 0 0 0 9.18 3.464Zm70.262-102.828-37.932 17.148a6.937 6.937 0 0 1-9.18-3.464l-17.148-37.932a6.936 6.936 0 0 1 3.464-9.18l37.932-17.148a6.94 6.94 0 0 1 9.18 3.464l17.148 37.932a6.936 6.936 0 0 1-3.464 9.18ZM56.361 182.946l37.932-17.148a6.937 6.937 0 0 0 3.464-9.18l-17.148-37.932a6.935 6.935 0 0 0-9.18-3.464L33.496 132.37a6.939 6.939 0 0 0-3.464 9.18l17.148 37.932a6.941 6.941 0 0 0 9.18 3.464Zm64.606 41.857-37.932 17.148a6.936 6.936 0 0 1-9.18-3.464l-17.148-37.932a6.937 6.937 0 0 1 3.464-9.18l37.932-17.148a6.937 6.937 0 0 1 9.18 3.464l17.148 37.932a6.94 6.94 0 0 1-3.464 9.18Zm55.915-106.494 25.288-11.432a4.623 4.623 0 0 0 2.31-6.12l-11.432-25.288a4.627 4.627 0 0 0-6.12-2.31L161.64 84.593a4.624 4.624 0 0 0-2.31 6.12L170.762 116a4.63 4.63 0 0 0 6.12 2.309Zm-5.137 78.462-25.288 11.433a4.626 4.626 0 0 1-6.12-2.31l-11.432-25.288a4.627 4.627 0 0 1 2.31-6.12l25.288-11.432a4.626 4.626 0 0 1 6.119 2.31l11.433 25.288a4.626 4.626 0 0 1-2.31 6.119Zm33.717-15.242 25.288-11.432a4.627 4.627 0 0 0 2.31-6.12l-11.432-25.288a4.626 4.626 0 0 0-6.12-2.31l-25.288 11.433a4.624 4.624 0 0 0-2.31 6.12l11.432 25.287a4.628 4.628 0 0 0 6.12 2.31Z\" fill=\"#42A9F3\"/></mask><g opacity=\".8\" filter=\"url(#c)\" mask=\"url(#d)\"><path d=\"M137.564 65.025c74.486-33.673 107.145-122.297 72.945-197.947-34.199-75.65-122.306-109.679-196.792-76.006S-93.428-86.631-59.23-10.981c34.2 75.65 122.306 109.68 196.793 76.006Z\" fill=\"#48E3FF\"/></g><defs><filter id=\"a\" x=\"-119.63\" y=\"-32.484\" width=\"203.539\" height=\"203.538\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\"25.439\" result=\"effect1_foregroundBlur_0_97982\"/></filter><filter id=\"c\" x=\"-119.055\" y=\"-268.175\" width=\"389.389\" height=\"392.448\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\"23.127\" result=\"effect1_foregroundBlur_0_97982\"/></filter></defs></svg>',withExternalLayout:true})]})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmWWTKHAC:{background:{alt:\"\",fit:\"stretch\",pixelHeight:656,pixelWidth:1426,positionX:\"left\",positionY:\"top\",sizes:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94), min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94) * 0.8)`,src:\"https://framerusercontent.com/images/XUcL66585RcG4Doj2k5zMy1emgg.png\",srcSet:\"https://framerusercontent.com/images/XUcL66585RcG4Doj2k5zMy1emgg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XUcL66585RcG4Doj2k5zMy1emgg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XUcL66585RcG4Doj2k5zMy1emgg.png 1426w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",pixelHeight:656,pixelWidth:1426,positionX:\"left\",positionY:\"top\",sizes:\"714px\",src:\"https://framerusercontent.com/images/XUcL66585RcG4Doj2k5zMy1emgg.png\",srcSet:\"https://framerusercontent.com/images/XUcL66585RcG4Doj2k5zMy1emgg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XUcL66585RcG4Doj2k5zMy1emgg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XUcL66585RcG4Doj2k5zMy1emgg.png 1426w\"},className:\"framer-i6ze25 hidden-16iwrlm\",\"data-framer-name\":\"Frame 1000004427\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-126m372\",\"data-framer-name\":\"Frame 1000005297\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l7pgyw\",\"data-framer-name\":\"Frame 1000005475\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ook3j5\",\"data-styles-preset\":\"BGhF81FGi\",children:\"Payment Methods\"})}),className:\"framer-1ob5rlt\",\"data-framer-name\":\"Payment Methods\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(127, 136, 162)\"},children:[\"We offer flexible payment options, including\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" Bank Transfer\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cryptocurrency.\"})]})}),className:\"framer-1jxwety\",\"data-framer-name\":\"We offer flexible payment options, including Bank Transfer and Cryptocurrency.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dk6vds-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{MiM25CTG9:resolvedLinks2[2]},zmWWTKHAC:{MiM25CTG9:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonDefault,{height:\"100%\",id:\"OqyrSigU_\",layoutId:\"OqyrSigU_\",MiM25CTG9:resolvedLinks2[0],PNHaHyi21:\"Sign up now\",variant:\"Fiw1pFniJ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:432,width:\"432px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gkan0i-container\",children:/*#__PURE__*/_jsx(Circular,{height:\"100%\",id:\"Yeeqtthmm\",layoutId:\"Yeeqtthmm\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+91+3567+120+0+286+0+730),pixelHeight:690,pixelWidth:740,positionX:\"left\",positionY:\"top\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.87)`,src:\"https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png\",srcSet:\"https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png 740w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",pixelHeight:690,pixelWidth:740,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png\",srcSet:\"https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/n1jQNdBBi6YWafTYIaXXsTNl1eQ.png 740w\"},className:\"framer-1wtzrm8 hidden-1bumiad hidden-i8wxrf hidden-p7k5n\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8tez16 hidden-1bumiad\",\"data-framer-name\":\"Frame 1000005297\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hrqok\",\"data-framer-name\":\"Frame 1000005475\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Payment Methods\"})}),className:\"framer-1oavtb1\",\"data-framer-name\":\"Payment Methods\",fonts:[\"GF;Satoshi-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(127, 136, 162)\"},children:[\"We offer flexible payment options, including\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" Bank Transfer\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Cryptocurrency.\"})]})}),className:\"framer-1o0nmcy\",\"data-framer-name\":\"We offer flexible payment options, including Bank Transfer and Cryptocurrency.\",fonts:[\"GF;Satoshi-regular\",\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined},{href:{webPageId:\"maJ7AYxCe\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+3567+120+0+286+0+730+40+-87+0+323}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hflwyk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{MiM25CTG9:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonDefault,{height:\"100%\",id:\"uycUbkHbq\",layoutId:\"uycUbkHbq\",MiM25CTG9:resolvedLinks3[0],PNHaHyi21:\"Sign up now\",variant:\"Fiw1pFniJ\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+3567+120+0+286+0+730+346-294}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:432,width:\"432px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-94fvc6-container\",style:{scale:.7},children:/*#__PURE__*/_jsx(Circular,{height:\"100%\",id:\"wNzlmzoqQ\",layoutId:\"wNzlmzoqQ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hrfan5\"})]})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+5049}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:807,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjkgns-container\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{variant:\"jmkXwdD2O\"},RuaE8c7Bl:{variant:\"hbiV2Tbiy\"},zmWWTKHAC:{variant:\"OUAQAe8y6\"}},children:/*#__PURE__*/_jsx(TestimonialSection,{height:\"100%\",id:\"tdkJN1cuQ\",layoutId:\"tdkJN1cuQ\",style:{width:\"100%\"},variant:\"ZAjPYVomK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1mgc2l\",\"data-framer-name\":\"USP Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cs9rdy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obsaot\",\"data-framer-name\":\"Label + h2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6ptl8h\",\"data-border\":true,\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1x254oq\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"24\" viewBox=\"0 0 25 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.17493 4.25667C10.1029 1.03828 15.9084 1.26236 19.575 4.92893C23.4802 8.83418 23.4802 15.1658 19.575 19.0711C15.6697 22.9763 9.33808 22.9763 5.43284 19.0711C2.90834 16.5466 2.01578 13.0081 2.75513 9.76666L2.83177 9.45394L4.7662 9.96315C4.06869 12.623 4.76231 15.5721 6.84705 17.6569C9.97124 20.781 15.0365 20.781 18.1607 17.6569C21.2849 14.5327 21.2849 9.46734 18.1607 6.34315C15.3431 3.5255 10.9465 3.24903 7.81908 5.51375L7.59788 5.67983L8.61482 6.6967L4.01862 7.75736L5.07928 3.16117L6.17493 4.25667ZM13.5039 6V8H16.0039V10H10.5039C10.2278 10 10.0039 10.2239 10.0039 10.5C10.0039 10.7455 10.1808 10.9496 10.414 10.9919L10.5039 11H14.5039C15.8846 11 17.0039 12.1193 17.0039 13.5C17.0039 14.8807 15.8846 16 14.5039 16H13.5039V18H11.5039V16H9.0039V14H14.5039C14.78 14 15.0039 13.7761 15.0039 13.5C15.0039 13.2545 14.827 13.0504 14.5938 13.0081L14.5039 13H10.5039C9.12319 13 8.0039 11.8807 8.0039 10.5C8.0039 9.11929 9.12319 8 10.5039 8H11.5039V6H13.5039Z\" fill=\"url(#paint0_linear_0_42351)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42351\" x1=\"12.5039\" y1=\"2\" x2=\"12.5039\" y2=\"22\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(8837deg, rgb(161, 196, 255) 0%, rgb(24, 109, 248) 64.5%)\"},children:\"Advantages of WWA\"})})}),className:\"framer-iscr3o\",\"data-framer-name\":\"Advantages of WWA\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your Guarantees When You Work With Us\"})}),className:\"framer-hqyesv\",\"data-framer-name\":\"Your Guarantees When You Work With Us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tb8rk8\",\"data-framer-name\":\"Frame 1000004490\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mtnee0\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w1m884\",\"data-framer-name\":\"Frame 1000004489\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cg5zt2\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.75 10.3125C9.75 9.69129 9.24621 9.1875 8.625 9.1875H8.0625C6.81973 9.1875 5.8125 10.1947 5.8125 11.4375V13.125C5.8125 14.3678 6.81973 15.375 8.0625 15.375H8.625C9.24621 15.375 9.75 14.8712 9.75 14.25V10.3125ZM15.9375 15.375C17.1803 15.375 18.1875 14.3678 18.1875 13.125V11.4375C18.1875 10.1947 17.1803 9.1875 15.9375 9.1875H15.375C14.7538 9.1875 14.25 9.69129 14.25 10.3125V14.25C14.25 14.8712 14.7538 15.375 15.375 15.375H15.9375ZM12 3C6.97898 3 3.16102 7.17762 3 12V12.5625C3 12.8733 3.25172 13.125 3.5625 13.125H4.125C4.43578 13.125 4.6875 12.8733 4.6875 12.5625V12C4.6875 7.96793 7.96793 4.6875 12 4.6875C16.0321 4.6875 19.3125 7.96793 19.3125 12H19.3083C19.3111 12.0854 19.3125 17.8261 19.3125 17.8261C19.3125 18.647 18.647 19.3125 17.8261 19.3125H14.25C14.25 18.3805 13.4945 17.625 12.5625 17.625H11.4375C10.5055 17.625 9.75 18.3805 9.75 19.3125C9.75 20.2445 10.5055 21 11.4375 21H17.8261C19.579 21 21 19.579 21 17.8261V12C20.839 7.17762 17.021 3 12 3Z\" fill=\"url(#paint0_linear_0_42357)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42357\" x1=\"12\" y1=\"3\" x2=\"12\" y2=\"21\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"Personal Account Manager\"})}),className:\"framer-1u7knon\",\"data-framer-name\":\"Personal Account Manager\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m8vgb1\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uli9eh\",\"data-framer-name\":\"Frame 1000004490\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lual8v\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_0_42361)\">\\n<path d=\"M22.6421 5.38121L22.6421 5.38121C23.3472 5.67696 23.7494 6.3799 23.75 7.08525V7.08585V17.9911C23.75 19.0736 22.8638 19.8346 21.8914 19.8346C21.6976 19.8346 21.5016 19.8049 21.309 19.7438L21.3088 19.7438C20.3313 19.4337 19.3481 19.3073 18.3509 19.3073C16.3437 19.3073 14.3188 19.8157 12.184 20.356L12.1385 20.3675C10.053 20.8954 7.85978 21.4505 5.64915 21.4505C4.23284 21.4505 2.79721 21.224 1.35737 20.6197C0.652066 20.3241 0.25 19.6205 0.25 18.9155V8.00983C0.25 6.92738 1.13621 6.16638 2.10858 6.16638C2.30237 6.16638 2.49844 6.19609 2.69099 6.25713L2.69115 6.25718C3.66872 6.56732 4.65193 6.69369 5.64915 6.69369C7.65632 6.69369 9.68108 6.18532 11.8158 5.64503L11.8609 5.63363C13.9464 5.10576 16.1397 4.55061 18.3505 4.55078L22.6421 5.38121ZM22.6421 5.38121C21.2024 4.77733 19.7669 4.55079 18.3506 4.55078L22.6421 5.38121ZM11.9998 15.5506C11.0173 15.5506 9.99987 14.5426 9.99987 13.0007C9.99987 11.4585 11.0176 10.4507 11.9998 10.4507C12.9821 10.4507 13.9998 11.4585 13.9998 13.0007C13.9998 14.543 12.9818 15.5506 11.9998 15.5506Z\" stroke=\"url(#paint0_linear_0_42361)\" stroke-width=\"1.5\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42361\" x1=\"12\" y1=\"5.30078\" x2=\"12\" y2=\"20.7005\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_0_42361\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"High Earning Potential\"})}),className:\"framer-1btvbx4\",\"data-framer-name\":\"High Earning Potential\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i42wsj\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ydekuc\",\"data-framer-name\":\"Frame 1000004491\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-o94gng\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.0049 20.8329V22.4996H18.0049V21.1662L10.5871 22.4025C10.3147 22.4479 10.0571 22.2639 10.0117 21.9915C10.0072 21.9644 10.0049 21.9369 10.0049 21.9093V20.4996H6.00488V22.4996H4.00488V20.4996H3.00488C2.4526 20.4996 2.00488 20.0518 2.00488 19.4996V4.49961C2.00488 3.94732 2.4526 3.49961 3.00488 3.49961H10.0049V2.08984C10.0049 1.81369 10.2287 1.58984 10.5049 1.58984C10.5324 1.58984 10.5599 1.59211 10.5871 1.59664L21.1693 3.36034C21.6515 3.4407 22.0049 3.85789 22.0049 4.34673V6.49961H23.0049V8.49961H22.0049V15.4996H23.0049V17.4996H22.0049V19.6524C22.0049 20.1413 21.6515 20.5585 21.1693 20.6388L20.0049 20.8329ZM4.00488 5.49961V18.4996H10.0049V5.49961H4.00488ZM12.0049 20.1386L20.0049 18.8053V5.19386L12.0049 3.86053V20.1386ZM16.5049 14.4996C15.6765 14.4996 15.0049 13.3803 15.0049 11.9996C15.0049 10.6189 15.6765 9.49961 16.5049 9.49961C17.3333 9.49961 18.0049 10.6189 18.0049 11.9996C18.0049 13.3803 17.3333 14.4996 16.5049 14.4996Z\" fill=\"url(#paint0_linear_0_42365)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42365\" x1=\"12.5049\" y1=\"1.58984\" x2=\"12.5049\" y2=\"22.4996\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"Swift and Secure Payments\"})}),className:\"framer-1ox8tdc\",\"data-framer-name\":\"Swift and Secure Payments\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybyl0d\",\"data-border\":true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19t4wng\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tz0fy8\",\"data-framer-name\":\"Frame 1000004493\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-188a7je\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.7 15H16.05C16.275 15 16.5 14.775 16.5 14.55V9.825C16.5 9.6 16.275 9.375 16.05 9.375H14.7C14.475 9.375 14.25 9.6 14.25 9.825V14.55C14.25 14.775 14.475 15 14.7 15ZM18.075 15H19.425C19.65 15 19.875 14.775 19.875 14.55V6.45C19.875 6.225 19.65 6 19.425 6H18.075C17.85 6 17.625 6.225 17.625 6.45V14.55C17.625 14.775 17.85 15 18.075 15ZM7.95 15H9.3C9.525 15 9.75 14.775 9.75 14.55V12.075C9.75 11.85 9.525 11.625 9.3 11.625H7.95C7.725 11.625 7.5 11.85 7.5 12.075V14.55C7.5 14.775 7.725 15 7.95 15ZM11.325 15H12.675C12.9 15 13.125 14.775 13.125 14.55V7.575C13.125 7.35 12.9 7.125 12.675 7.125H11.325C11.1 7.125 10.875 7.35 10.875 7.575V14.55C10.875 14.775 11.1 15 11.325 15ZM20.4375 17.25H5.25V6.5625C5.25 6.25172 4.99828 6 4.6875 6H3.5625C3.25172 6 3 6.25172 3 6.5625V18.375C3 18.9962 3.50379 19.5 4.125 19.5H20.4375C20.7483 19.5 21 19.2483 21 18.9375V17.8125C21 17.5017 20.7483 17.25 20.4375 17.25Z\" fill=\"black\"/>\\n<path d=\"M14.7 15H16.05C16.275 15 16.5 14.775 16.5 14.55V9.825C16.5 9.6 16.275 9.375 16.05 9.375H14.7C14.475 9.375 14.25 9.6 14.25 9.825V14.55C14.25 14.775 14.475 15 14.7 15ZM18.075 15H19.425C19.65 15 19.875 14.775 19.875 14.55V6.45C19.875 6.225 19.65 6 19.425 6H18.075C17.85 6 17.625 6.225 17.625 6.45V14.55C17.625 14.775 17.85 15 18.075 15ZM7.95 15H9.3C9.525 15 9.75 14.775 9.75 14.55V12.075C9.75 11.85 9.525 11.625 9.3 11.625H7.95C7.725 11.625 7.5 11.85 7.5 12.075V14.55C7.5 14.775 7.725 15 7.95 15ZM11.325 15H12.675C12.9 15 13.125 14.775 13.125 14.55V7.575C13.125 7.35 12.9 7.125 12.675 7.125H11.325C11.1 7.125 10.875 7.35 10.875 7.575V14.55C10.875 14.775 11.1 15 11.325 15ZM20.4375 17.25H5.25V6.5625C5.25 6.25172 4.99828 6 4.6875 6H3.5625C3.25172 6 3 6.25172 3 6.5625V18.375C3 18.9962 3.50379 19.5 4.125 19.5H20.4375C20.7483 19.5 21 19.2483 21 18.9375V17.8125C21 17.5017 20.7483 17.25 20.4375 17.25Z\" fill=\"url(#paint0_linear_0_42369)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42369\" x1=\"12\" y1=\"6\" x2=\"12\" y2=\"19.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"Utilize CellXpert Platform\"})}),className:\"framer-6238xo\",\"data-framer-name\":\"Utilize CellXpert Platform\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p0xkcu\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wm5nw1\",\"data-framer-name\":\"Frame 1000004494\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-h2b1k9\",\"data-framer-name\":\"pngegg 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.1574 2.39023C13.0309 2.13707 12.8553 1.95402 12.6005 1.8333C12.5792 1.83143 12.5575 1.82942 12.5355 1.82738C12.3064 1.80614 12.0451 1.78191 11.841 1.88393C11.6206 2.04811 11.4747 2.17275 11.3854 2.44086C11.3838 2.46178 11.382 2.48293 11.3803 2.50425C11.3638 2.70446 11.346 2.9191 11.436 3.09904C11.6067 3.32985 11.7643 3.51224 12.0436 3.60534C12.4129 3.63897 12.6558 3.58413 12.9549 3.35219C13.1929 3.05152 13.1921 2.76527 13.1574 2.39023ZM5.91274 4.28759L6.08151 4.28664C6.26775 4.28583 6.45395 4.28647 6.64018 4.2871H6.64022L6.64155 4.28711L7.043 4.28603C7.36874 4.28513 7.69448 4.28532 8.02023 4.28591C8.28496 4.28637 8.54968 4.28643 8.81441 4.28621L8.9286 4.28612L9.15827 4.28592C9.876 4.28534 10.5937 4.28601 11.3114 4.28709C11.9273 4.288 12.5432 4.28784 13.159 4.28691C13.8743 4.28582 14.5895 4.2854 15.3048 4.28602L15.5335 4.28621L15.6472 4.28631C15.9117 4.28648 16.1761 4.28619 16.4406 4.28571C16.7628 4.28514 17.085 4.28529 17.4072 4.28637C17.5716 4.28691 17.736 4.287 17.9004 4.28644C18.0786 4.28589 18.2567 4.28658 18.4349 4.28759L18.5926 4.28623C18.8155 4.28869 18.944 4.29111 19.1374 4.40933C19.2391 4.52203 19.2838 4.6015 19.3284 4.74578L19.3727 4.88455L19.418 5.03538L19.4681 5.19458C19.5212 5.36366 19.5732 5.53306 19.6251 5.70248L19.629 5.71513C19.6669 5.83635 19.7049 5.95754 19.743 6.0787C19.8017 6.2658 19.8605 6.45292 19.9189 6.64015C20.0967 7.20995 20.281 7.77752 20.4672 8.34461C20.5452 8.58203 20.6229 8.81955 20.7006 9.05707L20.7172 9.10773L20.7651 9.25418C20.9222 9.7344 21.078 10.2151 21.2333 10.6958L21.2696 10.808L21.4612 11.4015L21.5776 11.41L21.73 11.4223L21.8811 11.4339C22.0996 11.463 22.2206 11.5533 22.3725 11.7053C22.4485 12.5871 22.2501 13.4623 21.6795 14.1579C21.5464 14.31 21.4043 14.4509 21.2587 14.5912L21.1598 14.693C20.4843 15.3465 19.5431 15.588 18.6273 15.577C17.5845 15.5368 16.6952 15.0794 15.9805 14.3222C15.4088 13.6486 15.1007 12.8107 15.1196 11.9274C15.1365 11.7679 15.1767 11.6725 15.2843 11.5534C15.4574 11.4413 15.6001 11.4414 15.8033 11.4458L15.9686 11.4486L16.0944 11.4521L16.1185 11.3587C16.2321 10.9297 16.3679 10.5088 16.5056 10.0871L16.5823 9.85095C16.6496 9.64372 16.7171 9.43654 16.7846 9.22937L16.9835 8.61785L17.2112 7.91777C17.4394 7.21709 17.6666 6.51614 17.8939 5.81518L17.895 5.81194L18.069 5.27528H12.7528V18.7935H15.4868L15.4869 18.7935C15.7108 18.9055 15.7697 18.9349 15.813 18.9794C15.8285 18.9952 15.842 19.013 15.8602 19.0371C15.9258 19.2666 15.9207 19.3993 15.8041 19.6111C15.6685 19.7647 15.5554 19.7804 15.3544 19.7933C15.2349 19.7948 15.1154 19.7946 14.9959 19.7931L14.798 19.7943C14.6192 19.7952 14.4404 19.7943 14.2617 19.7929C14.0974 19.7919 13.9332 19.7921 13.769 19.7923L13.6999 19.7924C13.3854 19.7925 13.071 19.7914 12.7566 19.7895C12.3932 19.7873 12.0299 19.787 11.6666 19.7876C11.3168 19.7882 10.967 19.7876 10.6173 19.7865C10.4685 19.786 10.3198 19.7859 10.1711 19.7861C9.96329 19.7864 9.75557 19.7849 9.54782 19.7833L9.36098 19.784H9.36096C9.09954 19.7807 9.00296 19.7795 8.91589 19.7501C8.86487 19.7329 8.81711 19.706 8.74138 19.6633L8.74137 19.6633C8.61529 19.5079 8.60118 19.3971 8.60118 19.1985C8.6899 18.9816 8.76286 18.9383 8.95511 18.824L9.00622 18.7935H11.7909V5.27528L6.17094 5.32591L6.60129 6.63596C6.96748 7.75223 7.32941 8.86976 7.68588 9.98918L7.73376 10.1395L7.82388 10.4226C7.91728 10.7156 8.01344 11.0074 8.11378 11.2981C8.13016 11.3515 8.13808 11.3773 8.14191 11.4037C8.14551 11.4285 8.14551 11.4538 8.14551 11.5028L8.25666 11.4974C8.57471 11.4885 8.69466 11.4852 8.79763 11.5253C8.85999 11.5497 8.91611 11.59 9.00622 11.6547C9.20354 11.969 9.12416 12.3737 9.05567 12.7229L9.04735 12.7653C8.81405 13.7523 8.26792 14.5458 7.41109 15.0894C7.114 15.2696 6.80661 15.3993 6.47472 15.5025L6.35665 15.5401C5.40895 15.7824 4.38957 15.5909 3.55855 15.1036C2.75219 14.609 2.18931 13.8385 1.92119 12.9299C1.866 12.6743 1.85053 12.4216 1.84525 12.161L1.8418 12.0489C1.84259 11.8731 1.85342 11.7744 1.96055 11.6325C2.13671 11.5051 2.29819 11.4917 2.50976 11.4743L2.66225 11.4614L2.77873 11.4521C2.95613 10.9143 3.13331 10.3763 3.31035 9.8383L3.3503 9.71693C3.73848 8.53732 4.12304 7.35672 4.49758 6.1727C4.56855 5.94853 4.64048 5.7247 4.71317 5.50108C4.74014 5.41739 4.76669 5.33357 4.79284 5.24962C4.8303 5.12948 4.86907 5.00984 4.90816 4.89022L4.94027 4.78369C5.00691 4.58521 5.08365 4.46537 5.26237 4.35415C5.44248 4.27947 5.63409 4.28289 5.82621 4.28631H5.82621H5.82622C5.85506 4.28683 5.88391 4.28734 5.91274 4.28759ZM18.7272 6.38914C18.5831 6.83244 18.4391 7.27577 18.2953 7.71915L18.0946 8.33727L17.8996 8.93803L17.8265 9.1629C17.6153 9.81206 17.4134 10.4637 17.2113 11.1158L17.107 11.4521H20.398L20.3979 11.452C20.3569 11.2645 20.3365 11.1714 20.313 11.0791C20.2897 10.988 20.2635 10.8977 20.2113 10.7183L20.2112 10.718L20.1618 10.5668L20.1088 10.4069L20.0529 10.2363C19.993 10.054 19.9328 9.87177 19.8727 9.68958L19.7491 9.3137C19.4281 8.33792 19.1045 7.363 18.7778 6.38914H18.7272ZM5.46212 6.43977C5.10968 7.48996 4.76118 8.54146 4.41483 9.59367C4.35671 9.77021 4.29853 9.94672 4.24016 10.1232C4.17389 10.3235 4.10798 10.524 4.04211 10.7245L3.98083 10.9094L3.92528 11.079L3.87632 11.2276C3.85688 11.2873 3.84663 11.3188 3.84193 11.351C3.83668 11.3871 3.83838 11.4242 3.84196 11.5028H7.13291C6.73949 10.2554 6.34076 9.01024 5.93272 7.76763L5.88203 7.61306L5.78854 7.32865C5.69181 7.03373 5.60057 6.73747 5.51275 6.43977H5.46212ZM16.145 12.4141C16.3227 13.2135 16.7102 13.8043 17.4013 14.2589C18.0581 14.6158 18.8045 14.7108 19.5246 14.5121C20.2917 14.2412 20.8245 13.7867 21.208 13.0723C21.3059 12.8446 21.3599 12.6632 21.3599 12.4141H16.145ZM2.87999 12.4647C2.96375 13.1347 3.27775 13.6509 3.79133 14.0849C4.42488 14.554 5.09011 14.6991 5.86716 14.6418C6.55457 14.5307 7.17989 14.1705 7.60124 13.6166C7.85333 13.2507 8.02171 12.9038 8.09488 12.4647H2.87999ZM7.31496 20.8632L7.45324 20.8626C7.60709 20.8621 7.76093 20.8619 7.91477 20.8617L8.24454 20.8607C8.54382 20.8598 8.8431 20.8593 9.14238 20.8588L9.7028 20.858C10.2868 20.857 10.8707 20.8563 11.4547 20.8558C12.1298 20.8554 12.8048 20.854 13.4798 20.852C14.001 20.8504 14.5222 20.8497 15.0434 20.8495C15.3549 20.8494 15.6665 20.849 15.9781 20.8477C16.271 20.8465 16.564 20.8463 16.857 20.8468C16.9647 20.8468 17.0723 20.8465 17.18 20.8458C17.3267 20.8449 17.4734 20.8453 17.6201 20.8459L17.75 20.8443C17.933 20.8463 18.0448 20.8534 18.1949 20.9626C18.3029 21.1193 18.3184 21.2384 18.3217 21.4276C18.2526 21.5756 18.1836 21.6669 18.0686 21.782C17.9218 21.7922 17.7798 21.7961 17.633 21.7955L17.4947 21.7962C17.3412 21.7969 17.1878 21.7968 17.0344 21.7967H17.0332L16.7034 21.7977C16.4041 21.7986 16.1048 21.7989 15.8055 21.7989C15.5708 21.799 15.336 21.7993 15.1012 21.7997L15.0959 21.7997L15.057 21.7997C14.4685 21.8006 13.88 21.8008 13.2915 21.8007C12.6837 21.8007 12.0759 21.8018 11.4681 21.8034C10.9469 21.8047 10.4257 21.8052 9.90456 21.8052C9.59299 21.8051 9.28144 21.8054 8.96987 21.8065C8.67689 21.8075 8.38393 21.8075 8.09096 21.8067C7.98327 21.8066 7.87559 21.8069 7.7679 21.8075C7.62119 21.8083 7.47453 21.8078 7.32781 21.807L7.19788 21.8086C7.01195 21.8064 6.90328 21.8003 6.75323 21.6855C6.62379 21.5058 6.6088 21.3963 6.62621 21.1744C6.7799 20.86 6.94026 20.861 7.24155 20.8629L7.31496 20.8632Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.1574 2.39023C13.0309 2.13707 12.8553 1.95402 12.6005 1.8333C12.5792 1.83143 12.5575 1.82942 12.5355 1.82738C12.3064 1.80614 12.0451 1.78191 11.841 1.88393C11.6206 2.04811 11.4747 2.17275 11.3854 2.44086C11.3838 2.46178 11.382 2.48293 11.3803 2.50425C11.3638 2.70446 11.346 2.9191 11.436 3.09904C11.6067 3.32985 11.7643 3.51224 12.0436 3.60534C12.4129 3.63897 12.6558 3.58413 12.9549 3.35219C13.1929 3.05152 13.1921 2.76527 13.1574 2.39023ZM5.91274 4.28759L6.08151 4.28664C6.26775 4.28583 6.45395 4.28647 6.64018 4.2871H6.64022L6.64155 4.28711L7.043 4.28603C7.36874 4.28513 7.69448 4.28532 8.02023 4.28591C8.28496 4.28637 8.54968 4.28643 8.81441 4.28621L8.9286 4.28612L9.15827 4.28592C9.876 4.28534 10.5937 4.28601 11.3114 4.28709C11.9273 4.288 12.5432 4.28784 13.159 4.28691C13.8743 4.28582 14.5895 4.2854 15.3048 4.28602L15.5335 4.28621L15.6472 4.28631C15.9117 4.28648 16.1761 4.28619 16.4406 4.28571C16.7628 4.28514 17.085 4.28529 17.4072 4.28637C17.5716 4.28691 17.736 4.287 17.9004 4.28644C18.0786 4.28589 18.2567 4.28658 18.4349 4.28759L18.5926 4.28623C18.8155 4.28869 18.944 4.29111 19.1374 4.40933C19.2391 4.52203 19.2838 4.6015 19.3284 4.74578L19.3727 4.88455L19.418 5.03538L19.4681 5.19458C19.5212 5.36366 19.5732 5.53306 19.6251 5.70248L19.629 5.71513C19.6669 5.83635 19.7049 5.95754 19.743 6.0787C19.8017 6.2658 19.8605 6.45292 19.9189 6.64015C20.0967 7.20995 20.281 7.77752 20.4672 8.34461C20.5452 8.58203 20.6229 8.81955 20.7006 9.05707L20.7172 9.10773L20.7651 9.25418C20.9222 9.7344 21.078 10.2151 21.2333 10.6958L21.2696 10.808L21.4612 11.4015L21.5776 11.41L21.73 11.4223L21.8811 11.4339C22.0996 11.463 22.2206 11.5533 22.3725 11.7053C22.4485 12.5871 22.2501 13.4623 21.6795 14.1579C21.5464 14.31 21.4043 14.4509 21.2587 14.5912L21.1598 14.693C20.4843 15.3465 19.5431 15.588 18.6273 15.577C17.5845 15.5368 16.6952 15.0794 15.9805 14.3222C15.4088 13.6486 15.1007 12.8107 15.1196 11.9274C15.1365 11.7679 15.1767 11.6725 15.2843 11.5534C15.4574 11.4413 15.6001 11.4414 15.8033 11.4458L15.9686 11.4486L16.0944 11.4521L16.1185 11.3587C16.2321 10.9297 16.3679 10.5088 16.5056 10.0871L16.5823 9.85095C16.6496 9.64372 16.7171 9.43654 16.7846 9.22937L16.9835 8.61785L17.2112 7.91777C17.4394 7.21709 17.6666 6.51614 17.8939 5.81518L17.895 5.81194L18.069 5.27528H12.7528V18.7935H15.4868L15.4869 18.7935C15.7108 18.9055 15.7697 18.9349 15.813 18.9794C15.8285 18.9952 15.842 19.013 15.8602 19.0371C15.9258 19.2666 15.9207 19.3993 15.8041 19.6111C15.6685 19.7647 15.5554 19.7804 15.3544 19.7933C15.2349 19.7948 15.1154 19.7946 14.9959 19.7931L14.798 19.7943C14.6192 19.7952 14.4404 19.7943 14.2617 19.7929C14.0974 19.7919 13.9332 19.7921 13.769 19.7923L13.6999 19.7924C13.3854 19.7925 13.071 19.7914 12.7566 19.7895C12.3932 19.7873 12.0299 19.787 11.6666 19.7876C11.3168 19.7882 10.967 19.7876 10.6173 19.7865C10.4685 19.786 10.3198 19.7859 10.1711 19.7861C9.96329 19.7864 9.75557 19.7849 9.54782 19.7833L9.36098 19.784H9.36096C9.09954 19.7807 9.00296 19.7795 8.91589 19.7501C8.86487 19.7329 8.81711 19.706 8.74138 19.6633L8.74137 19.6633C8.61529 19.5079 8.60118 19.3971 8.60118 19.1985C8.6899 18.9816 8.76286 18.9383 8.95511 18.824L9.00622 18.7935H11.7909V5.27528L6.17094 5.32591L6.60129 6.63596C6.96748 7.75223 7.32941 8.86976 7.68588 9.98918L7.73376 10.1395L7.82388 10.4226C7.91728 10.7156 8.01344 11.0074 8.11378 11.2981C8.13016 11.3515 8.13808 11.3773 8.14191 11.4037C8.14551 11.4285 8.14551 11.4538 8.14551 11.5028L8.25666 11.4974C8.57471 11.4885 8.69466 11.4852 8.79763 11.5253C8.85999 11.5497 8.91611 11.59 9.00622 11.6547C9.20354 11.969 9.12416 12.3737 9.05567 12.7229L9.04735 12.7653C8.81405 13.7523 8.26792 14.5458 7.41109 15.0894C7.114 15.2696 6.80661 15.3993 6.47472 15.5025L6.35665 15.5401C5.40895 15.7824 4.38957 15.5909 3.55855 15.1036C2.75219 14.609 2.18931 13.8385 1.92119 12.9299C1.866 12.6743 1.85053 12.4216 1.84525 12.161L1.8418 12.0489C1.84259 11.8731 1.85342 11.7744 1.96055 11.6325C2.13671 11.5051 2.29819 11.4917 2.50976 11.4743L2.66225 11.4614L2.77873 11.4521C2.95613 10.9143 3.13331 10.3763 3.31035 9.8383L3.3503 9.71693C3.73848 8.53732 4.12304 7.35672 4.49758 6.1727C4.56855 5.94853 4.64048 5.7247 4.71317 5.50108C4.74014 5.41739 4.76669 5.33357 4.79284 5.24962C4.8303 5.12948 4.86907 5.00984 4.90816 4.89022L4.94027 4.78369C5.00691 4.58521 5.08365 4.46537 5.26237 4.35415C5.44248 4.27947 5.63409 4.28289 5.82621 4.28631H5.82621H5.82622C5.85506 4.28683 5.88391 4.28734 5.91274 4.28759ZM18.7272 6.38914C18.5831 6.83244 18.4391 7.27577 18.2953 7.71915L18.0946 8.33727L17.8996 8.93803L17.8265 9.1629C17.6153 9.81206 17.4134 10.4637 17.2113 11.1158L17.107 11.4521H20.398L20.3979 11.452C20.3569 11.2645 20.3365 11.1714 20.313 11.0791C20.2897 10.988 20.2635 10.8977 20.2113 10.7183L20.2112 10.718L20.1618 10.5668L20.1088 10.4069L20.0529 10.2363C19.993 10.054 19.9328 9.87177 19.8727 9.68958L19.7491 9.3137C19.4281 8.33792 19.1045 7.363 18.7778 6.38914H18.7272ZM5.46212 6.43977C5.10968 7.48996 4.76118 8.54146 4.41483 9.59367C4.35671 9.77021 4.29853 9.94672 4.24016 10.1232C4.17389 10.3235 4.10798 10.524 4.04211 10.7245L3.98083 10.9094L3.92528 11.079L3.87632 11.2276C3.85688 11.2873 3.84663 11.3188 3.84193 11.351C3.83668 11.3871 3.83838 11.4242 3.84196 11.5028H7.13291C6.73949 10.2554 6.34076 9.01024 5.93272 7.76763L5.88203 7.61306L5.78854 7.32865C5.69181 7.03373 5.60057 6.73747 5.51275 6.43977H5.46212ZM16.145 12.4141C16.3227 13.2135 16.7102 13.8043 17.4013 14.2589C18.0581 14.6158 18.8045 14.7108 19.5246 14.5121C20.2917 14.2412 20.8245 13.7867 21.208 13.0723C21.3059 12.8446 21.3599 12.6632 21.3599 12.4141H16.145ZM2.87999 12.4647C2.96375 13.1347 3.27775 13.6509 3.79133 14.0849C4.42488 14.554 5.09011 14.6991 5.86716 14.6418C6.55457 14.5307 7.17989 14.1705 7.60124 13.6166C7.85333 13.2507 8.02171 12.9038 8.09488 12.4647H2.87999ZM7.31496 20.8632L7.45324 20.8626C7.60709 20.8621 7.76093 20.8619 7.91477 20.8617L8.24454 20.8607C8.54382 20.8598 8.8431 20.8593 9.14238 20.8588L9.7028 20.858C10.2868 20.857 10.8707 20.8563 11.4547 20.8558C12.1298 20.8554 12.8048 20.854 13.4798 20.852C14.001 20.8504 14.5222 20.8497 15.0434 20.8495C15.3549 20.8494 15.6665 20.849 15.9781 20.8477C16.271 20.8465 16.564 20.8463 16.857 20.8468C16.9647 20.8468 17.0723 20.8465 17.18 20.8458C17.3267 20.8449 17.4734 20.8453 17.6201 20.8459L17.75 20.8443C17.933 20.8463 18.0448 20.8534 18.1949 20.9626C18.3029 21.1193 18.3184 21.2384 18.3217 21.4276C18.2526 21.5756 18.1836 21.6669 18.0686 21.782C17.9218 21.7922 17.7798 21.7961 17.633 21.7955L17.4947 21.7962C17.3412 21.7969 17.1878 21.7968 17.0344 21.7967H17.0332L16.7034 21.7977C16.4041 21.7986 16.1048 21.7989 15.8055 21.7989C15.5708 21.799 15.336 21.7993 15.1012 21.7997L15.0959 21.7997L15.057 21.7997C14.4685 21.8006 13.88 21.8008 13.2915 21.8007C12.6837 21.8007 12.0759 21.8018 11.4681 21.8034C10.9469 21.8047 10.4257 21.8052 9.90456 21.8052C9.59299 21.8051 9.28144 21.8054 8.96987 21.8065C8.67689 21.8075 8.38393 21.8075 8.09096 21.8067C7.98327 21.8066 7.87559 21.8069 7.7679 21.8075C7.62119 21.8083 7.47453 21.8078 7.32781 21.807L7.19788 21.8086C7.01195 21.8064 6.90328 21.8003 6.75323 21.6855C6.62379 21.5058 6.6088 21.3963 6.62621 21.1744C6.7799 20.86 6.94026 20.861 7.24155 20.8629L7.31496 20.8632Z\" fill=\"url(#paint0_linear_341_36650)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_341_36650\" x1=\"12.1149\" y1=\"1.80859\" x2=\"12.1149\" y2=\"21.8086\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"Get an Official License to Work With\"})}),className:\"framer-1s0qv9w\",\"data-framer-name\":\"Full ROI Transparency\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ye7f84\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation19,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qtntox\",\"data-framer-name\":\"Frame 1000004494\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4824d\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.29117 21.3242L2 22.5L3.17581 17.2088C2.42544 15.8056 2 14.2025 2 12.5C2 6.97715 6.47715 2.5 12 2.5C17.5228 2.5 22 6.97715 22 12.5C22 18.0228 17.5228 22.5 12 22.5C10.2975 22.5 8.6944 22.0746 7.29117 21.3242ZM7.58075 19.211L8.23428 19.5605C9.38248 20.1745 10.6655 20.5 12 20.5C16.4183 20.5 20 16.9183 20 12.5C20 8.08172 16.4183 4.5 12 4.5C7.58172 4.5 4 8.08172 4 12.5C4 13.8345 4.32549 15.1175 4.93949 16.2657L5.28896 16.9192L4.63416 19.8658L7.58075 19.211ZM7 12.5H9C9 14.1569 10.3431 15.5 12 15.5C13.6569 15.5 15 14.1569 15 12.5H17C17 15.2614 14.7614 17.5 12 17.5C9.23858 17.5 7 15.2614 7 12.5Z\" fill=\"black\"/>\\n<path d=\"M7.29117 21.3242L2 22.5L3.17581 17.2088C2.42544 15.8056 2 14.2025 2 12.5C2 6.97715 6.47715 2.5 12 2.5C17.5228 2.5 22 6.97715 22 12.5C22 18.0228 17.5228 22.5 12 22.5C10.2975 22.5 8.6944 22.0746 7.29117 21.3242ZM7.58075 19.211L8.23428 19.5605C9.38248 20.1745 10.6655 20.5 12 20.5C16.4183 20.5 20 16.9183 20 12.5C20 8.08172 16.4183 4.5 12 4.5C7.58172 4.5 4 8.08172 4 12.5C4 13.8345 4.32549 15.1175 4.93949 16.2657L5.28896 16.9192L4.63416 19.8658L7.58075 19.211ZM7 12.5H9C9 14.1569 10.3431 15.5 12 15.5C13.6569 15.5 15 14.1569 15 12.5H17C17 15.2614 14.7614 17.5 12 17.5C9.23858 17.5 7 15.2614 7 12.5Z\" fill=\"url(#paint0_linear_0_42373)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42373\" x1=\"12\" y1=\"2.5\" x2=\"12\" y2=\"22.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"Full ROI Transparency\"})}),className:\"framer-e5qwzx\",\"data-framer-name\":\"Full ROI Transparency\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hs88mk\",\"data-border\":true})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1smwp00\",\"data-framer-name\":\"Team Section\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1emaaz3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mnrfti\",\"data-framer-name\":\"Label + h2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o4xc8m\",\"data-border\":true,\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9r4sm7\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.38938 16.5386C5.33894 15.0901 4 12.7014 4 10C4 5.58172 7.58172 2 12 2C16.4183 2 20 5.58172 20 10C20 12.7014 18.6611 15.0901 16.6106 16.5386L18.6936 21.2996C18.8043 21.5526 18.6889 21.8474 18.4359 21.9581C18.3727 21.9857 18.3045 22 18.2355 22H5.76451C5.48837 22 5.26451 21.7761 5.26451 21.5C5.26451 21.431 5.27878 21.3628 5.30643 21.2996L7.38938 16.5386ZM14.1246 15.846L15.4567 14.905C17.041 13.7858 18 11.9752 18 10C18 6.68629 15.3137 4 12 4C8.68629 4 6 6.68629 6 10C6 11.9752 6.95901 13.7858 8.54335 14.905L9.87539 15.846L8.05803 20H15.942L14.1246 15.846ZM8.11851 10.9704L10.0593 10.4852C10.2761 11.3553 11.0628 12 12 12C12.9372 12 13.7239 11.3553 13.9407 10.4852L15.8815 10.9704C15.4478 12.7106 13.8745 14 12 14C10.1255 14 8.55217 12.7106 8.11851 10.9704Z\" fill=\"url(#paint0_linear_0_42087)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42087\" x1=\"12\" y1=\"2\" x2=\"12\" y2=\"22\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(8837deg, rgb(161, 196, 255) 0%, rgb(24, 109, 248) 64.5%)\"},children:\"Team\"})})}),className:\"framer-15ghotu\",\"data-framer-name\":\"Team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",children:\"Meet Our Team\"})}),className:\"framer-11ildpq\",\"data-framer-name\":\"Meet Our Team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"At Wealth Wave Affiliation, we are proud to have a dedicated and experienced team of professionals who are passionate about helping Affiliates like you at.\"})}),className:\"framer-1ixp0c3\",\"data-framer-name\":\"At Wealth Wave Affiliation, we are proud to have a dedicated and experienced team of professionals who are passionate about helping Affiliates like you at.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d1559y-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{speed:50}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:true},gap:10,height:\"100%\",hoverFactor:.5,id:\"BBsP18LAN\",layoutId:\"BBsP18LAN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7lbbqz-container\",children:/*#__PURE__*/_jsx(TeamCard,{height:\"100%\",id:\"fhiSK3E2u\",layoutId:\"fhiSK3E2u\",RoFyvfQkS:\"Luuk Halman\",V3IrghVVi:\"CEO & Founder\",width:\"100%\",xY3nKxXQP:addImageAlt({src:\"https://framerusercontent.com/images/PM3DnITLxwpeRWSFKA7I03364.png\",srcSet:\"https://framerusercontent.com/images/PM3DnITLxwpeRWSFKA7I03364.png?scale-down-to=1024 795w,https://framerusercontent.com/images/PM3DnITLxwpeRWSFKA7I03364.png?scale-down-to=2048 1590w,https://framerusercontent.com/images/PM3DnITLxwpeRWSFKA7I03364.png 2766w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14hm8vh-container\",children:/*#__PURE__*/_jsx(TeamCard,{height:\"100%\",id:\"v93u60EZV\",layoutId:\"v93u60EZV\",RoFyvfQkS:\"Stefan Popovski\",V3IrghVVi:\"Co-Founder\",width:\"100%\",xY3nKxXQP:addImageAlt({src:\"https://framerusercontent.com/images/1nQgmb6MmEdBC8eRvd1KyyCyWY.png\",srcSet:\"https://framerusercontent.com/images/1nQgmb6MmEdBC8eRvd1KyyCyWY.png?scale-down-to=1024 891w,https://framerusercontent.com/images/1nQgmb6MmEdBC8eRvd1KyyCyWY.png?scale-down-to=2048 1783w,https://framerusercontent.com/images/1nQgmb6MmEdBC8eRvd1KyyCyWY.png 3553w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ciq7t-container\",children:/*#__PURE__*/_jsx(TeamCard,{height:\"100%\",id:\"uJRK6KbnN\",layoutId:\"uJRK6KbnN\",RoFyvfQkS:\"Carolin Hein\",V3IrghVVi:\"COO\",width:\"100%\",xY3nKxXQP:addImageAlt({src:\"https://framerusercontent.com/images/XO1XgBqE1EcNB5cCgq7ipcNsGh0.png\",srcSet:\"https://framerusercontent.com/images/XO1XgBqE1EcNB5cCgq7ipcNsGh0.png?scale-down-to=1024 843w,https://framerusercontent.com/images/XO1XgBqE1EcNB5cCgq7ipcNsGh0.png?scale-down-to=2048 1687w,https://framerusercontent.com/images/XO1XgBqE1EcNB5cCgq7ipcNsGh0.png 3362w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11f2som-container\",children:/*#__PURE__*/_jsx(TeamCard,{height:\"100%\",id:\"bfMRt4H4C\",layoutId:\"bfMRt4H4C\",RoFyvfQkS:\"Fabian Meijering\",V3IrghVVi:\"CSO\",width:\"100%\",xY3nKxXQP:addImageAlt({src:\"https://framerusercontent.com/images/xq6M56c6qRFTwMQzugKPNNursU.png\",srcSet:\"https://framerusercontent.com/images/xq6M56c6qRFTwMQzugKPNNursU.png?scale-down-to=1024 891w,https://framerusercontent.com/images/xq6M56c6qRFTwMQzugKPNNursU.png?scale-down-to=2048 1783w,https://framerusercontent.com/images/xq6M56c6qRFTwMQzugKPNNursU.png 3553w\"},\"\")})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xai89k\",\"data-framer-name\":\"FAQ Section\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o0uqnk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6bzh9e\",\"data-framer-name\":\"Label + h2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19pzyn9\",\"data-border\":true,\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xmy9sh\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.38938 16.5386C5.33894 15.0901 4 12.7014 4 10C4 5.58172 7.58172 2 12 2C16.4183 2 20 5.58172 20 10C20 12.7014 18.6611 15.0901 16.6106 16.5386L18.6936 21.2996C18.8043 21.5526 18.6889 21.8474 18.4359 21.9581C18.3727 21.9857 18.3045 22 18.2355 22H5.76451C5.48837 22 5.26451 21.7761 5.26451 21.5C5.26451 21.431 5.27878 21.3628 5.30643 21.2996L7.38938 16.5386ZM14.1246 15.846L15.4567 14.905C17.041 13.7858 18 11.9752 18 10C18 6.68629 15.3137 4 12 4C8.68629 4 6 6.68629 6 10C6 11.9752 6.95901 13.7858 8.54335 14.905L9.87539 15.846L8.05803 20H15.942L14.1246 15.846ZM8.11851 10.9704L10.0593 10.4852C10.2761 11.3553 11.0628 12 12 12C12.9372 12 13.7239 11.3553 13.9407 10.4852L15.8815 10.9704C15.4478 12.7106 13.8745 14 12 14C10.1255 14 8.55217 12.7106 8.11851 10.9704Z\" fill=\"url(#paint0_linear_0_42087)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_42087\" x1=\"12\" y1=\"2\" x2=\"12\" y2=\"22\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(8837deg, rgb(161, 196, 255) 0%, rgb(24, 109, 248) 64.5%)\"},children:\"We've got you covered\"})})}),className:\"framer-148gzuj\",\"data-framer-name\":\"We've got you covered\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently Asked Questions\"})}),className:\"framer-17i23bo\",\"data-framer-name\":\"Frequently Asked Questions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Check out some of the most frequently asked questions from our new Affiliates.\"})}),className:\"framer-ogquf1\",\"data-framer-name\":\"Check out some of the most frequently asked questions from our new Affiliates.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mnp654\",\"data-framer-name\":\"Faq Items\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{width:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,y:(componentViewport?.y||0)+91+7224+100+0+286+0+0},zmWWTKHAC:{width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), ${componentViewport?.width||\"100vw\"} * 0.94)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:944,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l5cplf-container\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"KlhuKSomW\",layoutId:\"KlhuKSomW\",style:{width:\"100%\"},variant:\"UUuQuVQPJ\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-15ijgsn\",\"data-framer-name\":\"Serving Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wt3iay\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s0hbpf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{speed:.5}},children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgba(107, 209, 255, 0)\",baseColor:\"rgb(21, 74, 168)\",dark:.8,diffuse:2,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(24, 43, 102)\",height:\"100%\",id:\"ZhUkc5nMP\",isDraggable:false,layoutId:\"ZhUkc5nMP\",mapBrightness:12,markerArray:[{latitude:55.3781,longitude:3.436},{latitude:52.1326,longitude:5.2913},{latitude:56.1304,longitude:106.3468},{latitude:22.3193,longitude:114.1694},{latitude:39.3999,longitude:8.2245},{latitude:40.9006,longitude:174.886}],markerColor:\"rgb(25, 110, 249)\",markerSize:.05,maxSamples:2e4,maxWidth:800,offset:{offsetX:0,offsetY:0},phi:4,scale:1,speed:1,style:{height:\"100%\",width:\"100%\"},theta:.3,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f1gq7w\",\"data-framer-name\":\"Traffic\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pd4jiq\",\"data-framer-name\":\"Label + h2\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fh67st\",\"data-border\":true,\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ksl9as\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.0003 20.9965H18.0003V22.9965H6.00032V20.9965H11.0003V19.9471C7.70689 19.6201 4.88351 17.6952 3.31641 14.9587L5.05319 13.9662C6.43208 16.3741 9.02674 17.9965 12.0003 17.9965C16.4186 17.9965 20.0003 14.4147 20.0003 9.99641C20.0003 7.02283 18.378 4.42817 15.9701 3.04928L16.9626 1.3125C19.9724 3.03611 22.0003 6.27943 22.0003 9.99641C22.0003 15.1818 18.0536 19.4454 13.0003 19.9471V20.9965ZM12.0003 16.9965C8.13433 16.9965 5.00032 13.8624 5.00032 9.99641C5.00032 6.13042 8.13433 2.99641 12.0003 2.99641C15.8663 2.99641 19.0003 6.13042 19.0003 9.99641C19.0003 13.8624 15.8663 16.9965 12.0003 16.9965ZM12.0003 14.9965C14.7617 14.9965 17.0003 12.7579 17.0003 9.99641C17.0003 7.23499 14.7617 4.99641 12.0003 4.99641C9.2389 4.99641 7.00032 7.23499 7.00032 9.99641C7.00032 12.7579 9.2389 14.9965 12.0003 14.9965Z\" fill=\"url(#paint0_linear_0_41950)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_0_41950\" x1=\"12.6584\" y1=\"1.3125\" x2=\"12.6584\" y2=\"22.9965\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#A2C5FF\"/>\\n<stop offset=\"0.645\" stop-color=\"#196EF9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(8837deg, rgb(161, 196, 255) 0%, rgb(24, 109, 248) 64.5%)\"},children:\"Accept Traffic \"})})}),className:\"framer-lpxu71\",\"data-framer-name\":\"Accept Traffic\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Serving a Global Audience\"})})},zmWWTKHAC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Serving a Global Audience\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-billh3\",\"data-styles-preset\":\"b9iObomCN\",children:\"Serving a Global Audience\"})}),className:\"framer-1r3ehkn\",\"data-framer-name\":\"Serving a Global Audience\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",style:{\"--framer-text-alignment\":\"center\"},children:\"We accept traffic from all over the world.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g36yz2\",\"data-styles-preset\":\"eS9z7tUN6\",children:\"We accept traffic from all over the world.\"})}),className:\"framer-1qraiq\",\"data-framer-name\":\"We accept traffic from all over the world.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:243,width:\"723px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10o3vct-container hidden-16iwrlm\",children:/*#__PURE__*/_jsx(LocationTag,{height:\"100%\",id:\"SjSzxQMeh\",layoutId:\"SjSzxQMeh\",style:{width:\"100%\"},variant:\"rqxpplv5d\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n0vsse-container hidden-1bumiad hidden-i8wxrf hidden-p7k5n\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"Ot2ThEvjC\",layoutId:\"Ot2ThEvjC\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation25,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14vqbzz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1as3os8\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004481\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-z2fll1\",\"data-framer-name\":\"Home - Wealth Wave Affiliation (15)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_0_41795)\">\\n<path d=\"M0.746094 16.6711C2.44156 21.2461 6.83938 24.4992 11.9994 24.4992C17.1594 24.4992 21.5572 21.2461 23.2527 16.6711L11.9994 15.6328L0.746094 16.6711Z\" fill=\"#FFDA44\"/>\\n<path d=\"M11.9994 0.5C6.83938 0.5 2.44156 3.75312 0.746094 8.32812L11.9994 9.36641L23.2527 8.32812C21.5572 3.76016 17.1589 0.5 11.9994 0.5Z\" fill=\"#3D3D3D\"/>\\n<path d=\"M0.746968 8.32812C-0.248664 11.0212 -0.248664 13.9816 0.746968 16.6747H23.2531C24.2487 13.9816 24.2487 11.0212 23.2531 8.32812H0.746968Z\" fill=\"#D80027\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_0_41795\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Germany\"})}),className:\"framer-1j8jba\",\"data-framer-name\":\"Germany\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xlv52f\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004482\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9up437t4ZI0iK4cSD45f2Q.png\"},className:\"framer-iquw6w\",\"data-framer-name\":\"Frame\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UK\"})}),className:\"framer-1hblnlx\",\"data-framer-name\":\"Uk\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18zqhpe\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004483\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w297he\",\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"38px\",src:\"https://framerusercontent.com/images/HZ245ItutfoN5wr4kYn67ZtLQ.png\",srcSet:\"https://framerusercontent.com/images/HZ245ItutfoN5wr4kYn67ZtLQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/HZ245ItutfoN5wr4kYn67ZtLQ.png 920w\"},className:\"framer-1f8zsml\",\"data-framer-name\":\"image 102\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Singapore\"})}),className:\"framer-lfz2xl\",\"data-framer-name\":\"Singapore\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hq0c5d\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004487\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oRzQrVULvB8VBOlkKB8tqDV0sJg.png\"},className:\"framer-1ahq8l6\",\"data-framer-name\":\"Frame\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Italy\"})}),className:\"framer-501qv5\",\"data-framer-name\":\"Italy\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zed0oy\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004484\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-t1z6rz\",\"data-framer-name\":\"Home - Wealth Wave Affiliation (4)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_0_41815)\">\\n<path d=\"M11.9995 24.499C18.6266 24.499 23.999 19.1266 23.999 12.4995C23.999 5.87236 18.6266 0.5 11.9995 0.5C5.37236 0.5 0 5.87236 0 12.4995C0 19.1266 5.37236 24.499 11.9995 24.499Z\" fill=\"white\"/>\\n<path d=\"M23.3153 8.5H15.9219C16.2429 11.0634 16.2449 13.8879 15.928 16.4545H23.3312C23.7632 15.2161 24.001 13.8866 24.001 12.5009C24.0012 11.0975 23.7579 9.75148 23.3153 8.5Z\" fill=\"#EFECEC\"/>\\n<path d=\"M15.9213 8.4966H23.3147C23.3134 8.4928 23.3122 8.4896 23.3109 8.48616C21.775 4.15579 17.8247 0.969793 13.0781 0.546875C14.915 1.55373 15.4513 4.74373 15.9213 8.4966Z\" fill=\"#E63026\"/>\\n<path d=\"M13.0781 24.4499C17.8331 24.0262 21.7892 20.8292 23.319 16.4872C23.323 16.4757 23.3264 16.4643 23.3305 16.4531H15.927C15.4612 20.2263 14.9225 23.4388 13.0781 24.4499Z\" fill=\"#2B479D\"/>\\n<path d=\"M0 12.5009C0 13.8866 0.237781 15.2161 0.669769 16.4545H16.5444C16.8614 13.8877 16.8593 11.0634 16.5384 8.5H0.685678C0.24305 9.75148 0 11.0975 0 12.5009Z\" fill=\"#EFEFEF\"/>\\n<path d=\"M0.687394 8.48879C0.686076 8.49218 0.684911 8.49542 0.683594 8.49922H16.5365C16.0666 4.74631 14.9123 1.55636 13.0758 0.549502C12.7205 0.517987 12.3613 0.5 11.9979 0.5C6.77773 0.5 2.33818 3.83415 0.687394 8.48879Z\" fill=\"#E73B36\"/>\\n<path d=\"M16.5465 16.4531H0.671875C0.675878 16.4643 0.679475 16.4757 0.683427 16.4872C2.32768 21.1538 6.77306 24.4995 12.0018 24.4995C12.3652 24.4995 12.7245 24.4816 13.0797 24.4498C14.924 23.4388 16.0806 20.2263 16.5465 16.4531Z\" fill=\"#3757A6\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_0_41815\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Netherlands\"})}),className:\"framer-1vgdrv8\",\"data-framer-name\":\"The Netherlands\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-118inrt\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004485\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8f9GMD3P2UJmoLDClrPhlyaxyBc.png\"},className:\"framer-fv7mei\",\"data-framer-name\":\"Frame\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Norway\"})}),className:\"framer-12cgemg\",\"data-framer-name\":\"Norway\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kqwpfa\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004486\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NXZNoWVTqPxAWr6Q1qU8B5a90k.png\"},className:\"framer-8lqnms\",\"data-framer-name\":\"Frame\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Denmark\"})}),className:\"framer-1kdugbn\",\"data-framer-name\":\"Denmark\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pp87g7\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004488\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14dqdut\",\"data-framer-name\":\"Home - Wealth Wave Affiliation (8)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_0_41835)\">\\n<path d=\"M11.9998 24.5C18.6272 24.5 23.9998 19.1274 23.9998 12.5C23.9998 5.87258 18.6272 0.5 11.9998 0.5C5.37234 0.5 -0.000244141 5.87258 -0.000244141 12.5C-0.000244141 19.1274 5.37234 24.5 11.9998 24.5Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M23.998 12.5036C23.998 7.34403 20.7415 2.94552 16.1719 1.25V23.7573C20.7415 22.0617 23.998 17.6632 23.998 12.5036Z\" fill=\"#D80027\"/>\\n<path d=\"M0 12.5036C0 17.6632 3.25655 22.0617 7.82611 23.7572V1.25C3.25655 2.94552 0 7.34403 0 12.5036Z\" fill=\"#0052B4\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_0_41835\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"France\"})}),className:\"framer-bx6bf6\",\"data-framer-name\":\"France\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bxcgyo\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004489\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",src:\"https://framerusercontent.com/images/EQ0ETpmcguMzM5qiJNt4qxawI.png\",srcSet:\"https://framerusercontent.com/images/EQ0ETpmcguMzM5qiJNt4qxawI.png?scale-down-to=512 512w,https://framerusercontent.com/images/EQ0ETpmcguMzM5qiJNt4qxawI.png 640w\"},className:\"framer-1i7fzoi\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Finland\"})}),className:\"framer-h3x96n\",\"data-framer-name\":\"Finland\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11zsnjz\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004490\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1o1xfs2\",\"data-framer-name\":\"Home - Wealth Wave Affiliation (9)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_0_41845)\">\\n<path d=\"M11.9999 0.5V24.5C18.6275 24.5 24.0001 19.1274 24.0001 12.5002C24.0001 5.87217 18.6275 0.5 11.9999 0.5Z\" fill=\"#252F6B\"/>\\n<path d=\"M11.9998 0.5C5.37257 0.5 0 5.87237 0 12.5C0 19.1272 5.37257 24.4998 11.9998 24.4998C18.6274 24.4998 18.6274 0.5 11.9998 0.5Z\" fill=\"#273375\"/>\\n<path d=\"M8.23153 18.8917L9.04074 17.883L7.79062 18.1094L7.35691 16.8984L6.8855 18.1094L5.60918 17.883L6.42032 18.8696L5.57812 19.855L6.86178 19.6534L7.29474 20.8394L7.76635 19.654L9.0756 19.888L8.23153 18.8917Z\" fill=\"#F3F4F5\"/>\\n<path d=\"M17.7963 19.7857L18.2552 19.214L17.5465 19.3423L17.3008 18.6562L17.0336 19.3423L16.3104 19.214L16.7701 19.7728L16.293 20.3316L17.0202 20.2172L17.2655 20.8889L17.5327 20.2175L18.2747 20.3502L17.7963 19.7857Z\" fill=\"#F3F4F5\"/>\\n<path d=\"M17.7963 7.15292L18.2552 6.58108L17.5465 6.70953L17.3008 6.02344L17.0336 6.70953L16.3104 6.58108L16.7701 7.1402L16.293 7.6986L17.0202 7.58435L17.2655 8.2564L17.5327 7.5847L18.2747 7.71715L17.7963 7.15292Z\" fill=\"#F3F4F5\"/>\\n<path d=\"M20.7654 10.4263L21.2239 9.85447L20.5157 9.98296L20.2699 9.29688L20.0028 9.98296L19.2791 9.85447L19.7388 10.4136L19.2617 10.9722L19.9889 10.8577L20.2343 11.5298L20.5015 10.8581L21.2434 10.9906L20.7654 10.4263Z\" fill=\"#F3F4F5\"/>\\n<path d=\"M15.2297 11.8715L15.6886 11.2998L14.98 11.4283L14.7342 10.7422L14.4671 11.4283L13.744 11.2998L14.2035 11.8585L13.7266 12.4173L14.4538 12.303L14.6992 12.9745L14.9663 12.3035L15.7083 12.4359L15.2297 11.8715Z\" fill=\"#F3F4F5\"/>\\n<path d=\"M2.51856 5.14844C2.33023 5.39113 2.15041 5.64032 1.98047 5.89705H3.26681L2.51856 5.14844Z\" fill=\"#29337A\"/>\\n<path d=\"M8.71875 12.4997H9.87473L8.71875 11.3438V12.4997Z\" fill=\"#29337A\"/>\\n<path d=\"M4.88304 2.83594C4.60771 3.03906 4.34267 3.2545 4.08594 3.47977L4.88304 4.27651V2.83594Z\" fill=\"#29337A\"/>\\n<path d=\"M3.73047 12.5001H4.8868V11.3438L3.73047 12.5001Z\" fill=\"#29337A\"/>\\n<path d=\"M12.0016 0.5C10.8628 0.5 9.76275 0.661984 8.71875 0.95854V4.27812L12.0019 0.995072V0.5H12.0016Z\" fill=\"#29337A\"/>\\n<path d=\"M12.002 11.3926V9.72656H10.3359L12.002 11.3926Z\" fill=\"#29337A\"/>\\n<path d=\"M0.495122 12.4989L3.26805 9.72656H0.32569C0.114812 10.6169 0 11.5444 0 12.4989H0.495122Z\" fill=\"#29337A\"/>\\n<path d=\"M10.332 5.90118H11.9992V4.23438L10.332 5.90118Z\" fill=\"#29337A\"/>\\n<path d=\"M11.9994 11.7377V11.3877L10.3333 9.72166H11.9994V9.125H9.38672L11.9994 11.7377Z\" fill=\"white\"/>\\n<path d=\"M3.26742 5.88778H1.98108C1.85263 6.08239 1.73058 6.28151 1.61328 6.48388H4.14032L2.64041 4.98438C2.59932 5.03555 2.55894 5.08728 2.51896 5.13896L3.26742 5.88778Z\" fill=\"white\"/>\\n<path d=\"M4.8859 11.3416V12.498H5.4822V10.4688L3.45312 12.498H3.72957L4.8859 11.3416Z\" fill=\"white\"/>\\n<path d=\"M8.7172 0.953125C8.51615 1.01018 8.31758 1.07229 8.12109 1.13918V5.1458L12.0004 1.26671V0.990264L8.7172 4.2727V0.953125Z\" fill=\"white\"/>\\n<path d=\"M4.8627 9.72146L4.88373 9.70043L5.45916 9.125H0.48149C0.424084 9.32184 0.371593 9.52061 0.324219 9.72146H3.26658L0.493651 12.4938H2.09018L4.8627 9.72146Z\" fill=\"white\"/>\\n<path d=\"M12 6.48424V5.88793H10.3329L12 4.22113V2.625L8.14062 6.48424H12Z\" fill=\"white\"/>\\n<path d=\"M4.88284 4.27342L4.08574 3.47667C3.80306 3.72509 3.53169 3.98654 3.27344 4.26055L4.88284 5.86995L4.89991 5.88738L5.47914 6.46661V2.42188C5.27642 2.55356 5.07689 2.6894 4.88304 2.83264V4.27342H4.88284Z\" fill=\"white\"/>\\n<path d=\"M8.71349 11.3378L9.86947 12.4938H11.3925L8.11719 9.21875V12.4938H8.71349V11.3378Z\" fill=\"white\"/>\\n<path d=\"M9.98503 9.72364L9.38892 9.12718H12.0016V6.48781H8.1422L8.12229 6.50808V6.48781H8.1422L12.0016 2.62878V1.26795L8.12209 5.14725V1.14062C7.18438 1.46105 6.29953 1.89339 5.48272 2.42297V6.4675L5.50339 6.48776H5.48272V6.4675L4.90349 5.88832L4.90688 5.89171H4.88662V5.87104L3.27722 4.26164C3.0563 4.49547 2.84467 4.73761 2.64286 4.98846L4.14272 6.48797H1.61573C1.13824 7.31106 0.756459 8.19551 0.484375 9.12733H5.46205L5.48272 9.10631V9.12733H5.46205L4.88662 9.70281V9.72384H4.86559L2.09302 12.4961H3.45384L5.48292 10.4668V12.4961H8.12229V9.22097L11.3974 12.4961H11.8478C11.8991 12.4425 11.9514 12.3892 12.0018 12.3341V11.7396L9.98503 9.72364Z\" fill=\"#D32030\"/>\\n<path d=\"M8.12109 5.14493L12.0006 1.26562L8.12109 5.14493Z\" fill=\"#D32030\"/>\\n<path d=\"M4.88829 9.72443V9.70312L4.86719 9.72443H4.88829Z\" fill=\"#D32030\"/>\\n<path d=\"M5.48183 9.10938L5.46094 9.13048H5.48183V9.10938Z\" fill=\"#D32030\"/>\\n<path d=\"M8.12109 6.50471L8.14128 6.48438H8.12109V6.50471Z\" fill=\"#D32030\"/>\\n<path d=\"M4.88672 5.88788H4.90726L4.90385 5.88468L4.88672 5.86719V5.88788Z\" fill=\"#D32030\"/>\\n<path d=\"M5.50507 6.48929L5.48438 6.46875V6.48929H5.50507Z\" fill=\"#D32030\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_0_41845\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Australia\"})}),className:\"framer-7zk18r\",\"data-framer-name\":\"Australia\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ygrb47\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004491\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HvuKkdAdrIuYkZxnKHFNKeXaKkQ.png\"},className:\"framer-121v8fn\",\"data-framer-name\":\"Frame\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Switzerland\"})}),className:\"framer-1hwbp1p\",\"data-framer-name\":\"Switzerland\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13qhkeq\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004492\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ogSoDjlcPDuOgZfbdy5A6rQv1y8.png\"},className:\"framer-j8acpi\",\"data-framer-name\":\"Frame\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sweden\"})}),className:\"framer-1vcuw5v\",\"data-framer-name\":\"Sweden\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vfoevb\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004493\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-l1y5di\",\"data-framer-name\":\"Home - Wealth Wave Affiliation (10)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_0_41895)\">\\n<path d=\"M12.0001 24.5C18.6275 24.5 24.0001 19.1274 24.0001 12.5C24.0001 5.87258 18.6275 0.5 12.0001 0.5C5.3727 0.5 0.00012207 5.87258 0.00012207 12.5C0.00012207 19.1274 5.3727 24.5 12.0001 24.5Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M24.0014 12.4968C24.0014 7.73925 21.2327 3.6285 17.2188 1.6875V23.306C21.2327 21.3651 24.0014 17.2543 24.0014 12.4968Z\" fill=\"#D80027\"/>\\n<path d=\"M0 12.4968C0 17.2543 2.76867 21.3651 6.78263 23.3061V1.6875C2.76867 3.6285 0 7.73925 0 12.4968Z\" fill=\"#D80027\"/>\\n<path d=\"M14.089 14.0611L16.1759 13.0176L15.1325 12.4959V11.4524L13.0455 12.4959L14.089 10.409H13.0455L12.002 8.84375L10.9585 10.409H9.91505L10.9585 12.4959L8.87156 11.4524V12.4959L7.82812 13.0176L9.91505 14.0611L9.39333 15.1046H11.4803V16.6698H12.5237V15.1046H14.6107L14.089 14.0611Z\" fill=\"#D80027\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_0_41895\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Canada\"})}),className:\"framer-1x5sn5q\",\"data-framer-name\":\"Canada\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-shoq63\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004494\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BbaGbPp4SKWjwMoGmuviFCjwxA.png\"},className:\"framer-383774\",\"data-framer-name\":\"Frame\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Hong Kong\"})}),className:\"framer-z3szom\",\"data-framer-name\":\"Hong Kong\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sc55hv\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004495\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1buzgc1\",\"data-framer-name\":\"Home - Wealth Wave Affiliation (16)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_0_41908)\">\\n<path d=\"M12 24.5C18.6274 24.5 24 19.1274 24 12.5C24 5.87258 18.6274 0.5 12 0.5C5.37258 0.5 0 5.87258 0 12.5C0 19.1274 5.37258 24.5 12 24.5Z\" fill=\"#27273D\"/>\\n<path d=\"M9.60938 0.734375V24.2577C4.12734 23.1495 0 18.3045 0 12.4962C0 6.68797 4.12734 1.8425 9.60938 0.734375Z\" fill=\"#02934D\"/>\\n<path d=\"M24 12.4963C24 19.055 18.7392 24.3842 12.2067 24.4963H11.7933C11.0597 24.4846 10.3287 24.4061 9.60938 24.2619V0.734375C10.3196 0.59168 11.0413 0.513238 11.7656 0.5H12.2344C18.7528 0.621875 24 5.94641 24 12.4963Z\" fill=\"#DB1B1B\"/>\\n<path d=\"M9.60938 4.64062C8.60355 4.64063 7.62031 4.93886 6.78398 5.49763C5.94764 6.0564 5.29576 6.8506 4.91076 7.77983C4.52577 8.70905 4.42494 9.73157 4.62103 10.7181C4.81712 11.7046 5.30132 12.6108 6.01241 13.3222C6.72351 14.0336 7.62956 14.5181 8.61601 14.7145C9.60246 14.911 10.625 14.8105 11.5544 14.4259C12.4837 14.0412 13.2782 13.3897 13.8373 12.5535C14.3963 11.7174 14.6949 10.7343 14.6953 9.72844C14.6942 8.37973 14.1581 7.08656 13.2046 6.13271C12.2511 5.17885 10.9581 4.64224 9.60938 4.64062ZM13.9781 9.375H10.4583L10.5286 9.30469L11.8083 8.02453L12.9455 6.88734C13.5437 7.58677 13.9051 8.45757 13.9781 9.375ZM9.96094 5.35781C10.8356 5.42765 11.6687 5.75978 12.3516 6.31078L12.4453 6.38953L9.96094 8.87719V5.35781ZM9.25781 5.35781V8.87719L9.13125 8.75109L7.725 7.3425L6.7725 6.38953L6.86625 6.31078C7.54933 5.75961 8.38287 5.42747 9.25781 5.35781ZM6.27328 6.88734L7.41094 8.02453L8.69063 9.30656L8.76094 9.37687H5.24063C5.31346 8.45884 5.67493 7.58739 6.27328 6.88734ZM5.24203 10.0781H8.76235L8.27485 10.5652L7.60313 11.2364L6.9 11.9395L6.27516 12.5648C5.67698 11.8656 5.31492 10.9953 5.24063 10.0781H5.24203ZM9.25922 14.0948C8.3422 14.0218 7.47171 13.6608 6.77203 13.0636L7.30641 12.5287L7.99781 11.8378L9.25781 10.5769L9.25922 14.0948ZM9.96235 14.0948V10.5745L12.45 13.0627C11.7499 13.6606 10.8787 14.0219 9.96094 14.0948H9.96235ZM12.9469 12.5653L11.6189 11.2369L10.9481 10.5675L10.4583 10.0781H13.9781C13.9047 10.9953 13.5432 11.8658 12.9455 12.5653H12.9469Z\" fill=\"#F6C752\"/>\\n<path d=\"M6.9375 6.3125C6.83187 6.31262 6.73059 6.35464 6.6559 6.42934C6.5812 6.50403 6.53919 6.6053 6.53906 6.71094V10.8331H6.55641C6.63682 11.5868 6.99311 12.2841 7.55672 12.7908C8.12033 13.2976 8.85144 13.578 9.60938 13.5781C10.3673 13.5781 11.0985 13.2977 11.6621 12.791C12.2258 12.2842 12.582 11.5868 12.6623 10.8331H12.6797V6.70859C12.6791 6.60333 12.6368 6.50259 12.5622 6.42837C12.4875 6.35415 12.3865 6.3125 12.2812 6.3125H6.9375Z\" fill=\"#E83838\"/>\\n<path d=\"M7.79453 7.33828C7.69259 7.33828 7.59482 7.37878 7.52274 7.45086C7.45065 7.52295 7.41016 7.62071 7.41016 7.72266V10.5727H7.42234C7.4792 11.1129 7.73403 11.613 8.13772 11.9765C8.5414 12.34 9.06536 12.5413 9.60859 12.5414C10.1519 12.5413 10.6759 12.3401 11.0797 11.9766C11.4834 11.613 11.7383 11.113 11.7953 10.5727H11.8075V7.72031C11.8075 7.61837 11.767 7.5206 11.6949 7.44852C11.6228 7.37643 11.5251 7.33594 11.4231 7.33594L7.79453 7.33828Z\" fill=\"white\"/>\\n<path d=\"M9.16797 7.78125C9.1431 7.78125 9.11926 7.79113 9.10168 7.80871C9.0841 7.82629 9.07422 7.85014 9.07422 7.875V8.56875H9.0775C9.0915 8.69999 9.15352 8.82142 9.25165 8.90968C9.34978 8.99795 9.47708 9.04681 9.60906 9.04688C9.74113 9.04693 9.86854 8.99811 9.96677 8.90984C10.065 8.82156 10.1271 8.70007 10.1411 8.56875H10.1439V7.875C10.1439 7.85014 10.134 7.82629 10.1164 7.80871C10.0989 7.79113 10.075 7.78125 10.0502 7.78125H9.16797Z\" fill=\"#3E436D\"/>\\n<path d=\"M9.16797 10.9223C9.1431 10.9223 9.11926 10.9322 9.10168 10.9498C9.0841 10.9674 9.07422 10.9912 9.07422 11.0161V11.7103H9.0775C9.0916 11.8415 9.15368 11.9628 9.2518 12.051C9.34991 12.1391 9.47715 12.1879 9.60906 12.188C9.74113 12.188 9.86854 12.1392 9.96677 12.0509C10.065 11.9627 10.1271 11.8412 10.1411 11.7098H10.1439V11.0156C10.1439 10.9908 10.134 10.9669 10.1164 10.9493C10.0989 10.9318 10.075 10.9219 10.0502 10.9219L9.16797 10.9223Z\" fill=\"#3E436D\"/>\\n<path d=\"M9.16797 9.3125C9.1431 9.3125 9.11926 9.32238 9.10168 9.33996C9.0841 9.35754 9.07422 9.38139 9.07422 9.40625V10.1H9.0775C9.0915 10.2312 9.15352 10.3527 9.25165 10.4409C9.34978 10.5292 9.47708 10.5781 9.60906 10.5781C9.74113 10.5782 9.86854 10.5294 9.96677 10.4411C10.065 10.3528 10.1271 10.2313 10.1411 10.1H10.1439V9.40625C10.1439 9.38139 10.134 9.35754 10.1164 9.33996C10.0989 9.32238 10.075 9.3125 10.0502 9.3125H9.16797Z\" fill=\"#3E436D\"/>\\n<path d=\"M7.90234 9.3125C7.87748 9.3125 7.85363 9.32238 7.83605 9.33996C7.81847 9.35754 7.80859 9.38139 7.80859 9.40625V10.1H7.81188C7.82587 10.2312 7.8879 10.3527 7.98603 10.4409C8.08416 10.5292 8.21145 10.5781 8.34344 10.5781C8.4755 10.5782 8.60292 10.5294 8.70114 10.4411C8.79937 10.3528 8.86146 10.2313 8.87547 10.1H8.87828V9.40625C8.87828 9.38139 8.8684 9.35754 8.85082 9.33996C8.83324 9.32238 8.8094 9.3125 8.78453 9.3125H7.90234Z\" fill=\"#3E436D\"/>\\n<path d=\"M10.457 9.3125C10.4322 9.3125 10.4083 9.32238 10.3907 9.33996C10.3732 9.35754 10.3633 9.38139 10.3633 9.40625V10.1H10.3666C10.3806 10.2312 10.4426 10.3527 10.5407 10.4409C10.6388 10.5292 10.7661 10.5781 10.8981 10.5781C11.0302 10.5782 11.1576 10.5294 11.2558 10.4411C11.3541 10.3528 11.4162 10.2313 11.4302 10.1H11.433V9.40625C11.433 9.38139 11.4231 9.35754 11.4055 9.33996C11.3879 9.32238 11.3641 9.3125 11.3392 9.3125H10.457Z\" fill=\"#3E436D\"/>\\n<path d=\"M9.60938 0.734375V1.77219C7.6224 2.77191 5.95225 4.30401 4.78523 6.19758C3.61822 8.09115 3.00024 10.2717 3.00024 12.496C3.00024 14.7203 3.61822 16.9009 4.78523 18.7944C5.95225 20.688 7.6224 22.2201 9.60938 23.2198V24.2577C4.12734 23.1495 0 18.3045 0 12.4962C0 6.68797 4.12734 1.8425 9.60938 0.734375Z\" fill=\"#037C3C\"/>\\n<path d=\"M12.6094 0.734375C11.5675 0.944805 10.5585 1.29385 9.60938 1.77219V0.734375C10.3196 0.59168 11.0413 0.513238 11.7656 0.5H12.2344C12.6575 0.508173 13.08 0.538213 13.5 0.59C13.2 0.626094 12.9028 0.675313 12.6094 0.734375Z\" fill=\"#C41C1C\"/>\\n<path d=\"M12.6094 24.2566C12.9019 24.3156 13.1991 24.3644 13.5 24.4019C13.0709 24.4561 12.6392 24.4872 12.2067 24.4952H11.7933C11.0597 24.4835 10.3287 24.405 9.60938 24.2608V23.2188C10.5585 23.6971 11.5675 24.0461 12.6094 24.2566Z\" fill=\"#C41C1C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_0_41908\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Portugal\"})}),className:\"framer-cz5gs\",\"data-framer-name\":\"Portugal\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yxu5e8\",\"data-border\":true,\"data-framer-name\":\"Frame 1000004496\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fgkhlu\",\"data-framer-name\":\"Home - Wealth Wave Affiliation\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_0_41928)\">\\n<path d=\"M24 12.5C24 19.1274 18.6274 24.5 12 24.5C5.37262 24.5 0 19.1274 0 12.5C0 12.5029 12 0.501313 12 0.5C18.6274 0.5 24 5.87262 24 12.5Z\" fill=\"#0052B4\"/>\\n<path d=\"M11.9688 12.5009H12.0009C12.0009 12.4901 12.0009 12.4796 12.0009 12.4688C11.9902 12.4795 11.9795 12.4902 11.9688 12.5009Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M12 6.76086C12 4.64937 12 3.26586 12 0.5H11.998C5.3715 0.501125 0 5.87323 0 12.5H6.26086V8.97448L9.78642 12.5H11.9679C11.9786 12.4893 11.9894 12.4786 12 12.4679C12 11.6594 12 10.9381 12 10.2865L8.47444 6.76086H12Z\" fill=\"#F0F0F0\"/>\\n<path d=\"M6.07222 2.0625C4.19539 3.1312 2.63511 4.69148 1.56641 6.56831V12.4973H4.69686V5.19305V5.19295H12.0012C12.0012 4.20563 12.0012 3.26503 12.0012 2.0625H6.07222Z\" fill=\"#D80027\"/>\\n<path d=\"M12.0008 11.0212L7.73739 6.75781C7.73739 6.75781 6.26172 6.75791 6.26172 6.75781V6.75791L12.0008 12.4969H12.0008C12.0008 12.4969 12.0008 11.4794 12.0008 11.0212Z\" fill=\"#D80027\"/>\\n<path d=\"M20.7808 9.40625L21.0398 10.2034H21.878L21.1999 10.6961L21.4589 11.4932L20.7808 11.0006L20.1027 11.4932L20.3617 10.6961L19.6836 10.2034H20.5218L20.7808 9.40625Z\" fill=\"#D80027\"/>\\n<path d=\"M17.7864 15.1406L18.175 16.3364H19.4322L18.415 17.0753L18.8036 18.2711L17.7864 17.5321L16.7692 18.2711L17.1578 17.0753L16.1406 16.3364H17.3979L17.7864 15.1406Z\" fill=\"#D80027\"/>\\n<path d=\"M17.8988 5.75L18.2226 6.74652H19.2703L18.4226 7.36222L18.7464 8.35869L17.8988 7.7428L17.0512 8.35869L17.3749 7.36222L16.5273 6.74652H17.575L17.8988 5.75Z\" fill=\"#D80027\"/>\\n<path d=\"M15.0169 9.36719L15.4054 10.563H16.6627L15.6455 11.3019L16.0341 12.4976L15.0169 11.7587L13.9997 12.4976L14.3883 11.3019L13.3711 10.563H14.6283L15.0169 9.36719Z\" fill=\"#D80027\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_0_41928\">\\n<rect width=\"24\" height=\"24\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"New Zealand\"})}),className:\"framer-1w0ay0q\",\"data-framer-name\":\"New Zealand\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-35jb4\",\"data-framer-name\":\"Frame 1000004497\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90.8837deg, rgb(161, 196, 255) 0%, rgb(24, 109, 248) 64.5%)\"},children:\"Many More\"})})}),className:\"framer-3w8ic2\",\"data-framer-name\":\"Many More\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RuaE8c7Bl:{y:(componentViewport?.y||0)+91+9734}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:831,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y6ikxg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MmUs0dCFf:{variant:\"PxaMlKTgk\"},RuaE8c7Bl:{Mg_Krzw8B:\"80px 0px 0px 0px\",variant:\"V2qyHeY6W\"},zmWWTKHAC:{Mg_Krzw8B:\"80px 0px 0px 0px\",variant:\"XKIQabuuY\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"RNA72duPI\",layoutId:\"RNA72duPI\",Mg_Krzw8B:\"260px 0px 0px 0px\",style:{width:\"100%\"},variant:\"fDHUdmdWA\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s2ANx.framer-m8vkrp, .framer-s2ANx .framer-m8vkrp { display: block; }\",\".framer-s2ANx.framer-1bumiad { align-content: center; align-items: center; background-color: var(--token-9dad9c20-e130-4cac-9799-d96e91d32c34, #001145); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 44px 0px; position: relative; width: 1440px; }\",\".framer-s2ANx .framer-11cgb2d { flex: none; height: 9163px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-s2ANx .framer-18qiquo { aspect-ratio: 1 / 1; bottom: 260px; flex: none; height: var(--framer-aspect-ratio-supported, 899px); overflow: visible; position: absolute; right: -260px; width: 899px; z-index: 1; }\",\".framer-s2ANx .framer-39icx0 { aspect-ratio: 2.1227887617065555 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 605px); left: 50%; opacity: 0.3; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); width: 1284px; z-index: 1; }\",\".framer-s2ANx .framer-1pk2lc { aspect-ratio: 2.73431448489543 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); left: -155px; overflow: visible; position: absolute; right: -155px; top: 0px; }\",\".framer-s2ANx .framer-1woo8t1 { aspect-ratio: 1.5351063829787235 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 942px); left: -3px; overflow: visible; position: absolute; right: -3px; top: -216px; z-index: 3; }\",\".framer-s2ANx .framer-dvum7v { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1440px); left: 50%; overflow: visible; position: absolute; top: 339px; transform: translateX(-50%); width: 100%; }\",\".framer-s2ANx .framer-7tomrt { aspect-ratio: 1.0008298755186722 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 763px); overflow: visible; position: absolute; right: -61px; top: 2101px; width: 764px; z-index: 1; }\",\".framer-s2ANx .framer-19sbtbd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1440px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 2100px; }\",\".framer-s2ANx .framer-cqgn4a { --border-bottom-width: 5px; --border-color: #0a2962; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; background-color: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #001145); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -980px; box-shadow: 0px 15px 150px 0px rgba(69, 153, 238, 0.2); flex: none; height: 2245px; left: -402px; overflow: hidden; position: absolute; right: -402px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-s2ANx .framer-qitgd7, .framer-s2ANx .framer-xsb0of { aspect-ratio: 1.4865718799368088 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1089px); left: 50%; overflow: visible; position: absolute; top: 1px; transform: translateX(-50%); width: 1618px; }\",'.framer-s2ANx .framer-oed0lv { background: linear-gradient(180deg, rgba(2, 19, 71, 0) 0%, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(0, 17, 69)) /* {\"name\":\"Neutral / Surface Main\"} */ 100%); bottom: 329px; flex: none; height: 291px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; }',\".framer-s2ANx .framer-66pdwk { align-content: center; align-items: center; bottom: 408px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 7501px; }\",\".framer-s2ANx .framer-1bele6p { --border-bottom-width: 5px; --border-color: #0a2962; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; background-color: var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, #021347); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -1495px; box-shadow: 0px 15px 150px 0px rgba(69, 153, 238, 0.2); flex: none; height: 2335px; left: -447px; overflow: hidden; position: absolute; right: -447px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",'.framer-s2ANx .framer-1wwwcza { background: linear-gradient(180deg, rgba(2, 19, 71, 0) 0%, var(--token-8bcf99a0-27bf-418d-8278-cd3db9d9fc4d, rgb(2, 19, 71)) /* {\"name\":\"Heavy Blue\"} */ 100%); bottom: 338px; flex: none; height: 282px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; }',\".framer-s2ANx .framer-1awtfg1 { background-color: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #001145); bottom: 0px; flex: none; height: 360px; left: calc(50.00000000000002% - 207.6923076923077% / 2); overflow: hidden; position: absolute; width: 208%; z-index: 10; }\",\".framer-s2ANx .framer-z7hesu { aspect-ratio: 1 / 1; bottom: 3866px; flex: none; height: var(--framer-aspect-ratio-supported, 759px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 759px; }\",\".framer-s2ANx .framer-1uy7rba { aspect-ratio: 1 / 1; bottom: 2530px; flex: none; height: var(--framer-aspect-ratio-supported, 899px); overflow: visible; position: absolute; right: -354px; width: 899px; }\",\".framer-s2ANx .framer-1pw0049 { aspect-ratio: 1 / 1; bottom: 1366px; flex: none; height: var(--framer-aspect-ratio-supported, 1231px); left: 50%; opacity: 0.7; overflow: visible; position: absolute; transform: translateX(-50%); width: 1231px; }\",\".framer-s2ANx .framer-hc9303-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-s2ANx .framer-1uckbjz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 170px 0px 100px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-s2ANx .framer-ba9fqn { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-s2ANx .framer-j0a9lz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-s2ANx .framer-cap21 { --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-s2ANx .framer-ncyr0x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 532px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-uqv9cr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-b6kbdb-container { flex: none; height: 45px; position: relative; width: 150px; }\",\".framer-s2ANx .framer-12k2mu-container, .framer-s2ANx .framer-1wj3rmx-container, .framer-s2ANx .framer-dk6vds-container, .framer-s2ANx .framer-1hflwyk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-s2ANx .framer-1y2ul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-7kag50 { 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-s2ANx .framer-kkbuq { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s2ANx .framer-x43usd-container, .framer-s2ANx .framer-g94l0o-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-13tcovx { -webkit-backdrop-filter: blur(10px); aspect-ratio: 1.7140600315955765 / 1; backdrop-filter: blur(10px); flex: none; height: var(--framer-aspect-ratio-supported, 654px); overflow: visible; position: relative; width: 1121px; }\",\".framer-s2ANx .framer-c2qvho { aspect-ratio: 1.777391304347826 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 595px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 94%; }\",\".framer-s2ANx .framer-50842s-container { aspect-ratio: 1.777027027027027 / 1; flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 1057px); }\",\".framer-s2ANx .framer-vqpz89 { bottom: 151px; flex: none; height: 204px; left: -115px; overflow: visible; position: absolute; width: 255px; }\",\".framer-s2ANx .framer-1laglpk-container { flex: none; height: auto; left: 0px; position: absolute; top: 111px; width: auto; }\",\".framer-s2ANx .framer-1dcpc2e-container { flex: none; height: auto; position: absolute; right: 0px; top: 0px; width: auto; }\",\".framer-s2ANx .framer-1ces4l-container { flex: none; height: auto; position: absolute; right: -51px; top: -65px; width: auto; }\",\".framer-s2ANx .framer-4avbn1-container { flex: none; height: auto; position: absolute; right: -113px; top: 46%; transform: translateY(-50%); width: auto; }\",\".framer-s2ANx .framer-8mohj1-container, .framer-s2ANx .framer-qjkgns-container { flex: none; height: auto; position: relative; width: 100%; z-index: 4; }\",\".framer-s2ANx .framer-s3eesp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-17pg9vv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-s2ANx .framer-xo68tj, .framer-s2ANx .framer-chnazl { 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-s2ANx .framer-cfseu1, .framer-s2ANx .framer-rif59h, .framer-s2ANx .framer-6ptl8h, .framer-s2ANx .framer-1o4xc8m, .framer-s2ANx .framer-19pzyn9, .framer-s2ANx .framer-1fh67st { --border-bottom-width: 0.800000011920929px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 0.800000011920929px; --border-right-width: 0.800000011920929px; --border-style: solid; --border-top-width: 0.800000011920929px; align-content: center; align-items: center; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-s2ANx .framer-1jayapy, .framer-s2ANx .framer-1x254oq { flex: none; height: 24px; position: relative; width: 25px; }\",\".framer-s2ANx .framer-1oylbmy, .framer-s2ANx .framer-h24jkb, .framer-s2ANx .framer-iscr3o, .framer-s2ANx .framer-1u7knon, .framer-s2ANx .framer-1btvbx4, .framer-s2ANx .framer-1ox8tdc, .framer-s2ANx .framer-6238xo, .framer-s2ANx .framer-1s0qv9w, .framer-s2ANx .framer-e5qwzx, .framer-s2ANx .framer-15ghotu, .framer-s2ANx .framer-148gzuj, .framer-s2ANx .framer-lpxu71, .framer-s2ANx .framer-1j8jba, .framer-s2ANx .framer-1hblnlx, .framer-s2ANx .framer-lfz2xl, .framer-s2ANx .framer-501qv5, .framer-s2ANx .framer-1vgdrv8, .framer-s2ANx .framer-12cgemg, .framer-s2ANx .framer-1kdugbn, .framer-s2ANx .framer-bx6bf6, .framer-s2ANx .framer-h3x96n, .framer-s2ANx .framer-7zk18r, .framer-s2ANx .framer-1hwbp1p, .framer-s2ANx .framer-1vcuw5v, .framer-s2ANx .framer-1x5sn5q, .framer-s2ANx .framer-z3szom, .framer-s2ANx .framer-cz5gs, .framer-s2ANx .framer-1w0ay0q, .framer-s2ANx .framer-3w8ic2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s2ANx .framer-6b0cvs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 473px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-wyb3vt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-1vuaoig-container, .framer-s2ANx .framer-128oqgs-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-s2ANx .framer-1yq7b3x-container { align-self: stretch; flex: 1 0 0px; height: auto; max-height: 537px; position: relative; width: 1px; }\",\".framer-s2ANx .framer-r6eu57, .framer-s2ANx .framer-1mgc2l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-s2ANx .framer-wcxsc7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-s2ANx .framer-1qwa5lz, .framer-s2ANx .framer-1l7pgyw, .framer-s2ANx .framer-5hrqok, .framer-s2ANx .framer-1mnrfti { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-1quozlh, .framer-s2ANx .framer-h2b1k9, .framer-s2ANx .framer-9r4sm7, .framer-s2ANx .framer-xmy9sh, .framer-s2ANx .framer-1ksl9as, .framer-s2ANx .framer-iquw6w, .framer-s2ANx .framer-1ahq8l6, .framer-s2ANx .framer-fv7mei, .framer-s2ANx .framer-8lqnms, .framer-s2ANx .framer-121v8fn, .framer-s2ANx .framer-j8acpi, .framer-s2ANx .framer-383774 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-s2ANx .framer-mc5fwd, .framer-s2ANx .framer-hqyesv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 613px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-uk9p2m { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 724px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-ubsts6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-17zfquq, .framer-s2ANx .framer-1a103e9 { align-content: center; align-items: center; border-bottom-right-radius: 45px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 307px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s2ANx .framer-467qvh, .framer-s2ANx .framer-12x9uzh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 307px; justify-content: flex-start; overflow: hidden; padding: 66px 60px 66px 60px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-i8dfr2, .framer-s2ANx .framer-npi8wo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 349px; z-index: 2; }\",\".framer-s2ANx .framer-1iy4ydt, .framer-s2ANx .framer-1x9s255, .framer-s2ANx .framer-38k2q0, .framer-s2ANx .framer-zeuzc4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 349px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-1oa1s2z { aspect-ratio: 1.5 / 1; bottom: -16px; flex: none; height: var(--framer-aspect-ratio-supported, 134px); position: absolute; right: -40px; width: 192px; z-index: 1; }\",\".framer-s2ANx .framer-1wi9b85 { aspect-ratio: 1.148936170212766 / 1; bottom: -1px; flex: none; height: var(--framer-aspect-ratio-supported, 132px); position: absolute; right: 0px; width: 152px; z-index: 1; }\",\".framer-s2ANx .framer-i6ze25 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 328px; justify-content: flex-start; overflow: hidden; padding: 50px 60px 50px 60px; position: relative; width: 714px; }\",\".framer-s2ANx .framer-126m372 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 307px; z-index: 2; }\",\".framer-s2ANx .framer-1ob5rlt, .framer-s2ANx .framer-1oavtb1, .framer-s2ANx .framer-1o0nmcy { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-1jxwety { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 307px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-1gkan0i-container { bottom: -138px; flex: none; height: 432px; position: absolute; right: -180px; width: 432px; z-index: 1; }\",\".framer-s2ANx .framer-1wtzrm8 { align-content: center; align-items: center; border-bottom-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 346px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-s2ANx .framer-8tez16 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-s2ANx .framer-94fvc6-container { bottom: -138px; flex: none; height: 432px; position: absolute; right: -246px; width: 432px; z-index: 1; }\",\".framer-s2ANx .framer-1hrfan5 { background-color: rgba(255, 255, 255, 0); flex: none; height: 60px; overflow: hidden; position: relative; width: 28px; }\",\".framer-s2ANx .framer-cs9rdy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1160px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s2ANx .framer-obsaot { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 897px; }\",\".framer-s2ANx .framer-1tb8rk8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-1mtnee0, .framer-s2ANx .framer-19t4wng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-w1m884, .framer-s2ANx .framer-uli9eh, .framer-s2ANx .framer-ydekuc, .framer-s2ANx .framer-1tz0fy8, .framer-s2ANx .framer-1wm5nw1, .framer-s2ANx .framer-1qtntox { align-content: center; align-items: center; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 10px 16px 10px 10px; position: relative; width: min-content; }\",\".framer-s2ANx .framer-1cg5zt2, .framer-s2ANx .framer-lual8v, .framer-s2ANx .framer-o94gng, .framer-s2ANx .framer-188a7je, .framer-s2ANx .framer-4824d, .framer-s2ANx .framer-z2fll1, .framer-s2ANx .framer-t1z6rz, .framer-s2ANx .framer-14dqdut, .framer-s2ANx .framer-1o1xfs2, .framer-s2ANx .framer-l1y5di, .framer-s2ANx .framer-1buzgc1, .framer-s2ANx .framer-fgkhlu { flex: none; height: 25px; position: relative; width: 24px; }\",\".framer-s2ANx .framer-m8vgb1 { --border-bottom-width: 1px; --border-color: rgba(69, 153, 238, 0.7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 0px; flex: none; height: 100%; left: 0px; mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\".framer-s2ANx .framer-i42wsj { --border-bottom-width: 1px; --border-color: rgba(69, 153, 238, 0.7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-s2ANx .framer-ybyl0d { --border-bottom-width: 1px; --border-color: rgba(69, 153, 238, 0.7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; position: absolute; top: calc(48.88888888888891% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-s2ANx .framer-p0xkcu { --border-bottom-width: 1px; --border-color: rgba(69, 153, 238, 0.7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 100%; left: 0px; mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-s2ANx .framer-ye7f84 { --border-bottom-width: 1px; --border-color: rgba(69, 153, 238, 0.7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 100%; left: 0px; mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; position: absolute; top: calc(48.88888888888891% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-s2ANx .framer-1hs88mk { --border-bottom-width: 1px; --border-color: rgba(69, 153, 238, 0.7); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 100%; mask: linear-gradient(65deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: visible; position: absolute; right: 0px; top: 0px; width: 100%; z-index: 1; }\",\".framer-s2ANx .framer-1smwp00 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-s2ANx .framer-1emaaz3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-s2ANx .framer-11ildpq, .framer-s2ANx .framer-1ixp0c3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 714px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-1d1559y-container { flex: none; height: 372px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-7lbbqz-container, .framer-s2ANx .framer-14hm8vh-container, .framer-s2ANx .framer-10ciq7t-container, .framer-s2ANx .framer-11f2som-container { height: auto; position: relative; width: auto; }\",\".framer-s2ANx .framer-xai89k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-s2ANx .framer-1o0uqnk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-s2ANx .framer-6bzh9e { 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: 897px; }\",\".framer-s2ANx .framer-17i23bo, .framer-s2ANx .framer-1r3ehkn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 897px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-ogquf1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 385px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-1mnp654 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-1l5cplf-container, .framer-s2ANx .framer-y6ikxg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-s2ANx .framer-15ijgsn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 50px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-s2ANx .framer-1wt3iay { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-s2ANx .framer-s0hbpf-container { aspect-ratio: 1 / 1; bottom: -126px; flex: none; height: var(--framer-aspect-ratio-supported, 664px); position: absolute; right: -140px; width: 664px; z-index: 1; }\",\".framer-s2ANx .framer-1f1gq7w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-s2ANx .framer-1pd4jiq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-s2ANx .framer-1qraiq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 331px; word-break: break-word; word-wrap: break-word; }\",\".framer-s2ANx .framer-10o3vct-container { flex: none; height: auto; position: relative; width: 723px; }\",\".framer-s2ANx .framer-1n0vsse-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-s2ANx .framer-14vqbzz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 15px 0px 0px; position: relative; width: 2551px; }\",\".framer-s2ANx .framer-1as3os8 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.03); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(25px); align-content: center; align-items: center; backdrop-filter: blur(25px); background: linear-gradient(254.2285525172091deg, rgba(1, 20, 73, 0.5) 0%, rgba(7, 31, 104, 0.5) 100%); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-s2ANx .framer-xlv52f { --border-bottom-width: 0.800000011920929px; --border-color: rgba(255, 255, 255, 0.03); --border-left-width: 0.800000011920929px; --border-right-width: 0.800000011920929px; --border-style: solid; --border-top-width: 0.800000011920929px; align-content: center; align-items: center; background: linear-gradient(254.2285525172091deg, rgba(1, 20, 73, 0.5) 0%, rgba(7, 31, 104, 0.5) 100%); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 12px; position: relative; width: min-content; }\",\".framer-s2ANx .framer-18zqhpe, .framer-s2ANx .framer-1hq0c5d, .framer-s2ANx .framer-zed0oy, .framer-s2ANx .framer-118inrt, .framer-s2ANx .framer-kqwpfa, .framer-s2ANx .framer-pp87g7, .framer-s2ANx .framer-1bxcgyo, .framer-s2ANx .framer-11zsnjz, .framer-s2ANx .framer-1ygrb47, .framer-s2ANx .framer-13qhkeq, .framer-s2ANx .framer-1vfoevb, .framer-s2ANx .framer-shoq63, .framer-s2ANx .framer-sc55hv, .framer-s2ANx .framer-yxu5e8 { --border-bottom-width: 0.800000011920929px; --border-color: rgba(255, 255, 255, 0.03); --border-left-width: 0.800000011920929px; --border-right-width: 0.800000011920929px; --border-style: solid; --border-top-width: 0.800000011920929px; -webkit-backdrop-filter: blur(25px); align-content: center; align-items: center; backdrop-filter: blur(25px); background: linear-gradient(254.2285525172091deg, rgba(1, 20, 73, 0.5) 0%, rgba(7, 31, 104, 0.5) 100%); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-s2ANx .framer-1w297he, .framer-s2ANx .framer-1i7fzoi { border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; border-top-left-radius: 9999px; border-top-right-radius: 9999px; flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s2ANx .framer-1f8zsml { aspect-ratio: 1.5333332563701467 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 25px; left: -7px; position: absolute; right: -7px; top: 0px; }\",\".framer-s2ANx .framer-35jb4 { -webkit-backdrop-filter: blur(25px); align-content: center; align-items: center; backdrop-filter: blur(25px); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 14px 18px 14px 16px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2ANx.framer-1bumiad, .framer-s2ANx .framer-19sbtbd, .framer-s2ANx .framer-66pdwk, .framer-s2ANx .framer-1uckbjz, .framer-s2ANx .framer-ba9fqn, .framer-s2ANx .framer-j0a9lz, .framer-s2ANx .framer-uqv9cr, .framer-s2ANx .framer-1y2ul, .framer-s2ANx .framer-7kag50, .framer-s2ANx .framer-kkbuq, .framer-s2ANx .framer-s3eesp, .framer-s2ANx .framer-17pg9vv, .framer-s2ANx .framer-xo68tj, .framer-s2ANx .framer-cfseu1, .framer-s2ANx .framer-wyb3vt, .framer-s2ANx .framer-r6eu57, .framer-s2ANx .framer-wcxsc7, .framer-s2ANx .framer-1qwa5lz, .framer-s2ANx .framer-rif59h, .framer-s2ANx .framer-chnazl, .framer-s2ANx .framer-ubsts6, .framer-s2ANx .framer-17zfquq, .framer-s2ANx .framer-467qvh, .framer-s2ANx .framer-i8dfr2, .framer-s2ANx .framer-1a103e9, .framer-s2ANx .framer-12x9uzh, .framer-s2ANx .framer-npi8wo, .framer-s2ANx .framer-i6ze25, .framer-s2ANx .framer-126m372, .framer-s2ANx .framer-1l7pgyw, .framer-s2ANx .framer-1wtzrm8, .framer-s2ANx .framer-8tez16, .framer-s2ANx .framer-5hrqok, .framer-s2ANx .framer-1mgc2l, .framer-s2ANx .framer-cs9rdy, .framer-s2ANx .framer-obsaot, .framer-s2ANx .framer-6ptl8h, .framer-s2ANx .framer-1tb8rk8, .framer-s2ANx .framer-1mtnee0, .framer-s2ANx .framer-w1m884, .framer-s2ANx .framer-uli9eh, .framer-s2ANx .framer-ydekuc, .framer-s2ANx .framer-19t4wng, .framer-s2ANx .framer-1tz0fy8, .framer-s2ANx .framer-1wm5nw1, .framer-s2ANx .framer-1qtntox, .framer-s2ANx .framer-1smwp00, .framer-s2ANx .framer-1emaaz3, .framer-s2ANx .framer-1mnrfti, .framer-s2ANx .framer-1o4xc8m, .framer-s2ANx .framer-xai89k, .framer-s2ANx .framer-1o0uqnk, .framer-s2ANx .framer-6bzh9e, .framer-s2ANx .framer-19pzyn9, .framer-s2ANx .framer-1mnp654, .framer-s2ANx .framer-15ijgsn, .framer-s2ANx .framer-1wt3iay, .framer-s2ANx .framer-1f1gq7w, .framer-s2ANx .framer-1pd4jiq, .framer-s2ANx .framer-1fh67st, .framer-s2ANx .framer-14vqbzz, .framer-s2ANx .framer-1as3os8, .framer-s2ANx .framer-xlv52f, .framer-s2ANx .framer-18zqhpe, .framer-s2ANx .framer-1hq0c5d, .framer-s2ANx .framer-zed0oy, .framer-s2ANx .framer-118inrt, .framer-s2ANx .framer-kqwpfa, .framer-s2ANx .framer-pp87g7, .framer-s2ANx .framer-1bxcgyo, .framer-s2ANx .framer-11zsnjz, .framer-s2ANx .framer-1ygrb47, .framer-s2ANx .framer-13qhkeq, .framer-s2ANx .framer-1vfoevb, .framer-s2ANx .framer-shoq63, .framer-s2ANx .framer-sc55hv, .framer-s2ANx .framer-yxu5e8, .framer-s2ANx .framer-35jb4 { gap: 0px; } .framer-s2ANx.framer-1bumiad > *, .framer-s2ANx .framer-17zfquq > *, .framer-s2ANx .framer-1a103e9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s2ANx.framer-1bumiad > :first-child, .framer-s2ANx .framer-ba9fqn > :first-child, .framer-s2ANx .framer-j0a9lz > :first-child, .framer-s2ANx .framer-kkbuq > :first-child, .framer-s2ANx .framer-17pg9vv > :first-child, .framer-s2ANx .framer-xo68tj > :first-child, .framer-s2ANx .framer-wcxsc7 > :first-child, .framer-s2ANx .framer-1qwa5lz > :first-child, .framer-s2ANx .framer-chnazl > :first-child, .framer-s2ANx .framer-17zfquq > :first-child, .framer-s2ANx .framer-467qvh > :first-child, .framer-s2ANx .framer-i8dfr2 > :first-child, .framer-s2ANx .framer-1a103e9 > :first-child, .framer-s2ANx .framer-12x9uzh > :first-child, .framer-s2ANx .framer-npi8wo > :first-child, .framer-s2ANx .framer-i6ze25 > :first-child, .framer-s2ANx .framer-126m372 > :first-child, .framer-s2ANx .framer-1l7pgyw > :first-child, .framer-s2ANx .framer-1wtzrm8 > :first-child, .framer-s2ANx .framer-8tez16 > :first-child, .framer-s2ANx .framer-5hrqok > :first-child, .framer-s2ANx .framer-cs9rdy > :first-child, .framer-s2ANx .framer-obsaot > :first-child, .framer-s2ANx .framer-1tb8rk8 > :first-child, .framer-s2ANx .framer-1emaaz3 > :first-child, .framer-s2ANx .framer-1mnrfti > :first-child, .framer-s2ANx .framer-1o0uqnk > :first-child, .framer-s2ANx .framer-6bzh9e > :first-child, .framer-s2ANx .framer-1mnp654 > :first-child, .framer-s2ANx .framer-1f1gq7w > :first-child, .framer-s2ANx .framer-1pd4jiq > :first-child { margin-top: 0px; } .framer-s2ANx.framer-1bumiad > :last-child, .framer-s2ANx .framer-ba9fqn > :last-child, .framer-s2ANx .framer-j0a9lz > :last-child, .framer-s2ANx .framer-kkbuq > :last-child, .framer-s2ANx .framer-17pg9vv > :last-child, .framer-s2ANx .framer-xo68tj > :last-child, .framer-s2ANx .framer-wcxsc7 > :last-child, .framer-s2ANx .framer-1qwa5lz > :last-child, .framer-s2ANx .framer-chnazl > :last-child, .framer-s2ANx .framer-17zfquq > :last-child, .framer-s2ANx .framer-467qvh > :last-child, .framer-s2ANx .framer-i8dfr2 > :last-child, .framer-s2ANx .framer-1a103e9 > :last-child, .framer-s2ANx .framer-12x9uzh > :last-child, .framer-s2ANx .framer-npi8wo > :last-child, .framer-s2ANx .framer-i6ze25 > :last-child, .framer-s2ANx .framer-126m372 > :last-child, .framer-s2ANx .framer-1l7pgyw > :last-child, .framer-s2ANx .framer-1wtzrm8 > :last-child, .framer-s2ANx .framer-8tez16 > :last-child, .framer-s2ANx .framer-5hrqok > :last-child, .framer-s2ANx .framer-cs9rdy > :last-child, .framer-s2ANx .framer-obsaot > :last-child, .framer-s2ANx .framer-1tb8rk8 > :last-child, .framer-s2ANx .framer-1emaaz3 > :last-child, .framer-s2ANx .framer-1mnrfti > :last-child, .framer-s2ANx .framer-1o0uqnk > :last-child, .framer-s2ANx .framer-6bzh9e > :last-child, .framer-s2ANx .framer-1mnp654 > :last-child, .framer-s2ANx .framer-1f1gq7w > :last-child, .framer-s2ANx .framer-1pd4jiq > :last-child { margin-bottom: 0px; } .framer-s2ANx .framer-19sbtbd > *, .framer-s2ANx .framer-66pdwk > *, .framer-s2ANx .framer-1y2ul > *, .framer-s2ANx .framer-7kag50 > *, .framer-s2ANx .framer-cfseu1 > *, .framer-s2ANx .framer-rif59h > *, .framer-s2ANx .framer-6ptl8h > *, .framer-s2ANx .framer-1o4xc8m > *, .framer-s2ANx .framer-19pzyn9 > *, .framer-s2ANx .framer-1wt3iay > *, .framer-s2ANx .framer-1fh67st > *, .framer-s2ANx .framer-1as3os8 > *, .framer-s2ANx .framer-xlv52f > *, .framer-s2ANx .framer-18zqhpe > *, .framer-s2ANx .framer-1hq0c5d > *, .framer-s2ANx .framer-zed0oy > *, .framer-s2ANx .framer-118inrt > *, .framer-s2ANx .framer-kqwpfa > *, .framer-s2ANx .framer-pp87g7 > *, .framer-s2ANx .framer-1bxcgyo > *, .framer-s2ANx .framer-11zsnjz > *, .framer-s2ANx .framer-1ygrb47 > *, .framer-s2ANx .framer-13qhkeq > *, .framer-s2ANx .framer-1vfoevb > *, .framer-s2ANx .framer-shoq63 > *, .framer-s2ANx .framer-sc55hv > *, .framer-s2ANx .framer-yxu5e8 > *, .framer-s2ANx .framer-35jb4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-s2ANx .framer-19sbtbd > :first-child, .framer-s2ANx .framer-66pdwk > :first-child, .framer-s2ANx .framer-1uckbjz > :first-child, .framer-s2ANx .framer-uqv9cr > :first-child, .framer-s2ANx .framer-1y2ul > :first-child, .framer-s2ANx .framer-7kag50 > :first-child, .framer-s2ANx .framer-s3eesp > :first-child, .framer-s2ANx .framer-cfseu1 > :first-child, .framer-s2ANx .framer-wyb3vt > :first-child, .framer-s2ANx .framer-r6eu57 > :first-child, .framer-s2ANx .framer-rif59h > :first-child, .framer-s2ANx .framer-ubsts6 > :first-child, .framer-s2ANx .framer-1mgc2l > :first-child, .framer-s2ANx .framer-6ptl8h > :first-child, .framer-s2ANx .framer-1mtnee0 > :first-child, .framer-s2ANx .framer-w1m884 > :first-child, .framer-s2ANx .framer-uli9eh > :first-child, .framer-s2ANx .framer-ydekuc > :first-child, .framer-s2ANx .framer-19t4wng > :first-child, .framer-s2ANx .framer-1tz0fy8 > :first-child, .framer-s2ANx .framer-1wm5nw1 > :first-child, .framer-s2ANx .framer-1qtntox > :first-child, .framer-s2ANx .framer-1smwp00 > :first-child, .framer-s2ANx .framer-1o4xc8m > :first-child, .framer-s2ANx .framer-xai89k > :first-child, .framer-s2ANx .framer-19pzyn9 > :first-child, .framer-s2ANx .framer-15ijgsn > :first-child, .framer-s2ANx .framer-1wt3iay > :first-child, .framer-s2ANx .framer-1fh67st > :first-child, .framer-s2ANx .framer-14vqbzz > :first-child, .framer-s2ANx .framer-1as3os8 > :first-child, .framer-s2ANx .framer-xlv52f > :first-child, .framer-s2ANx .framer-18zqhpe > :first-child, .framer-s2ANx .framer-1hq0c5d > :first-child, .framer-s2ANx .framer-zed0oy > :first-child, .framer-s2ANx .framer-118inrt > :first-child, .framer-s2ANx .framer-kqwpfa > :first-child, .framer-s2ANx .framer-pp87g7 > :first-child, .framer-s2ANx .framer-1bxcgyo > :first-child, .framer-s2ANx .framer-11zsnjz > :first-child, .framer-s2ANx .framer-1ygrb47 > :first-child, .framer-s2ANx .framer-13qhkeq > :first-child, .framer-s2ANx .framer-1vfoevb > :first-child, .framer-s2ANx .framer-shoq63 > :first-child, .framer-s2ANx .framer-sc55hv > :first-child, .framer-s2ANx .framer-yxu5e8 > :first-child, .framer-s2ANx .framer-35jb4 > :first-child { margin-left: 0px; } .framer-s2ANx .framer-19sbtbd > :last-child, .framer-s2ANx .framer-66pdwk > :last-child, .framer-s2ANx .framer-1uckbjz > :last-child, .framer-s2ANx .framer-uqv9cr > :last-child, .framer-s2ANx .framer-1y2ul > :last-child, .framer-s2ANx .framer-7kag50 > :last-child, .framer-s2ANx .framer-s3eesp > :last-child, .framer-s2ANx .framer-cfseu1 > :last-child, .framer-s2ANx .framer-wyb3vt > :last-child, .framer-s2ANx .framer-r6eu57 > :last-child, .framer-s2ANx .framer-rif59h > :last-child, .framer-s2ANx .framer-ubsts6 > :last-child, .framer-s2ANx .framer-1mgc2l > :last-child, .framer-s2ANx .framer-6ptl8h > :last-child, .framer-s2ANx .framer-1mtnee0 > :last-child, .framer-s2ANx .framer-w1m884 > :last-child, .framer-s2ANx .framer-uli9eh > :last-child, .framer-s2ANx .framer-ydekuc > :last-child, .framer-s2ANx .framer-19t4wng > :last-child, .framer-s2ANx .framer-1tz0fy8 > :last-child, .framer-s2ANx .framer-1wm5nw1 > :last-child, .framer-s2ANx .framer-1qtntox > :last-child, .framer-s2ANx .framer-1smwp00 > :last-child, .framer-s2ANx .framer-1o4xc8m > :last-child, .framer-s2ANx .framer-xai89k > :last-child, .framer-s2ANx .framer-19pzyn9 > :last-child, .framer-s2ANx .framer-15ijgsn > :last-child, .framer-s2ANx .framer-1wt3iay > :last-child, .framer-s2ANx .framer-1fh67st > :last-child, .framer-s2ANx .framer-14vqbzz > :last-child, .framer-s2ANx .framer-1as3os8 > :last-child, .framer-s2ANx .framer-xlv52f > :last-child, .framer-s2ANx .framer-18zqhpe > :last-child, .framer-s2ANx .framer-1hq0c5d > :last-child, .framer-s2ANx .framer-zed0oy > :last-child, .framer-s2ANx .framer-118inrt > :last-child, .framer-s2ANx .framer-kqwpfa > :last-child, .framer-s2ANx .framer-pp87g7 > :last-child, .framer-s2ANx .framer-1bxcgyo > :last-child, .framer-s2ANx .framer-11zsnjz > :last-child, .framer-s2ANx .framer-1ygrb47 > :last-child, .framer-s2ANx .framer-13qhkeq > :last-child, .framer-s2ANx .framer-1vfoevb > :last-child, .framer-s2ANx .framer-shoq63 > :last-child, .framer-s2ANx .framer-sc55hv > :last-child, .framer-s2ANx .framer-yxu5e8 > :last-child, .framer-s2ANx .framer-35jb4 > :last-child { margin-right: 0px; } .framer-s2ANx .framer-1uckbjz > *, .framer-s2ANx .framer-s3eesp > *, .framer-s2ANx .framer-r6eu57 > *, .framer-s2ANx .framer-1mgc2l > *, .framer-s2ANx .framer-1smwp00 > *, .framer-s2ANx .framer-xai89k > *, .framer-s2ANx .framer-15ijgsn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-s2ANx .framer-ba9fqn > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-s2ANx .framer-j0a9lz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-s2ANx .framer-uqv9cr > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-s2ANx .framer-kkbuq > *, .framer-s2ANx .framer-467qvh > *, .framer-s2ANx .framer-12x9uzh > *, .framer-s2ANx .framer-i6ze25 > *, .framer-s2ANx .framer-1wtzrm8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s2ANx .framer-17pg9vv > *, .framer-s2ANx .framer-wcxsc7 > *, .framer-s2ANx .framer-cs9rdy > *, .framer-s2ANx .framer-1emaaz3 > *, .framer-s2ANx .framer-1o0uqnk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-s2ANx .framer-xo68tj > *, .framer-s2ANx .framer-1qwa5lz > *, .framer-s2ANx .framer-chnazl > *, .framer-s2ANx .framer-i8dfr2 > *, .framer-s2ANx .framer-npi8wo > *, .framer-s2ANx .framer-1l7pgyw > *, .framer-s2ANx .framer-5hrqok > *, .framer-s2ANx .framer-obsaot > *, .framer-s2ANx .framer-1mnrfti > *, .framer-s2ANx .framer-6bzh9e > *, .framer-s2ANx .framer-1pd4jiq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-s2ANx .framer-wyb3vt > * { margin: 0px; margin-left: calc(29px / 2); margin-right: calc(29px / 2); } .framer-s2ANx .framer-ubsts6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-s2ANx .framer-126m372 > *, .framer-s2ANx .framer-8tez16 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-s2ANx .framer-1tb8rk8 > *, .framer-s2ANx .framer-1mnp654 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-s2ANx .framer-1mtnee0 > *, .framer-s2ANx .framer-19t4wng > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-s2ANx .framer-w1m884 > *, .framer-s2ANx .framer-uli9eh > *, .framer-s2ANx .framer-ydekuc > *, .framer-s2ANx .framer-1tz0fy8 > *, .framer-s2ANx .framer-1wm5nw1 > *, .framer-s2ANx .framer-1qtntox > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-s2ANx .framer-1f1gq7w > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-s2ANx .framer-14vqbzz > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-s2ANx[data-border=\"true\"]::after, .framer-s2ANx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }','@media (min-width: 810px) and (max-width: 1199px) { .framer-s2ANx.framer-1bumiad { width: 810px; } .framer-s2ANx .framer-39icx0 { height: var(--framer-aspect-ratio-supported, 372px); opacity: 0.15; width: 790px; } .framer-s2ANx .framer-1pk2lc { height: var(--framer-aspect-ratio-supported, 596px); left: -409px; right: -409px; } .framer-s2ANx .framer-1woo8t1 { height: var(--framer-aspect-ratio-supported, 654px); left: -97px; right: -97px; top: 6px; } .framer-s2ANx .framer-dvum7v { height: var(--framer-aspect-ratio-supported, 810px); } .framer-s2ANx .framer-7tomrt { height: var(--framer-aspect-ratio-supported, 729px); right: -211px; top: 2515px; width: 730px; } .framer-s2ANx .framer-19sbtbd { top: 1916px; } .framer-s2ANx .framer-cqgn4a { bottom: -234px; height: 1615px; } .framer-s2ANx .framer-qitgd7 { height: var(--framer-aspect-ratio-supported, 1088px); } .framer-s2ANx .framer-66pdwk { bottom: -1477px; top: 9716px; z-index: 10; } .framer-s2ANx .framer-1bele6p { border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: -310px; height: 1186px; } .framer-s2ANx .framer-xsb0of { height: var(--framer-aspect-ratio-supported, 1438px); left: -216px; right: -216px; top: 46%; transform: translateY(-50%); width: unset; } .framer-s2ANx .framer-1wwwcza { background: linear-gradient(180deg, rgba(2, 19, 71, 0) 0%, var(--token-80553515-7ab0-44ac-b981-96d7680674fd, rgb(0, 17, 69)) /* {\"name\":\"Neutral / Surface Main\"} */ 100%); bottom: 445px; height: 304px; left: 0px; } .framer-s2ANx .framer-1awtfg1 { height: 57px; left: calc(50.00000000000002% - 207.7777777777778% / 2); width: 208%; } .framer-s2ANx .framer-1uy7rba { bottom: 2800px; height: var(--framer-aspect-ratio-supported, 733px); right: -271px; width: 733px; } .framer-s2ANx .framer-1pw0049 { bottom: 2800px; height: var(--framer-aspect-ratio-supported, 733px); left: unset; right: -271px; transform: unset; width: 733px; } .framer-s2ANx .framer-1uckbjz { padding: 130px 0px 60px 0px; } .framer-s2ANx .framer-13tcovx { height: var(--framer-aspect-ratio-supported, 437px); width: 749px; } .framer-s2ANx .framer-c2qvho { height: var(--framer-aspect-ratio-supported, 397px); left: 50%; top: 50%; width: 94%; } .framer-s2ANx .framer-50842s-container { width: var(--framer-aspect-ratio-supported, 705px); } .framer-s2ANx .framer-vqpz89 { bottom: -52px; left: -21px; } .framer-s2ANx .framer-1dcpc2e-container { left: 0px; right: unset; } .framer-s2ANx .framer-1ces4l-container { right: -22px; top: -69px; } .framer-s2ANx .framer-4avbn1-container { bottom: -61px; right: -28px; top: unset; transform: unset; } .framer-s2ANx .framer-17pg9vv, .framer-s2ANx .framer-wcxsc7, .framer-s2ANx .framer-cs9rdy, .framer-s2ANx .framer-1emaaz3, .framer-s2ANx .framer-1o0uqnk { max-width: 94%; } .framer-s2ANx .framer-wyb3vt { flex-direction: column; max-width: 50%; } .framer-s2ANx .framer-1vuaoig-container, .framer-s2ANx .framer-128oqgs-container { flex: none; width: 100%; } .framer-s2ANx .framer-1yq7b3x-container { align-self: unset; flex: none; width: 100%; } .framer-s2ANx .framer-1qwa5lz { align-content: center; align-items: center; } .framer-s2ANx .framer-mc5fwd, .framer-s2ANx .framer-uk9p2m, .framer-s2ANx .framer-1r3ehkn { width: 100%; } .framer-s2ANx .framer-chnazl { max-width: 80%; } .framer-s2ANx .framer-ubsts6 { flex-direction: column; } .framer-s2ANx .framer-17zfquq, .framer-s2ANx .framer-1a103e9 { flex: none; height: min-content; width: 100%; } .framer-s2ANx .framer-1wi9b85 { right: -2px; } .framer-s2ANx .framer-i6ze25 { height: min-content; width: 100%; } .framer-s2ANx .framer-126m372 { gap: 20px; justify-content: flex-start; } .framer-s2ANx .framer-1mtnee0, .framer-s2ANx .framer-19t4wng { flex-wrap: wrap; } .framer-s2ANx .framer-15ijgsn { padding: 100px 0px 100px 0px; } .framer-s2ANx .framer-1wt3iay { flex-direction: column; max-width: 94%; } .framer-s2ANx .framer-s0hbpf-container { bottom: unset; height: 664px; order: 3; position: relative; right: unset; width: var(--framer-aspect-ratio-supported, 664px); } .framer-s2ANx .framer-1f1gq7w { align-content: center; align-items: center; flex: none; order: 2; width: 100%; } .framer-s2ANx .framer-1pd4jiq { align-content: center; align-items: center; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2ANx .framer-wyb3vt, .framer-s2ANx .framer-ubsts6, .framer-s2ANx .framer-126m372, .framer-s2ANx .framer-1wt3iay { gap: 0px; } .framer-s2ANx .framer-wyb3vt > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-s2ANx .framer-wyb3vt > :first-child, .framer-s2ANx .framer-ubsts6 > :first-child, .framer-s2ANx .framer-126m372 > :first-child, .framer-s2ANx .framer-1wt3iay > :first-child { margin-top: 0px; } .framer-s2ANx .framer-wyb3vt > :last-child, .framer-s2ANx .framer-ubsts6 > :last-child, .framer-s2ANx .framer-126m372 > :last-child, .framer-s2ANx .framer-1wt3iay > :last-child { margin-bottom: 0px; } .framer-s2ANx .framer-ubsts6 > *, .framer-s2ANx .framer-126m372 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-s2ANx .framer-1wt3iay > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}',\"@media (max-width: 809px) { .framer-s2ANx.framer-1bumiad { padding: 91px 0px 44px 0px; width: 390px; } .framer-s2ANx .framer-18qiquo { bottom: 900px; height: var(--framer-aspect-ratio-supported, 562px); right: -200px; width: 562px; } .framer-s2ANx .framer-39icx0 { height: var(--framer-aspect-ratio-supported, 245px); left: -65px; opacity: 0.15; right: -65px; transform: unset; width: unset; } .framer-s2ANx .framer-1pk2lc { height: var(--framer-aspect-ratio-supported, 275px); left: -181px; right: -181px; } .framer-s2ANx .framer-1woo8t1 { height: var(--framer-aspect-ratio-supported, 418px); left: -126px; right: -126px; top: 6px; } .framer-s2ANx .framer-dvum7v { height: var(--framer-aspect-ratio-supported, 488px); top: 356px; width: 125%; } .framer-s2ANx .framer-7tomrt { height: var(--framer-aspect-ratio-supported, 590px); right: -256px; top: 2545px; width: 591px; } .framer-s2ANx .framer-19sbtbd { height: 1206px; top: 2936px; } .framer-s2ANx .framer-cqgn4a { bottom: -112px; height: 1195px; } .framer-s2ANx .framer-qitgd7 { height: var(--framer-aspect-ratio-supported, 833px); left: -22px; right: -22px; top: 1px; transform: unset; width: unset; } .framer-s2ANx .framer-oed0lv { bottom: unset; height: 234px; top: -233px; } .framer-s2ANx .framer-66pdwk { bottom: 500px; height: 993px; top: unset; } .framer-s2ANx .framer-1bele6p { bottom: 62px; height: 766px; order: 0; } .framer-s2ANx .framer-xsb0of { height: var(--framer-aspect-ratio-supported, 894px); left: -22px; right: -22px; top: 1px; transform: unset; width: unset; } .framer-s2ANx .framer-1wwwcza { bottom: unset; height: 390px; top: calc(53.94495412844039% - 390px / 2); } .framer-s2ANx .framer-1awtfg1 { order: 1; } .framer-s2ANx .framer-z7hesu { bottom: 4657px; height: var(--framer-aspect-ratio-supported, 390px); left: 19%; width: 390px; } .framer-s2ANx .framer-1uy7rba { bottom: 3473px; height: var(--framer-aspect-ratio-supported, 651px); right: -434px; width: 651px; } .framer-s2ANx .framer-1pw0049 { bottom: 3473px; height: var(--framer-aspect-ratio-supported, 651px); left: unset; right: -434px; transform: unset; width: 651px; } .framer-s2ANx .framer-1uckbjz { padding: 0px 0px 100px 0px; } .framer-s2ANx .framer-ba9fqn { gap: 50px; order: 0; padding: 0px 17px 0px 17px; } .framer-s2ANx .framer-j0a9lz, .framer-s2ANx .framer-ncyr0x, .framer-s2ANx .framer-6b0cvs, .framer-s2ANx .framer-mc5fwd, .framer-s2ANx .framer-uk9p2m, .framer-s2ANx .framer-i8dfr2, .framer-s2ANx .framer-1iy4ydt, .framer-s2ANx .framer-1x9s255, .framer-s2ANx .framer-npi8wo, .framer-s2ANx .framer-38k2q0, .framer-s2ANx .framer-zeuzc4, .framer-s2ANx .framer-obsaot, .framer-s2ANx .framer-hqyesv, .framer-s2ANx .framer-1ixp0c3, .framer-s2ANx .framer-6bzh9e, .framer-s2ANx .framer-17i23bo, .framer-s2ANx .framer-ogquf1, .framer-s2ANx .framer-1r3ehkn, .framer-s2ANx .framer-1qraiq { width: 100%; } .framer-s2ANx .framer-1y2ul { flex-direction: column; overflow: hidden; } .framer-s2ANx .framer-7kag50 { flex: none; order: 1; width: 100%; } .framer-s2ANx .framer-13tcovx { height: var(--framer-aspect-ratio-supported, 208px); order: 0; width: 100%; } .framer-s2ANx .framer-c2qvho { height: var(--framer-aspect-ratio-supported, 189px); } .framer-s2ANx .framer-50842s-container { width: var(--framer-aspect-ratio-supported, 336px); } .framer-s2ANx .framer-17pg9vv { max-width: 87%; padding: 30px 0px 0px 0px; } .framer-s2ANx .framer-wyb3vt, .framer-s2ANx .framer-1mtnee0, .framer-s2ANx .framer-19t4wng { flex-direction: column; } .framer-s2ANx .framer-1vuaoig-container, .framer-s2ANx .framer-128oqgs-container { flex: none; width: 100%; } .framer-s2ANx .framer-1yq7b3x-container { align-self: unset; flex: none; max-height: unset; width: 100%; } .framer-s2ANx .framer-wcxsc7, .framer-s2ANx .framer-cs9rdy, .framer-s2ANx .framer-1emaaz3 { max-width: 87%; } .framer-s2ANx .framer-1qwa5lz { align-content: center; align-items: center; } .framer-s2ANx .framer-ubsts6 { flex-direction: column; order: 0; overflow: hidden; } .framer-s2ANx .framer-17zfquq { border-top-right-radius: 26px; flex: none; height: 345px; justify-content: flex-start; min-height: 345px; width: 100%; } .framer-s2ANx .framer-467qvh { flex: 1 0 0px; height: 1px; padding: 40px; } .framer-s2ANx .framer-1a103e9 { border-top-right-radius: 26px; flex: none; height: min-content; justify-content: flex-start; min-height: 345px; width: 100%; } .framer-s2ANx .framer-12x9uzh { align-content: flex-end; align-items: flex-end; height: min-content; padding: 40px; } .framer-s2ANx .framer-1wi9b85 { height: var(--framer-aspect-ratio-supported, 121px); width: 139px; } .framer-s2ANx .framer-1wtzrm8, .framer-s2ANx .framer-94fvc6-container { order: 2; } .framer-s2ANx .framer-8tez16 { order: 0; } .framer-s2ANx .framer-1hrfan5 { order: 3; } .framer-s2ANx .framer-11ildpq { white-space: pre; width: auto; } .framer-s2ANx .framer-xai89k { padding: 100px 20px 0px 20px; } .framer-s2ANx .framer-1o0uqnk { max-width: unset; } .framer-s2ANx .framer-15ijgsn { padding: 80px 0px 50px 0px; } .framer-s2ANx .framer-1wt3iay { flex-direction: column; max-width: 87%; } .framer-s2ANx .framer-s0hbpf-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 342px); order: 3; position: relative; right: unset; width: 100%; } .framer-s2ANx .framer-1f1gq7w { flex: none; order: 2; width: 100%; } .framer-s2ANx .framer-1pd4jiq { align-content: center; align-items: center; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2ANx .framer-ba9fqn, .framer-s2ANx .framer-1y2ul, .framer-s2ANx .framer-wyb3vt, .framer-s2ANx .framer-ubsts6, .framer-s2ANx .framer-1mtnee0, .framer-s2ANx .framer-19t4wng, .framer-s2ANx .framer-1wt3iay { gap: 0px; } .framer-s2ANx .framer-ba9fqn > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-s2ANx .framer-ba9fqn > :first-child, .framer-s2ANx .framer-1y2ul > :first-child, .framer-s2ANx .framer-wyb3vt > :first-child, .framer-s2ANx .framer-ubsts6 > :first-child, .framer-s2ANx .framer-1mtnee0 > :first-child, .framer-s2ANx .framer-19t4wng > :first-child, .framer-s2ANx .framer-1wt3iay > :first-child { margin-top: 0px; } .framer-s2ANx .framer-ba9fqn > :last-child, .framer-s2ANx .framer-1y2ul > :last-child, .framer-s2ANx .framer-wyb3vt > :last-child, .framer-s2ANx .framer-ubsts6 > :last-child, .framer-s2ANx .framer-1mtnee0 > :last-child, .framer-s2ANx .framer-19t4wng > :last-child, .framer-s2ANx .framer-1wt3iay > :last-child { margin-bottom: 0px; } .framer-s2ANx .framer-1y2ul > *, .framer-s2ANx .framer-1wt3iay > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-s2ANx .framer-wyb3vt > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-s2ANx .framer-ubsts6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-s2ANx .framer-1mtnee0 > *, .framer-s2ANx .framer-19t4wng > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-s2ANx.framer-1bumiad { width: 1200px; } .framer-s2ANx .framer-1pk2lc { height: var(--framer-aspect-ratio-supported, 738px); left: -409px; right: -409px; } .framer-s2ANx .framer-1woo8t1 { height: var(--framer-aspect-ratio-supported, 902px); left: -92px; right: -92px; } .framer-s2ANx .framer-dvum7v { height: var(--framer-aspect-ratio-supported, 1200px); } .framer-s2ANx .framer-7tomrt { height: var(--framer-aspect-ratio-supported, 708px); right: -129px; top: 1965px; width: 708px; } .framer-s2ANx .framer-19sbtbd { top: 2030px; } .framer-s2ANx .framer-cqgn4a { bottom: -718px; height: 2005px; } .framer-s2ANx .framer-66pdwk { bottom: 479px; top: 7235px; } .framer-s2ANx .framer-1bele6p { bottom: -1398px; height: 2274px; left: -537px; right: -537px; } .framer-s2ANx .framer-13tcovx { height: var(--framer-aspect-ratio-supported, 548px); width: 939px; } .framer-s2ANx .framer-c2qvho { height: var(--framer-aspect-ratio-supported, 499px); } .framer-s2ANx .framer-50842s-container { width: var(--framer-aspect-ratio-supported, 885px); } .framer-s2ANx .framer-126m372 { gap: 20px; justify-content: flex-start; } .framer-s2ANx .framer-s0hbpf-container { bottom: -73px; height: var(--framer-aspect-ratio-supported, 558px); right: -20px; width: 558px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-s2ANx .framer-126m372 { gap: 0px; } .framer-s2ANx .framer-126m372 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-s2ANx .framer-126m372 > :first-child { margin-top: 0px; } .framer-s2ANx .framer-126m372 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8718.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zmWWTKHAC\":{\"layout\":[\"fixed\",\"auto\"]},\"RuaE8c7Bl\":{\"layout\":[\"fixed\",\"auto\"]},\"MmUs0dCFf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ChshPUWBJ\":{\"pattern\":\":ChshPUWBJ\",\"name\":\"hero\"},\"m6LuwbGcR\":{\"pattern\":\":m6LuwbGcR\",\"name\":\"about-us\"},\"PIpIGRS_P\":{\"pattern\":\":PIpIGRS_P\",\"name\":\"get-started\"},\"eyyzsclyW\":{\"pattern\":\":eyyzsclyW\",\"name\":\"commission\"},\"tdkJN1cuQ\":{\"pattern\":\":tdkJN1cuQ\",\"name\":\"testimonials\"},\"srBiIGKnz\":{\"pattern\":\":srBiIGKnz\",\"name\":\"team\"},\"eoiOrLJ1u\":{\"pattern\":\":eoiOrLJ1u\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FramerOLb8_0CQr=withCSS(Component,css,\"framer-s2ANx\");export default FramerOLb8_0CQr;FramerOLb8_0CQr.displayName=\"Blog\";FramerOLb8_0CQr.defaultProps={height:8718.5,width:1440};addFonts(FramerOLb8_0CQr,[{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavbarFonts,...ButtonDefaultFonts,...HeroComp1Fonts,...HeroComp3Fonts,...HeroComp4Fonts,...VideoPlayerVimeoFonts,...HeroComp2Fonts,...AboutSectionFonts,...CardWorks1Fonts,...CardWorks2Fonts,...CardWorks3Fonts,...CircularFonts,...TestimonialSectionFonts,...TeamCardFonts,...TickerFonts,...AccordionFonts,...GlobeFonts,...LocationTagFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOLb8_0CQr\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"ChshPUWBJ\\\":{\\\"pattern\\\":\\\":ChshPUWBJ\\\",\\\"name\\\":\\\"hero\\\"},\\\"m6LuwbGcR\\\":{\\\"pattern\\\":\\\":m6LuwbGcR\\\",\\\"name\\\":\\\"about-us\\\"},\\\"PIpIGRS_P\\\":{\\\"pattern\\\":\\\":PIpIGRS_P\\\",\\\"name\\\":\\\"get-started\\\"},\\\"eyyzsclyW\\\":{\\\"pattern\\\":\\\":eyyzsclyW\\\",\\\"name\\\":\\\"commission\\\"},\\\"tdkJN1cuQ\\\":{\\\"pattern\\\":\\\":tdkJN1cuQ\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"srBiIGKnz\\\":{\\\"pattern\\\":\\\":srBiIGKnz\\\",\\\"name\\\":\\\"team\\\"},\\\"eoiOrLJ1u\\\":{\\\"pattern\\\":\\\":eoiOrLJ1u\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zmWWTKHAC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RuaE8c7Bl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MmUs0dCFf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"8718.5\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "ButtonDefaultFonts", "getFonts", "fEMkYOVCD_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Image2", "css", "Framerg4M4YozXE", "withCSS", "g4M4YozXE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "desc", "height", "id", "image", "name1", "role", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TxX966cAH", "a4Xv8nro6", "iQgvewGe6", "KpJDaBY8w", "LVCFC_zO_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "cx", "SVG", "RichText2", "css", "FramerIuD9XQNCv", "withCSS", "IuD9XQNCv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "TestimonialCardFonts", "getFonts", "IuD9XQNCv_default", "TickerFonts", "Ticker", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "transition4", "animation4", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "SVG", "ComponentViewportProvider", "css", "FramerjZR8ms2My", "withCSS", "jZR8ms2My_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "_classCallCheck", "e", "_defineProperties", "n", "r", "_createClass", "global", "getMethodName", "isDomElement", "isInteger", "isVimeoUrl", "getVimeoUrl", "t", "window", "createCommonjsModule", "defineProperty", "WeakMap", "genId", "checkInstance", "isObject", "rand", "o", "Item", "schedule", "isThenable", "notify", "notifyIsolated", "resolve", "MakeDefWrapper", "reject", "iteratePromises", "MakeDef", "Promise", "i", "a", "storeCallback", "getCallbacks", "removeCallback", "shiftCallbacks", "swapCallbacks", "getOEmbedParameters", "createEmbed", "getOEmbedData", "u", "initializeEmbeds", "resizeEmbeds", "parseMessageData", "postMessage", "navigator", "processData", "initializeScreenfull", "onFullScreenEntered", "onFullScreenExit", "l", "s", "c", "Player", "vimeoRegex", "Vimeo", "withCSS", "video", "autoplay", "mute", "controls", "loop", "titles", "backgroundColor", "onPlay", "onEnd", "style", "props", "key", "setKey", "player", "pe", "borderRadius", "useRadius", "id", "embeddedPlayer", "c", "RenderTarget", "p", "motion", "addPropertyControls", "ControlType", "borderRadiusControl", "Vimeo_default", "VimeoFonts", "getFonts", "Vimeo_default", "PlayButtonFonts", "L2oUUQ640_default", "PlayButtonControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "transformTemplate1", "_", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "playSize", "radius", "vimeoURL", "width", "props", "_ref", "_humanReadableEnumMap_playSize", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UOzbU_ivP", "EbnF0RpmW", "KqlvaerX6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "wCvVs6Krkk0ved9", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerMN3Kq19sc", "withCSS", "MN3Kq19sc_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "name1", "role", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "xY3nKxXQP", "V3IrghVVi", "RoFyvfQkS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "serializationHash", "u", "RichText2", "css", "FramerWJ_Ej4yH9", "withCSS", "WJ_Ej4yH9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavbarFonts", "getFonts", "yvRepLCGi_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonDefaultFonts", "fEMkYOVCD_default", "HeroComp1Fonts", "MwNEHoJ_M_default", "HeroComp3Fonts", "hGnHpVxac_default", "HeroComp4Fonts", "i_z0Uey7b_default", "VideoPlayerVimeoFonts", "MN3Kq19sc_default", "HeroComp2Fonts", "cCbmF4EfC_default", "ImageWithOptimizedAppearEffect", "Image2", "AboutSectionFonts", "g4M4YozXE_default", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "CardWorks1Fonts", "g8UEJEgtl_default", "CardWorks2Fonts", "DIHVrLOZq_default", "CardWorks3Fonts", "HORUIDMWP_default", "ImageWithFX", "CircularFonts", "bCGbR42VQ_default", "TestimonialSectionFonts", "jZR8ms2My_default", "TeamCardFonts", "WJ_Ej4yH9_default", "TickerFonts", "Ticker", "ContainerWithFX", "AccordionFonts", "aZmkgJAN2_default", "GlobeFonts", "Globe", "LocationTagFonts", "qwAbz16hP_default", "FooterFonts", "guMYC8K6d_default", "CursorFonts", "CUAOoVGk2_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transformTemplate2", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "animation8", "transition7", "animation9", "transition8", "animation10", "animation11", "transition9", "animation12", "transition10", "animation13", "animation14", "transition11", "animation15", "animation16", "transition12", "animation17", "animation18", "animation19", "animation20", "animation21", "animation22", "animation23", "animation24", "addImageAlt", "image", "alt", "animation25", "animation26", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition13", "cursor", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed1", "isDisplayed2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "SVG", "resolvedLinks2", "resolvedLinks3", "css", "FramerOLb8_0CQr", "withCSS", "OLb8_0CQr_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
