{"version":3,"file":"qfATyYkv_Zl4ComK3voKRmp5LJMf88vEfiDzLVl_iMw.EO9OwURe.mjs","names":["Youtube","_Fragment","PlayOptions","ThumbnailOptions","buttonStyle","Carousel","end","start","isSelected","dotStyle","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","Component","className","Image","css","Navbar","YouTube","Carousel","Material","YouTube1","Frame190","Carousel1","PrimButton","Image","Footer","metadata","className","PropertyOverrides","Blog","_Fragment","gma8i3CTVK9SJm6hFg","HCphXJ37gK9SJm6hFg","idK9SJm6hFg","mnFYfCayEK9SJm6hFg","Q_h_UTqG8K9SJm6hFg","css"],"sources":["https:/framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js","https:/framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/zmbFgJVc8YCf1HAWjlM4/Carousel.js","https:/framerusercontent.com/modules/mfVIdXlfj5y5oFHqiSZH/lywefVHTKfXNB3LmU4L9/tQsh8FApv.js","https:/framerusercontent.com/modules/fbTSZEMO1Saxm8nyCsRv/0eVqZBwwAYW07WZ2ygTR/augiA20Il.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);if(param===\"t\")searchParams.set(\"start\",value)// embeds have to use `start`, but copying via right-click usually gives you `t=`\n;}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/8AHPXm9Y6mI\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n * TODO: Commented out because of https://framer-team.slack.com/archives/C01B14R6E22/p1745051842676819\n *//*function useIsMouse() {\n    const [isMouseDevice, setIsMouseDevice] = useState(false)\n\n    useLayoutEffect(() => {\n        setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches)\n    }, [])\n\n    return isMouseDevice\n}*//**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current?.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current?.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots?.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     * TODO: Commented out because of https://framer-team.slack.com/archives/C01B14R6E22/p1745051842676819\n     *///const isMouseDevice = useIsMouse()\n/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows — Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[// isMouseDevice &&\n/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),// isMouseDevice &&\n/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map","// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"bLlcXRjiL\",\"NX3YboLmH\"];const serializationHash=\"framer-YVfQ6\";const variantClassNames={bLlcXRjiL:\"framer-v-198iosh\",NX3YboLmH:\"framer-v-fezeyc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"bLlcXRjiL\",\"Variant 2\":\"NX3YboLmH\"};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:\"bLlcXRjiL\"};};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:\"bLlcXRjiL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-198iosh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bLlcXRjiL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-ce38568a-0b7e-4e65-bffc-57f31d896202, rgb(30, 55, 75))\",...style},...addPropertyOverrides({NX3YboLmH:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1susbs3\",\"data-framer-name\":\"Frame 169\",layoutDependency:layoutDependency,layoutId:\"Ej42NnLRc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bba31h\",\"data-framer-name\":\"Frame 174\",layoutDependency:layoutDependency,layoutId:\"MWnm701qt\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uFmw9WHbpuUqEsMf97JiU4s7TM.png\"},className:\"framer-18wi209\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"kxCHqvOYP\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xsphau\",\"data-framer-name\":\"Frame 171\",layoutDependency:layoutDependency,layoutId:\"Rt0S34WK3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k11zru\",\"data-framer-name\":\"Frame 177\",layoutDependency:layoutDependency,layoutId:\"CMoDxOFKV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"\\\"I found the FS Marketing Leaders Summit really good - it's not just a case of people presenting to the audience, every session is followed up on the table with discussions so it's been really useful.\\\"\"})}),className:\"framer-14msk55\",\"data-framer-name\":\"\\\"I found the FS Marketing Leaders Summit really good - it's not just a case of people presenting to the audience, every session is followed up on the table with discussions so it's been really useful.\\\"\",fonts:[\"GF;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"BuxxsjFCn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13c1ate\",\"data-framer-name\":\"Frame 172\",layoutDependency:layoutDependency,layoutId:\"qdhER_9XV\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gx7d66\",\"data-framer-name\":\"Group 5\",layoutDependency:layoutDependency,layoutId:\"bUAV5aBse\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f49dd6\",\"data-framer-name\":\"Ellipse 18\",layoutDependency:layoutDependency,layoutId:\"ytgQ_fLo2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8Kqzq8uZv0fTREKcQ5wvVXs10.png\"},className:\"framer-y3s0a3\",\"data-framer-name\":\"Screenshot 2024-08-17 at 10.55.24 1\",layoutDependency:layoutDependency,layoutId:\"yKESbDWwH\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Scott Allen\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.74))\"},children:\"Global Marketing Transformation\"})]}),className:\"framer-lectto\",\"data-framer-name\":\"Scott Allen Global Marketing Transformation,\",fonts:[\"GF;Satoshi-700\",\"GF;Satoshi-500\"],layoutDependency:layoutDependency,layoutId:\"K5QFHD2QJ\",style:{\"--extracted-2gxw0f\":\"rgba(255, 255, 255, 0.74)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YVfQ6.framer-1hzriw7, .framer-YVfQ6 .framer-1hzriw7 { display: block; }\",\".framer-YVfQ6.framer-198iosh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 573px; }\",\".framer-YVfQ6 .framer-1susbs3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-YVfQ6 .framer-bba31h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-YVfQ6 .framer-18wi209 { aspect-ratio: 4.695652173913044 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 108px; }\",\".framer-YVfQ6 .framer-xsphau { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YVfQ6 .framer-1k11zru { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YVfQ6 .framer-14msk55 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-YVfQ6 .framer-13c1ate { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YVfQ6 .framer-gx7d66 { flex: none; height: 80px; overflow: visible; position: relative; width: 80px; }\",\".framer-YVfQ6 .framer-f49dd6 { flex: none; height: 80px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 80px; }\",\".framer-YVfQ6 .framer-y3s0a3 { aspect-ratio: 1.0306122458512363 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); left: 53%; position: absolute; top: 0px; width: 84px; }\",\".framer-YVfQ6 .framer-lectto { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YVfQ6.framer-198iosh, .framer-YVfQ6 .framer-1susbs3, .framer-YVfQ6 .framer-bba31h, .framer-YVfQ6 .framer-xsphau, .framer-YVfQ6 .framer-1k11zru, .framer-YVfQ6 .framer-13c1ate { gap: 0px; } .framer-YVfQ6.framer-198iosh > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-YVfQ6.framer-198iosh > :first-child, .framer-YVfQ6 .framer-1susbs3 > :first-child, .framer-YVfQ6 .framer-xsphau > :first-child, .framer-YVfQ6 .framer-1k11zru > :first-child { margin-top: 0px; } .framer-YVfQ6.framer-198iosh > :last-child, .framer-YVfQ6 .framer-1susbs3 > :last-child, .framer-YVfQ6 .framer-xsphau > :last-child, .framer-YVfQ6 .framer-1k11zru > :last-child { margin-bottom: 0px; } .framer-YVfQ6 .framer-1susbs3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-YVfQ6 .framer-bba31h > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-YVfQ6 .framer-bba31h > :first-child, .framer-YVfQ6 .framer-13c1ate > :first-child { margin-left: 0px; } .framer-YVfQ6 .framer-bba31h > :last-child, .framer-YVfQ6 .framer-13c1ate > :last-child { margin-right: 0px; } .framer-YVfQ6 .framer-xsphau > *, .framer-YVfQ6 .framer-1k11zru > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-YVfQ6 .framer-13c1ate > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-YVfQ6.framer-v-fezeyc.framer-198iosh { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 355\n * @framerIntrinsicWidth 573\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NX3YboLmH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertQsh8FApv=withCSS(Component,css,\"framer-YVfQ6\");export default FramertQsh8FApv;FramertQsh8FApv.displayName=\"Frame 190\";FramertQsh8FApv.defaultProps={height:355,width:573};addPropertyControls(FramertQsh8FApv,{variant:{options:[\"bLlcXRjiL\",\"NX3YboLmH\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramertQsh8FApv,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertQsh8FApv\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"573\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NX3YboLmH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"355\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tQsh8FApv.map","// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube1}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/zmbFgJVc8YCf1HAWjlM4/Carousel.js\";import Carousel1 from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Navbar from\"#framer/local/canvasComponent/H_OhQfHwh/H_OhQfHwh.js\";import Footer from\"#framer/local/canvasComponent/N4RRF5GC1/N4RRF5GC1.js\";import Frame190 from\"#framer/local/canvasComponent/tQsh8FApv/tQsh8FApv.js\";import PrimButton from\"#framer/local/canvasComponent/YkUQqLc45/YkUQqLc45.js\";import Blog from\"#framer/local/collection/Ytig9ct_x/Ytig9ct_x.js\";import*as sharedStyle from\"#framer/local/css/u_ZAPsYGI/u_ZAPsYGI.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const YouTubeFonts=getFonts(YouTube);const CarouselFonts=getFonts(Carousel);const TickerFonts=getFonts(Ticker);const MaterialFonts=getFonts(Material);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const YouTube1Fonts=getFonts(YouTube1);const Frame190Fonts=getFonts(Frame190);const Carousel1Fonts=getFonts(Carousel1);const ContainerWithFX=withFX(Container);const PrimButtonFonts=getFonts(PrimButton);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const breakpoints={quJbbkByN:\"(max-width: 809px)\",Ua8zKJC9f:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1caQB\";const variantClassNames={quJbbkByN:\"framer-v-3olhh5\",Ua8zKJC9f:\"framer-v-1apc7hn\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:48,delay:.5,mass:.1,stiffness:252,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:64};const transition2={damping:48,delay:.8,mass:.1,stiffness:252,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 transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={backgroundColor:\"rgb(54, 64, 66)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:64};const transition4={damping:48,delay:0,mass:.1,stiffness:252,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:64};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"quJbbkByN\",Tablet:\"Ua8zKJC9f\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,HCphXJ37gK9SJm6hFg,Q_h_UTqG8K9SJm6hFg,mnFYfCayEK9SJm6hFg,gma8i3CTVK9SJm6hFg,idK9SJm6hFg,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"ohZbSuKks\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Ua8zKJC9f\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Ua8zKJC9f\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"quJbbkByN\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"quJbbkByN\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e9f74f78-2e2f-4480-86ba-8dfc19c3fb78, rgb(6, 35, 57)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{background:{alt:\"\",fit:\"fill\",pixelHeight:909,pixelWidth:1440,sizes:`min(${componentViewport?.width||\"100vw\"}, 1600px)`,src:\"https://framerusercontent.com/images/ZUFRT98KBY4B2CcuIdHsC3n5YE.svg\",srcSet:\"https://framerusercontent.com/images/ZUFRT98KBY4B2CcuIdHsC3n5YE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ZUFRT98KBY4B2CcuIdHsC3n5YE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZUFRT98KBY4B2CcuIdHsC3n5YE.svg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{className:\"framer-16swd0b\",\"data-framer-name\":\"Full Build\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{background:undefined}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:896,pixelWidth:1440,sizes:`min(${componentViewport?.width||\"100vw\"}, 1600px)`,src:\"https://framerusercontent.com/images/Ol4yesCfDKoCujYC5v4AQ1pdM.svg\",srcSet:\"https://framerusercontent.com/images/Ol4yesCfDKoCujYC5v4AQ1pdM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Ol4yesCfDKoCujYC5v4AQ1pdM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ol4yesCfDKoCujYC5v4AQ1pdM.svg 1440w\"},className:\"framer-umyl6h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px)`},Ua8zKJC9f:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 112px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-91jb5v-container\",nodeId:\"YNCMHpV5R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{style:{width:\"100%\"},variant:\"pyymGxalm\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"YNCMHpV5R\",layoutId:\"YNCMHpV5R\",style:{height:\"100%\",width:\"100%\"},variant:\"AUngsdjIg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10k2olk\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mde89t\",\"data-framer-name\":\"Hero main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hxxkfd\",\"data-framer-name\":\"Frame 183\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-166l044\",\"data-framer-appear-id\":\"166l044\",\"data-framer-name\":\"Frame 2\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connecting \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"750+ senior financial marketers since 2019\"})]}),className:\"framer-18h222g\",\"data-framer-name\":\"Connecting 500+ senior financial marketers since 2019\",fonts:[\"GF;Satoshi-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1wwtojf\",\"data-framer-appear-id\":\"1wwtojf\",\"data-framer-name\":\"Frame 3\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"We serve a global community of marketers in the financial services sector, sharing best practices and industry insights through our international summits, CMO digests and podcast series. \"})})},Ua8zKJC9f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"We serve a global community of marketers in the financial services sector, sharing best practices and industry insights through our international summits, CMO digests and podcast series. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"We serve a global community of marketers in the financial services sector, sharing best practices and industry insights through our international summits, CMO digests and podcast series. \"})}),className:\"framer-15bv5xd\",\"data-framer-name\":\"We serve a global community of marketers in the financial services sector, sharing best practices and industry insights through our international summits and podcast series.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-178sp8d\",\"data-framer-name\":\"Frame 6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tk4fyg\",\"data-framer-name\":\"Frame 163\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xmv9AN0Fi\"},motionChild:true,nodeId:\"olJtM5ke0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-rj84r9 framer-lux5qc\",\"data-framer-name\":\"Frame 3\",whileHover:animation3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join the community\"})})},Ua8zKJC9f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join the community\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Join the community\"})})}),className:\"framer-18434g2\",\"data-framer-name\":\"Join the community\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16fdc54\",\"data-framer-name\":\"Frame 144\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0.5C5.87827 0.5 3.84344 1.34285 2.34315 2.84315C0.842855 4.34344 0 6.37827 0 8.5C0 10.6217 0.842855 12.6566 2.34315 14.1569C3.84344 15.6571 5.87827 16.5 8 16.5C9.05058 16.5 10.0909 16.2931 11.0615 15.891C12.0321 15.489 12.914 14.8997 13.6569 14.1569C14.3997 13.414 14.989 12.5321 15.391 11.5615C15.7931 10.5909 16 9.55058 16 8.5C16 7.44942 15.7931 6.40914 15.391 5.43853C14.989 4.46793 14.3997 3.58601 13.6569 2.84315C12.914 2.10028 12.0321 1.511 11.0615 1.10896C10.0909 0.706926 9.05058 0.5 8 0.5ZM10.2956 9.23769L7.11411 12.4192C7.02143 12.5117 6.91144 12.5851 6.7904 12.6352C6.66936 12.6852 6.53965 12.7109 6.40867 12.7109C6.27769 12.7108 6.14801 12.6849 6.02703 12.6347C5.90605 12.5845 5.79614 12.511 5.70358 12.4183C5.61102 12.3256 5.53762 12.2156 5.48756 12.0946C5.43751 11.9736 5.41179 11.8439 5.41187 11.7129C5.41203 11.4484 5.51726 11.1947 5.70442 11.0078L8.21389 8.5L5.70442 5.99221C5.51726 5.80527 5.41203 5.55165 5.41187 5.28712C5.41171 5.0226 5.51664 4.76884 5.70358 4.58168C5.89052 4.39453 6.14414 4.28929 6.40867 4.28913C6.67319 4.28898 6.92695 4.39391 7.11411 4.58084L10.2956 7.76232C10.3922 7.85868 10.4679 7.97391 10.5181 8.10083C10.5682 8.22774 10.5916 8.36362 10.5869 8.5V8.532C10.5871 8.79653 10.4823 9.05033 10.2956 9.23769Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vf66uw\",\"data-framer-name\":\"Frame 4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ua8zKJC9f:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mZDOVt_ka\"},motionChild:true,nodeId:\"wZ1Qwp32b\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y0n8wa\",\"data-styles-preset\":\"u_ZAPsYGI\",children:\"Our next \"})}),\"events in \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"London and Dubai\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"135%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mZDOVt_ka\"},motionChild:true,nodeId:\"wZ1Qwp32b\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y0n8wa\",\"data-styles-preset\":\"u_ZAPsYGI\",children:\"Find out about upcoming Summits\"})})})}),className:\"framer-180vv3f\",\"data-framer-name\":\"Our next event\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-trleml\",\"data-framer-name\":\"Frame 144\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0.5C5.87827 0.5 3.84344 1.34285 2.34315 2.84315C0.842855 4.34344 0 6.37827 0 8.5C0 10.6217 0.842855 12.6566 2.34315 14.1569C3.84344 15.6571 5.87827 16.5 8 16.5C9.05058 16.5 10.0909 16.2931 11.0615 15.891C12.0321 15.489 12.914 14.8997 13.6569 14.1569C14.3997 13.414 14.989 12.5321 15.391 11.5615C15.7931 10.5909 16 9.55058 16 8.5C16 7.44942 15.7931 6.40914 15.391 5.43853C14.989 4.46793 14.3997 3.58601 13.6569 2.84315C12.914 2.10028 12.0321 1.511 11.0615 1.10896C10.0909 0.706926 9.05058 0.5 8 0.5ZM10.2956 9.23769L7.11411 12.4192C7.02143 12.5117 6.91144 12.5851 6.7904 12.6352C6.66936 12.6852 6.53965 12.7109 6.40867 12.7109C6.27769 12.7108 6.14801 12.6849 6.02703 12.6347C5.90605 12.5845 5.79614 12.511 5.70358 12.4183C5.61102 12.3256 5.53762 12.2156 5.48756 12.0946C5.43751 11.9736 5.41179 11.8439 5.41187 11.7129C5.41203 11.4484 5.51726 11.1947 5.70442 11.0078L8.21389 8.5L5.70442 5.99221C5.51726 5.80527 5.41203 5.55165 5.41187 5.28712C5.41171 5.0226 5.51664 4.76884 5.70358 4.58168C5.89052 4.39453 6.14414 4.28929 6.40867 4.28913C6.67319 4.28898 6.92695 4.39391 7.11411 4.58084L10.2956 7.76232C10.3922 7.85868 10.4679 7.97391 10.5181 8.10083C10.5682 8.22774 10.5916 8.36362 10.5869 8.5V8.532C10.5871 8.79653 10.4823 9.05033 10.2956 9.23769Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})]})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-183pvqr\",\"data-framer-appear-id\":\"183pvqr\",\"data-framer-name\":\"Frame 243\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1381bhy-container\",isModuleExternal:true,nodeId:\"VNLq6JTVk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"VNLq6JTVk\",layoutId:\"VNLq6JTVk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hy25o4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r70iil-container\",id:\"1r70iil\",inComponentSlot:true,isModuleExternal:true,nodeId:\"eAEuu5T5H\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"eAEuu5T5H\",isMixedBorderRadius:false,isRed:false,layoutId:\"eAEuu5T5H\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/MLFdhy8kR74\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pg2feg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13f1q2k-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Gpxc2w3Sh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Gpxc2w3Sh\",isMixedBorderRadius:false,isRed:false,layoutId:\"Gpxc2w3Sh\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/6r_3cgSlB4w\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u0pt6f\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oh4bfq-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"z6xcAkzH3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"z6xcAkzH3\",isMixedBorderRadius:false,isRed:false,layoutId:\"z6xcAkzH3\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/S3oYoZ8OqZw\",width:\"100%\"})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v84d4e\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4fvyg\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Our partners and sponsors support our work\"})})},Ua8zKJC9f:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Our partners and sponsors \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"support our work\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Our partners and sponsors \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"support our work\"})]}),className:\"framer-ut01ma\",\"data-framer-name\":\"Our partners and sponsors support our work\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18uoi2s-container\",id:\"18uoi2s\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ntflEglwG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:74,height:\"100%\",hoverFactor:1,id:\"ntflEglwG\",layoutId:\"ntflEglwG\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:156,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KclZD6ANpIFutiLbnwHbJD8lAys.png\"},className:\"framer-1y8wsk8\",\"data-framer-name\":\"EI_Primary_logo_BLK_RGB 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kume9o\",\"data-framer-name\":\"cim_logo_blue 2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 289 37\"><g transform=\"translate(0.086 0)\"><path d=\"M 0 37.086 L 0 0.086 L 288.733 0.086 L 288.733 37.086 Z\" fill=\"transparent\"></path><path d=\"M 42.43 0.559 L 40.711 0.559 L 40.711 33.792 L 42.43 33.792 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 46.188 0.559 L 44.469 0.559 L 44.469 33.783 L 46.188 33.783 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 31.062 24.947 C 28.253 29.733 23.033 32.702 17.45 32.702 L 17.405 32.702 C 8.756 32.675 1.728 25.727 1.728 17.193 C 1.728 8.658 8.774 1.693 17.45 1.693 C 23.042 1.693 28.262 4.662 31.071 9.447 L 31.098 9.492 L 32.587 8.641 L 32.56 8.596 C 29.44 3.297 23.653 0 17.45 0 C 7.825 0 0 7.71 0 17.193 C 0 26.675 7.825 34.395 17.45 34.395 C 23.653 34.395 29.44 31.098 32.56 25.798 L 32.587 25.754 L 31.098 24.903 L 31.071 24.947 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 17.449 5.398 C 21.712 5.398 25.682 7.658 27.818 11.3 L 27.844 11.344 L 29.324 10.494 L 29.298 10.449 C 26.852 6.284 22.314 3.705 17.449 3.705 L 17.396 3.705 C 9.872 3.732 3.766 9.776 3.766 17.194 C 3.766 24.611 9.907 30.682 17.449 30.682 C 22.314 30.682 26.861 28.094 29.298 23.938 L 29.324 23.893 L 27.844 23.043 L 27.818 23.087 C 25.682 26.729 21.712 28.989 17.449 28.989 C 10.847 28.989 5.476 23.698 5.476 17.194 C 5.476 10.689 10.847 5.398 17.449 5.398 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 56.594 0.568 L 54.875 0.568 L 54.875 33.784 L 56.594 33.784 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 58.739 4.555 L 58.633 4.387 L 58.633 33.783 L 60.352 33.783 L 60.352 10.555 L 71.891 30.256 L 83.429 10.555 L 83.429 33.783 L 85.149 33.783 L 85.149 4.387 L 71.891 27.021 L 58.73 4.555 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 88.915 0.568 L 87.195 0.568 L 87.195 33.793 L 88.915 33.793 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 71.884 19.994 L 60.514 0.568 L 58.617 0.568 L 71.893 23.212 L 85.151 0.568 L 83.254 0.568 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 111.739 0.568 L 110.711 0.568 L 110.711 33.793 L 111.739 33.793 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 285.118 31.569 C 283.824 31.569 283 30.771 283 29.291 C 283 27.634 283.957 26.969 285.162 26.969 C 285.907 26.969 286.323 27.191 286.793 27.483 L 286.793 31.179 C 286.536 31.374 286.164 31.578 285.109 31.578 M 288.734 33.536 L 288.734 25.525 L 287.103 25.968 C 286.713 25.569 285.889 25.365 284.613 25.365 C 282.291 25.365 280.846 27.04 280.846 29.344 C 280.846 31.48 282.087 33.199 284.613 33.199 C 285.419 33.199 286.297 33.04 286.793 32.774 L 286.793 33.359 C 286.749 34.298 286.128 35.238 284.453 35.238 C 283.514 35.238 282.477 35.061 281.741 34.485 L 281.741 36.479 C 282.424 36.895 283.797 37.001 284.639 37.001 C 286.979 37.001 288.601 36.08 288.725 33.527 L 288.743 33.527 Z M 276.318 25.383 C 275.281 25.383 274.439 25.684 273.783 26.083 L 272.17 25.569 L 272.17 32.996 L 274.093 32.996 L 274.093 27.528 C 274.598 27.244 275.21 27.005 275.875 27.005 C 276.894 27.005 277.39 27.563 277.39 28.423 L 277.39 32.996 L 279.331 32.996 L 279.331 28.157 C 279.331 26.562 278.365 25.383 276.327 25.383 M 270.185 25.605 L 268.306 25.605 L 268.306 32.996 L 270.185 32.996 Z M 270.477 23.07 C 270.477 22.414 269.928 21.874 269.246 21.874 C 268.563 21.874 268.031 22.414 268.031 23.07 C 268.031 23.726 268.581 24.284 269.246 24.284 C 269.91 24.284 270.477 23.743 270.477 23.07 Z M 265.001 31.498 C 264.309 31.498 264.097 31.117 264.097 30.674 L 264.097 27.404 L 266.489 27.404 L 266.489 25.906 L 264.097 25.906 L 264.097 23.274 L 262.218 23.938 L 262.218 30.754 C 262.218 32.171 262.945 33.093 264.611 33.093 C 265.497 33.093 266.454 32.854 266.746 32.668 L 266.729 31.046 C 266.472 31.205 265.603 31.489 265.001 31.489 Z M 255.482 28.405 C 255.615 27.413 256.378 26.792 257.264 26.792 C 258.15 26.792 258.894 27.35 258.894 28.405 Z M 257.29 25.348 C 254.862 25.348 253.48 27.138 253.48 29.282 C 253.48 31.427 254.853 33.199 257.485 33.199 C 258.389 33.199 259.781 32.996 260.472 32.579 L 260.472 30.842 C 259.648 31.383 258.434 31.604 257.707 31.604 C 256.369 31.604 255.527 30.842 255.456 29.646 L 260.791 29.646 L 260.791 28.963 C 260.791 26.331 259.116 25.348 257.282 25.348 M 250.555 25.569 L 247.613 28.981 L 250.715 32.996 L 253.223 32.996 L 249.89 28.919 L 252.912 25.578 L 250.555 25.578 Z M 247.453 22.228 L 245.574 21.563 L 245.574 33.005 L 247.453 33.005 L 247.453 22.237 Z M 239.034 25.498 L 239.034 33.005 L 240.984 33.005 L 240.984 27.909 C 240.984 27.909 241.648 27.147 242.765 27.147 C 243.456 27.147 244.183 27.448 244.396 27.545 L 244.396 25.622 C 244.006 25.427 243.456 25.321 242.96 25.321 C 241.923 25.321 241.17 25.862 240.762 26.296 L 239.034 25.516 Z M 235.285 29.85 L 235.285 31.241 C 234.798 31.596 234.116 31.897 233.442 31.897 C 232.768 31.897 232.166 31.578 232.166 30.86 C 232.166 30.142 232.733 29.859 233.398 29.859 L 235.285 29.859 Z M 233.991 25.277 C 233.008 25.277 231.67 25.498 230.792 25.888 L 230.792 27.652 C 231.661 27.235 232.848 26.916 233.699 26.916 C 234.798 26.916 235.268 27.413 235.268 28.192 L 235.268 28.529 L 233.327 28.529 C 231.094 28.529 230.252 29.566 230.252 30.904 C 230.252 32.686 231.705 33.262 233.079 33.262 C 234.062 33.262 234.904 32.978 235.454 32.562 L 237.164 33.164 L 237.164 28.352 C 237.164 26.615 236.42 25.277 233.983 25.277 M 226.583 25.321 L 226.583 33.005 L 228.585 33.005 L 228.585 21.838 L 226.707 21.838 L 222.781 28.423 L 218.855 21.838 L 216.994 21.838 L 216.994 33.005 L 218.97 33.005 L 218.97 25.356 L 222.719 31.826 L 222.781 31.826 L 226.574 25.321 Z M 209.532 23.061 C 210.143 23.061 211.02 23.345 211.26 23.504 L 211.277 21.882 C 210.985 21.696 210.037 21.457 209.159 21.457 C 207.493 21.457 206.767 22.379 206.767 23.797 L 206.767 25.817 L 205.889 25.817 L 205.889 27.271 L 206.767 27.271 L 206.767 33.005 L 208.628 33.005 L 208.628 27.271 L 211.038 27.271 L 211.038 25.773 L 208.628 25.773 L 208.628 23.894 C 208.628 23.451 208.858 23.07 209.532 23.07 M 200.979 31.64 C 199.553 31.64 198.764 30.603 198.764 29.282 C 198.764 27.962 199.553 26.925 200.962 26.925 C 202.371 26.925 203.142 27.98 203.142 29.282 C 203.142 30.585 202.38 31.64 200.979 31.64 Z M 200.962 25.348 C 198.427 25.348 196.823 27.129 196.823 29.282 C 196.823 31.436 198.427 33.217 200.962 33.217 C 203.496 33.217 205.083 31.436 205.083 29.282 C 205.083 27.129 203.496 25.348 200.962 25.348 Z M 185.967 28.423 C 186.1 27.43 186.853 26.81 187.739 26.81 C 188.625 26.81 189.37 27.368 189.37 28.423 L 185.958 28.423 Z M 187.775 25.365 C 185.346 25.365 183.964 27.155 183.964 29.3 C 183.964 31.445 185.338 33.217 187.97 33.217 C 188.874 33.217 190.265 33.013 190.956 32.597 L 190.956 30.86 C 190.132 31.4 188.918 31.622 188.191 31.622 C 186.853 31.622 186.011 30.86 185.94 29.663 L 191.275 29.663 L 191.275 28.981 C 191.275 26.349 189.6 25.365 187.766 25.365 M 181.305 31.516 C 180.614 31.516 180.401 31.135 180.401 30.691 L 180.401 27.421 L 182.794 27.421 L 182.794 25.924 L 180.401 25.924 L 180.401 23.291 L 178.522 23.956 L 178.522 30.771 C 178.522 32.189 179.249 33.111 180.915 33.111 C 181.802 33.111 182.759 32.872 183.051 32.685 L 183.033 31.064 C 182.776 31.223 181.899 31.507 181.305 31.507 Z M 172.532 33.217 C 173.586 33.217 174.419 32.916 175.084 32.517 L 176.697 33.031 L 176.697 25.605 L 174.756 25.605 L 174.756 31.073 C 174.269 31.356 173.604 31.613 172.948 31.613 C 171.929 31.613 171.477 31.037 171.477 30.178 L 171.477 25.605 L 169.536 25.605 L 169.536 30.452 C 169.536 32.048 170.502 33.226 172.523 33.226 M 166.319 31.525 C 165.628 31.525 165.415 31.144 165.415 30.7 L 165.415 27.43 L 167.808 27.43 L 167.808 25.933 L 165.415 25.933 L 165.415 23.3 L 163.536 23.965 L 163.536 30.78 C 163.536 32.198 164.263 33.12 165.929 33.12 C 166.815 33.12 167.773 32.881 168.065 32.694 L 168.047 31.073 C 167.79 31.232 166.913 31.516 166.319 31.516 Z M 161.764 25.631 L 159.885 25.631 L 159.885 33.022 L 161.764 33.022 Z M 162.056 23.097 C 162.056 22.441 161.507 21.9 160.825 21.9 C 160.142 21.9 159.61 22.441 159.61 23.097 C 159.61 23.752 160.16 24.311 160.825 24.311 C 161.489 24.311 162.056 23.77 162.056 23.097 Z M 156.579 31.525 C 155.888 31.525 155.676 31.144 155.676 30.7 L 155.676 27.43 L 158.068 27.43 L 158.068 25.933 L 155.676 25.933 L 155.676 23.3 L 153.797 23.965 L 153.797 30.78 C 153.797 32.198 154.523 33.12 156.19 33.12 C 157.085 33.12 158.033 32.881 158.325 32.694 L 158.308 31.073 C 158.051 31.232 157.173 31.516 156.579 31.516 Z M 149.224 33.226 C 151.049 33.226 152.414 32.526 152.414 30.833 C 152.414 29.61 151.563 29.096 150.491 28.733 L 149.038 28.219 C 148.665 28.095 148.444 27.865 148.444 27.563 C 148.444 27.244 148.719 26.828 149.525 26.828 C 150.19 26.828 151.174 27.049 152.015 27.581 L 152.015 25.844 C 151.776 25.72 150.686 25.383 149.49 25.383 C 147.407 25.383 146.547 26.385 146.547 27.696 C 146.547 28.715 147.123 29.318 148.249 29.69 L 149.72 30.186 C 150.137 30.328 150.5 30.63 150.5 30.887 C 150.5 31.126 150.456 31.746 149.242 31.746 C 148.338 31.746 147.292 31.392 146.609 30.966 L 146.609 32.721 C 147.177 33.022 148.276 33.235 149.242 33.235 M 141.939 25.41 C 140.902 25.41 140.06 25.711 139.404 26.11 L 137.791 25.596 L 137.791 33.022 L 139.715 33.022 L 139.715 27.554 C 140.22 27.271 140.831 27.031 141.496 27.031 C 142.515 27.031 143.011 27.59 143.011 28.449 L 143.011 33.022 L 144.952 33.022 L 144.952 28.184 C 144.952 26.588 143.986 25.41 141.948 25.41 M 133.945 33.022 L 135.966 33.022 L 135.966 21.874 L 133.945 21.874 Z\" fill=\"rgba(255,255,255,0.7)\"></path><path d=\"M 230.992 10.732 C 230.992 9.075 231.993 8.233 233.207 8.233 C 233.969 8.233 234.581 8.588 235.113 8.915 L 235.113 12.514 C 234.696 12.735 233.969 13.01 233.234 13.01 C 231.94 13.01 230.983 12.212 230.983 10.732 M 236.974 14.525 L 236.974 2.951 L 235.095 3.616 L 235.095 7.311 C 234.607 7.09 233.819 6.789 232.915 6.789 C 230.593 6.789 229.148 8.464 229.148 10.768 C 229.148 12.903 230.389 14.623 232.915 14.623 C 233.872 14.623 234.918 14.304 235.352 13.94 L 236.965 14.516 Z M 222.741 9.811 C 222.874 8.818 223.627 8.198 224.522 8.198 C 225.417 8.198 226.153 8.756 226.153 9.811 Z M 224.549 6.753 C 222.121 6.753 220.738 8.534 220.738 10.688 C 220.738 12.841 222.112 14.605 224.744 14.605 C 225.648 14.605 227.039 14.392 227.73 13.985 L 227.73 12.248 C 226.906 12.788 225.692 13.01 224.965 13.01 C 223.627 13.01 222.785 12.248 222.714 11.051 L 228.049 11.051 L 228.049 10.369 C 228.049 7.737 226.366 6.753 224.54 6.753 M 214.632 6.895 L 214.632 14.401 L 216.59 14.401 L 216.59 9.305 C 216.59 9.305 217.255 8.543 218.372 8.543 C 219.063 8.543 219.799 8.845 220.002 8.942 L 220.002 7.01 C 219.612 6.815 219.063 6.709 218.567 6.709 C 217.53 6.709 216.777 7.249 216.369 7.684 L 214.641 6.904 Z M 207.746 9.811 C 207.879 8.818 208.632 8.198 209.518 8.198 C 210.405 8.198 211.149 8.756 211.149 9.811 L 207.737 9.811 Z M 209.554 6.753 C 207.126 6.753 205.743 8.534 205.743 10.688 C 205.743 12.841 207.117 14.605 209.749 14.605 C 210.653 14.605 212.044 14.392 212.735 13.985 L 212.735 12.248 C 211.911 12.788 210.697 13.01 209.97 13.01 C 208.632 13.01 207.79 12.248 207.719 11.051 L 213.054 11.051 L 213.054 10.369 C 213.054 7.737 211.371 6.753 209.545 6.753 Z M 203.093 12.904 C 202.402 12.904 202.189 12.522 202.189 12.079 L 202.189 8.809 L 204.582 8.809 L 204.582 7.311 L 202.189 7.311 L 202.189 4.679 L 200.31 5.344 L 200.31 12.159 C 200.31 13.577 201.037 14.499 202.703 14.499 C 203.598 14.499 204.547 14.259 204.839 14.073 L 204.821 12.452 C 204.564 12.611 203.696 12.895 203.093 12.895 Z M 193.814 6.895 L 193.814 14.401 L 195.764 14.401 L 195.764 9.305 C 195.764 9.305 196.429 8.543 197.545 8.543 C 198.237 8.543 198.963 8.845 199.176 8.942 L 199.176 7.01 C 198.786 6.815 198.237 6.709 197.74 6.709 C 196.703 6.709 195.95 7.249 195.543 7.684 L 193.814 6.904 Z M 190.066 11.246 L 190.066 12.629 C 189.578 12.983 188.896 13.285 188.222 13.285 C 187.549 13.285 186.946 12.965 186.946 12.248 C 186.946 11.53 187.513 11.246 188.178 11.246 L 190.075 11.246 Z M 188.772 6.673 C 187.788 6.673 186.45 6.895 185.572 7.285 L 185.572 9.048 C 186.45 8.632 187.629 8.322 188.488 8.322 C 189.587 8.322 190.057 8.818 190.057 9.598 L 190.057 9.935 L 188.116 9.935 C 185.892 9.935 185.041 10.972 185.041 12.31 C 185.041 14.091 186.494 14.667 187.868 14.667 C 188.852 14.667 189.693 14.384 190.243 13.967 L 191.953 14.579 L 191.953 9.766 C 191.953 8.029 191.209 6.691 188.772 6.691 M 180.565 6.815 C 179.564 6.815 178.864 7.134 178.27 7.48 L 178.27 2.969 L 176.391 3.634 L 176.391 14.401 L 178.27 14.401 L 178.27 8.986 C 178.757 8.712 179.431 8.428 180.113 8.428 C 181.115 8.428 181.629 8.986 181.629 9.846 L 181.629 14.419 L 183.552 14.419 L 183.552 9.58 C 183.552 7.985 182.595 6.806 180.565 6.806 Z M 163.807 8.889 C 163.807 12.044 166.12 14.641 169.789 14.641 C 171.632 14.641 173.245 13.985 174.22 13.302 L 174.22 11.051 C 172.961 12.31 171.349 12.904 169.86 12.904 C 167.387 12.904 165.818 11.211 165.818 8.862 C 165.818 6.514 167.405 4.812 169.895 4.812 C 171.366 4.812 172.97 5.388 174.229 6.691 L 174.229 4.396 C 173.263 3.713 171.641 3.075 169.833 3.075 C 166.208 3.075 163.816 5.672 163.816 8.889 M 153.5 9.828 C 153.633 8.836 154.395 8.215 155.281 8.215 C 156.167 8.215 156.912 8.774 156.912 9.828 Z M 155.308 6.771 C 152.88 6.771 151.497 8.552 151.497 10.706 C 151.497 12.859 152.871 14.623 155.503 14.623 C 156.407 14.623 157.798 14.41 158.489 14.002 L 158.489 12.265 C 157.665 12.806 156.451 13.028 155.724 13.028 C 154.386 13.028 153.544 12.265 153.473 11.069 L 158.808 11.069 L 158.808 10.387 C 158.808 7.755 157.125 6.771 155.299 6.771 M 147.19 6.815 C 146.189 6.815 145.488 7.134 144.895 7.48 L 144.895 2.969 L 143.016 3.634 L 143.016 14.401 L 144.895 14.401 L 144.895 8.986 C 145.382 8.712 146.064 8.428 146.738 8.428 C 147.739 8.428 148.253 8.986 148.253 9.846 L 148.253 14.419 L 150.177 14.419 L 150.177 9.58 C 150.177 7.985 149.219 6.806 147.19 6.806 Z M 137.911 14.41 L 137.911 4.963 L 141.332 4.963 L 141.332 3.244 L 132.461 3.244 L 132.461 4.963 L 135.899 4.963 L 135.899 14.41 Z\" fill=\"rgba(255,255,255,0.7)\"></path></g></svg>',svgContentId:10784384840,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:190,pixelWidth:2152,sizes:\"732px\",src:\"https://framerusercontent.com/images/4ENtXdYPh8k4JGsY12HefwuU64.png\",srcSet:\"https://framerusercontent.com/images/4ENtXdYPh8k4JGsY12HefwuU64.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ENtXdYPh8k4JGsY12HefwuU64.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ENtXdYPh8k4JGsY12HefwuU64.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4ENtXdYPh8k4JGsY12HefwuU64.png 2152w\"},className:\"framer-11hxjxa\",\"data-framer-name\":\"SOLO\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hx90n7\",\"data-framer-name\":\"Frame 163\",children:/*#__PURE__*/_jsx(Link,{href:\"mailto:jacobhoward@financialmarketinginsights.com?subject=Sponsorship\",motionChild:true,nodeId:\"BDF4pyqTX\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-6smfx0 framer-lux5qc\",\"data-framer-name\":\"Frame 3\",whileHover:animation3,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-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Find out about sponsorship\"})}),className:\"framer-10w3pds\",\"data-framer-name\":\"Join the community\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f4uims\",\"data-framer-name\":\"Frame 144\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0.5C5.87827 0.5 3.84344 1.34285 2.34315 2.84315C0.842855 4.34344 0 6.37827 0 8.5C0 10.6217 0.842855 12.6566 2.34315 14.1569C3.84344 15.6571 5.87827 16.5 8 16.5C9.05058 16.5 10.0909 16.2931 11.0615 15.891C12.0321 15.489 12.914 14.8997 13.6569 14.1569C14.3997 13.414 14.989 12.5321 15.391 11.5615C15.7931 10.5909 16 9.55058 16 8.5C16 7.44942 15.7931 6.40914 15.391 5.43853C14.989 4.46793 14.3997 3.58601 13.6569 2.84315C12.914 2.10028 12.0321 1.511 11.0615 1.10896C10.0909 0.706926 9.05058 0.5 8 0.5ZM10.2956 9.23769L7.11411 12.4192C7.02143 12.5117 6.91144 12.5851 6.7904 12.6352C6.66936 12.6852 6.53965 12.7109 6.40867 12.7109C6.27769 12.7108 6.14801 12.6849 6.02703 12.6347C5.90605 12.5845 5.79614 12.511 5.70358 12.4183C5.61102 12.3256 5.53762 12.2156 5.48756 12.0946C5.43751 11.9736 5.41179 11.8439 5.41187 11.7129C5.41203 11.4484 5.51726 11.1947 5.70442 11.0078L8.21389 8.5L5.70442 5.99221C5.51726 5.80527 5.41203 5.55165 5.41187 5.28712C5.41171 5.0226 5.51664 4.76884 5.70358 4.58168C5.89052 4.39453 6.14414 4.28929 6.40867 4.28913C6.67319 4.28898 6.92695 4.39391 7.11411 4.58084L10.2956 7.76232C10.3922 7.85868 10.4679 7.97391 10.5181 8.10083C10.5682 8.22774 10.5916 8.36362 10.5869 8.5V8.532C10.5871 8.79653 10.4823 9.05033 10.2956 9.23769Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:322,pixelWidth:511,positionX:\"right\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/5w13GPQBKwWNfb1u9jBZMIwI.svg\"},className:\"framer-caxc5z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gyl33i\",\"data-framer-name\":\"Tiles\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Latest updates \"})]}),fonts:[\"GF;Satoshi-700\"]},Ua8zKJC9f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Latest updates \"})}),fonts:[\"GF;Satoshi-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"106%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Latest updates \"})}),className:\"framer-1e4mr8k\",\"data-framer-name\":\"Our Communty\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11yfl58\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wb5zn3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"K9SJm6hFg\",data:Blog,type:\"Collection\"},select:[{collection:\"K9SJm6hFg\",name:\"HCphXJ37g\",type:\"Identifier\"},{collection:\"K9SJm6hFg\",name:\"Q_h_UTqG8\",type:\"Identifier\"},{collection:\"K9SJm6hFg\",name:\"mnFYfCayE\",type:\"Identifier\"},{collection:\"K9SJm6hFg\",name:\"gma8i3CTV\",type:\"Identifier\"},{collection:\"K9SJm6hFg\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({gma8i3CTV:gma8i3CTVK9SJm6hFg,HCphXJ37g:HCphXJ37gK9SJm6hFg,id:idK9SJm6hFg,mnFYfCayE:mnFYfCayEK9SJm6hFg,Q_h_UTqG8:Q_h_UTqG8K9SJm6hFg},index)=>{HCphXJ37gK9SJm6hFg??=\"\";mnFYfCayEK9SJm6hFg??=\"\";gma8i3CTVK9SJm6hFg??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`K9SJm6hFg-${idK9SJm6hFg}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{HCphXJ37g:HCphXJ37gK9SJm6hFg},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{openInNewTab:false},Ua8zKJC9f:{href:{pathVariables:{HCphXJ37g:\"future-cx-roadmap-in-financial-services-insights-from-accenture\"},unresolvedPathSlugs:{HCphXJ37g:{collectionId:\"Ytig9ct_x\",collectionItemId:\"zPe5u8vDa\"}},webPageId:\"RsZjDpmFw\"}}},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{HCphXJ37g:HCphXJ37gK9SJm6hFg},webPageId:\"RsZjDpmFw\"},motionChild:true,nodeId:\"sPankrbWF\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zu5vg framer-lux5qc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ggl6x6\",\"data-framer-name\":\"Frame 229\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 57px, 50px), 800px)`,...toResponsiveImage(Q_h_UTqG8K9SJm6hFg)}},Ua8zKJC9f:{background:{alt:\"\",fit:\"fill\",sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 113px) / 2, 50px), 800px)`,...toResponsiveImage(Q_h_UTqG8K9SJm6hFg)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 241px) / 4, 50px), 800px)`,...toResponsiveImage(Q_h_UTqG8K9SJm6hFg)},className:\"framer-6oxlk4\",\"data-framer-name\":\"Rectangle 993\"})}),/*#__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\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"NY FS Marketing Leaders' Summit\"})}),className:\"framer-1lvyjkm\",\"data-framer-name\":\"Financial Marketing Leaders Summit\",fonts:[\"GF;Satoshi-500\"],text:mnFYfCayEK9SJm6hFg,verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ojh2we hidden-72rtr7 hidden-3olhh5\",\"data-framer-name\":\"Frame 232\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jg27eb\",\"data-framer-name\":\"Frame 225\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h2zgv7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"T6Xvh7eQ6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"rgba(255, 255, 255, 0.7)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Work\",iconStyle15:\"TwoTone\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"T6Xvh7eQ6\",layoutId:\"T6Xvh7eQ6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"4th December 2024\"})}),className:\"framer-7fbs8c\",\"data-framer-name\":\"4th December 2024\",fonts:[\"GF;Satoshi-regular\"],text:gma8i3CTVK9SJm6hFg,verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o2rpp5\",\"data-framer-name\":\"Frame 225\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-102bwe2-container hidden-1apc7hn\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tvhYDraCl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Material,{color:\"rgba(255, 255, 255, 0.7)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Work\",iconStyle15:\"TwoTone\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"tvhYDraCl\",layoutId:\"tvhYDraCl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"4th December 2024\"})}),className:\"framer-oj8bni hidden-1apc7hn\",\"data-framer-name\":\"4th December 2024\",fonts:[\"GF;Satoshi-regular\"],text:gma8i3CTVK9SJm6hFg,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})})})},idK9SJm6hFg);})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-med1nz\",\"data-framer-name\":\"logos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2hxhj0\",\"data-framer-name\":\"Frame 260\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1us5zud\",\"data-framer-name\":\"Frame 257\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Speakers from top companies\"})}),fonts:[\"GF;Satoshi-700\"]},Ua8zKJC9f:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Award-winning Summits\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"106%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Award-winning Summits\"})}),className:\"framer-1cs0j25\",\"data-framer-name\":\"Speakers from top companies\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1hlcbpq\",\"data-framer-appear-id\":\"1hlcbpq\",\"data-framer-name\":\"Frame 243\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zfys1e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vVYcBzy2x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube1,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"vVYcBzy2x\",isMixedBorderRadius:false,isRed:false,layoutId:\"vVYcBzy2x\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/S3oYoZ8OqZw?si=I9A-W0DUrn5NWqUY\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-umciw0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"Our Summits have featured speakers from top financial services companies, bringing you cutting-edge strategies, innovative marketing techniques, and actionable insights. \"})})},Ua8zKJC9f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"Our Summits have featured speakers from top financial services companies, bringing you cutting-edge strategies, innovative marketing techniques, and actionable insights. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.86)\"},children:\"Our Summits have featured speakers from top financial services companies, bringing you cutting-edge strategies, innovative marketing techniques, and actionable insights. \"})}),className:\"framer-1pstvqy\",\"data-framer-name\":\"In each episode of our new podcast series you'll hear a short interview with a leading Financial Services marketer. Stay tuned for the latest episode!\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r3p2vp\",\"data-framer-name\":\"Frame 259\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mZDOVt_ka\"},motionChild:true,nodeId:\"bKZ6XIKpf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1judgaq hidden-3olhh5 framer-lux5qc\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Our events\"})})}),className:\"framer-1nzm2wg\",\"data-framer-name\":\"Our events\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18rjyl4\",\"data-framer-name\":\"Frame 144\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 1C5.87827 1 3.84344 1.84285 2.34315 3.34315C0.842855 4.84344 0 6.87827 0 9C0 11.1217 0.842855 13.1566 2.34315 14.6569C3.84344 16.1571 5.87827 17 8 17C9.05058 17 10.0909 16.7931 11.0615 16.391C12.0321 15.989 12.914 15.3997 13.6569 14.6569C14.3997 13.914 14.989 13.0321 15.391 12.0615C15.7931 11.0909 16 10.0506 16 9C16 7.94942 15.7931 6.90914 15.391 5.93853C14.989 4.96793 14.3997 4.08601 13.6569 3.34315C12.914 2.60028 12.0321 2.011 11.0615 1.60896C10.0909 1.20693 9.05058 1 8 1ZM10.2956 9.73769L7.11411 12.9192C7.02143 13.0117 6.91144 13.0851 6.7904 13.1352C6.66936 13.1852 6.53965 13.2109 6.40867 13.2109C6.27769 13.2108 6.14801 13.1849 6.02703 13.1347C5.90605 13.0845 5.79614 13.011 5.70358 12.9183C5.61102 12.8256 5.53762 12.7156 5.48756 12.5946C5.43751 12.4736 5.41179 12.3439 5.41187 12.2129C5.41203 11.9484 5.51726 11.6947 5.70442 11.5078L8.21389 9L5.70442 6.49221C5.51726 6.30528 5.41203 6.05165 5.41187 5.78712C5.41171 5.5226 5.51664 5.26884 5.70358 5.08168C5.89052 4.89453 6.14414 4.78929 6.40867 4.78913C6.67319 4.78898 6.92695 4.89391 7.11411 5.08084L10.2956 8.26232C10.3922 8.35868 10.4679 8.47391 10.5181 8.60083C10.5682 8.72774 10.5916 8.86362 10.5869 9V9.032C10.5871 9.29653 10.4823 9.55033 10.2956 9.73769Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15lt0w6 hidden-3olhh5\",\"data-framer-name\":\"Frame 4\",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-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xmv9AN0Fi\"},motionChild:true,nodeId:\"MXNYIoML1\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y0n8wa\",\"data-styles-preset\":\"u_ZAPsYGI\",children:\"Join the community\"})})})}),className:\"framer-1h15lbi\",\"data-framer-name\":\"Join the community\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v23sdi\",\"data-framer-name\":\"Frame 144\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 1C5.87827 1 3.84344 1.84285 2.34315 3.34315C0.842855 4.84344 0 6.87827 0 9C0 11.1217 0.842855 13.1566 2.34315 14.6569C3.84344 16.1571 5.87827 17 8 17C9.05058 17 10.0909 16.7931 11.0615 16.391C12.0321 15.989 12.914 15.3997 13.6569 14.6569C14.3997 13.914 14.989 13.0321 15.391 12.0615C15.7931 11.0909 16 10.0506 16 9C16 7.94942 15.7931 6.90914 15.391 5.93853C14.989 4.96793 14.3997 4.08601 13.6569 3.34315C12.914 2.60028 12.0321 2.011 11.0615 1.60896C10.0909 1.20693 9.05058 1 8 1ZM10.2956 9.73769L7.11411 12.9192C7.02143 13.0117 6.91144 13.0851 6.7904 13.1352C6.66936 13.1852 6.53965 13.2109 6.40867 13.2109C6.27769 13.2108 6.14801 13.1849 6.02703 13.1347C5.90605 13.0845 5.79614 13.011 5.70358 12.9183C5.61102 12.8256 5.53762 12.7156 5.48756 12.5946C5.43751 12.4736 5.41179 12.3439 5.41187 12.2129C5.41203 11.9484 5.51726 11.6947 5.70442 11.5078L8.21389 9L5.70442 6.49221C5.51726 6.30528 5.41203 6.05165 5.41187 5.78712C5.41171 5.5226 5.51664 5.26884 5.70358 5.08168C5.89052 4.89453 6.14414 4.78929 6.40867 4.78913C6.67319 4.78898 6.92695 4.89391 7.11411 5.08084L10.2956 8.26232C10.3922 8.35868 10.4679 8.47391 10.5181 8.60083C10.5682 8.72774 10.5916 8.86362 10.5869 9V9.032C10.5871 9.29653 10.4823 9.55033 10.2956 9.73769Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qtxeuz hidden-72rtr7 hidden-1apc7hn\",\"data-framer-name\":\"Frame 163\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mZDOVt_ka\"},motionChild:true,nodeId:\"NPfsD57bf\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-scdt88 framer-lux5qc\",\"data-framer-name\":\"Frame 3\",whileHover:animation3,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-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Events\"})}),className:\"framer-3uxbf7\",\"data-framer-name\":\"Join the community\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-166fail\",\"data-framer-name\":\"Frame 144\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0.5C5.87827 0.5 3.84344 1.34285 2.34315 2.84315C0.842855 4.34344 0 6.37827 0 8.5C0 10.6217 0.842855 12.6566 2.34315 14.1569C3.84344 15.6571 5.87827 16.5 8 16.5C9.05058 16.5 10.0909 16.2931 11.0615 15.891C12.0321 15.489 12.914 14.8997 13.6569 14.1569C14.3997 13.414 14.989 12.5321 15.391 11.5615C15.7931 10.5909 16 9.55058 16 8.5C16 7.44942 15.7931 6.40914 15.391 5.43853C14.989 4.46793 14.3997 3.58601 13.6569 2.84315C12.914 2.10028 12.0321 1.511 11.0615 1.10896C10.0909 0.706926 9.05058 0.5 8 0.5ZM10.2956 9.23769L7.11411 12.4192C7.02143 12.5117 6.91144 12.5851 6.7904 12.6352C6.66936 12.6852 6.53965 12.7109 6.40867 12.7109C6.27769 12.7108 6.14801 12.6849 6.02703 12.6347C5.90605 12.5845 5.79614 12.511 5.70358 12.4183C5.61102 12.3256 5.53762 12.2156 5.48756 12.0946C5.43751 11.9736 5.41179 11.8439 5.41187 11.7129C5.41203 11.4484 5.51726 11.1947 5.70442 11.0078L8.21389 8.5L5.70442 5.99221C5.51726 5.80527 5.41203 5.55165 5.41187 5.28712C5.41171 5.0226 5.51664 4.76884 5.70358 4.58168C5.89052 4.39453 6.14414 4.28929 6.40867 4.28913C6.67319 4.28898 6.92695 4.39391 7.11411 4.58084L10.2956 7.76232C10.3922 7.85868 10.4679 7.97391 10.5181 8.10083C10.5682 8.22774 10.5916 8.36362 10.5869 8.5V8.532C10.5871 8.79653 10.4823 9.05033 10.2956 9.23769Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sayxpg\",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,__targetOpacity:1,className:\"framer-126mwqb\",\"data-framer-name\":\"Frame 258\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19w0w0i\",\"data-framer-name\":\"Frame 254\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1whutjw\",\"data-framer-name\":\"Frame 253\",whileHover:animation6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{background:{alt:\"\",fit:\"fit\",pixelHeight:108,pixelWidth:584,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 56px) / 3, 1px) - 40px)`,src:\"https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png\",srcSet:\"https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png?scale-down-to=512 512w,https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png 584w\"}},Ua8zKJC9f:{background:{alt:\"\",fit:\"fit\",pixelHeight:108,pixelWidth:584,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 72px) / 2, 1px) - 48px) / 3, 1px) - 24px)`,src:\"https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png\",srcSet:\"https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png?scale-down-to=512 512w,https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png 584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:108,pixelWidth:584,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 132px) / 2, 1px) - 48px) / 3, 1px) - 40px)`,src:\"https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png\",srcSet:\"https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png?scale-down-to=512 512w,https://framerusercontent.com/images/NM4hQZ10KqeSBn5dU9ZvarOaLig.png 584w\"},className:\"framer-122w3q4\",\"data-framer-name\":\"image 11\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18y67d9\",\"data-framer-name\":\"Frame 254\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Yfz9H2Wt3myOP7xdzLy8OoxIo.svg\"},className:\"framer-bqdprq\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zt43q1\",\"data-framer-name\":\"Frame 255\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:120,pixelWidth:480,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qF2Hv9wQ93KxjPhRdRa6F0oaYsI.png\"},className:\"framer-ohl6ro\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d9wo27\",\"data-framer-name\":\"Frame 256\",whileHover:animation6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{background:{alt:\"\",fit:\"fill\",pixelHeight:361,pixelWidth:690,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 56px) / 3, 1px) - 40px)`,src:\"https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png\",srcSet:\"https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png 690w\"}},Ua8zKJC9f:{background:{alt:\"\",fit:\"fill\",pixelHeight:361,pixelWidth:690,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 72px) / 2, 1px) - 48px) / 3, 1px) - 24px)`,src:\"https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png\",srcSet:\"https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png 690w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:361,pixelWidth:690,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 132px) / 2, 1px) - 48px) / 3, 1px) - 40px)`,src:\"https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png\",srcSet:\"https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qaHOHzRv3oVYKDITK2ppIHZdkE.png 690w\"},className:\"framer-lsc1vn\",\"data-framer-name\":\"image 5\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tvkitj\",\"data-framer-name\":\"Frame 194\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-creh6t\",\"data-framer-name\":\"Frame 253\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:358,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I6IDtpOw6Gxzm76rdOmPlkK36qs.png\"},className:\"framer-3ytygx\",\"data-framer-name\":\"image 11\",whileHover:animation6})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18mnnzy\",\"data-framer-name\":\"Frame 254\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:261,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vtIQ7UCEtR4DqUiziTM55QQd04.png\"},className:\"framer-vetx6l\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s2s8dw\",\"data-framer-name\":\"Frame 255\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pXqZGh1Kluf1CIgXRhJQcCSCi0.png\"},className:\"framer-1hshv27\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p1a08b\",\"data-framer-name\":\"Frame 256\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:219,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SEYTbbrssujLcPC0vSKF5hA33s.png\"},className:\"framer-1pbhq0d\",\"data-framer-name\":\"image 5\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5a0vpc\",\"data-framer-name\":\"Frame 194\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17skdd2\",\"data-framer-name\":\"Frame 253\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:233,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Q8udCZ4eN8jhi8lXutciqqLW1g.png\"},className:\"framer-xfg6ti\",\"data-framer-name\":\"image 11\",whileHover:animation6})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hv156i\",\"data-framer-name\":\"Frame 254\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hjdxEN6Am4nX7sLQxyIxjuvNaTA.png\"},className:\"framer-z1gkd8\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wrurh1\",\"data-framer-name\":\"Frame 255\",whileHover:animation6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:596,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 56px) / 3, 1px) - 40px)`,src:\"https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png\",srcSet:\"https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png 596w\"}},Ua8zKJC9f:{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:596,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 72px) / 2, 1px) - 48px) / 3, 1px) - 24px)`,src:\"https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png\",srcSet:\"https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png 596w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:596,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1600px) - 132px) / 2, 1px) - 48px) / 3, 1px) - 40px)`,src:\"https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png\",srcSet:\"https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png?scale-down-to=512 512w,https://framerusercontent.com/images/CNIN9iJIlXrrYM9CIOgfVZ0nBUk.png 596w\"},className:\"framer-1fiupda\",\"data-framer-name\":\"image 5\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uzoeo4\",\"data-framer-name\":\"Frame 256\",whileHover:animation6,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:60,pixelWidth:345,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qdm1TTXw0NcexYBclkdw5MdAM.png\"},className:\"framer-6ygkjz\",\"data-framer-name\":\"image 5\"})})]})]})})]})})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:322,pixelWidth:511,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/5w13GPQBKwWNfb1u9jBZMIwI.svg\"},className:\"framer-1m47ms5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-169yvq\",\"data-framer-name\":\"second row \",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19vbcgl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bW1qdZo_L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube1,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"bW1qdZo_L\",isMixedBorderRadius:false,isRed:true,layoutId:\"bW1qdZo_L\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/Bd5mypfhnVw?si=uzN3bkFayhhI9j9_\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l9hb0u\",\"data-framer-name\":\"Frame 180\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Podcasts with leading marketers\"})}),fonts:[\"GF;Satoshi-700\"]},Ua8zKJC9f:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Podcasts with leading marketers\"})}),fonts:[\"GF;Satoshi-700\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"106%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Podcasts \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"106%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"with leading marketers\"})]}),className:\"framer-17zpt8s\",\"data-framer-name\":\"Podcasts with leading marketers\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i26c2g\",\"data-framer-name\":\"Frame 181\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"Financial services marketing experts feature in our podcast series from well-known brands such as Zenus Bank, London Stock Exchange Group, Standard Chartered, Deutsche Bank, NatWest, Innovate Finance and many more.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"In each episode of our new podcast series you'll hear a short interview with a Financial Services Marketing Leader into their career, their challenges and their passions. Stay tuned for the latest episode!\"})]}),fonts:[\"FS;Satoshi-regular\"]},Ua8zKJC9f:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"Financial services marketing experts feature in our podcast series from well-known brands such as Zenus Bank, London Stock Exchange Group, Standard Chartered, Deutsche Bank, NatWest, Innovate Finance and many more.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.76)\"},children:\"In each episode of our new podcast series you'll hear a short interview with a Financial Services Marketing Leader into their career, their challenges and their passions. Stay tuned for the latest episode!\"})]}),fonts:[\"FS;Satoshi-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.86)\"},children:\"Financial services marketing experts feature in our podcast series from well-known brands such as Zenus Bank, London Stock Exchange Group, Standard Chartered, Deutsche Bank, NatWest, Innovate Finance and many more.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.86)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.86)\"},children:\"In each episode of our new podcast series you'll hear a short interview with a Financial Services Marketing Leader into their career, their challenges and their passions. Stay tuned for the latest episode!\"})]}),className:\"framer-1rykq25\",\"data-framer-name\":\"Financial services firms that have attended previous Summits read like a financial A-Z, including firms such as Blackrock, BNP Paribas, Citi, CME, Deutsche Bank, Goldman Sachs, HSBC, ING, J.P. Morgan, Lloyds, London Stock Exchange, NatWest, Ninety One, PensionBee, Quant, Soci\\xe9t\\xe9 G\\xe9n\\xe9rale, Standard Chartered, UBS, Zenith Bank and many more. In each episode of our new podcast series you'll hear a short interview with a leading Financial Services marketer. Stay tuned for the latest episode!\",fonts:[\"FS;Satoshi-regular\",\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kBp7P9cx3\"},motionChild:true,nodeId:\"AzS84gPVb\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{whileHover:animation3},Ua8zKJC9f:{whileHover:animation3}},children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ptau3b framer-lux5qc\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Find out more\"})}),className:\"framer-qhu43j\",\"data-framer-name\":\"Listen on Apple Podcasts\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o7cikj\",\"data-framer-name\":\"Frame 144\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0.5C5.87827 0.5 3.84344 1.34285 2.34315 2.84315C0.842855 4.34344 0 6.37827 0 8.5C0 10.6217 0.842855 12.6566 2.34315 14.1569C3.84344 15.6571 5.87827 16.5 8 16.5C9.05058 16.5 10.0909 16.2931 11.0615 15.891C12.0321 15.489 12.914 14.8997 13.6569 14.1569C14.3997 13.414 14.989 12.5321 15.391 11.5615C15.7931 10.5909 16 9.55058 16 8.5C16 7.44942 15.7931 6.40914 15.391 5.43853C14.989 4.46793 14.3997 3.58601 13.6569 2.84315C12.914 2.10028 12.0321 1.511 11.0615 1.10896C10.0909 0.706926 9.05058 0.5 8 0.5ZM10.2956 9.23769L7.11411 12.4192C7.02143 12.5117 6.91144 12.5851 6.7904 12.6352C6.66936 12.6852 6.53965 12.7109 6.40867 12.7109C6.27769 12.7108 6.14801 12.6849 6.02703 12.6347C5.90605 12.5845 5.79614 12.511 5.70358 12.4183C5.61102 12.3256 5.53762 12.2156 5.48756 12.0946C5.43751 11.9736 5.41179 11.8439 5.41187 11.7129C5.41203 11.4484 5.51726 11.1947 5.70442 11.0078L8.21389 8.5L5.70442 5.99221C5.51726 5.80527 5.41203 5.55165 5.41187 5.28712C5.41171 5.0226 5.51664 4.76884 5.70358 4.58168C5.89052 4.39453 6.14414 4.28929 6.40867 4.28913C6.67319 4.28898 6.92695 4.39391 7.11411 4.58084L10.2956 7.76232C10.3922 7.85868 10.4679 7.97391 10.5181 8.10083C10.5682 8.22774 10.5916 8.36362 10.5869 8.5V8.532C10.5871 8.79653 10.4823 9.05033 10.2956 9.23769Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149m6e0\",\"data-framer-name\":\"Our Community\",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,__targetOpacity:1,className:\"framer-8hckqv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our community \"})}),fonts:[\"GF;Satoshi-700\"]},Ua8zKJC9f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our community \"})}),fonts:[\"GF;Satoshi-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"106%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Community \"})}),className:\"framer-17abnn9\",\"data-framer-name\":\"Our Communty\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.86)\"},children:\"Previous attendees to the Summits have included some amazing marketers from some of the most famous financial services brands in the world.\"})}),className:\"framer-ogm97q\",\"data-framer-name\":\"Desc\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vyu34y\",\"data-framer-name\":\"testimonials\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yc0ril-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Es_0ZBzKA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}},Ua8zKJC9f:{fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:5}}},children:/*#__PURE__*/_jsx(Carousel1,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:32,height:\"100%\",id:\"Es_0ZBzKA\",layoutId:\"Es_0ZBzKA\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qvhdug\",\"data-framer-name\":\"Frame 190\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n62ls9\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-getq88\",\"data-framer-name\":\"Frame 174\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:46,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7k6vGFMKlTVRTZWTVvNEJjQq9oM.png\"},className:\"framer-njjnwr\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vfu159\",\"data-framer-name\":\"Frame 171\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cc3w6b\",\"data-framer-name\":\"Frame 177\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"Such a focused group of people from across the FS sector, gives us a chance to really understand what is the future for marketing in financial services.\" '})}),className:\"framer-1cy4oyb\",\"data-framer-name\":\"\\\"I found the FS Marketing Leaders Summit really good - it's not just a case of people presenting to the audience, every session is followed up on the table with discussions so it's been really useful.\\\"\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rcmrl\",\"data-framer-name\":\"Frame 172\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bj0qul\",\"data-framer-name\":\"Group 5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:636,pixelWidth:636,sizes:\"84px\",src:\"https://framerusercontent.com/images/OOemvxA9eB3A5AXkyd5atX1fU.png\",srcSet:\"https://framerusercontent.com/images/OOemvxA9eB3A5AXkyd5atX1fU.png?scale-down-to=512 512w,https://framerusercontent.com/images/OOemvxA9eB3A5AXkyd5atX1fU.png 636w\"},className:\"framer-1xh15fl\",\"data-framer-name\":\"Screenshot 2024-08-17 at 10.55.24 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Alison Harbert\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.74)\"},children:\"Marketing Director \"})]}),className:\"framer-1qqdabw\",\"data-framer-name\":\"Scott Allen Global Marketing Transformation,\",fonts:[\"GF;Satoshi-700\",\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y0063e\",\"data-framer-name\":\"Frame 190\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1owk54z\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d5oom6\",\"data-framer-name\":\"Frame 174\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Yfz9H2Wt3myOP7xdzLy8OoxIo.svg\"},className:\"framer-5wt5ba\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-167spri\",\"data-framer-name\":\"Frame 171\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mr3bh0\",\"data-framer-name\":\"Frame 177\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"The Summit was super inspiring.. the ability to forge good connections with new providers and different projects with existing providers. It\\'s all about the merger of data with the creativity of marketing.\" '})}),className:\"framer-nrc7d1\",\"data-framer-name\":\"\\\"I found the FS Marketing Leaders Summit really good - it's not just a case of people presenting to the audience, every session is followed up on the table with discussions so it's been really useful.\\\"\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ko8xok\",\"data-framer-name\":\"Frame 172\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:599,pixelWidth:599,sizes:\"84px\",src:\"https://framerusercontent.com/images/G7HNytyMcNuaODaro29c3WrKZv8.png\",srcSet:\"https://framerusercontent.com/images/G7HNytyMcNuaODaro29c3WrKZv8.png?scale-down-to=512 512w,https://framerusercontent.com/images/G7HNytyMcNuaODaro29c3WrKZv8.png 599w\"},className:\"framer-maycfz\",\"data-framer-name\":\"Screenshot 2024-08-17 at 10.55.24 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Christoph Woermann\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.74)\"},children:\"CMO-Corporate Bank, Deutsche Bank\"})]}),className:\"framer-pfseie\",\"data-framer-name\":\"Scott Allen Global Marketing Transformation,\",fonts:[\"GF;Satoshi-700\",\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hk0y8v\",\"data-framer-name\":\"Frame 190\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t5n9te\",\"data-framer-name\":\"Frame 169\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r8nwyb\",\"data-framer-name\":\"Frame 174\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:90,pixelWidth:656,positionX:\"center\",positionY:\"center\",sizes:\"157px\",src:\"https://framerusercontent.com/images/n3Ib3BPQ988CcZVA6nXMD0Tuw.png\",srcSet:\"https://framerusercontent.com/images/n3Ib3BPQ988CcZVA6nXMD0Tuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/n3Ib3BPQ988CcZVA6nXMD0Tuw.png 656w\"},className:\"framer-1rs9m2g\",\"data-framer-name\":\"image 5\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ph1oue\",\"data-framer-name\":\"Frame 171\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16z5oj9\",\"data-framer-name\":\"Frame 177\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\\"It's been a really insightful event, I've definitely got a few ideas that I'll take back to my business to implement.\\\" \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-tmgujy\",\"data-framer-name\":\"\\\"I found the FS Marketing Leaders Summit really good - it's not just a case of people presenting to the audience, every session is followed up on the table with discussions so it's been really useful.\\\"\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6rcrjv\",\"data-framer-name\":\"Frame 172\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:494,pixelWidth:494,src:\"https://framerusercontent.com/images/Gs3NnYTYWeCMK7qHmjZMbAtxI.png\"},className:\"framer-11cw60x\",\"data-framer-name\":\"Screenshot 2024-08-17 at 10.55.24 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tom Hughes\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS01MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.74)\"},children:\"Global Head of Marketing Services, Asset Management\"})]}),className:\"framer-1tq9qaz\",\"data-framer-name\":\"Scott Allen Global Marketing Transformation,\",fonts:[\"GF;Satoshi-700\",\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:355,width:\"573px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ivtgx4-container\",inComponentSlot:true,nodeId:\"McdmLLxKc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Frame190,{height:\"100%\",id:\"McdmLLxKc\",layoutId:\"McdmLLxKc\",style:{width:\"100%\"},variant:\"bLlcXRjiL\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybedz9\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:909,pixelWidth:1440,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"}, 1600px)`,src:\"https://framerusercontent.com/images/e59YNhdkVVy0sugeteCsq3QLAyI.svg\",srcSet:\"https://framerusercontent.com/images/e59YNhdkVVy0sugeteCsq3QLAyI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/e59YNhdkVVy0sugeteCsq3QLAyI.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/e59YNhdkVVy0sugeteCsq3QLAyI.svg 1440w\"},className:\"framer-1a86v95\",\"data-border\":true,\"data-framer-name\":\"Our Community\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11qxz7s\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mst0fv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kxymg0\",\"data-framer-name\":\"Expand your network \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS03MDA=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Expand your network\"})})}},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\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Expand your network\"})}),className:\"framer-ew9clk\",\"data-framer-name\":\"Our Communty\",fonts:[\"GF;Satoshi-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.86)\"},children:\"Join senior financial marketers from the worlds leading companies\"})}),className:\"framer-1onhpml\",\"data-framer-name\":\"Desc\",fonts:[\"GF;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mccg0c\",\"data-framer-name\":\"testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l9515j\",\"data-framer-name\":\"Frame 259\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dyo80s-container\",nodeId:\"qyDFMTZYP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PrimButton,{height:\"100%\",id:\"qyDFMTZYP\",layoutId:\"qyDFMTZYP\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h81oal\",\"data-framer-name\":\"Frame 4\",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-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mZDOVt_ka\"},motionChild:true,nodeId:\"qiPtPqWKN\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y0n8wa\",\"data-styles-preset\":\"u_ZAPsYGI\",children:\"Our next event\"})})})}),className:\"framer-16ffnh3\",\"data-framer-name\":\"Join the community\",fonts:[\"GF;Satoshi-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f7g9t\",\"data-framer-name\":\"Frame 144\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 1C5.87827 1 3.84344 1.84285 2.34315 3.34315C0.842855 4.84344 0 6.87827 0 9C0 11.1217 0.842855 13.1566 2.34315 14.6569C3.84344 16.1571 5.87827 17 8 17C9.05058 17 10.0909 16.7931 11.0615 16.391C12.0321 15.989 12.914 15.3997 13.6569 14.6569C14.3997 13.914 14.989 13.0321 15.391 12.0615C15.7931 11.0909 16 10.0506 16 9C16 7.94942 15.7931 6.90914 15.391 5.93853C14.989 4.96793 14.3997 4.08601 13.6569 3.34315C12.914 2.60028 12.0321 2.011 11.0615 1.60896C10.0909 1.20693 9.05058 1 8 1ZM10.2956 9.73769L7.11411 12.9192C7.02143 13.0117 6.91144 13.0851 6.7904 13.1352C6.66936 13.1852 6.53965 13.2109 6.40867 13.2109C6.27769 13.2108 6.14801 13.1849 6.02703 13.1347C5.90605 13.0845 5.79614 13.011 5.70358 12.9183C5.61102 12.8256 5.53762 12.7156 5.48756 12.5946C5.43751 12.4736 5.41179 12.3439 5.41187 12.2129C5.41203 11.9484 5.51726 11.6947 5.70442 11.5078L8.21389 9L5.70442 6.49221C5.51726 6.30528 5.41203 6.05165 5.41187 5.78712C5.41171 5.5226 5.51664 5.26884 5.70358 5.08168C5.89052 4.89453 6.14414 4.78929 6.40867 4.78913C6.67319 4.78898 6.92695 4.89391 7.11411 5.08084L10.2956 8.26232C10.3922 8.35868 10.4679 8.47391 10.5181 8.60083C10.5682 8.72774 10.5916 8.86362 10.5869 9V9.032C10.5871 9.29653 10.4823 9.55033 10.2956 9.73769Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{background:{alt:\"\",fit:\"fit\",pixelHeight:309,pixelWidth:714,positionX:\"center\",positionY:\"bottom\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px)`,src:\"https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg\",srcSet:\"https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg 714w\"}},Ua8zKJC9f:{background:{alt:\"\",fit:\"fit\",pixelHeight:309,pixelWidth:714,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 48px)`,src:\"https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg\",srcSet:\"https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg 714w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:309,pixelWidth:714,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1600px) - 112px)`,src:\"https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg\",srcSet:\"https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg?scale-down-to=512 512w,https://framerusercontent.com/images/7nN9wM0cT67uufJzMPabiOkcrak.svg 714w\"},className:\"framer-41rij8\"})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:758,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mrclfz-container\",nodeId:\"qygja9krt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{quJbbkByN:{variant:\"sGoSGY86O\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qygja9krt\",layoutId:\"qygja9krt\",style:{width:\"100%\"},variant:\"e_SaFROJ7\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1caQB.framer-lux5qc, .framer-1caQB .framer-lux5qc { display: block; }\",\".framer-1caQB.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-e9f74f78-2e2f-4480-86ba-8dfc19c3fb78, #062339); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-1caQB .framer-16swd0b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-umyl6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-1caQB .framer-91jb5v-container { flex: none; height: 70px; position: relative; width: 100%; }\",\".framer-1caQB .framer-10k2olk, .framer-1caQB .framer-v84d4e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 144px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-mde89t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-hxxkfd { 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: 50%; }\",\".framer-1caQB .framer-166l044 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-18h222g { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-1caQB .framer-1wwtojf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-15bv5xd, .framer-1caQB .framer-1e4mr8k, .framer-1caQB .framer-1lvyjkm, .framer-1caQB .framer-1cs0j25, .framer-1caQB .framer-1pstvqy, .framer-1caQB .framer-17zpt8s, .framer-1caQB .framer-1rykq25, .framer-1caQB .framer-17abnn9, .framer-1caQB .framer-ogm97q, .framer-1caQB .framer-1cy4oyb, .framer-1caQB .framer-nrc7d1, .framer-1caQB .framer-tmgujy, .framer-1caQB .framer-ew9clk, .framer-1caQB .framer-1onhpml { --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-1caQB .framer-178sp8d { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1tk4fyg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1caQB .framer-rj84r9 { align-content: center; align-items: center; background: linear-gradient(145.1812458916405deg, #10a5ba 0%, rgb(23, 171, 192) 49.50000047683716%, rgb(20, 184, 208) 100%); border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-18434g2, .framer-1caQB .framer-180vv3f, .framer-1caQB .framer-ut01ma, .framer-1caQB .framer-10w3pds, .framer-1caQB .framer-1nzm2wg, .framer-1caQB .framer-1h15lbi, .framer-1caQB .framer-3uxbf7, .framer-1caQB .framer-qhu43j, .framer-1caQB .framer-16ffnh3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1caQB .framer-16fdc54, .framer-1caQB .framer-trleml, .framer-1caQB .framer-1f4uims, .framer-1caQB .framer-166fail, .framer-1caQB .framer-o7cikj { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-1caQB .framer-vf66uw, .framer-1caQB .framer-15lt0w6, .framer-1caQB .framer-h81oal { align-content: center; align-items: center; border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-1caQB .framer-183pvqr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 290px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 500px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-1381bhy-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-1caQB .framer-hy25o4, .framer-1caQB .framer-pg2feg, .framer-1caQB .framer-u0pt6f { height: 270px; overflow: hidden; position: relative; width: 480px; }\",\".framer-1caQB .framer-1r70iil-container, .framer-1caQB .framer-13f1q2k-container, .framer-1caQB .framer-oh4bfq-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-1caQB .framer-1p4fvyg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-18uoi2s-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-1caQB .framer-1y8wsk8 { aspect-ratio: 2.5641025641025643 / 1; height: var(--framer-aspect-ratio-supported, 51px); position: relative; width: 132px; }\",\".framer-1caQB .framer-1kume9o { height: 37px; position: relative; width: 289px; }\",\".framer-1caQB .framer-11hxjxa { height: 62px; position: relative; width: 732px; }\",\".framer-1caQB .framer-hx90n7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-6smfx0 { align-content: center; align-items: center; background: linear-gradient(145.1812458916405deg, #6e11ba 0%, rgb(23, 171, 192) 68.23872821825044%, rgb(20, 184, 208) 100%); border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-caxc5z, .framer-1caQB .framer-1m47ms5, .framer-1caQB .framer-11qxz7s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1gyl33i { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1600px; overflow: hidden; padding: 56px; position: relative; width: 100%; }\",\".framer-1caQB .framer-11yfl58 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1wb5zn3 { display: grid; flex: 1 0 0px; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px 9px 0px 0px; position: relative; width: 1px; }\",\".framer-1caQB .framer-zu5vg { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-1caQB .framer-ggl6x6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-6oxlk4 { align-content: center; align-items: center; aspect-ratio: 1.33203125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 180px); justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-ojh2we { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1jg27eb, .framer-1caQB .framer-1o2rpp5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-h2zgv7-container, .framer-1caQB .framer-102bwe2-container { flex: none; height: 26px; position: relative; width: 28px; }\",\".framer-1caQB .framer-7fbs8c, .framer-1caQB .framer-oj8bni, .framer-1caQB .framer-1qqdabw, .framer-1caQB .framer-pfseie, .framer-1caQB .framer-1tq9qaz { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1caQB .framer-med1nz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 0px 54px 0px 54px; position: relative; width: 100%; }\",\".framer-1caQB .framer-2hxhj0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1us5zud { 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: 40px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-1caQB .framer-1hlcbpq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-zfys1e-container { flex: none; height: 270px; position: relative; width: 100%; }\",\".framer-1caQB .framer-umciw0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1r3p2vp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1judgaq, .framer-1caQB .framer-ptau3b { align-content: center; align-items: center; background: linear-gradient(145.1812458916405deg, #10a5ba 0%, rgb(23, 171, 192) 49.50000047683716%, rgb(20, 184, 208) 100%); border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-1caQB .framer-18rjyl4, .framer-1caQB .framer-v23sdi, .framer-1caQB .framer-f7g9t { flex: none; height: 17px; position: relative; width: 16px; }\",\".framer-1caQB .framer-qtxeuz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1caQB .framer-scdt88 { align-content: center; align-items: center; background: linear-gradient(145.1812458916405deg, #10a5ba 0%, rgb(23, 171, 192) 49.50000047683716%, rgb(20, 184, 208) 100%); border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-sayxpg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-1caQB .framer-126mwqb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-1caQB .framer-19w0w0i, .framer-1caQB .framer-tvkitj, .framer-1caQB .framer-5a0vpc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1caQB .framer-1whutjw, .framer-1caQB .framer-18y67d9, .framer-1caQB .framer-zt43q1, .framer-1caQB .framer-d9wo27, .framer-1caQB .framer-creh6t, .framer-1caQB .framer-18mnnzy, .framer-1caQB .framer-s2s8dw, .framer-1caQB .framer-p1a08b, .framer-1caQB .framer-17skdd2, .framer-1caQB .framer-hv156i, .framer-1caQB .framer-wrurh1, .framer-1caQB .framer-uzoeo4 { align-content: center; align-items: center; background-color: #10a5ba; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-122w3q4 { aspect-ratio: 5.376768324110243 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 100%; }\",\".framer-1caQB .framer-bqdprq, .framer-1caQB .framer-vetx6l, .framer-1caQB .framer-z1gkd8 { aspect-ratio: 4.333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 100%; }\",\".framer-1caQB .framer-ohl6ro, .framer-1caQB .framer-1hshv27, .framer-1caQB .framer-1fiupda { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 100%; }\",\".framer-1caQB .framer-lsc1vn, .framer-1caQB .framer-1pbhq0d, .framer-1caQB .framer-6ygkjz { aspect-ratio: 4.839091491699219 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 100%; }\",\".framer-1caQB .framer-3ytygx, .framer-1caQB .framer-xfg6ti { aspect-ratio: 5.376768324110243 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1caQB .framer-169yvq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 88px 56px 88px 56px; position: relative; width: 100%; }\",\".framer-1caQB .framer-19vbcgl-container { flex: 1 0 0px; height: 270px; position: relative; width: 1px; }\",\".framer-1caQB .framer-1l9hb0u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1caQB .framer-1i26c2g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-149m6e0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 88px 56px 88px 56px; position: relative; width: 100%; }\",\".framer-1caQB .framer-8hckqv, .framer-1caQB .framer-1mst0fv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-vyu34y, .framer-1caQB .framer-1mccg0c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1yc0ril-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-1caQB .framer-1qvhdug, .framer-1caQB .framer-1y0063e, .framer-1caQB .framer-hk0y8v { align-content: flex-start; align-items: flex-start; background-color: #1e374b; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 573px; }\",\".framer-1caQB .framer-1n62ls9, .framer-1caQB .framer-1owk54z, .framer-1caQB .framer-t5n9te { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-1caQB .framer-getq88, .framer-1caQB .framer-1d5oom6, .framer-1caQB .framer-r8nwyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1caQB .framer-njjnwr { aspect-ratio: 4.695652173913044 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 108px; }\",\".framer-1caQB .framer-vfu159, .framer-1caQB .framer-167spri, .framer-1caQB .framer-1ph1oue { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1cc3w6b, .framer-1caQB .framer-mr3bh0, .framer-1caQB .framer-16z5oj9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-rcmrl, .framer-1caQB .framer-ko8xok, .framer-1caQB .framer-6rcrjv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 405px; }\",\".framer-1caQB .framer-bj0qul { flex: none; height: 80px; overflow: visible; position: relative; width: 80px; }\",\".framer-1caQB .framer-1xh15fl { aspect-ratio: 1.0306122458512363 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 82px); left: 0px; position: absolute; width: 84px; }\",\".framer-1caQB .framer-5wt5ba, .framer-1caQB .framer-1rs9m2g { aspect-ratio: 4.333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 157px; }\",\".framer-1caQB .framer-maycfz, .framer-1caQB .framer-11cw60x { aspect-ratio: 1.0306122458512363 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); position: relative; width: 84px; }\",\".framer-1caQB .framer-1ivtgx4-container { height: auto; position: relative; width: 573px; }\",\".framer-1caQB .framer-ybedz9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1a86v95 { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 56px 56px 0px 56px; position: relative; width: 100%; }\",\".framer-1caQB .framer-kxymg0 { 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: 100%; }\",\".framer-1caQB .framer-1l9515j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-1caQB .framer-1dyo80s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1caQB .framer-41rij8 { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-1caQB .framer-1mrclfz-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,'.framer-1caQB[data-border=\"true\"]::after, .framer-1caQB [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-1caQB.framer-72rtr7 { width: 810px; } .framer-1caQB .framer-umyl6h { padding: 0px 24px 0px 24px; } .framer-1caQB .framer-hxxkfd, .framer-1caQB .framer-1us5zud { gap: 16px; } .framer-1caQB .framer-18h222g { width: 133%; } .framer-1caQB .framer-1wwtojf { gap: 32px; } .framer-1caQB .framer-178sp8d { flex-wrap: wrap; width: min-content; } .framer-1caQB .framer-1tk4fyg { flex: none; width: min-content; } .framer-1caQB .framer-rj84r9, .framer-1caQB .framer-6smfx0 { padding: 8px 12px 8px 12px; } .framer-1caQB .framer-vf66uw, .framer-1caQB .framer-15lt0w6 { padding: 12px 0px 12px 0px; } .framer-1caQB .framer-180vv3f { order: 0; } .framer-1caQB .framer-trleml { order: 1; } .framer-1caQB .framer-hx90n7 { width: min-content; } .framer-1caQB .framer-1gyl33i { padding: 56px 32px 56px 32px; } .framer-1caQB .framer-11yfl58 { flex-direction: column; } .framer-1caQB .framer-1wb5zn3 { flex: none; grid-template-columns: repeat(2, minmax(50px, 1fr)); width: 100%; } .framer-1caQB .framer-6oxlk4 { height: var(--framer-aspect-ratio-supported, 262px); } .framer-1caQB .framer-1o2rpp5 { min-height: 25px; } .framer-1caQB .framer-med1nz { padding: 24px 24px 56px 24px; } .framer-1caQB .framer-1whutjw, .framer-1caQB .framer-18y67d9, .framer-1caQB .framer-zt43q1, .framer-1caQB .framer-d9wo27, .framer-1caQB .framer-creh6t, .framer-1caQB .framer-18mnnzy, .framer-1caQB .framer-s2s8dw, .framer-1caQB .framer-p1a08b, .framer-1caQB .framer-17skdd2, .framer-1caQB .framer-hv156i, .framer-1caQB .framer-wrurh1, .framer-1caQB .framer-uzoeo4 { padding: 12px; } .framer-1caQB .framer-122w3q4, .framer-1caQB .framer-3ytygx, .framer-1caQB .framer-xfg6ti { height: var(--framer-aspect-ratio-supported, 15px); } .framer-1caQB .framer-bqdprq, .framer-1caQB .framer-vetx6l, .framer-1caQB .framer-z1gkd8 { height: var(--framer-aspect-ratio-supported, 19px); } .framer-1caQB .framer-ohl6ro, .framer-1caQB .framer-1hshv27, .framer-1caQB .framer-1fiupda { height: var(--framer-aspect-ratio-supported, 21px); } .framer-1caQB .framer-lsc1vn, .framer-1caQB .framer-1pbhq0d, .framer-1caQB .framer-6ygkjz { height: var(--framer-aspect-ratio-supported, 17px); } .framer-1caQB .framer-169yvq { flex-direction: column; padding: 56px 24px 56px 24px; } .framer-1caQB .framer-19vbcgl-container { flex: none; order: 0; width: 100%; } .framer-1caQB .framer-1l9hb0u { flex: none; order: 1; width: 100%; } .framer-1caQB .framer-ptau3b { padding: 8px 12px 8px 12px; will-change: var(--framer-will-change-effect-override, transform); } .framer-1caQB .framer-149m6e0 { padding: 56px 24px 56px 56px; } .framer-1caQB .framer-1a86v95 { padding: 56px 24px 0px 24px; }}\",\"@media (max-width: 809px) { .framer-1caQB.framer-72rtr7 { width: 390px; } .framer-1caQB .framer-umyl6h { background-color: rgba(255, 255, 255, 0); gap: 24px; padding: 0px 24px 0px 24px; } .framer-1caQB .framer-91jb5v-container { height: auto; } .framer-1caQB .framer-10k2olk, .framer-1caQB .framer-v84d4e { background-color: rgba(255, 255, 255, 0); gap: 56px; } .framer-1caQB .framer-mde89t, .framer-1caQB .framer-11yfl58 { flex-direction: column; } .framer-1caQB .framer-hxxkfd { gap: 16px; } .framer-1caQB .framer-1wwtojf { gap: 32px; } .framer-1caQB .framer-1tk4fyg, .framer-1caQB .framer-hx90n7, .framer-1caQB .framer-1l9515j { flex-wrap: wrap; } .framer-1caQB .framer-rj84r9, .framer-1caQB .framer-6smfx0 { padding: 8px 12px 8px 12px; } .framer-1caQB .framer-vf66uw, .framer-1caQB .framer-h81oal { padding: 12px 0px 12px 0px; } .framer-1caQB .framer-180vv3f { white-space: pre-wrap; width: 115px; word-break: break-word; word-wrap: break-word; } .framer-1caQB .framer-183pvqr, .framer-1caQB .framer-1hlcbpq { justify-content: flex-start; } .framer-1caQB .framer-1p4fvyg { flex-direction: column; gap: 24px; } .framer-1caQB .framer-ut01ma { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-1caQB .framer-18uoi2s-container { align-self: unset; flex: none; height: 82px; width: 100%; } .framer-1caQB .framer-1gyl33i, .framer-1caQB .framer-149m6e0 { padding: 0px 24px 56px 24px; } .framer-1caQB .framer-1wb5zn3 { flex: none; grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 100%; } .framer-1caQB .framer-6oxlk4 { height: var(--framer-aspect-ratio-supported, 250px); } .framer-1caQB .framer-med1nz { padding: 24px 24px 56px 24px; } .framer-1caQB .framer-2hxhj0 { flex-direction: column; gap: 32px; } .framer-1caQB .framer-1us5zud { flex: none; gap: 16px; padding: 0px 0px 40px 0px; width: 100%; } .framer-1caQB .framer-umciw0 { gap: 24px; } .framer-1caQB .framer-1r3p2vp { align-content: center; align-items: center; } .framer-1caQB .framer-sayxpg { flex: none; width: 100%; } .framer-1caQB .framer-126mwqb { padding: 0px; } .framer-1caQB .framer-122w3q4, .framer-1caQB .framer-3ytygx, .framer-1caQB .framer-xfg6ti { height: var(--framer-aspect-ratio-supported, 14px); } .framer-1caQB .framer-bqdprq, .framer-1caQB .framer-vetx6l, .framer-1caQB .framer-z1gkd8 { height: var(--framer-aspect-ratio-supported, 16px); } .framer-1caQB .framer-ohl6ro, .framer-1caQB .framer-1hshv27, .framer-1caQB .framer-1fiupda { height: var(--framer-aspect-ratio-supported, 18px); } .framer-1caQB .framer-lsc1vn, .framer-1caQB .framer-1pbhq0d, .framer-1caQB .framer-6ygkjz { height: var(--framer-aspect-ratio-supported, 15px); } .framer-1caQB .framer-169yvq { flex-direction: column; padding: 0px 24px 56px 24px; } .framer-1caQB .framer-19vbcgl-container { flex: none; order: 0; width: 100%; } .framer-1caQB .framer-1l9hb0u { flex: none; order: 1; width: 100%; } .framer-1caQB .framer-ptau3b { padding: 8px 12px 8px 12px; will-change: var(--framer-will-change-effect-override, transform); } .framer-1caQB .framer-1a86v95 { gap: 24px; justify-content: flex-start; padding: 56px 24px 0px 24px; } .framer-1caQB .framer-41rij8 { height: 164px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8361\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ua8zKJC9f\":{\"layout\":[\"fixed\",\"auto\"]},\"quJbbkByN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ohZbSuKks\":{\"pattern\":\":ohZbSuKks\",\"name\":\"upcoming-events\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-1caQB\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8361,width:1200};addFonts(FrameraugiA20Il,[{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/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...NavbarFonts,...YouTubeFonts,...CarouselFonts,...TickerFonts,...MaterialFonts,...YouTube1Fonts,...Frame190Fonts,...Carousel1Fonts,...PrimButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ua8zKJC9f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"quJbbkByN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"8361\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"ohZbSuKks\\\":{\\\"pattern\\\":\\\":ohZbSuKks\\\",\\\"name\\\":\\\"upcoming-events\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}