{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/HrxLgn3HodsTJEblZU6m/Ticker.js", "ssg:https://framerusercontent.com/modules/jynDUMU8nUZPzmwB3dBU/TL8OOlF0konBKVAZK7WI/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ const{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){useLayoutEffect(()=>{measure();},[]);/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{ref:ref4,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const transformRef=useRef(null);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();useAnimationFrame(t=>{if(isCanvas||!transformRef.current||!animateToValue||isReducedMotion){return;}/**\n         * In case this animation is delayed from starting because we're running a bunch\n         * of other work, we want to set an initial time rather than counting from 0.\n         * That ensures that if the animation is delayed, it starts from the first frame\n         * rather than jumping.\n         */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;/* Direction */ if(direction===\"left\"){transformRef.current.style.transform=`translateX(-${xOrY.current}px)`;}if(direction===\"right\"){transformRef.current.style.transform=`translateX(${xOrY.current}px)`;}if(direction===\"top\"){transformRef.current.style.transform=`translateY(-${xOrY.current}px)`;}if(direction===\"bottom\"){transformRef.current.style.transform=`translateY(${xOrY.current}px)`;}});/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(\"ul\",{style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&-animateToValue,left:direction===\"right\"&&-animateToValue,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",willChange:\"transform\",...style},ref:transformRef,onMouseEnter:()=>isHover.current=true,onMouseLeave:()=>isHover.current=false,children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:.5,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,optimizeAppear,optimizeAppearTransformTemplate,PathVariablesContext,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/HrxLgn3HodsTJEblZU6m/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/ozEmHfjNuPlYdOaimlhV/Ticker.js\";import List from\"#framer/local/canvasComponent/bkf_3iqYh/bkf_3iqYh.js\";import BlogCard from\"#framer/local/canvasComponent/FIQUCdJNE/FIQUCdJNE.js\";import FeatureCard from\"#framer/local/canvasComponent/Kym4ifyAB/Kym4ifyAB.js\";import Topbar from\"#framer/local/canvasComponent/lWUcIJP0H/lWUcIJP0H.js\";import Footer from\"#framer/local/canvasComponent/M82dauGNX/M82dauGNX.js\";import CTA from\"#framer/local/canvasComponent/OlTWqYMo3/OlTWqYMo3.js\";import Button from\"#framer/local/canvasComponent/Tnz4seCKc/Tnz4seCKc.js\";import FAQAccordion from\"#framer/local/canvasComponent/UpqEA6qxk/UpqEA6qxk.js\";import POMP2 from\"#framer/local/collection/khK_htTrV/khK_htTrV.js\";import POMP1 from\"#framer/local/collection/nWZy3UnCE/nWZy3UnCE.js\";import*as sharedStyle2 from\"#framer/local/css/cGTNsvVOM/cGTNsvVOM.js\";import*as sharedStyle1 from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle3 from\"#framer/local/css/puB8kY46u/puB8kY46u.js\";import*as sharedStyle from\"#framer/local/css/pzgAh97sX/pzgAh97sX.js\";import*as sharedStyle4 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopbarFonts=getFonts(Topbar);const TickerFonts=getFonts(Ticker);const Ticker1Fonts=getFonts(Ticker1);const ButtonFonts=getFonts(Button);const ImageWithFX=withFX(Image);const CTAFonts=getFonts(CTA);const MotionDivWithFX=withFX(motion.div);const FeatureCardFonts=getFonts(FeatureCard);const ContainerWithFX=withFX(Container);const ListFonts=getFonts(List);const BlogCardFonts=getFonts(BlogCard);const FAQAccordionFonts=getFonts(FAQAccordion);const RichTextWithFX=withFX(RichText);const FooterFonts=getFonts(Footer);const cycleOrder=[\"WQLkyLRf1\",\"Ulru_24ch\",\"jvCw4IpzG\"];const breakpoints={jvCw4IpzG:\"(max-width: 809px)\",Ulru_24ch:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-IwO7R\";const variantClassNames={jvCw4IpzG:\"framer-v-nj0mn7\",Ulru_24ch:\"framer-v-1feqjcj\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const transition3={damping:80,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:100};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition5={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:100};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:10};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition4,x:0,y:10};const transition6={damping:80,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:150};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:150,y:0};const animation25={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:150,y:0};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:-150,y:0};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:-150,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"jvCw4IpzG\",Tablet:\"Ulru_24ch\"};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:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Vso23OR6md6meQlvVQ,idd6meQlvVQ,pdIJoIqz0GT3lqWZv6,Tu_Pd0zTZGT3lqWZv6,idGT3lqWZv6,pdIJoIqz0hbeEzyPUV,Tu_Pd0zTZhbeEzyPUV,idhbeEzyPUV,Vso23OR6mNVQRl2C5e,idNVQRl2C5e,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-IwO7R`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-IwO7R`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"jvCw4IpzG\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"Ulru_24ch\",\"jvCw4IpzG\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Ulru_24ch\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"jvCw4IpzG\")return true;return false;};const id=useRouteElementId(\"nPuS8JUXW\");const ref2=React.useRef(null);const id1=useRouteElementId(\"FtXXOYITK\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"hi1u68\",animate:optimizeAppear(\"animate\",\"hi1u68\",animation1,\"nj0mn7\"),initial:optimizeAppear(\"initial\",\"hi1u68\",animation2,\"nj0mn7\"),transformTemplate:optimizeAppearTransformTemplate(\"hi1u68\",transformTemplate1)},Ulru_24ch:{\"data-framer-appear-id\":\"1hlnhqb\",animate:optimizeAppear(\"animate\",\"1hlnhqb\",animation1,\"1feqjcj\"),initial:optimizeAppear(\"initial\",\"1hlnhqb\",animation2,\"1feqjcj\"),transformTemplate:optimizeAppearTransformTemplate(\"1hlnhqb\",transformTemplate1)}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"vpjptw\",animation1,\"72rtr7\"),className:\"framer-vpjptw-container\",\"data-framer-appear-id\":\"vpjptw\",exit:animation,initial:optimizeAppear(\"initial\",\"vpjptw\",animation2,\"72rtr7\"),layoutScroll:true,style:{transformPerspective:1200},transformTemplate:optimizeAppearTransformTemplate(\"vpjptw\",transformTemplate1),children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{variant:\"ZQwaB4_p3\"},Ulru_24ch:{variant:\"ZQwaB4_p3\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"Ygm8YMedJ\",layoutId:\"Ygm8YMedJ\",style:{width:\"100%\"},variant:\"jRXICbciv\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qrmr94 hidden-nj0mn7\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7bqu8\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u5wowh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:800,pixelWidth:800,sizes:\"min(100vw, 1300px)\",src:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg\",srcSet:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg 800w\"}},Ulru_24ch:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:800,pixelWidth:800,sizes:\"min(100vw, 1100px)\",src:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg\",srcSet:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg 800w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,pixelHeight:800,pixelWidth:800,sizes:\"min(max(100vw, 1px), 1300px)\",src:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg\",srcSet:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg 800w\"},className:\"framer-1bivpm0\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j51fmc hidden-1feqjcj hidden-nj0mn7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"45saj3\",animation4,\"72rtr7\"),className:\"framer-45saj3-container\",\"data-framer-appear-id\":\"45saj3\",exit:animation3,initial:optimizeAppear(\"initial\",\"45saj3\",animation5,\"72rtr7\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:.7,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:true},gap:20,height:\"100%\",hoverFactor:1,id:\"xSvxxrthO\",layoutId:\"xSvxxrthO\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bi1ql6\",\"data-framer-name\":\"POMP Collection 2\",name:\"POMP Collection 2\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:POMP2,type:\"Collection\"},select:[{name:\"Vso23OR6m\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection=>collection.map(({Vso23OR6m:Vso23OR6md6meQlvVQ,id:idd6meQlvVQ},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`d6meQlvVQ-${idd6meQlvVQ}`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ks806o\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(Vso23OR6md6meQlvVQ)},className:\"framer-1rj0b5a\"})})},idd6meQlvVQ);})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"wm0c5l\",animation4,\"72rtr7\"),className:\"framer-wm0c5l-container\",\"data-framer-appear-id\":\"wm0c5l\",exit:animation3,initial:optimizeAppear(\"initial\",\"wm0c5l\",animation5,\"72rtr7\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:.7,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:true},gap:20,height:\"100%\",hoverFactor:1,id:\"UP5yvVu_R\",layoutId:\"UP5yvVu_R\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xzophu\",\"data-framer-name\":\"POMP Collection 1\",name:\"POMP Collection 1\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:POMP1,type:\"Collection\"},select:[{name:\"pdIJoIqz0\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection1=>collection1.map(({pdIJoIqz0:pdIJoIqz0GT3lqWZv6,Tu_Pd0zTZ:Tu_Pd0zTZGT3lqWZv6,id:idGT3lqWZv6},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`GT3lqWZv6-${idGT3lqWZv6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZGT3lqWZv6},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(pdIJoIqz0GT3lqWZv6)},className:\"framer-1oe2mn5\"})})},idGT3lqWZv6);})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"11sufsh\",animate:optimizeAppear(\"animate\",\"11sufsh\",animation7,\"nj0mn7\"),initial:optimizeAppear(\"initial\",\"11sufsh\",animation8,\"nj0mn7\")},Ulru_24ch:{\"data-framer-appear-id\":\"19jb391\",animate:optimizeAppear(\"animate\",\"19jb391\",animation7,\"1feqjcj\"),initial:optimizeAppear(\"initial\",\"19jb391\",animation8,\"1feqjcj\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1hf6pdt\",animation7,\"72rtr7\"),className:\"framer-1hf6pdt\",\"data-framer-appear-id\":\"1hf6pdt\",exit:animation6,initial:optimizeAppear(\"initial\",\"1hf6pdt\",animation8,\"72rtr7\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"5railx\",animate:optimizeAppear(\"animate\",\"5railx\",animation7,\"nj0mn7\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\"},children:[\" Personalized credentials \",/*#__PURE__*/_jsx(\"br\",{}),\"for communities\"]})}),initial:optimizeAppear(\"initial\",\"5railx\",animation2,\"nj0mn7\")},Ulru_24ch:{\"data-framer-appear-id\":\"ilyu4z\",animate:optimizeAppear(\"animate\",\"ilyu4z\",animation7,\"1feqjcj\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\"},children:\" Personalized credentials for communities\"})}),initial:optimizeAppear(\"initial\",\"ilyu4z\",animation2,\"1feqjcj\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"1epr4dw\",animation7,\"72rtr7\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",children:\" Personalized credentials for communities\"})}),className:\"framer-1epr4dw\",\"data-framer-appear-id\":\"1epr4dw\",exit:animation9,fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"1epr4dw\",animation2,\"72rtr7\"),style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"17ei7j4\",animate:optimizeAppear(\"animate\",\"17ei7j4\",animation7,\"nj0mn7\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Branded profiles for your community\"})}),initial:optimizeAppear(\"initial\",\"17ei7j4\",animation2,\"nj0mn7\")},Ulru_24ch:{\"data-framer-appear-id\":\"sd4ip3\",animate:optimizeAppear(\"animate\",\"sd4ip3\",animation7,\"1feqjcj\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Branded profiles for your community\"})}),initial:optimizeAppear(\"initial\",\"sd4ip3\",animation2,\"1feqjcj\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"19ij0iw\",animation7,\"72rtr7\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"Branded profiles for your community\"})}),className:\"framer-19ij0iw\",\"data-framer-appear-id\":\"19ij0iw\",exit:animation9,fonts:[\"Inter\"],initial:optimizeAppear(\"initial\",\"19ij0iw\",animation2,\"72rtr7\"),style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g9gqx1 hidden-72rtr7 hidden-nj0mn7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jjwsjf-container\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"uocF1IEXZ\",layoutId:\"uocF1IEXZ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16kgcvd\",\"data-framer-name\":\"POMP 1\",name:\"POMP 1\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:POMP1,type:\"Collection\"},select:[{name:\"pdIJoIqz0\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection2=>collection2.map(({pdIJoIqz0:pdIJoIqz0hbeEzyPUV,Tu_Pd0zTZ:Tu_Pd0zTZhbeEzyPUV,id:idhbeEzyPUV},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`hbeEzyPUV-${idhbeEzyPUV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZhbeEzyPUV},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19k09wu\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(pdIJoIqz0hbeEzyPUV)},className:\"framer-1subg1o\"})})})},idhbeEzyPUV);})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5l2aly-container\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"h90U1eMdM\",layoutId:\"h90U1eMdM\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-56ejtk\",\"data-framer-name\":\"POMP 2\",name:\"POMP 2\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:POMP2,type:\"Collection\"},select:[{name:\"Vso23OR6m\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection3=>collection3.map(({Vso23OR6m:Vso23OR6mNVQRl2C5e,id:idNVQRl2C5e},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`NVQRl2C5e-${idNVQRl2C5e}`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-po5pgc\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(Vso23OR6mNVQRl2C5e)},className:\"framer-hse2w3\"})})},idNVQRl2C5e);})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Seamlessly onboard your community members to web3 with a branded NFT creation experience. No crypto knowledge or wallet necessary!\"})}),className:\"framer-57pjey\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mk7gll-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",icon:false,icon1:\"ArrowLineRight\",id:\"hXij8EOtN\",layoutId:\"hXij8EOtN\",style:{width:\"100%\"},title:\"Sign up for POMP!\",variant:\"DaKMOSQtn\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qyyykw-container hidden-1feqjcj hidden-nj0mn7\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",icon:false,icon1:\"ArrowLineRight\",id:\"QF4YELtry\",layoutId:\"QF4YELtry\",title:\"Sign up for POMP!\",variant:\"DaKMOSQtn\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1154jd6 hidden-72rtr7 hidden-1feqjcj\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1o29q-container hidden-72rtr7\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"By59r8X8X\",layoutId:\"By59r8X8X\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16kgcvd\",\"data-framer-name\":\"POMP 1\",name:\"POMP 1\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:POMP1,type:\"Collection\"},select:[{name:\"pdIJoIqz0\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection4=>collection4.map(({pdIJoIqz0:pdIJoIqz0hbeEzyPUV,Tu_Pd0zTZ:Tu_Pd0zTZhbeEzyPUV,id:idhbeEzyPUV},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`hbeEzyPUV-${idhbeEzyPUV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZhbeEzyPUV},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19k09wu\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(pdIJoIqz0hbeEzyPUV)},className:\"framer-1subg1o\"})})})},idhbeEzyPUV);})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gsoqnv-container hidden-72rtr7\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"y9vE7woCq\",layoutId:\"y9vE7woCq\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-56ejtk\",\"data-framer-name\":\"POMP 2\",name:\"POMP 2\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:POMP2,type:\"Collection\"},select:[{name:\"Vso23OR6m\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection5=>collection5.map(({Vso23OR6m:Vso23OR6mNVQRl2C5e,id:idNVQRl2C5e},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`NVQRl2C5e-${idNVQRl2C5e}`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-po5pgc\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(Vso23OR6mNVQRl2C5e)},className:\"framer-hse2w3\"})})},idNVQRl2C5e);})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Seamlessly onboard your community members to web3 with a branded NFT creation experience!\"})}),className:\"framer-pru6wt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ia2b21-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",icon:false,icon1:\"ArrowLineRight\",id:\"KYhdls_tE\",layoutId:\"KYhdls_tE\",style:{width:\"100%\"},title:\"Sign up for POMP!\",variant:\"DaKMOSQtn\",width:\"100%\"})})})]})]})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"1lqriom\",animate:optimizeAppear(\"animate\",\"1lqriom\",animation11,\"nj0mn7\"),initial:optimizeAppear(\"initial\",\"1lqriom\",animation2,\"nj0mn7\")},Ulru_24ch:{\"data-framer-appear-id\":\"111ouy7\",animate:optimizeAppear(\"animate\",\"111ouy7\",animation11,\"1feqjcj\"),initial:optimizeAppear(\"initial\",\"111ouy7\",animation2,\"1feqjcj\")}},children:/*#__PURE__*/_jsx(motion.div,{animate:optimizeAppear(\"animate\",\"7bu3mx\",animation11,\"72rtr7\"),className:\"framer-7bu3mx\",\"data-framer-appear-id\":\"7bu3mx\",\"data-framer-name\":\"Features Large\",exit:animation10,initial:optimizeAppear(\"initial\",\"7bu3mx\",animation2,\"72rtr7\"),name:\"Features Large\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fpbnco\",\"data-framer-name\":\"Features\",name:\"Features\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m46113 hidden-nj0mn7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2340,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:1560,pixelWidth:2e3,sizes:\"min(max(100vw - 80px, 1px), 1000px)\",src:\"https://framerusercontent.com/images/onrT1JuYWKALAvBrFf4li1Oz3Q.png\",srcSet:\"https://framerusercontent.com/images/onrT1JuYWKALAvBrFf4li1Oz3Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/onrT1JuYWKALAvBrFf4li1Oz3Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/onrT1JuYWKALAvBrFf4li1Oz3Q.png 2000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2340,intrinsicWidth:3e3,pixelHeight:1560,pixelWidth:2e3,sizes:\"min(max(100vw, 1px), 1000px)\",src:\"https://framerusercontent.com/images/onrT1JuYWKALAvBrFf4li1Oz3Q.png\",srcSet:\"https://framerusercontent.com/images/onrT1JuYWKALAvBrFf4li1Oz3Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/onrT1JuYWKALAvBrFf4li1Oz3Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/onrT1JuYWKALAvBrFf4li1Oz3Q.png 2000w\"},className:\"framer-1nxm6l5\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w2aagz\",\"data-framer-name\":\"Content\",name:\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"The ultimate proof of membership\"})}),className:\"framer-col3s6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"Easily create branded profile tokens that verify your members' affiliation on the blockchain. No prior crypto experience necessary.\"})}),className:\"framer-12sdtkr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uvhauw-container\",children:/*#__PURE__*/_jsx(CTA,{color:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",id:\"iJH2Rku5C\",layoutId:\"iJH2Rku5C\",title:\"Sign up for your community\",variant:\"DT5wJl0k7\",width:\"100%\"})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-118hv5v hidden-nj0mn7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ulru_24ch:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2340,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2340,pixelWidth:3e3,sizes:\"min(max(100vw - 80px, 1px), 1000px)\",src:\"https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png\",srcSet:\"https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png 3000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2340,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2340,pixelWidth:3e3,sizes:\"min(max(100vw, 1px), 1000px)\",src:\"https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png\",srcSet:\"https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png 3000w\"},className:\"framer-1lu4c77\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18g7795\",\"data-framer-name\":\"Content\",name:\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Fun onboarding experience\"})}),className:\"framer-1fk83th\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"Create a custom platform for your members to experience creating and collecting their unique POMP. \"})}),className:\"framer-1jico8f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1enkmr0-container\",children:/*#__PURE__*/_jsx(CTA,{color:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",id:\"CrbDMnp3b\",layoutId:\"CrbDMnp3b\",title:\"Get POMP for your community\",variant:\"DT5wJl0k7\",width:\"100%\"})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-muekoj hidden-72rtr7 hidden-1feqjcj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2340,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2340,pixelWidth:3e3,sizes:\"min(max(100vw - 40px, 1px), 100vw - 40px)\",src:\"https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png\",srcSet:\"https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png 3000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2340,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2340,pixelWidth:3e3,src:\"https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png\",srcSet:\"https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png?scale-down-to=512 512w,https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pwbch7NLfGqYLayq2xC3pOSmM.png 3000w\"},className:\"framer-eur1zw\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"1i50lw9\",animate:optimizeAppear(\"animate\",\"1i50lw9\",animation11,\"nj0mn7\"),initial:optimizeAppear(\"initial\",\"1i50lw9\",animation2,\"nj0mn7\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1l4holk\",animation11,\"72rtr7\"),className:\"framer-1l4holk\",\"data-framer-appear-id\":\"1l4holk\",\"data-framer-name\":\"Content\",exit:animation10,initial:optimizeAppear(\"initial\",\"1l4holk\",animation2,\"72rtr7\"),name:\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"The ultimate proof of membership\"})}),className:\"framer-1yc1mju\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"Give members of your community personalized digital mementos that verify their affiliation on blockchain\"})}),className:\"framer-1y7g8uk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-793wfi-container\",children:/*#__PURE__*/_jsx(CTA,{color:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",id:\"ba1z1P2MM\",layoutId:\"ba1z1P2MM\",style:{width:\"100%\"},title:\"Sign up for your community\",variant:\"DT5wJl0k7\",width:\"100%\"})})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-501s5n hidden-72rtr7 hidden-1feqjcj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2340,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2340,pixelWidth:3e3,sizes:\"min(max(100vw - 40px, 1px), 100vw - 40px)\",src:\"https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png\",srcSet:\"https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png 3000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2340,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2340,pixelWidth:3e3,src:\"https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png\",srcSet:\"https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/voqWgmVljaldtiGcqZD3vHP3bU.png 3000w\"},className:\"framer-18s0fba\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"opr28c\",animate:optimizeAppear(\"animate\",\"opr28c\",animation11,\"nj0mn7\"),initial:optimizeAppear(\"initial\",\"opr28c\",animation2,\"nj0mn7\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1es611c\",animation11,\"72rtr7\"),className:\"framer-1es611c\",\"data-framer-appear-id\":\"1es611c\",\"data-framer-name\":\"Content\",exit:animation10,initial:optimizeAppear(\"initial\",\"1es611c\",animation2,\"72rtr7\"),name:\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdrywy\",\"data-styles-preset\":\"cGTNsvVOM\",children:\"Seamless web3 onboarding experience \"})}),className:\"framer-1fjcw33\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"Create a custom platform for your members to experience creating and minting their unique community-branded profile NFT. No prior crypto experience nor wallet necessary!\"})}),className:\"framer-g3esul\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dpcldt-container\",children:/*#__PURE__*/_jsx(CTA,{color:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",id:\"eRM3pV61P\",layoutId:\"eRM3pV61P\",style:{width:\"100%\"},title:\"Get POMP for your community\",variant:\"DT5wJl0k7\",width:\"100%\"})})})]})})]})]})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:\"lazy\",pixelHeight:800,pixelWidth:800,sizes:\"100vw\",src:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg\",srcSet:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg 800w\"},className:\"framer-nskp2m\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l8kvls\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\"},children:\"Why get POMP?\"})})},Ulru_24ch:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\"},children:\"Why get POMP?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Why get POMP?\"})}),className:\"framer-1rrr18e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Celebrate & Grow Your Community\"})}),className:\"framer-dzzjiy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sumoxo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q70u8r-container\",children:/*#__PURE__*/_jsx(FeatureCard,{cTA:true,cTA1:\"Sign up for POMP\",height:\"100%\",icon:true,icon1:\"UsersThree\",id:\"QhT1kvDyN\",layoutId:\"QhT1kvDyN\",style:{height:\"100%\",width:\"100%\"},text:true,text1:\"Gift your members a personalized digital collectable  that incorporates the community brand\",title:\"Cultivate Community Pride\",variant:\"KeWUWSw2t\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5o5640-container\",children:/*#__PURE__*/_jsx(FeatureCard,{cTA:true,cTA1:\"Get POMP for your community\",height:\"100%\",icon:true,icon1:\"TrendUp\",id:\"DQQuLv442\",layoutId:\"DQQuLv442\",style:{height:\"100%\",width:\"100%\"},text:true,text1:\"POMPs are designed to be posted online. Grow your brand organically through your members' social media network. \\n\",title:\"Increase Brand Awareness\",variant:\"KeWUWSw2t\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x6z0e1-container\",children:/*#__PURE__*/_jsx(FeatureCard,{cTA:true,cTA1:\"Sign up for POMP\",height:\"100%\",icon:true,icon1:\"CircleWavyCheck\",id:\"j1F6lSAUU\",layoutId:\"j1F6lSAUU\",style:{height:\"100%\",width:\"100%\"},text:true,text1:\"POMP verifies member's affilation to specific organizations and can be used to give access member-exclusive perks\\n\",title:\"Verify Membership & Access Perks\",variant:\"KeWUWSw2t\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wb66j4-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:.5,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"zxGIIULAS\",layoutId:\"zxGIIULAS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cyft3d\",\"data-framer-name\":\"Benefits Orange\",name:\"Benefits Orange\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a6faku-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"dL_EQnWcB\",layoutId:\"dL_EQnWcB\",title:\"Celebrate Community Pride\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mj8gev-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"vYwaJIkbo\",layoutId:\"vYwaJIkbo\",title:\"Verify Membership\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n9whqo-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"DJo6sQVs5\",layoutId:\"DJo6sQVs5\",title:\"Give Perk Access\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e92szi-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"GP4ilbOhX\",layoutId:\"GP4ilbOhX\",title:\"Personalized AI Avatars\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g1mz2i-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"nwdSNrj_2\",layoutId:\"nwdSNrj_2\",title:\"Seamless Onboarding\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wkwvb8-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"LyC67OiE5\",layoutId:\"LyC67OiE5\",title:\"Organic Brand Awareness\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17fdq57\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uz66a4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\"},children:\"Style Options \"})}),className:\"framer-1w1eusn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Customized to Your Brand Identity \"})}),className:\"framer-aqm5ad\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mbo1in\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13qeord-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(BlogCard,{category:true,category1:\"Premium AI Model \",color:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",date:\"\",date1:false,description:true,description1:\"With a few selfies, each member will get an AI avatar with a consistent style to match your community brand. You can set different styles based on roles.\",height:\"100%\",id:\"rzqR4kqYA\",image:addImageAlt({src:\"https://framerusercontent.com/images/Sn1cDXfd0B0kiZ7zG43bS751o0.png\",srcSet:\"https://framerusercontent.com/images/Sn1cDXfd0B0kiZ7zG43bS751o0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Sn1cDXfd0B0kiZ7zG43bS751o0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Sn1cDXfd0B0kiZ7zG43bS751o0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Sn1cDXfd0B0kiZ7zG43bS751o0.png 3000w\"},\"\"),layoutId:\"rzqR4kqYA\",title:\"AI Generated Avatars\",variant:\"HUau37DCS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19mto7a-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(BlogCard,{category:true,category1:\"Basic Circular Frame\",color:\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\",date:\"August 10, 2022\",date1:false,description:true,description1:\"Members can take a selfie or upload a photo with your community's unique frame to create their POMP. You can also set different frames for different members depending on their roles.\",height:\"100%\",id:\"YmvgCNctx\",image:addImageAlt({src:\"https://framerusercontent.com/images/HO1tnMiG0h2Ue4PzK78iGJ8qeI.png\",srcSet:\"https://framerusercontent.com/images/HO1tnMiG0h2Ue4PzK78iGJ8qeI.png?scale-down-to=512 512w,https://framerusercontent.com/images/HO1tnMiG0h2Ue4PzK78iGJ8qeI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HO1tnMiG0h2Ue4PzK78iGJ8qeI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HO1tnMiG0h2Ue4PzK78iGJ8qeI.png 3000w\"},\"\"),layoutId:\"YmvgCNctx\",title:\"Donut Frames\\n\",variant:\"yLvwCVktY\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:\"lazy\",pixelHeight:800,pixelWidth:800,sizes:\"100vw\",src:\"https://framerusercontent.com/images/Hfk5Du6v3c0QLmnMC9zWM7i5uI.svg\",srcSet:\"https://framerusercontent.com/images/Hfk5Du6v3c0QLmnMC9zWM7i5uI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Hfk5Du6v3c0QLmnMC9zWM7i5uI.svg 800w\"},className:\"framer-vl0mzd\",id:id,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eq7537\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14etl08\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"How it works:\"})}),className:\"framer-5ogkno\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, rgb(61, 161, 255))\"},children:\"For Community Leaders\"})}),className:\"framer-1x2ol8p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Only authorized representatives of a community or organization are able to set up a website for their members to create POMPs\"})}),className:\"framer-1k4yxme\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pmurbz-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",icon:false,icon1:\"ArrowLineRight\",id:\"EibigmtHA\",layoutId:\"EibigmtHA\",title:\"Sign up your community\",variant:\"DxkuDevrT\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kvvnxp\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9iaw3-container\",children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"Sign up and have quick a meeting with our team so we can verify your community and learn about your needs to onboard you to our platform. \\n\\nPlease note that you must be an authorized representative of a community in order to create a POMP collection and custom POMP minting website for your members. \\n\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"rgYiA3v29\",layoutId:\"rgYiA3v29\",question:\"Step 1: Sign up to get your comunity verified\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kvy0kg-container\",children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"Choose between AI Avatar or Donut Frame for your POMP style. Follow our design guidelines or work with our team to create the POMP designs that speak your community brand. \",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"jm08obY0q\",layoutId:\"jm08obY0q\",question:\"Step 2: Create your POMP design\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ne78dy-container\",children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"Set up your community's POMP website where your members will create their own POMPs. Customize the website colors, logo, content and upload your member list (email, wallet etc.).\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"LkIlXgTc_\",layoutId:\"LkIlXgTc_\",question:\"Step 3: Set up your community website\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f1vvqv-container\",children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"Share the custom link with your members so that they can go on to create their own profile photos branded to your community. Don't forget to remind them to share their POMPs online and tag you!\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"XpE9Ee37S\",layoutId:\"XpE9Ee37S\",question:\"Step 4: Share the website with your members\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:\"lazy\",pixelHeight:800,pixelWidth:800,sizes:\"100vw\",src:\"https://framerusercontent.com/images/ogjsWBZZdqaeYS8aRcyab2XrEI.svg\",srcSet:\"https://framerusercontent.com/images/ogjsWBZZdqaeYS8aRcyab2XrEI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ogjsWBZZdqaeYS8aRcyab2XrEI.svg 800w\"},className:\"framer-mlb54p\",id:id1,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9l67b5\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kpnsjp\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\"},children:\"For Members\"})})},Ulru_24ch:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\"},children:\"For Members\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\"},children:\"For Members\"})}),className:\"framer-ap9y5p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Verified members of a community that signed up for POMP will receive a link to create their POMPs from their community leaders. \"})}),className:\"framer-1bi8qh2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9xsqb5\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1of80w2-container\",children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"Log in and verify that you are a member via email,  phone number or wallet.\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"UtO7_0fZa\",layoutId:\"UtO7_0fZa\",question:\"Step 1: Log in to your community's POMP website\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vrqrmb-container\",children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"For the premium AI Avatar option, upload selfies to generate your unique POMP. Take a coffee break while our AI model is hard at work and come back to see your unique AI Avatar generated by our premium AI model.\\n \\nFor the Donut Frame option, take a selfie or upload a photo to create your unique POMP.\\n\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"xjddtadhU\",layoutId:\"xjddtadhU\",question:\"Step 2: Take or upload selfies to create your POMP\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qs43w2-container\",children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"Connect your crypto wallet to collect your POMP as a non-transferable token on the blockchain. \\n\\nNo crypto experience and don't have a crypto wallet? No worries! We've made this process super easy and you can generate a crypto wallet in 1 click. \\n\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"VKyj4jSuv\",layoutId:\"VKyj4jSuv\",question:\"Step 3: Connect your crypto wallet and collect your POMP \",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8w2rna-container\",children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"Once you got your POMP, post it on socials and showcase the community you are proud to be a part of! Don't forget to tag us at @gotpomp :)\\n\\nDepending on your community, you can get access to exclusive perks such as events, merch, and more with your POMP!\\n\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"yHjI6ndOm\",layoutId:\"yHjI6ndOm\",question:\"Step 4: Share on socials and get access to perks\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1floo12\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rhp3z8\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\"},children:\"NFT Token gating\"})})},Ulru_24ch:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\"},children:\"NFT Token gating\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\"},children:\"NFT Token gating\"})}),className:\"framer-yy4ajd\",\"data-framer-name\":\"Sections\",fonts:[\"Inter\"],name:\"Sections\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Give exclusive perks to your members\"})}),className:\"framer-ub46qi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"Leverage POMP through any tool with NFT token gating to give access to exclusive perks!\"})}),className:\"framer-1swf8dh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tuha0p-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",icon:false,icon1:\"ArrowLineRight\",id:\"gxBajVHAY\",layoutId:\"gxBajVHAY\",title:\"Sign Up\",variant:\"zMIqz4YH_\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fmqaut\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation22}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sa6xry-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{cTA:false,cTA1:\"Explore pages\",height:\"100%\",icon:true,icon1:\"ChatsCircle\",id:\"Tm81fzie4\",layoutId:\"Tm81fzie4\",style:{height:\"100%\",width:\"100%\"},text:true,text1:\"Create private chats for specific members via Discord, Telegram etc.\",title:\"VIP Chats\",variant:\"oO6m8pK61\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation22}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-co5zzi-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{cTA:false,cTA1:\"Explore pages\",height:\"100%\",icon:true,icon1:\"Sparkle\",id:\"UHuaXIW_v\",layoutId:\"UHuaXIW_v\",style:{height:\"100%\",width:\"100%\"},text:true,text1:\"Host secret events and use POMPs for ticket access \",title:\"Exclusive Events\",variant:\"oO6m8pK61\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation22}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hse001-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FeatureCard,{cTA:false,cTA1:\"Explore pages\",height:\"100%\",icon:true,icon1:\"Storefront\",id:\"jHWQnoSAL\",layoutId:\"jHWQnoSAL\",style:{height:\"100%\",width:\"100%\"},text:true,text1:\"Use POMPs as the gateway to buy or get members-only limited edition goods\",title:\"Special Merch\",variant:\"oO6m8pK61\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t2z4cp-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:.5,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"U66MqoLEu\",layoutId:\"U66MqoLEu\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r5eknm\",\"data-framer-name\":\"Perk Access Orange\",name:\"Perk Access Orange\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tf7ie6-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"yM6Dd37Ij\",layoutId:\"yM6Dd37Ij\",title:\"Discord\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-83o847-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"CgjJ5sKY5\",layoutId:\"CgjJ5sKY5\",title:\"Luma\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12wvixg-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"Z0KcixEfV\",layoutId:\"Z0KcixEfV\",title:\"Telegram\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wi1028-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"PUPAbcQRV\",layoutId:\"PUPAbcQRV\",title:\"Shopify\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h9fg3g-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"zmD3EUKvG\",layoutId:\"zmD3EUKvG\",title:\"Guild.xyz\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-upffrr-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"yRFvUtEIt\",layoutId:\"yRFvUtEIt\",title:\"Dework\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-irgimj-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"zuBb4kURO\",layoutId:\"zuBb4kURO\",title:\"Google Drive\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mem3wr-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"QGytfmwmI\",layoutId:\"QGytfmwmI\",title:\"GitHub\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f708ig-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"u8k3jwOb3\",layoutId:\"u8k3jwOb3\",title:\"Salesforce\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ia3vmq-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, rgb(224, 112, 21))\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\",id:\"iBPIxgel0\",layoutId:\"iBPIxgel0\",title:\"Tokenproof\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:\"lazy\",pixelHeight:800,pixelWidth:800,sizes:\"100vw\",src:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg\",srcSet:\"https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/HwjGranVLKgc8fhwjyRZP6BrMBw.svg 800w\"},className:\"framer-lru50f\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation13}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"FAQ\"})}),className:\"framer-g6lnng\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation13}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v0pwte-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"\\nPOMP is designed to be so that no web3 experience is necessary. In fact, users have told us that it is one of the easiest and most seamless experience they've experienced to mint an NFT!\\n\\nFor members without a crypto wallet, they have the option to generate a custodial wallet in 1 click through our platform to mint their POMPs.\\n\\nMembers will also be able to access and import their custodial wallet to another wallet provider (like Metamask) later on if they would like. \",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"WbBh4ywHC\",layoutId:\"WbBh4ywHC\",question:\"Do members need to know about web3 or blockchain to use POMP? Do they need a wallet to mint their POMPs?\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation13}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q2i766-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"\\nPOMPs are minted as dynamic soulbound tokens on the blockchain (we currently support Ethereum Mainnet and Polygon). \\n\\nWe are able to verify the validity of membership with POMPs to give access to various perks through connecting with platforms that have NFT token gating.\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"dS_iXz_X7\",layoutId:\"dS_iXz_X7\",question:\"How are you able to verify membership and give access with POMPs?\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation13}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11ex45f-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"\\nDynamic soulbound tokens are non-transferable tokens minted on the blockchain that can be changed after they are minted. They represent affiliations, credentials, and commitments that make up the social relations on Web3 networks. In other words, they are tokenized representations of the myriad traits, features, and achievements that make up a person or entity. \\n\\nPOMPs are dynamic soulbound tokens, which means that: \\n-  Each POMP is a unique digital collectible that cannot be transferred to anyone else on the blockchain \\n- The visual representation and attributes of POMPs can be changed by the organization's admin depending on the membership status, roles etc. \\n\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"XznOKZtex\",layoutId:\"XznOKZtex\",question:\"What is a dynamic soulbound token?\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation13}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ng6ou3-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"\\nPOMP, meaning Proof of Membership Protocol, is a dynamic soulbound token that verifies a member's affilation to a community. POAP, meaning Proof of Attendance Protocol, is an NFT (non-fungible token) that is given to participants for attending an event. \\n\\nPOMP is created and minted by members to represent their affilation to a specific community. Each POMP is unique and different from POAP because:\\n1. POMP incorporates a member's identity in its design\\n2. POMP can not be transferred to anyone else\\n3. POMP attributes and design can be dynamically updated by authorized representatives of that community to reflect that member's role and status in that community. \\n\\nPOAP, on the otherhand, is transferable and all participants usually receive the same POAP for attending an event.\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"btuXN0sz9\",layoutId:\"btuXN0sz9\",question:\"What is the difference between POAP and POMP?\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation13}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hlfipt-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"\\nOur platform currently supports Ethereum Mainnet and Polygon. We plan to expand to other chains in the future. \",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"UFaRlWnqU\",layoutId:\"UFaRlWnqU\",question:\"Which blockchain is POMP minted on?\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation13}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s9fapn-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQAccordion,{answer:\"\\nYes. For the AI Avatar design, our team will work closely with you to craft the optimal prompt as well as reference image to produce consistent AI Avatars that speaks to your community brand. \\n\\nFor the POMP Donut frame design, we can connect you with talented designers that can help you design the frames that reflect your community brand.\",background:\"var(--token-a0c78f16-9eed-4c57-8384-2cbd36ff400a, rgb(255, 255, 255))\",color:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(51, 51, 51))\",height:\"100%\",id:\"Zm6xVqNRS\",layoutId:\"Zm6xVqNRS\",question:\"Do you provide design services to create the POMPs?\",style:{width:\"100%\"},variant:\"U5p8N7xRm\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"1b5mpy4\",animate:optimizeAppear(\"animate\",\"1b5mpy4\",animation1,\"nj0mn7\"),initial:optimizeAppear(\"initial\",\"1b5mpy4\",animation2,\"nj0mn7\")},Ulru_24ch:{\"data-framer-appear-id\":\"yrz2u4\",animate:optimizeAppear(\"animate\",\"yrz2u4\",animation1,\"1feqjcj\"),initial:optimizeAppear(\"initial\",\"yrz2u4\",animation2,\"1feqjcj\")}},children:/*#__PURE__*/_jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"1isya6\",animation1,\"72rtr7\"),className:\"framer-1isya6\",\"data-framer-appear-id\":\"1isya6\",exit:animation,initial:optimizeAppear(\"initial\",\"1isya6\",animation2,\"72rtr7\"),style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tez7ge\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15iaft6\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235))\"},children:\"Celebrate community pride\"})}),className:\"framer-1dk7je6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Get POMPs for your community today!\"})}),className:\"framer-vchohe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{href:\"https://tally.so/r/m6LMNY\",openInNewTab:true},Ulru_24ch:{href:\"https://tally.so/r/m6LMNY\",openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-12zn8g9 framer-lux5qc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h3ayt-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",icon:false,icon1:\"ArrowLineRight\",id:\"yuPvDeaHd\",layoutId:\"yuPvDeaHd\",title:\"Sign Up for POMP\",variant:\"gSXZ_qzqL\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{\"data-framer-appear-id\":\"1b7ksx7\",animate:optimizeAppear(\"animate\",\"1b7ksx7\",animation11,\"nj0mn7\"),exit:animation26,initial:optimizeAppear(\"initial\",\"1b7ksx7\",animation25,\"nj0mn7\")},Ulru_24ch:{\"data-framer-appear-id\":\"mgsakc\",animate:optimizeAppear(\"animate\",\"mgsakc\",animation1,\"1feqjcj\"),initial:optimizeAppear(\"initial\",\"mgsakc\",animation25,\"1feqjcj\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"12kdgsp\",animation1,\"72rtr7\"),className:\"framer-12kdgsp-container\",\"data-framer-appear-id\":\"12kdgsp\",exit:animation24,initial:optimizeAppear(\"initial\",\"12kdgsp\",animation25,\"72rtr7\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"DV1KVlAcq\",layoutId:\"DV1KVlAcq\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16kgcvd\",\"data-framer-name\":\"POMP 1\",name:\"POMP 1\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:POMP1,type:\"Collection\"},select:[{name:\"pdIJoIqz0\",type:\"Identifier\"},{name:\"Tu_Pd0zTZ\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection6=>collection6.map(({pdIJoIqz0:pdIJoIqz0hbeEzyPUV,Tu_Pd0zTZ:Tu_Pd0zTZhbeEzyPUV,id:idhbeEzyPUV},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`hbeEzyPUV-${idhbeEzyPUV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Tu_Pd0zTZ:Tu_Pd0zTZhbeEzyPUV},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19k09wu\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(pdIJoIqz0hbeEzyPUV)},className:\"framer-1subg1o\"})})})},idhbeEzyPUV);})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-56ejtk\",\"data-framer-name\":\"POMP 2\",name:\"POMP 2\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:POMP2,type:\"Collection\"},select:[{name:\"Vso23OR6m\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection7=>collection7.map(({Vso23OR6m:Vso23OR6mNVQRl2C5e,id:idNVQRl2C5e},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`NVQRl2C5e-${idNVQRl2C5e}`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-po5pgc\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(Vso23OR6mNVQRl2C5e)},className:\"framer-hse2w3\"})})},idNVQRl2C5e);})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jvCw4IpzG:{__framer__animate:{transition:transition4},__framer__exit:animation29}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation27,__framer__exit:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11xnqde-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:.5,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:true},gap:0,height:\"100%\",hoverFactor:1,id:\"zjo8s1y3T\",layoutId:\"zjo8s1y3T\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-duostd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ratzfb-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"rgba(25, 21, 78, 0.2)\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",id:\"HnT8_xxQF\",layoutId:\"HnT8_xxQF\",title:\"Celebrate Community Pride\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3q7dic-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"rgba(25, 21, 78, 0.2)\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",id:\"AhY8kGBD8\",layoutId:\"AhY8kGBD8\",title:\"Verify Membership\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r1ze5w-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"rgba(25, 21, 78, 0.2)\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",id:\"AtChWm5nO\",layoutId:\"AtChWm5nO\",title:\"Give Perk Access\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-agijil-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"rgba(25, 21, 78, 0.2)\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",id:\"uCVv4t_Ao\",layoutId:\"uCVv4t_Ao\",title:\"Personalized AI Avatars\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o42ul1-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"rgba(25, 21, 78, 0.2)\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",id:\"JeI_yYKR8\",layoutId:\"JeI_yYKR8\",title:\"Easy Web3 Onboarding\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a4dync-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"rgba(25, 21, 78, 0.2)\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",id:\"eC3suYmzG\",layoutId:\"eC3suYmzG\",title:\"Custodial Wallet Creation\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l91un7-container\",children:/*#__PURE__*/_jsx(List,{badgeBackground:\"rgba(25, 21, 78, 0.2)\",height:\"100%\",icon:true,icon1:\"CheckCircle\",icon2:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",id:\"MR8m4FVJg\",layoutId:\"MR8m4FVJg\",title:\"Organic Brand Awareness\",title1:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",variant:\"mjSs6PG6L\",width:\"100%\"})})})]})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ckcn63-container\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"PcygoYjxs\",layoutId:\"PcygoYjxs\",style:{width:\"100%\"},variant:\"LhxyU5xMk\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-IwO7R { background: white; }`,\".framer-IwO7R.framer-lux5qc, .framer-IwO7R .framer-lux5qc { display: block; }\",\".framer-IwO7R.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-IwO7R .framer-vpjptw-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-IwO7R .framer-qrmr94 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-f7bqu8 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",'.framer-IwO7R .framer-1u5wowh { align-content: center; align-items: center; background: radial-gradient(106.89999999999999% 89.7% at 100% 100%, rgba(254, 152, 0, 0.4) 0%, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */ 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: 100vh; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }',\".framer-IwO7R .framer-1bivpm0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 100%; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-1j51fmc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-45saj3-container, .framer-IwO7R .framer-wm0c5l-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-IwO7R .framer-bi1ql6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-end; padding: 0px; position: relative; width: 250px; }\",\".framer-IwO7R .framer-ks806o { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1rj0b5a { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 250px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-xzophu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 1700px; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-IwO7R .framer-1oe2mn5 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 1px; position: relative; width: 250px; }\",\".framer-IwO7R .framer-1hf6pdt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-1epr4dw, .framer-IwO7R .framer-1rrr18e, .framer-IwO7R .framer-1w1eusn, .framer-IwO7R .framer-1x2ol8p, .framer-IwO7R .framer-ap9y5p, .framer-IwO7R .framer-yy4ajd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IwO7R .framer-19ij0iw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 2px 1px 0px #FA9E34; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-1g9gqx1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1jjwsjf-container, .framer-IwO7R .framer-1n1o29q-container { flex: none; height: 160px; position: relative; width: 1200px; }\",\".framer-IwO7R .framer-16kgcvd, .framer-IwO7R .framer-56ejtk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-IwO7R .framer-19k09wu, .framer-IwO7R .framer-po5pgc { 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; padding: 0px; position: relative; width: 150px; }\",\".framer-IwO7R .framer-1subg1o, .framer-IwO7R .framer-hse2w3 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 150px; position: relative; width: 150px; }\",\".framer-IwO7R .framer-5l2aly-container, .framer-IwO7R .framer-gsoqnv-container { flex: none; height: 180px; position: relative; width: 1200px; }\",\".framer-IwO7R .framer-57pjey, .framer-IwO7R .framer-5ogkno, .framer-IwO7R .framer-1k4yxme, .framer-IwO7R .framer-1bi8qh2, .framer-IwO7R .framer-vchohe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-1mk7gll-container { flex: none; height: auto; position: relative; width: 220px; }\",\".framer-IwO7R .framer-1qyyykw-container, .framer-IwO7R .framer-1uvhauw-container, .framer-IwO7R .framer-1enkmr0-container, .framer-IwO7R .framer-1a6faku-container, .framer-IwO7R .framer-mj8gev-container, .framer-IwO7R .framer-n9whqo-container, .framer-IwO7R .framer-1e92szi-container, .framer-IwO7R .framer-1g1mz2i-container, .framer-IwO7R .framer-1wkwvb8-container, .framer-IwO7R .framer-13qeord-container, .framer-IwO7R .framer-19mto7a-container, .framer-IwO7R .framer-pmurbz-container, .framer-IwO7R .framer-tuha0p-container, .framer-IwO7R .framer-tf7ie6-container, .framer-IwO7R .framer-83o847-container, .framer-IwO7R .framer-12wvixg-container, .framer-IwO7R .framer-1wi1028-container, .framer-IwO7R .framer-h9fg3g-container, .framer-IwO7R .framer-upffrr-container, .framer-IwO7R .framer-irgimj-container, .framer-IwO7R .framer-mem3wr-container, .framer-IwO7R .framer-f708ig-container, .framer-IwO7R .framer-1ia3vmq-container, .framer-IwO7R .framer-1h3ayt-container, .framer-IwO7R .framer-ratzfb-container, .framer-IwO7R .framer-3q7dic-container, .framer-IwO7R .framer-r1ze5w-container, .framer-IwO7R .framer-agijil-container, .framer-IwO7R .framer-o42ul1-container, .framer-IwO7R .framer-1a4dync-container, .framer-IwO7R .framer-1l91un7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-IwO7R .framer-1154jd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 350px; }\",\".framer-IwO7R .framer-pru6wt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-ia2b21-container { flex: none; height: auto; position: relative; width: 70%; }\",\".framer-IwO7R .framer-7bu3mx { -webkit-filter: brightness(1); align-content: center; align-items: center; background-color: var(--token-4201823f-8d0f-4e3b-ba34-ca171fcc2049, rgba(255, 233, 199, 0.1)); display: flex; filter: brightness(1); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1fpbnco { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: auto; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-m46113, .framer-IwO7R .framer-118hv5v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1nxm6l5 { --border-bottom-width: 1px; --border-color: var(--token-c8439337-9d36-46a4-99d2-f5dfafe1a4da, #fe9800); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-1w2aagz, .framer-IwO7R .framer-18g7795 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-col3s6, .framer-IwO7R .framer-1fk83th { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 2px 1px 0px #FA9E34; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-12sdtkr, .framer-IwO7R .framer-1jico8f { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-1lu4c77 { --border-bottom-width: 1px; --border-color: var(--token-c8439337-9d36-46a4-99d2-f5dfafe1a4da, #fe9800); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-muekoj, .framer-IwO7R .framer-501s5n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-eur1zw, .framer-IwO7R .framer-18s0fba { --border-bottom-width: 1px; --border-color: var(--token-c8439337-9d36-46a4-99d2-f5dfafe1a4da, #fe9800); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 167px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1l4holk, .framer-IwO7R .framer-1es611c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1yc1mju, .framer-IwO7R .framer-1fjcw33 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; text-shadow: 2px 1px 0px #FA9E34; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-1y7g8uk, .framer-IwO7R .framer-g3esul, .framer-IwO7R .framer-1swf8dh { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-793wfi-container, .framer-IwO7R .framer-dpcldt-container, .framer-IwO7R .framer-1d9iaw3-container, .framer-IwO7R .framer-kvy0kg-container, .framer-IwO7R .framer-ne78dy-container, .framer-IwO7R .framer-1f1vvqv-container, .framer-IwO7R .framer-1of80w2-container, .framer-IwO7R .framer-1vrqrmb-container, .framer-IwO7R .framer-1qs43w2-container, .framer-IwO7R .framer-8w2rna-container, .framer-IwO7R .framer-1ckcn63-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-IwO7R .framer-nskp2m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: auto; justify-content: flex-start; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-l8kvls, .framer-IwO7R .framer-uz66a4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-dzzjiy, .framer-IwO7R .framer-ub46qi, .framer-IwO7R .framer-g6lnng { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 2px 1px 0px #fe9800; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-sumoxo { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: 443px; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-q70u8r-container, .framer-IwO7R .framer-5o5640-container, .framer-IwO7R .framer-1x6z0e1-container, .framer-IwO7R .framer-1sa6xry-container, .framer-IwO7R .framer-co5zzi-container, .framer-IwO7R .framer-hse001-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-IwO7R .framer-wb66j4-container, .framer-IwO7R .framer-11xnqde-container { flex: none; height: 50px; position: relative; width: 110%; }\",\".framer-IwO7R .framer-1cyft3d, .framer-IwO7R .framer-1r5eknm, .framer-IwO7R .framer-duostd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: min-content; }\",\".framer-IwO7R .framer-17fdq57 { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: auto; justify-content: flex-start; overflow: hidden; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-aqm5ad { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 2px 1px 0px #3da1ff; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IwO7R .framer-1mbo1in { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-vl0mzd, .framer-IwO7R .framer-mlb54p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: auto; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1eq7537, .framer-IwO7R .framer-9l67b5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IwO7R .framer-14etl08, .framer-IwO7R .framer-kpnsjp { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 0px; position: sticky; top: 120px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-IwO7R .framer-kvvnxp { align-content: flex-start; align-items: flex-start; background-color: var(--token-81c88cf7-3b7f-4171-9140-39d2c84ed790, #3da1ff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 10px; position: sticky; top: 120px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-IwO7R .framer-9xsqb5 { align-content: flex-start; align-items: flex-start; background-color: var(--token-c8439337-9d36-46a4-99d2-f5dfafe1a4da, #fe9800); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 10px; position: sticky; top: 120px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-IwO7R .framer-1floo12 { align-content: center; align-items: center; background-color: var(--token-4201823f-8d0f-4e3b-ba34-ca171fcc2049, rgba(255, 233, 199, 0.1)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: auto; justify-content: center; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1rhp3z8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-IwO7R .framer-fmqaut { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-t2z4cp-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-lru50f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-v0pwte-container, .framer-IwO7R .framer-1q2i766-container, .framer-IwO7R .framer-11ex45f-container, .framer-IwO7R .framer-1ng6ou3-container, .framer-IwO7R .framer-1hlfipt-container, .framer-IwO7R .framer-1s9fapn-container { flex: none; height: auto; position: relative; width: 694px; }\",\".framer-IwO7R .framer-1isya6 { -webkit-filter: brightness(1); align-content: center; align-items: center; background-color: var(--token-b3e2c817-1b1d-4198-887b-ddfcc963fe50, #e07015); display: flex; filter: brightness(1); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1tez7ge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-15iaft6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IwO7R .framer-1dk7je6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre; width: auto; }\",\".framer-IwO7R .framer-12zn8g9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IwO7R .framer-12kdgsp-container { flex: none; height: 160px; position: relative; width: 110%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IwO7R.framer-72rtr7, .framer-IwO7R .framer-qrmr94, .framer-IwO7R .framer-f7bqu8, .framer-IwO7R .framer-1u5wowh, .framer-IwO7R .framer-1bivpm0, .framer-IwO7R .framer-1j51fmc, .framer-IwO7R .framer-bi1ql6, .framer-IwO7R .framer-ks806o, .framer-IwO7R .framer-xzophu, .framer-IwO7R .framer-1hf6pdt, .framer-IwO7R .framer-1g9gqx1, .framer-IwO7R .framer-16kgcvd, .framer-IwO7R .framer-19k09wu, .framer-IwO7R .framer-56ejtk, .framer-IwO7R .framer-po5pgc, .framer-IwO7R .framer-1154jd6, .framer-IwO7R .framer-7bu3mx, .framer-IwO7R .framer-1fpbnco, .framer-IwO7R .framer-m46113, .framer-IwO7R .framer-1nxm6l5, .framer-IwO7R .framer-1w2aagz, .framer-IwO7R .framer-118hv5v, .framer-IwO7R .framer-1lu4c77, .framer-IwO7R .framer-18g7795, .framer-IwO7R .framer-muekoj, .framer-IwO7R .framer-eur1zw, .framer-IwO7R .framer-1l4holk, .framer-IwO7R .framer-501s5n, .framer-IwO7R .framer-18s0fba, .framer-IwO7R .framer-1es611c, .framer-IwO7R .framer-nskp2m, .framer-IwO7R .framer-l8kvls, .framer-IwO7R .framer-1cyft3d, .framer-IwO7R .framer-17fdq57, .framer-IwO7R .framer-uz66a4, .framer-IwO7R .framer-1mbo1in, .framer-IwO7R .framer-vl0mzd, .framer-IwO7R .framer-1eq7537, .framer-IwO7R .framer-14etl08, .framer-IwO7R .framer-kvvnxp, .framer-IwO7R .framer-mlb54p, .framer-IwO7R .framer-9l67b5, .framer-IwO7R .framer-kpnsjp, .framer-IwO7R .framer-9xsqb5, .framer-IwO7R .framer-1floo12, .framer-IwO7R .framer-1rhp3z8, .framer-IwO7R .framer-1r5eknm, .framer-IwO7R .framer-lru50f, .framer-IwO7R .framer-1isya6, .framer-IwO7R .framer-1tez7ge, .framer-IwO7R .framer-15iaft6, .framer-IwO7R .framer-12zn8g9, .framer-IwO7R .framer-duostd { gap: 0px; } .framer-IwO7R.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IwO7R.framer-72rtr7 > :first-child, .framer-IwO7R .framer-bi1ql6 > :first-child, .framer-IwO7R .framer-xzophu > :first-child, .framer-IwO7R .framer-1hf6pdt > :first-child, .framer-IwO7R .framer-1g9gqx1 > :first-child, .framer-IwO7R .framer-1fpbnco > :first-child, .framer-IwO7R .framer-1nxm6l5 > :first-child, .framer-IwO7R .framer-1w2aagz > :first-child, .framer-IwO7R .framer-1lu4c77 > :first-child, .framer-IwO7R .framer-18g7795 > :first-child, .framer-IwO7R .framer-muekoj > :first-child, .framer-IwO7R .framer-eur1zw > :first-child, .framer-IwO7R .framer-1l4holk > :first-child, .framer-IwO7R .framer-501s5n > :first-child, .framer-IwO7R .framer-18s0fba > :first-child, .framer-IwO7R .framer-1es611c > :first-child, .framer-IwO7R .framer-nskp2m > :first-child, .framer-IwO7R .framer-l8kvls > :first-child, .framer-IwO7R .framer-17fdq57 > :first-child, .framer-IwO7R .framer-uz66a4 > :first-child, .framer-IwO7R .framer-14etl08 > :first-child, .framer-IwO7R .framer-kvvnxp > :first-child, .framer-IwO7R .framer-kpnsjp > :first-child, .framer-IwO7R .framer-9xsqb5 > :first-child, .framer-IwO7R .framer-1floo12 > :first-child, .framer-IwO7R .framer-1rhp3z8 > :first-child, .framer-IwO7R .framer-lru50f > :first-child, .framer-IwO7R .framer-1isya6 > :first-child, .framer-IwO7R .framer-1tez7ge > :first-child, .framer-IwO7R .framer-15iaft6 > :first-child { margin-top: 0px; } .framer-IwO7R.framer-72rtr7 > :last-child, .framer-IwO7R .framer-bi1ql6 > :last-child, .framer-IwO7R .framer-xzophu > :last-child, .framer-IwO7R .framer-1hf6pdt > :last-child, .framer-IwO7R .framer-1g9gqx1 > :last-child, .framer-IwO7R .framer-1fpbnco > :last-child, .framer-IwO7R .framer-1nxm6l5 > :last-child, .framer-IwO7R .framer-1w2aagz > :last-child, .framer-IwO7R .framer-1lu4c77 > :last-child, .framer-IwO7R .framer-18g7795 > :last-child, .framer-IwO7R .framer-muekoj > :last-child, .framer-IwO7R .framer-eur1zw > :last-child, .framer-IwO7R .framer-1l4holk > :last-child, .framer-IwO7R .framer-501s5n > :last-child, .framer-IwO7R .framer-18s0fba > :last-child, .framer-IwO7R .framer-1es611c > :last-child, .framer-IwO7R .framer-nskp2m > :last-child, .framer-IwO7R .framer-l8kvls > :last-child, .framer-IwO7R .framer-17fdq57 > :last-child, .framer-IwO7R .framer-uz66a4 > :last-child, .framer-IwO7R .framer-14etl08 > :last-child, .framer-IwO7R .framer-kvvnxp > :last-child, .framer-IwO7R .framer-kpnsjp > :last-child, .framer-IwO7R .framer-9xsqb5 > :last-child, .framer-IwO7R .framer-1floo12 > :last-child, .framer-IwO7R .framer-1rhp3z8 > :last-child, .framer-IwO7R .framer-lru50f > :last-child, .framer-IwO7R .framer-1isya6 > :last-child, .framer-IwO7R .framer-1tez7ge > :last-child, .framer-IwO7R .framer-15iaft6 > :last-child { margin-bottom: 0px; } .framer-IwO7R .framer-qrmr94 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IwO7R .framer-qrmr94 > :first-child, .framer-IwO7R .framer-f7bqu8 > :first-child, .framer-IwO7R .framer-1u5wowh > :first-child, .framer-IwO7R .framer-1bivpm0 > :first-child, .framer-IwO7R .framer-1j51fmc > :first-child, .framer-IwO7R .framer-ks806o > :first-child, .framer-IwO7R .framer-16kgcvd > :first-child, .framer-IwO7R .framer-19k09wu > :first-child, .framer-IwO7R .framer-56ejtk > :first-child, .framer-IwO7R .framer-po5pgc > :first-child, .framer-IwO7R .framer-1154jd6 > :first-child, .framer-IwO7R .framer-7bu3mx > :first-child, .framer-IwO7R .framer-m46113 > :first-child, .framer-IwO7R .framer-118hv5v > :first-child, .framer-IwO7R .framer-1cyft3d > :first-child, .framer-IwO7R .framer-1mbo1in > :first-child, .framer-IwO7R .framer-vl0mzd > :first-child, .framer-IwO7R .framer-1eq7537 > :first-child, .framer-IwO7R .framer-mlb54p > :first-child, .framer-IwO7R .framer-9l67b5 > :first-child, .framer-IwO7R .framer-1r5eknm > :first-child, .framer-IwO7R .framer-12zn8g9 > :first-child, .framer-IwO7R .framer-duostd > :first-child { margin-left: 0px; } .framer-IwO7R .framer-qrmr94 > :last-child, .framer-IwO7R .framer-f7bqu8 > :last-child, .framer-IwO7R .framer-1u5wowh > :last-child, .framer-IwO7R .framer-1bivpm0 > :last-child, .framer-IwO7R .framer-1j51fmc > :last-child, .framer-IwO7R .framer-ks806o > :last-child, .framer-IwO7R .framer-16kgcvd > :last-child, .framer-IwO7R .framer-19k09wu > :last-child, .framer-IwO7R .framer-56ejtk > :last-child, .framer-IwO7R .framer-po5pgc > :last-child, .framer-IwO7R .framer-1154jd6 > :last-child, .framer-IwO7R .framer-7bu3mx > :last-child, .framer-IwO7R .framer-m46113 > :last-child, .framer-IwO7R .framer-118hv5v > :last-child, .framer-IwO7R .framer-1cyft3d > :last-child, .framer-IwO7R .framer-1mbo1in > :last-child, .framer-IwO7R .framer-vl0mzd > :last-child, .framer-IwO7R .framer-1eq7537 > :last-child, .framer-IwO7R .framer-mlb54p > :last-child, .framer-IwO7R .framer-9l67b5 > :last-child, .framer-IwO7R .framer-1r5eknm > :last-child, .framer-IwO7R .framer-12zn8g9 > :last-child, .framer-IwO7R .framer-duostd > :last-child { margin-right: 0px; } .framer-IwO7R .framer-f7bqu8 > *, .framer-IwO7R .framer-7bu3mx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IwO7R .framer-1u5wowh > * { margin: 0px; margin-left: calc(140px / 2); margin-right: calc(140px / 2); } .framer-IwO7R .framer-1bivpm0 > *, .framer-IwO7R .framer-1mbo1in > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-IwO7R .framer-1j51fmc > *, .framer-IwO7R .framer-16kgcvd > *, .framer-IwO7R .framer-56ejtk > *, .framer-IwO7R .framer-1cyft3d > *, .framer-IwO7R .framer-1r5eknm > *, .framer-IwO7R .framer-12zn8g9 > *, .framer-IwO7R .framer-duostd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-IwO7R .framer-bi1ql6 > *, .framer-IwO7R .framer-xzophu > *, .framer-IwO7R .framer-muekoj > *, .framer-IwO7R .framer-501s5n > *, .framer-IwO7R .framer-1isya6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IwO7R .framer-ks806o > *, .framer-IwO7R .framer-19k09wu > *, .framer-IwO7R .framer-po5pgc > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-IwO7R .framer-1hf6pdt > *, .framer-IwO7R .framer-1nxm6l5 > *, .framer-IwO7R .framer-1w2aagz > *, .framer-IwO7R .framer-1lu4c77 > *, .framer-IwO7R .framer-18g7795 > *, .framer-IwO7R .framer-eur1zw > *, .framer-IwO7R .framer-1l4holk > *, .framer-IwO7R .framer-18s0fba > *, .framer-IwO7R .framer-1es611c > *, .framer-IwO7R .framer-14etl08 > *, .framer-IwO7R .framer-kvvnxp > *, .framer-IwO7R .framer-kpnsjp > *, .framer-IwO7R .framer-9xsqb5 > *, .framer-IwO7R .framer-1rhp3z8 > *, .framer-IwO7R .framer-15iaft6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-IwO7R .framer-1g9gqx1 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-IwO7R .framer-1154jd6 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-IwO7R .framer-1fpbnco > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-IwO7R .framer-m46113 > *, .framer-IwO7R .framer-118hv5v > *, .framer-IwO7R .framer-vl0mzd > *, .framer-IwO7R .framer-mlb54p > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-IwO7R .framer-nskp2m > *, .framer-IwO7R .framer-17fdq57 > *, .framer-IwO7R .framer-1floo12 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-IwO7R .framer-l8kvls > *, .framer-IwO7R .framer-uz66a4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IwO7R .framer-1eq7537 > *, .framer-IwO7R .framer-9l67b5 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-IwO7R .framer-lru50f > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-IwO7R .framer-1tez7ge > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }\",\"@media (min-width: 1200px) { .framer-IwO7R .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-IwO7R .hidden-1feqjcj { display: none !important; } .${metadata.bodyClassName}-framer-IwO7R { background: white; } .framer-IwO7R.framer-72rtr7 { height: 10639px; width: 810px; } .framer-IwO7R .framer-vpjptw-container { order: 0; } .framer-IwO7R .framer-qrmr94 { height: 1px; order: 1; } .framer-IwO7R .framer-f7bqu8 { align-self: unset; height: 0px; } .framer-IwO7R .framer-1u5wowh { flex-direction: column; gap: 0px; height: 1000px; order: 2; padding: 0px; z-index: 1; } .framer-IwO7R .framer-1bivpm0 { flex: none; gap: 0px; height: min-content; max-width: 1100px; width: 100%; } .framer-IwO7R .framer-1hf6pdt { align-content: center; align-items: center; max-width: 700px; } .framer-IwO7R .framer-7bu3mx { order: 3; padding: 60px 40px 60px 40px; } .framer-IwO7R .framer-1nxm6l5 { height: var(--framer-aspect-ratio-supported, 270px); } .framer-IwO7R .framer-col3s6, .framer-IwO7R .framer-12sdtkr, .framer-IwO7R .framer-1fk83th, .framer-IwO7R .framer-1jico8f { width: 100%; } .framer-IwO7R .framer-1lu4c77 { height: var(--framer-aspect-ratio-supported, 271px); } .framer-IwO7R .framer-nskp2m { order: 4; } .framer-IwO7R .framer-sumoxo { grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; } .framer-IwO7R .framer-17fdq57 { order: 5; } .framer-IwO7R .framer-1mbo1in { flex-direction: column; } .framer-IwO7R .framer-vl0mzd { order: 6; } .framer-IwO7R .framer-1eq7537, .framer-IwO7R .framer-9l67b5 { flex-direction: column; gap: 60px; } .framer-IwO7R .framer-14etl08, .framer-IwO7R .framer-kpnsjp { flex: none; max-width: 550px; position: relative; top: unset; width: 100%; } .framer-IwO7R .framer-kvvnxp, .framer-IwO7R .framer-9xsqb5 { flex: none; max-width: 100%; position: relative; top: unset; width: 100%; } .framer-IwO7R .framer-mlb54p { order: 7; } .framer-IwO7R .framer-1floo12 { background-color: unset; order: 8; } .framer-IwO7R .framer-fmqaut { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-IwO7R .framer-t2z4cp-container { order: 9; } .framer-IwO7R .framer-lru50f { order: 10; padding: 80px 40px 80px 40px; } .framer-IwO7R .framer-1isya6 { order: 11; } .framer-IwO7R .framer-12zn8g9 { text-decoration: none; } .framer-IwO7R .framer-1ckcn63-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IwO7R .framer-1u5wowh, .framer-IwO7R .framer-1bivpm0, .framer-IwO7R .framer-1mbo1in, .framer-IwO7R .framer-1eq7537, .framer-IwO7R .framer-9l67b5 { gap: 0px; } .framer-IwO7R .framer-1u5wowh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IwO7R .framer-1u5wowh > :first-child, .framer-IwO7R .framer-1mbo1in > :first-child, .framer-IwO7R .framer-1eq7537 > :first-child, .framer-IwO7R .framer-9l67b5 > :first-child { margin-top: 0px; } .framer-IwO7R .framer-1u5wowh > :last-child, .framer-IwO7R .framer-1mbo1in > :last-child, .framer-IwO7R .framer-1eq7537 > :last-child, .framer-IwO7R .framer-9l67b5 > :last-child { margin-bottom: 0px; } .framer-IwO7R .framer-1bivpm0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IwO7R .framer-1bivpm0 > :first-child { margin-left: 0px; } .framer-IwO7R .framer-1bivpm0 > :last-child { margin-right: 0px; } .framer-IwO7R .framer-1mbo1in > *, .framer-IwO7R .framer-1eq7537 > *, .framer-IwO7R .framer-9l67b5 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,`@media (max-width: 809px) { .framer-IwO7R .hidden-nj0mn7 { display: none !important; } .${metadata.bodyClassName}-framer-IwO7R { background: white; } .framer-IwO7R.framer-72rtr7 { width: 390px; } .framer-IwO7R .framer-vpjptw-container, .framer-IwO7R .framer-1tez7ge { order: 0; } .framer-IwO7R .framer-1u5wowh { height: auto; max-height: 1500px; min-height: 1000px; order: 2; padding: 0px; } .framer-IwO7R .framer-1bivpm0 { flex: none; flex-direction: column; gap: 50px; height: min-content; justify-content: flex-start; left: 0px; padding: 180px 20px 0px 20px; position: absolute; top: 0px; width: 100%; z-index: 1; } .framer-IwO7R .framer-1hf6pdt { align-content: center; align-items: center; flex: none; max-width: 600px; order: 0; width: min-content; z-index: 1; } .framer-IwO7R .framer-19ij0iw { width: 350px; } .framer-IwO7R .framer-1154jd6, .framer-IwO7R .framer-1mbo1in { flex-direction: column; } .framer-IwO7R .framer-pru6wt { flex: none; width: 100%; } .framer-IwO7R .framer-7bu3mx { gap: 20px; order: 3; padding: 60px 20px 60px 20px; z-index: 1; } .framer-IwO7R .framer-1fpbnco { max-width: 100%; order: 0; } .framer-IwO7R .framer-eur1zw, .framer-IwO7R .framer-18s0fba { height: var(--framer-aspect-ratio-supported, 292px); } .framer-IwO7R .framer-nskp2m { gap: 50px; order: 4; padding: 50px 20px 50px 20px; } .framer-IwO7R .framer-sumoxo { grid-template-columns: repeat(1, minmax(200px, 1fr)); height: min-content; } .framer-IwO7R .framer-17fdq57 { gap: 40px; order: 5; padding: 50px 20px 50px 20px; } .framer-IwO7R .framer-13qeord-container, .framer-IwO7R .framer-19mto7a-container, .framer-IwO7R .framer-v0pwte-container, .framer-IwO7R .framer-1q2i766-container, .framer-IwO7R .framer-11ex45f-container, .framer-IwO7R .framer-1ng6ou3-container, .framer-IwO7R .framer-1hlfipt-container, .framer-IwO7R .framer-1s9fapn-container { width: 100%; } .framer-IwO7R .framer-vl0mzd { flex-direction: column; gap: 40px; order: 6; padding: 50px 20px 50px 20px; } .framer-IwO7R .framer-1eq7537, .framer-IwO7R .framer-9l67b5 { flex: none; flex-direction: column; gap: 50px; width: 100%; } .framer-IwO7R .framer-14etl08, .framer-IwO7R .framer-kvvnxp, .framer-IwO7R .framer-kpnsjp { flex: none; max-width: 550px; position: relative; top: unset; width: 100%; } .framer-IwO7R .framer-mlb54p { flex-direction: column; gap: 40px; order: 7; padding: 50px 20px 50px 20px; } .framer-IwO7R .framer-9xsqb5 { flex: none; max-width: 390px; position: relative; top: unset; width: 100%; } .framer-IwO7R .framer-1floo12 { gap: 40px; order: 8; padding: 50px 20px 50px 20px; } .framer-IwO7R .framer-1swf8dh { width: 343px; } .framer-IwO7R .framer-fmqaut { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-IwO7R .framer-t2z4cp-container { order: 9; } .framer-IwO7R .framer-lru50f { gap: 40px; order: 10; padding: 60px 20px 60px 20px; } .framer-IwO7R .framer-1isya6 { order: 11; padding: 50px 20px 50px 20px; } .framer-IwO7R .framer-12zn8g9 { flex-direction: column; text-decoration: none; width: 100%; } .framer-IwO7R .framer-1h3ayt-container { width: 70%; } .framer-IwO7R .framer-12kdgsp-container { order: 1; } .framer-IwO7R .framer-11xnqde-container { order: 2; } .framer-IwO7R .framer-1ckcn63-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IwO7R .framer-1bivpm0, .framer-IwO7R .framer-1154jd6, .framer-IwO7R .framer-7bu3mx, .framer-IwO7R .framer-nskp2m, .framer-IwO7R .framer-17fdq57, .framer-IwO7R .framer-1mbo1in, .framer-IwO7R .framer-vl0mzd, .framer-IwO7R .framer-1eq7537, .framer-IwO7R .framer-mlb54p, .framer-IwO7R .framer-9l67b5, .framer-IwO7R .framer-1floo12, .framer-IwO7R .framer-lru50f, .framer-IwO7R .framer-12zn8g9 { gap: 0px; } .framer-IwO7R .framer-1bivpm0 > *, .framer-IwO7R .framer-nskp2m > *, .framer-IwO7R .framer-1eq7537 > *, .framer-IwO7R .framer-9l67b5 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-IwO7R .framer-1bivpm0 > :first-child, .framer-IwO7R .framer-1154jd6 > :first-child, .framer-IwO7R .framer-nskp2m > :first-child, .framer-IwO7R .framer-17fdq57 > :first-child, .framer-IwO7R .framer-1mbo1in > :first-child, .framer-IwO7R .framer-vl0mzd > :first-child, .framer-IwO7R .framer-1eq7537 > :first-child, .framer-IwO7R .framer-mlb54p > :first-child, .framer-IwO7R .framer-9l67b5 > :first-child, .framer-IwO7R .framer-1floo12 > :first-child, .framer-IwO7R .framer-lru50f > :first-child, .framer-IwO7R .framer-12zn8g9 > :first-child { margin-top: 0px; } .framer-IwO7R .framer-1bivpm0 > :last-child, .framer-IwO7R .framer-1154jd6 > :last-child, .framer-IwO7R .framer-nskp2m > :last-child, .framer-IwO7R .framer-17fdq57 > :last-child, .framer-IwO7R .framer-1mbo1in > :last-child, .framer-IwO7R .framer-vl0mzd > :last-child, .framer-IwO7R .framer-1eq7537 > :last-child, .framer-IwO7R .framer-mlb54p > :last-child, .framer-IwO7R .framer-9l67b5 > :last-child, .framer-IwO7R .framer-1floo12 > :last-child, .framer-IwO7R .framer-lru50f > :last-child, .framer-IwO7R .framer-12zn8g9 > :last-child { margin-bottom: 0px; } .framer-IwO7R .framer-1154jd6 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-IwO7R .framer-7bu3mx > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-IwO7R .framer-7bu3mx > :first-child { margin-left: 0px; } .framer-IwO7R .framer-7bu3mx > :last-child { margin-right: 0px; } .framer-IwO7R .framer-17fdq57 > *, .framer-IwO7R .framer-vl0mzd > *, .framer-IwO7R .framer-mlb54p > *, .framer-IwO7R .framer-1floo12 > *, .framer-IwO7R .framer-lru50f > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IwO7R .framer-1mbo1in > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-IwO7R .framer-12zn8g9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-IwO7R[data-border=\"true\"]::after, .framer-IwO7R [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8333\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ulru_24ch\":{\"layout\":[\"fixed\",\"fixed\"]},\"jvCw4IpzG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-IwO7R\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8333,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...TopbarFonts,...TickerFonts,...Ticker1Fonts,...ButtonFonts,...CTAFonts,...FeatureCardFonts,...ListFonts,...BlogCardFonts,...FAQAccordionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ulru_24ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jvCw4IpzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"8333\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "fe", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "transformRef", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "TickerFonts", "Ticker", "Ticker1Fonts", "ButtonFonts", "Tnz4seCKc_default", "ImageWithFX", "withFX", "Image2", "CTAFonts", "OlTWqYMo3_default", "MotionDivWithFX", "motion", "FeatureCardFonts", "Kym4ifyAB_default", "ContainerWithFX", "Container", "ListFonts", "bkf_3iqYh_default", "BlogCardFonts", "FIQUCdJNE_default", "FAQAccordionFonts", "UpqEA6qxk_default", "RichTextWithFX", "RichText", "FooterFonts", "M82dauGNX_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "transition3", "animation6", "animation7", "animation8", "animation9", "transition4", "animation10", "animation11", "animation12", "animation13", "animation14", "animation15", "transition5", "animation16", "animation17", "animation18", "transition6", "animation19", "addImageAlt", "image", "alt", "animation20", "animation21", "animation22", "animation23", "animation24", "animation25", "animation26", "animation27", "animation28", "animation29", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Vso23OR6md6meQlvVQ", "idd6meQlvVQ", "pdIJoIqz0GT3lqWZv6", "Tu_Pd0zTZGT3lqWZv6", "idGT3lqWZv6", "pdIJoIqz0hbeEzyPUV", "Tu_Pd0zTZhbeEzyPUV", "idhbeEzyPUV", "Vso23OR6mNVQRl2C5e", "idNVQRl2C5e", "restProps", "ie", "metadata1", "_document_querySelector", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "useRouteElementId", "ref2", "id1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "PropertyOverrides", "optimizeAppear", "optimizeAppearTransformTemplate", "Container", "lWUcIJP0H_default", "Image2", "Ticker", "khK_htTrV_default", "collection", "i", "nWZy3UnCE_default", "collection1", "PathVariablesContext", "x", "RichText", "collection2", "collection3", "Tnz4seCKc_default", "collection4", "collection5", "ImageWithFX", "MotionDivWithFX", "OlTWqYMo3_default", "ContainerWithFX", "Kym4ifyAB_default", "bkf_3iqYh_default", "FIQUCdJNE_default", "UpqEA6qxk_default", "RichTextWithFX", "Link", "collection6", "collection7", "M82dauGNX_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "TopbarFonts", "TickerFonts", "Ticker1Fonts", "ButtonFonts", "CTAFonts", "FeatureCardFonts", "ListFonts", "BlogCardFonts", "FAQAccordionFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
