{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv", "ssg:https://framerusercontent.com/modules/o7kxMNcq1QFbNlxER8ZO/mGYCpj2iAc99jKtNOx5M/CursorImageTrail_Prod.js", "ssg:https://framerusercontent.com/modules/3seiU4PbSnpgXIkpE6xq/3HLXT4M8QRRbG2KsuuR4/TItAiVhP7.js", "ssg:https://framerusercontent.com/modules/kXkjn4MYYERe9GsOuQ8K/okqqzGzDxd6CIpR6SPwp/h4ve3mvKq.js", "ssg:https://framerusercontent.com/modules/jpKItebbGTaa47GPpS0P/TBqimiiYrkj6pPwsJZ0I/VmaaF_n3_.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const updateChildren=(children,properties)=>{return[{...children,props:{...children.props,children:{...children.props.children,props:{...children.props.children.props,children:{...children.props.children.props.children,props:{...children.props.children.props.children.props,...properties}}}}}}];};export const SettingsMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",overflow:\"hidden\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"\u2728\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};export const getBorder=border=>{if(!border)return{border:\"none\"};const{width,color,style}=border;return{borderWidth:width,borderColor:color,borderStyle:style};};export const borderProperty=(title=\"Border\",width=\"0px\",color=\"#fff\")=>({title,type:ControlType.Object,controls:{width:{title:\"Width\",type:ControlType.Padding,defaultValue:width},color:{title:\"Color\",type:ControlType.Color,defaultValue:color},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export const getBoxShadow=property=>{const{x,y,blur,color}=property.shadow;return`${x}px ${y}px ${blur}px ${color}`;};export const shadowProperty={type:ControlType.Object,controls:{color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#bfbfbf\"},x:{title:\"X\",type:ControlType.Number,defaultValue:0,min:-100,max:100},y:{title:\"Y\",type:ControlType.Number,defaultValue:0,min:-100,max:100},blur:{title:\"Blur\",type:ControlType.Number,defaultValue:0,min:0,max:100}}};export const heightProperty={height:{type:ControlType.Enum,defaultValue:\"auto\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:50,hidden(props){return props.height===\"auto\";}}};export const getHeight=property=>{if(property.height===\"auto\"){return property.height;}else{return`${property.heightNumber}px`;}};export const getPageQueryParam=()=>{const urlParams=new URLSearchParams(window.location.search);const pageParam=urlParams.get(\"page\");return pageParam?parseInt(pageParam,10):1;};export const updatePageQueryParam=newPage=>{const url=new URL(window.location.href);url.searchParams.set(\"page\",newPage);window.history.replaceState({},\"\",url.toString());};export const useStore=createStore({initialLimit:undefined,initialOffset:undefined,limit:undefined,offset:undefined,totalItems:undefined,page:1,searchQuery:\"\",totalPages:undefined});export const scrollToTop=(withScroll,scrollTop,scrollBehavior)=>{if(withScroll){window.scrollTo({top:scrollTop,behavior:scrollBehavior});}};\nexport const __FramerMetadata__ = {\"exports\":{\"heightProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updatePageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHeight\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBoxShadow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateChildren\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorder\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SettingsMessage\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"scrollToTop\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";import{SettingsMessage}from\"https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv\";// Custom hook for preloading images\nfunction useImagePreloader(imageUrls){const[imagesPreloaded,setImagesPreloaded]=React.useState(false);React.useEffect(()=>{let isMounted=true;const preloadImages=async()=>{const imagePromises=imageUrls.map(url=>{return new Promise((resolve,reject)=>{const img=new Image;img.src=url;img.onload=resolve;img.onerror=reject;});});try{await Promise.all(imagePromises);if(isMounted){setImagesPreloaded(true);}}catch(error){console.error(\"Failed to preload images:\",error);}};preloadImages();return()=>{isMounted=false;};},[imageUrls]);return imagesPreloaded;}/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function CursorImageTrail({images=[],style={width:100,height:100,radius:0,fit:\"fill\"},frequency=50,visibleFor=1,perspective={enabled:false,value:1e3},animation={in:{from:{opacity:0,scale:.5,blur:8,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0}},to:{opacity:1,scale:1,blur:0,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0}},transition:{type:\"spring\",stiffness:300,damping:30}},out:{opacity:0,scale:.5,blur:8,is3D:\"2D\",rotate2D:0,rotate3D:{x:0,y:0,z:0},transition:{type:\"spring\",stiffness:300,damping:30}}},...props}){const threshold=200-(frequency-1)*199/49;const[mousePos,setMousePos]=React.useState({x:0,y:0});const[isHovering,setIsHovering]=React.useState(false);const[currentImageIndex,setCurrentImageIndex]=React.useState(0);const[activeImages,setActiveImages]=React.useState([]);const[isInViewport,setIsInViewport]=React.useState(false);const componentRef=React.useRef(null);const imagesPreloaded=useImagePreloader(isInViewport?images:[]);React.useEffect(()=>{const observer=new IntersectionObserver(([entry])=>{setIsInViewport(entry.isIntersecting);},{root:null,rootMargin:\"0px\",threshold:.1});if(componentRef.current){observer.observe(componentRef.current);}return()=>{if(componentRef.current){observer.unobserve(componentRef.current);}};},[]);const handleMouseMove=event=>{const rect=event.currentTarget.getBoundingClientRect();const x=event.clientX-rect.left;const y=event.clientY-rect.top;setMousePos({x,y});};const handleMouseEnter=()=>{setIsHovering(true);};const handleMouseLeave=()=>{setIsHovering(false);};React.useEffect(()=>{if(isHovering&&images.length>0){const lastImage=activeImages[activeImages.length-1];const distance=lastImage?Math.hypot(mousePos.x-lastImage.x,mousePos.y-lastImage.y):Infinity;if(distance>threshold){const newImage={id:Math.random(),position:currentImageIndex,x:mousePos.x,y:mousePos.y,createdAt:Date.now(),state:\"entering\"};setActiveImages(prev=>[...prev,newImage]);setCurrentImageIndex(prev=>(prev+1)%images.length);// Schedule exit animation\nsetTimeout(()=>{setActiveImages(prev=>prev.map(img=>img.id===newImage.id?{...img,state:\"exiting\"}:img));},visibleFor*1e3);// Schedule removal from DOM\nsetTimeout(()=>{setActiveImages(prev=>prev.filter(img=>img.id!==newImage.id));},1e4)// 10 seconds\n;}}},[mousePos,isHovering,images,threshold,currentImageIndex,visibleFor]);if(images.length===0){return /*#__PURE__*/_jsx(SettingsMessage,{title:\"Set Up the Component\",description:\"Add images to the component through the 'Images' property on the right panel. Then preview the website, and hover over the component.\",containerStyle:{...props.style,width:\"100%\",height:\"100%\"}});}return /*#__PURE__*/_jsx(Frame,{...props,ref:componentRef,onMouseMove:handleMouseMove,onMouseEnter:handleMouseEnter,onMouseLeave:handleMouseLeave,background:\"\",children:imagesPreloaded&&/*#__PURE__*/_jsx(AnimatePresence,{children:activeImages.map(({id,position,x,y,state})=>/*#__PURE__*/{var _images_position;return _jsx(motion.div,{initial:{opacity:animation.in.from.opacity,scale:animation.in.from.scale,filter:`blur(${animation.in.from.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.in.from.is3D===\"2D\"?animation.in.from.rotate2D:0,rotateX:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.x:0,rotateY:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.y:0,rotateZ:animation.in.from.is3D===\"3D\"?animation.in.from.rotate3D.z:0},animate:state===\"entering\"?{opacity:animation.in.to.opacity,scale:animation.in.to.scale,filter:`blur(${animation.in.to.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.in.to.is3D===\"2D\"?animation.in.to.rotate2D:0,rotateX:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.x:0,rotateY:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.y:0,rotateZ:animation.in.to.is3D===\"3D\"?animation.in.to.rotate3D.z:0}:{opacity:animation.out.opacity,scale:animation.out.scale,filter:`blur(${animation.out.blur}px)`,x:x-style.width/2,y:y-style.height/2,rotate:animation.out.is3D===\"2D\"?animation.out.rotate2D:0,rotateX:animation.out.is3D===\"3D\"?animation.out.rotate3D.x:0,rotateY:animation.out.is3D===\"3D\"?animation.out.rotate3D.y:0,rotateZ:animation.out.is3D===\"3D\"?animation.out.rotate3D.z:0},transition:state===\"entering\"?animation.in.transition:animation.out.transition,style:{position:\"absolute\",width:`${style.width}px`,height:`${style.height}px`,backgroundImage:`url(${(_images_position=images[position])!==null&&_images_position!==void 0?_images_position:\"\"})`,backgroundSize:style.fit===\"fill\"?\"cover\":\"contain\",backgroundPosition:\"center\",backgroundRepeat:\"no-repeat\",borderRadius:`${style.radius}px`,pointerEvents:\"none\",perspective:perspective.enabled?`${perspective.value}px`:\"none\"}},id);})})});}CursorImageTrail.displayName=\"Cursor Image Trail\";addPropertyControls(CursorImageTrail,{images:{type:ControlType.Array,title:\"Images\",propertyControl:{type:ControlType.Image}},style:{type:ControlType.Object,title:\"Style\",controls:{width:{type:ControlType.Number,title:\"Width\",defaultValue:100,min:0,max:1e3,unit:\"px\",step:1,displayStepper:true},height:{type:ControlType.Number,title:\"Height\",defaultValue:100,min:0,max:1e3,unit:\"px\",step:1,displayStepper:true},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:0,min:0,max:500,unit:\"px\",step:1,displayStepper:true},fit:{type:ControlType.Enum,title:\"Type\",options:[\"fill\",\"fit\"],optionTitles:[\"Fill\",\"Fit\"],defaultValue:\"fill\",description:\"Style the images that will appear.\"}}},frequency:{type:ControlType.Number,title:\"Frequency\",defaultValue:35,min:1,max:50,step:1,displayStepper:false,description:\"How frequently these images appear.\"},visibleFor:{type:ControlType.Number,title:\"Visible For\",defaultValue:1,min:.1,max:10,step:.1,unit:\"s\",displayStepper:true,description:\"How long they're visible for before they animate out.\"},animation:{type:ControlType.Object,title:\"Animation\",controls:{in:{type:ControlType.Object,title:\"In\",controls:{from:{type:ControlType.Object,title:\"From\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.5,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:10,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"}}},to:{type:ControlType.Object,title:\"To\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:1,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:1,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:0,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"}}},transition:{type:ControlType.Transition,title:\"Transition\"}}},out:{type:ControlType.Object,title:\"Out\",controls:{opacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.1},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:.5,min:0,max:10,step:.1},blur:{type:ControlType.Number,title:\"Blur\",defaultValue:10,min:0,max:50,step:1,unit:\"px\"},is3D:{type:ControlType.Enum,title:\"Rotation\",options:[\"2D\",\"3D\"],optionTitles:[\"2D\",\"3D\"],defaultValue:\"2D\",displaySegmentedControl:true},rotate2D:{type:ControlType.Number,title:\"2D Rotate\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.is3D===\"3D\"},rotate3D:{type:ControlType.Object,title:\"3D Rotate\",controls:{x:{type:ControlType.Number,title:\"X\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,title:\"Y\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"},z:{type:ControlType.Number,title:\"Z\",defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\"}},hidden:props=>props.is3D===\"2D\"},transition:{type:ControlType.Transition,title:\"Transition\"}}}}},perspective:{type:ControlType.Object,title:\"Perspective\",description:\"More components at [Framer University](https://frameruni.link/cc).\",controls:{enabled:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},value:{type:ControlType.Number,title:\"Value\",defaultValue:1200,min:500,max:5e3,step:10,displayStepper:true,hidden:props=>!props.enabled}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CursorImageTrail\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CursorImageTrail_Prod.map", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/BMcPUq67MZU8DojsE6Sc/Em75ksUUqWhoV4clEREt/a7n16K6Qh.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/cw8daPyg8nBMCeNzCbv5/ahN2WXZ3IWa0AiOUY36e/DN53meMF_.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/DdtikXOTQxSUvE3dSAex/2HkPn8ssXBXa8jUMymoS/kOpKDuOvK.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/QNjBAgDCa9ydbM4bc410/Lt2TyWGvgJ4whA1UwNOk/Kouwfyac8.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/f7uRSUFCyVjXkrud9UCV/X9ylule6TrnNBlzbo8PV/on9nz2dKy.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/ecgspfyfA1Y572fXudea/zZCD9mQZzVK10MXuRTfO/pkVydr67E.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/roIYYUw9zHXfLp2jap9e/iDuotUGAEvA8SxE49j0S/TjemKpILh.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/0rLjJwTcmcL3YIcMmq3o/OZAbMFqed0Alp90xt93i/XmFtfzy_U.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"Ke6UnNPk9\",\"OuFFOlsFi\",\"NqfOWOkLo\"];const serializationHash=\"framer-ckw4n\";const variantClassNames={Ke6UnNPk9:\"framer-v-ce7k9r\",NqfOWOkLo:\"framer-v-fawrf\",OuFFOlsFi:\"framer-v-18t6vxo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"NqfOWOkLo\",Hover:\"OuFFOlsFi\",Inactive:\"Ke6UnNPk9\"};const getProps=({expand,height,id,image,minimize,mouseEnter,text,width,...props})=>{return{...props,AJUPVitW5:image??props.AJUPVitW5??{src:\"https://framerusercontent.com/images/Ql6pmc5EhNCDCf6qZFGhndE47Tc.webp\"},N4VajsJhZ:expand??props.N4VajsJhZ,RyfYTNHwk:mouseEnter??props.RyfYTNHwk,Ut0D8uBut:minimize??props.Ut0D8uBut,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ke6UnNPk9\",YYuAgNeT9:text??props.YYuAgNeT9??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Dear Oliver,\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"I hope you're doing well! I wanted to share my excitement about creating websites with Framer's intuitive no-code platform.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"Let's explore it together!\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"Looking forward to discussing more about our design adventures!\"]})})};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,N4VajsJhZ,Ut0D8uBut,RyfYTNHwk,AJUPVitW5,YYuAgNeT9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ke6UnNPk9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntertuvzh1=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(RyfYTNHwk){const res=await RyfYTNHwk(...args);if(res===false)return false;}});const onTap60ayct=activeVariantCallback(async(...args)=>{if(N4VajsJhZ){const res=await N4VajsJhZ(...args);if(res===false)return false;}});const onTap5n34ha=activeVariantCallback(async(...args)=>{if(Ut0D8uBut){const res=await Ut0D8uBut(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"NqfOWOkLo\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"NqfOWOkLo\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ce7k9r\",className,classNames),\"data-framer-name\":\"Inactive\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ke6UnNPk9\",onMouseEnter:onMouseEntertuvzh1,ref:refBinding,style:{...style},...addPropertyOverrides({NqfOWOkLo:{\"data-framer-name\":\"Active\",\"data-highlight\":undefined,onMouseEnter:undefined},OuFFOlsFi:{\"data-framer-name\":\"Hover\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q0wfhd\",\"data-border\":true,\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"c7y2BSHCa\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-f5a20418-5c0d-4268-91b5-0b92d2ed9cf2, rgb(17, 24, 39))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-49b22e1a-1155-4faf-92dc-21627346bda1, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{NqfOWOkLo:{backgroundColor:\"rgb(255, 255, 255)\"},OuFFOlsFi:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lcgl7\",layoutDependency:layoutDependency,layoutId:\"LYBmBq3CX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:YYuAgNeT9,className:\"framer-riqbl6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bSTvPgImm\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.3},stylesPresetsClassNames:{a:\"framer-styles-preset-k0d4mn\",h1:\"framer-styles-preset-1umy6w9\",h2:\"framer-styles-preset-17m9qih\",h3:\"framer-styles-preset-olfqje\",h4:\"framer-styles-preset-1g1whrh\",h5:\"framer-styles-preset-802f1t\",h6:\"framer-styles-preset-os9ww\",p:\"framer-styles-preset-1w5cnob\"},variants:{NqfOWOkLo:{opacity:1},OuFFOlsFi:{opacity:.5}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:460.5,intrinsicWidth:399.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20),pixelHeight:239,pixelWidth:228,sizes:\"110px\",...toResponsiveImage(AJUPVitW5),...{positionX:\"right\",positionY:\"top\"}},className:\"framer-63izqa\",\"data-framer-name\":\"Stamp\",layoutDependency:layoutDependency,layoutId:\"dD0nZM43e\",style:{scale:1},variants:{NqfOWOkLo:{scale:1.05}},...addPropertyOverrides({NqfOWOkLo:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:460.5,intrinsicWidth:399.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||275)-85),pixelHeight:239,pixelWidth:228,sizes:\"110px\",...toResponsiveImage(AJUPVitW5),...{positionX:\"right\",positionY:\"top\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iqyikx\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"m4RBt2_ji\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l18cf8\",\"data-framer-name\":\"Expand\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"G5FR8WDkC\",onTap:onTap60ayct,style:{backgroundColor:\"var(--token-554be0a9-de8b-4902-91c9-639e565e0d45, rgb(214, 228, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qh1spd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZUUbu8qjB-container\",nodeId:\"ZUUbu8qjB\",rendersWithMotion:true,scopeId:\"TItAiVhP7\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-5b4b7ebe-f44f-4c14-8258-2e151871dd82, rgb(0, 22, 158))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M14 4H20V10M14 10L19.25 4.75M10 14L4.75 19.25M4 14V20H10\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',description:\"\",height:\"100%\",id:\"ZUUbu8qjB\",layoutId:\"ZUUbu8qjB\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12pwmi4\",\"data-framer-name\":\"Minimize\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LELNHIgBK\",onTap:onTap5n34ha,style:{backgroundColor:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-w6aaib-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NcmrhBuBC-container\",nodeId:\"NcmrhBuBC\",rendersWithMotion:true,scopeId:\"TItAiVhP7\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M14 4V10H20M20.25 3.75L15 9M10 20V14H4M3.75 20.25L9 15\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"square\"/> </svg>',description:\"\",height:\"100%\",id:\"NcmrhBuBC\",layoutId:\"NcmrhBuBC\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ckw4n.framer-1yg22zd, .framer-ckw4n .framer-1yg22zd { display: block; }\",\".framer-ckw4n.framer-ce7k9r { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 275px; justify-content: flex-start; overflow: hidden; padding: 20px 36px 36px 36px; position: relative; width: 475px; }\",\".framer-ckw4n .framer-1q0wfhd { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-ckw4n .framer-1lcgl7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ckw4n .framer-riqbl6 { -webkit-user-select: none; flex: 1 0 0px; height: auto; max-width: 78%; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ckw4n .framer-63izqa { aspect-ratio: 1.6923076923076923 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: absolute; right: 72px; top: 20px; width: 110px; z-index: 1; }\",\".framer-ckw4n .framer-iqyikx { flex: none; height: 28px; overflow: visible; position: absolute; right: 20px; top: 20px; width: 28px; z-index: 2; }\",\".framer-ckw4n .framer-1l18cf8 { bottom: 0px; cursor: pointer; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-ckw4n .framer-1qh1spd-container, .framer-ckw4n .framer-w6aaib-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 50%; position: absolute; top: 50%; width: 20px; }\",\".framer-ckw4n .framer-12pwmi4 { aspect-ratio: 1 / 1; bottom: 0px; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ckw4n.framer-ce7k9r, .framer-ckw4n .framer-1lcgl7 { gap: 0px; } .framer-ckw4n.framer-ce7k9r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ckw4n.framer-ce7k9r > :first-child { margin-top: 0px; } .framer-ckw4n.framer-ce7k9r > :last-child { margin-bottom: 0px; } .framer-ckw4n .framer-1lcgl7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ckw4n .framer-1lcgl7 > :first-child { margin-left: 0px; } .framer-ckw4n .framer-1lcgl7 > :last-child { margin-right: 0px; } }\",\".framer-ckw4n.framer-v-fawrf .framer-1lcgl7 { height: 242px; overflow: auto; width: 101%; z-index: 1; }\",\".framer-ckw4n.framer-v-fawrf .framer-riqbl6 { order: 0; }\",\".framer-ckw4n.framer-v-fawrf .framer-63izqa { bottom: 20px; right: 32px; top: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-ckw4n[data-border=\"true\"]::after, .framer-ckw4n [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 275\n * @framerIntrinsicWidth 475\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"OuFFOlsFi\":{\"layout\":[\"fixed\",\"fixed\"]},\"NqfOWOkLo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"N4VajsJhZ\":\"expand\",\"Ut0D8uBut\":\"minimize\",\"RyfYTNHwk\":\"mouseEnter\",\"AJUPVitW5\":\"image\",\"YYuAgNeT9\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTItAiVhP7=withCSS(Component,css,\"framer-ckw4n\");export default FramerTItAiVhP7;FramerTItAiVhP7.displayName=\"Letter\";FramerTItAiVhP7.defaultProps={height:275,width:475};addPropertyControls(FramerTItAiVhP7,{variant:{options:[\"Ke6UnNPk9\",\"OuFFOlsFi\",\"NqfOWOkLo\"],optionTitles:[\"Inactive\",\"Hover\",\"Active\"],title:\"Variant\",type:ControlType.Enum},N4VajsJhZ:{title:\"Expand\",type:ControlType.EventHandler},Ut0D8uBut:{title:\"Minimize\",type:ControlType.EventHandler},RyfYTNHwk:{title:\"Mouse Enter\",type:ControlType.EventHandler},AJUPVitW5:{__defaultAssetReference:\"data:framer/asset-reference,Ql6pmc5EhNCDCf6qZFGhndE47Tc.webp?originalFilename=nAR8omyMFJb2CKH14PQ3M3.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},YYuAgNeT9:{defaultValue:\"<p>Dear Oliver,<br><br>I hope you're doing well! I wanted to share my excitement about creating websites with Framer's intuitive no-code platform.<br><br>Let's explore it together!<br><br>Looking forward to discussing more about our design adventures!</p>\",title:\"Text\",type:ControlType.RichText}});addFonts(FramerTItAiVhP7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SVGFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTItAiVhP7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"275\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"475\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OuFFOlsFi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NqfOWOkLo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"N4VajsJhZ\\\":\\\"expand\\\",\\\"Ut0D8uBut\\\":\\\"minimize\\\",\\\"RyfYTNHwk\\\":\\\"mouseEnter\\\",\\\"AJUPVitW5\\\":\\\"image\\\",\\\"YYuAgNeT9\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TItAiVhP7.map", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Letter from\"https://framerusercontent.com/modules/3seiU4PbSnpgXIkpE6xq/3HLXT4M8QRRbG2KsuuR4/TItAiVhP7.js\";const LetterFonts=getFonts(Letter);const cycleOrder=[\"K5GCvLXIE\",\"ega2sZjB_\",\"fucGyJfos\",\"Ahw7zJST0\",\"YJSIDSbgh\",\"dG6vDOuoG\",\"l4nkEAF9R\"];const serializationHash=\"framer-r4WPS\";const variantClassNames={Ahw7zJST0:\"framer-v-16w3sug\",dG6vDOuoG:\"framer-v-wigl94\",ega2sZjB_:\"framer-v-18gzv0w\",fucGyJfos:\"framer-v-1e1vh4a\",K5GCvLXIE:\"framer-v-139dp45\",l4nkEAF9R:\"framer-v-4b5t35\",YJSIDSbgh:\"framer-v-11m5fci\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1 - Hover\":\"ega2sZjB_\",\"1 - Open\":\"YJSIDSbgh\",\"2 - Hover\":\"fucGyJfos\",\"2 - Open\":\"dG6vDOuoG\",\"3 - Hover\":\"Ahw7zJST0\",\"3 - Open\":\"l4nkEAF9R\",Default:\"K5GCvLXIE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"K5GCvLXIE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K5GCvLXIE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave1uunhkk=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"K5GCvLXIE\");});const N4VajsJhZihpbsb=activeVariantCallback(async(...args)=>{setVariant(\"YJSIDSbgh\");});const Ut0D8uBut12132m1=activeVariantCallback(async(...args)=>{setVariant(\"K5GCvLXIE\");});const RyfYTNHwk21rsgd=activeVariantCallback(async(...args)=>{setVariant(\"ega2sZjB_\");});const N4VajsJhZ7y7670=activeVariantCallback(async(...args)=>{setVariant(\"dG6vDOuoG\");});const RyfYTNHwk1rcebmp=activeVariantCallback(async(...args)=>{setVariant(\"fucGyJfos\");});const N4VajsJhZ1yuy7l1=activeVariantCallback(async(...args)=>{setVariant(\"l4nkEAF9R\");});const RyfYTNHwk182641x=activeVariantCallback(async(...args)=>{setVariant(\"Ahw7zJST0\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"YJSIDSbgh\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"ega2sZjB_\")return false;return true;};const isDisplayed2=()=>{if([\"fucGyJfos\",\"dG6vDOuoG\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"l4nkEAF9R\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"Ahw7zJST0\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-139dp45\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"K5GCvLXIE\",onMouseLeave:onMouseLeave1uunhkk,ref:ref??ref1,style:{...style},...addPropertyOverrides({Ahw7zJST0:{\"data-framer-name\":\"3 - Hover\"},dG6vDOuoG:{\"data-framer-name\":\"2 - Open\",\"data-highlight\":undefined,onMouseLeave:undefined},ega2sZjB_:{\"data-framer-name\":\"1 - Hover\"},fucGyJfos:{\"data-framer-name\":\"2 - Hover\"},l4nkEAF9R:{\"data-framer-name\":\"3 - Open\",\"data-highlight\":undefined,onMouseLeave:undefined},YJSIDSbgh:{\"data-framer-name\":\"1 - Open\",\"data-highlight\":undefined,onMouseLeave:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ud6aaz\",\"data-framer-name\":\"SPACER\",layoutDependency:layoutDependency,layoutId:\"Md37864AM\",style:{opacity:0},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7zxg\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"JQjXW88qx\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iv46zi\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"fEw3Inzlm\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0tb97\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"cMurcLI8u\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p32j9l\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"uD2yIW4TQ\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bge1oq\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"gTBkbdOEa\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-385)/2+0+0)+0+110,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vulyin-container\",layoutDependency:layoutDependency,layoutId:\"aVLCjJYlm-container\",children:/*#__PURE__*/_jsx(Letter,{height:\"100%\",id:\"aVLCjJYlm\",layoutId:\"aVLCjJYlm\",style:{height:\"100%\",width:\"100%\"},variant:\"Ke6UnNPk9\",width:\"100%\",YYuAgNeT9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Dear Oliver,\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"I hope you're doing well! I wanted to share my excitement about creating websites with Framer's intuitive no-code platform.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Let's explore it together!Looking forward to discussing more about our design adventures!\"]})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ljg0pu\",\"data-framer-name\":\"Layer 1\",layoutDependency:layoutDependency,layoutId:\"TntYPseH4\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ho5jl\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"pz8rMzFXJ\"}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-v3evdn\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"rnk32ZR48\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r2ls6q\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"pU4gFm8Q4\"}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xekhes\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"MneVSwnGT\"}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-r8lujr\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"Bqe957cbl\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+110,...addPropertyOverrides({ega2sZjB_:{y:(componentViewport?.y||0)+0+0+88},YJSIDSbgh:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,y:(componentViewport?.y||0)+0+0+44}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-36xbwg-container\",layoutDependency:layoutDependency,layoutId:\"jQS8U3DLM-container\",children:/*#__PURE__*/_jsx(Letter,{AJUPVitW5:addImageAlt({src:\"https://framerusercontent.com/images/6nfyZDEMt3dtJF29SBODWQvCOo.png\",srcSet:\"https://framerusercontent.com/images/6nfyZDEMt3dtJF29SBODWQvCOo.png?scale-down-to=512 512w,https://framerusercontent.com/images/6nfyZDEMt3dtJF29SBODWQvCOo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6nfyZDEMt3dtJF29SBODWQvCOo.png 1093w\"},\"\"),height:\"100%\",id:\"jQS8U3DLM\",layoutId:\"jQS8U3DLM\",N4VajsJhZ:N4VajsJhZihpbsb,RyfYTNHwk:RyfYTNHwk21rsgd,style:{height:\"100%\",width:\"100%\"},Ut0D8uBut:Ut0D8uBut12132m1,variant:\"Ke6UnNPk9\",width:\"100%\",YYuAgNeT9:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h6\",{children:\"2025\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Pentecost Sunday June 8, 2025, the Church of America will unite in the largest synchronized day of water baptism in world history.\"})]}),...addPropertyOverrides({dG6vDOuoG:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,Ut0D8uBut:undefined},ega2sZjB_:{variant:\"OuFFOlsFi\"},l4nkEAF9R:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,Ut0D8uBut:undefined},YJSIDSbgh:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,variant:\"NqfOWOkLo\",YYuAgNeT9:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h6\",{children:\"Baptize America 2025\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Pentecost Sunday June 8, 2025, the Church of America will unite in the largest synchronized day of water baptism in world history.\"})]})}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4pkvt4\",\"data-framer-name\":\"Layer 2\",layoutDependency:layoutDependency,layoutId:\"knOz3mmjG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ncz9tp\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"KFxDIKgcu\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9q13qj\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"c4v7behKT\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mnncw3\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"ct__Mcx6G\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:`calc(${componentViewport?.width||\"100vw\"} * 0.95)`,y:(componentViewport?.y||0)+0+0+66,...addPropertyOverrides({dG6vDOuoG:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`},fucGyJfos:{y:(componentViewport?.y||0)+0+0+44}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nlw476-container\",layoutDependency:layoutDependency,layoutId:\"RBn8R7PSj-container\",children:/*#__PURE__*/_jsx(Letter,{AJUPVitW5:addImageAlt({src:\"https://framerusercontent.com/images/Kr1stuBT8uVf1u2MtBEl3knqmU.svg\"},\"\"),height:\"100%\",id:\"RBn8R7PSj\",layoutId:\"RBn8R7PSj\",N4VajsJhZ:N4VajsJhZ7y7670,RyfYTNHwk:RyfYTNHwk1rcebmp,style:{height:\"100%\",width:\"100%\"},Ut0D8uBut:Ut0D8uBut12132m1,variant:\"Ke6UnNPk9\",width:\"100%\",YYuAgNeT9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{children:\"2024\"})}),...addPropertyOverrides({dG6vDOuoG:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,variant:\"NqfOWOkLo\",YYuAgNeT9:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h6\",{children:\"Baptize California 2024\"}),/*#__PURE__*/_jsx(\"p\",{children:\"May 19 2024 - The Church of California came together to see 12,216 people baptized! When many people gave up on California, God didn't.\"})]})},l4nkEAF9R:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,Ut0D8uBut:undefined},YJSIDSbgh:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,Ut0D8uBut:undefined}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-otzd81\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"w_NaCwU4D\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b9qbps\",\"data-framer-name\":\"Layer 3\",layoutDependency:layoutDependency,layoutId:\"V3T6gtD9T\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11d5732\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"rQtT3VsRz\"}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-cv7amo\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"dBsmoUJIz\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:(componentViewport?.y||0)+0+0+22,...addPropertyOverrides({Ahw7zJST0:{y:(componentViewport?.y||0)+0+0+0},l4nkEAF9R:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,y:(componentViewport?.y||0)+0+0+44}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1reyap6-container\",layoutDependency:layoutDependency,layoutId:\"ohCj_VBIY-container\",children:/*#__PURE__*/_jsx(Letter,{height:\"100%\",id:\"ohCj_VBIY\",layoutId:\"ohCj_VBIY\",N4VajsJhZ:N4VajsJhZ1yuy7l1,RyfYTNHwk:RyfYTNHwk182641x,style:{height:\"100%\",width:\"100%\"},Ut0D8uBut:Ut0D8uBut12132m1,variant:\"Ke6UnNPk9\",width:\"100%\",YYuAgNeT9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{children:\"2023\"})}),...addPropertyOverrides({dG6vDOuoG:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,Ut0D8uBut:undefined},l4nkEAF9R:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,variant:\"NqfOWOkLo\",YYuAgNeT9:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h6\",{children:\"Baptize SoCal 2023\"}),/*#__PURE__*/_jsx(\"p\",{children:\"On May 28, 2023, we witnessed 4,166 people baptized, 300 churches bound together.\"})]})},YJSIDSbgh:{N4VajsJhZ:undefined,RyfYTNHwk:undefined,Ut0D8uBut:undefined}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-phk041\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"HoErs4g2D\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 49.662210211918655%)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-r4WPS.framer-30ybex, .framer-r4WPS .framer-30ybex { display: block; }\",\".framer-r4WPS.framer-139dp45 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-r4WPS .framer-1ud6aaz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; pointer-events: none; position: relative; width: 100%; z-index: 0; }\",\".framer-r4WPS .framer-7zxg, .framer-r4WPS .framer-1iv46zi, .framer-r4WPS .framer-1g0tb97, .framer-r4WPS .framer-1p32j9l, .framer-r4WPS .framer-1bge1oq, .framer-r4WPS .framer-10ho5jl, .framer-r4WPS .framer-v3evdn, .framer-r4WPS .framer-r2ls6q, .framer-r4WPS .framer-1xekhes, .framer-r4WPS .framer-r8lujr, .framer-r4WPS .framer-1ncz9tp, .framer-r4WPS .framer-9q13qj, .framer-r4WPS .framer-1mnncw3, .framer-r4WPS .framer-otzd81, .framer-r4WPS .framer-11d5732, .framer-r4WPS .framer-cv7amo { flex: none; height: 22px; overflow: hidden; pointer-events: none; position: relative; width: 82px; }\",\".framer-r4WPS .framer-vulyin-container { flex: none; height: 275px; position: relative; width: 100%; }\",\".framer-r4WPS .framer-ljg0pu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 5; }\",\".framer-r4WPS .framer-36xbwg-container { flex: none; height: 275px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-r4WPS .framer-4pkvt4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 4; }\",\".framer-r4WPS .framer-nlw476-container { flex: none; height: 275px; pointer-events: auto; position: relative; width: 95%; }\",\".framer-r4WPS .framer-b9qbps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 3; }\",\".framer-r4WPS .framer-1reyap6-container { flex: none; height: 275px; pointer-events: auto; position: relative; width: 90%; }\",\".framer-r4WPS .framer-phk041 { bottom: 0px; flex: none; height: 49%; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-r4WPS.framer-139dp45, .framer-r4WPS .framer-1ud6aaz, .framer-r4WPS .framer-ljg0pu, .framer-r4WPS .framer-4pkvt4, .framer-r4WPS .framer-b9qbps { gap: 0px; } .framer-r4WPS.framer-139dp45 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-r4WPS.framer-139dp45 > :first-child, .framer-r4WPS .framer-1ud6aaz > :first-child, .framer-r4WPS .framer-ljg0pu > :first-child, .framer-r4WPS .framer-4pkvt4 > :first-child, .framer-r4WPS .framer-b9qbps > :first-child { margin-top: 0px; } .framer-r4WPS.framer-139dp45 > :last-child, .framer-r4WPS .framer-1ud6aaz > :last-child, .framer-r4WPS .framer-ljg0pu > :last-child, .framer-r4WPS .framer-4pkvt4 > :last-child, .framer-r4WPS .framer-b9qbps > :last-child { margin-bottom: 0px; } .framer-r4WPS .framer-1ud6aaz > *, .framer-r4WPS .framer-ljg0pu > *, .framer-r4WPS .framer-4pkvt4 > *, .framer-r4WPS .framer-b9qbps > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-r4WPS.framer-v-1e1vh4a .framer-1ncz9tp { order: 1; }\",\".framer-r4WPS.framer-v-1e1vh4a .framer-9q13qj { order: 2; }\",\".framer-r4WPS.framer-v-1e1vh4a .framer-1mnncw3 { height: 23px; order: 4; }\",\".framer-r4WPS.framer-v-1e1vh4a .framer-nlw476-container { order: 3; }\",\".framer-r4WPS.framer-v-11m5fci .framer-ljg0pu, .framer-r4WPS.framer-v-wigl94 .framer-4pkvt4, .framer-r4WPS.framer-v-4b5t35 .framer-b9qbps { z-index: 6; }\",\".framer-r4WPS.framer-v-11m5fci .framer-36xbwg-container, .framer-r4WPS.framer-v-wigl94 .framer-nlw476-container, .framer-r4WPS.framer-v-4b5t35 .framer-1reyap6-container { width: 105%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 385\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ega2sZjB_\":{\"layout\":[\"fixed\",\"auto\"]},\"fucGyJfos\":{\"layout\":[\"fixed\",\"auto\"]},\"Ahw7zJST0\":{\"layout\":[\"fixed\",\"auto\"]},\"YJSIDSbgh\":{\"layout\":[\"fixed\",\"auto\"]},\"dG6vDOuoG\":{\"layout\":[\"fixed\",\"auto\"]},\"l4nkEAF9R\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh4ve3mvKq=withCSS(Component,css,\"framer-r4WPS\");export default Framerh4ve3mvKq;Framerh4ve3mvKq.displayName=\"Letters\";Framerh4ve3mvKq.defaultProps={height:385,width:500};addPropertyControls(Framerh4ve3mvKq,{variant:{options:[\"K5GCvLXIE\",\"ega2sZjB_\",\"fucGyJfos\",\"Ahw7zJST0\",\"YJSIDSbgh\",\"dG6vDOuoG\",\"l4nkEAF9R\"],optionTitles:[\"Default\",\"1 - Hover\",\"2 - Hover\",\"3 - Hover\",\"1 - Open\",\"2 - Open\",\"3 - Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerh4ve3mvKq,[{explicitInter:true,fonts:[]},...LetterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh4ve3mvKq\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"500\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"385\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ega2sZjB_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fucGyJfos\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ahw7zJST0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YJSIDSbgh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dG6vDOuoG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l4nkEAF9R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import CursorImageTrail from\"https://framerusercontent.com/modules/o7kxMNcq1QFbNlxER8ZO/mGYCpj2iAc99jKtNOx5M/CursorImageTrail_Prod.js\";import Letters from\"#framer/local/canvasComponent/h4ve3mvKq/h4ve3mvKq.js\";import NavBar from\"#framer/local/canvasComponent/HAbouYDp5/HAbouYDp5.js\";import ComponentsFeaturesCard3 from\"#framer/local/canvasComponent/hVqZpCcXV/hVqZpCcXV.js\";import FooterMain from\"#framer/local/canvasComponent/r7jNNL1FL/r7jNNL1FL.js\";import ComponentsBadge from\"#framer/local/canvasComponent/ZAoAiZr85/ZAoAiZr85.js\";import StatesList from\"#framer/local/collection/wSP568av_/wSP568av_.js\";import*as sharedStyle3 from\"#framer/local/css/a7n16K6Qh/a7n16K6Qh.js\";import*as sharedStyle5 from\"#framer/local/css/knejNwway/knejNwway.js\";import*as sharedStyle4 from\"#framer/local/css/kOpKDuOvK/kOpKDuOvK.js\";import*as sharedStyle2 from\"#framer/local/css/lUKNzEXdJ/lUKNzEXdJ.js\";import*as sharedStyle1 from\"#framer/local/css/pkVydr67E/pkVydr67E.js\";import*as sharedStyle6 from\"#framer/local/css/TjemKpILh/TjemKpILh.js\";import*as sharedStyle from\"#framer/local/css/XmFtfzy_U/XmFtfzy_U.js\";import metadataProvider from\"#framer/local/webPageMetadata/VmaaF_n3_/VmaaF_n3_.js\";const NavBarFonts=getFonts(NavBar);const NavBarWithVariantAppearEffect=withVariantAppearEffect(NavBar);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const CursorImageTrailFonts=getFonts(CursorImageTrail);const TickerFonts=getFonts(Ticker);const ComponentsFeaturesCard3Fonts=getFonts(ComponentsFeaturesCard3);const VimeoFonts=getFonts(Vimeo);const MotionDivWithFX=withFX(motion.div);const LettersFonts=getFonts(Letters);const ComponentsBadgeFonts=getFonts(ComponentsBadge);const FooterMainFonts=getFonts(FooterMain);const breakpoints={bDoCyrju4:\"(max-width: 809px)\",I57oZBY2H:\"(min-width: 1100px) and (max-width: 1919px)\",TY7lw38ch:\"(min-width: 810px) and (max-width: 1099px)\",xHxDG4i8V:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zf2Kt\";const variantClassNames={bDoCyrju4:\"framer-v-19fqsjz\",I57oZBY2H:\"framer-v-11alcrs\",TY7lw38ch:\"framer-v-1l28o9w\",xHxDG4i8V:\"framer-v-z2efpy\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition2={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition3={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const transition4={damping:80,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition5={damping:80,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:80};const transition6={damping:80,delay:.4,mass:1,stiffness:300,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:80};const transition7={delay:0,duration:.7,ease:[.12,.23,.5,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:80};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition8={damping:80,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:80};const transition9={damping:80,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:80};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"xHxDG4i8V\",Desktop:\"I57oZBY2H\",Phone:\"bDoCyrju4\",Tablet:\"TY7lw38ch\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"I57oZBY2H\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ODNz6JjQeBuGQ73zpf,h6XDPb666BuGQ73zpf,rB4plFKy_BuGQ73zpf,idBuGQ73zpf,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"HejBpCQFr\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"BQxV1tkqZ\");const ref3=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId2=useRouteElementId(\"HB98hvzXW\");const elementId3=useRouteElementId(\"lBJ83n1RU\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"dEWLQkwzB\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"I57oZBY2H\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-11alcrs\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{__framer__styleAppearEffectEnabled:undefined},TY7lw38ch:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g6248g-container\",layoutScroll:true,nodeId:\"T1IldD1gz\",rendersWithMotion:true,scopeId:\"VmaaF_n3_\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{__framer__targets:[{ref:ref1,target:\"TcoTGFxUV\"}],variant:\"aAAUUVmEM\"},TY7lw38ch:{variant:\"aAAUUVmEM\"},xHxDG4i8V:{variant:\"Y4GrY3XWa\"}},children:/*#__PURE__*/_jsx(NavBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"OKvirCCTj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"T1IldD1gz\",layoutId:\"T1IldD1gz\",style:{width:\"100%\"},variant:\"cGPATZmjP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxcchw\",\"data-framer-name\":\"About Header Section\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gfgsax\",\"data-framer-name\":\"Section \",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15gh2wy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE1vcmkgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"PP Mori SemiBold\", \"PP Mori SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-914f4a2b-1c37-468f-ac52-1cf3d8ff44de, rgb(29, 61, 20))\"},children:\"June 8, 2025\"})}),className:\"framer-7sr2rl\",\"data-framer-name\":\"Paragraph\",fonts:[\"CUSTOM;PP Mori SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{background:{alt:\"\",fit:\"fill\",pixelHeight:230,pixelWidth:2093,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png\",srcSet:\"https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png 2093w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:230,pixelWidth:2093,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 80px, 1px)`,src:\"https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png\",srcSet:\"https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png?scale-down-to=512 512w,https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gLZmt7dG0qvXrEZR4QpZFmufaNM.png 2093w\"},className:\"framer-nj85yi\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-os9ww\",\"data-styles-preset\":\"XmFtfzy_U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5b4b7ebe-f44f-4c14-8258-2e151871dd82, rgb(0, 22, 158))\"},children:\"A movement by the local church, for the local church.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-os9ww\",\"data-styles-preset\":\"XmFtfzy_U\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5b4b7ebe-f44f-4c14-8258-2e151871dd82, rgb(0, 22, 158))\"},children:\"A movement by the local church, for the local church.\"})}),className:\"framer-9k7h9o\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bdoel8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"d87E5AShB\",scopeId:\"VmaaF_n3_\",children:/*#__PURE__*/_jsx(CursorImageTrail,{animation:{in:{from:{blur:10,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.5},to:{blur:0,is3D:\"2D\",opacity:1,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:1},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},out:{blur:10,is3D:\"2D\",opacity:0,rotate2D:0,rotate3D:{x:0,y:0,z:0},scale:.5,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}}},frequency:30,height:\"100%\",id:\"d87E5AShB\",images:[\"https://framerusercontent.com/images/DlYTyKk15hXX2Ph49mbuTF9DoY.jpg\",\"https://framerusercontent.com/images/Hhy9bDxHAZXKXh7tXePm55g8zac.jpg\",\"https://framerusercontent.com/images/EirR0uoekcZXuTpwhlPBleRjb4.jpg\",\"https://framerusercontent.com/images/9mtiWBOnOShRDPz0noGZdSDXk.jpg\",\"https://framerusercontent.com/images/TF2nj4NrjL0r47jkkrJ7GLRsK04.jpg\",\"https://framerusercontent.com/images/yIGTiVAikD5eETzHVCFoqZzM7w.jpg\",\"https://framerusercontent.com/images/IzB7aeUTIyrQB0pOxa5sckuQA4.jpg\",\"https://framerusercontent.com/images/fz389dBAM6BtztV4SdXAL0aX9k.jpg\",\"https://framerusercontent.com/images/PsTyJNHgRD00Gf9rU0kc1i2kj4.png\",\"https://framerusercontent.com/images/Eoa9ac74P6nhkCs07xGOXrDm4.jpg\"],layoutId:\"d87E5AShB\",perspective:{enabled:false,value:1200},style:{fit:\"fill\",height:150,radius:0,width:100},visibleFor:.6,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ucbslk-container\",\"data-framer-name\":\"Ticker Right\",isAuthoredByUser:true,isModuleExternal:true,name:\"Ticker Right\",nodeId:\"U2JavUZyQ\",scopeId:\"VmaaF_n3_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{direction:\"left\"},xHxDG4i8V:{direction:\"left\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:5,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"U2JavUZyQ\",layoutId:\"U2JavUZyQ\",name:\"Ticker Right\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12f398v\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hoi3qk\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BuGQ73zpf\",data:StatesList,type:\"Collection\"},select:[{collection:\"BuGQ73zpf\",name:\"ODNz6JjQe\",type:\"Identifier\"},{collection:\"BuGQ73zpf\",name:\"h6XDPb666\",type:\"Identifier\"},{collection:\"BuGQ73zpf\",name:\"rB4plFKy_\",type:\"Identifier\"},{collection:\"BuGQ73zpf\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"BuGQ73zpf\",name:\"JNP6fzI7x\",type:\"Identifier\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({h6XDPb666:h6XDPb666BuGQ73zpf,id:idBuGQ73zpf,ODNz6JjQe:ODNz6JjQeBuGQ73zpf,rB4plFKy_:rB4plFKy_BuGQ73zpf},index)=>{ODNz6JjQeBuGQ73zpf??=\"\";h6XDPb666BuGQ73zpf??=0;rB4plFKy_BuGQ73zpf??=\"\";const textContent=numberToString(h6XDPb666BuGQ73zpf,{compactDisplay:\"short\",locale:\"\",notation:\"compact\",style:\"decimal\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`BuGQ73zpf-${idBuGQ73zpf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rB4plFKy_:rB4plFKy_BuGQ73zpf},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ewonfl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rsa548\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ohuong\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pcjbu1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",children:\"Content\"})}),className:\"framer-1o9oc9a\",\"data-framer-name\":\"State\",fonts:[\"Inter\"],text:ODNz6JjQeBuGQ73zpf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14m9g5l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3q14wj\",\"data-styles-preset\":\"lUKNzEXdJ\",children:\"NaN\"})}),className:\"framer-zkpgrn\",\"data-framer-name\":\"State\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})},idBuGQ73zpf);})})})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{\"data-framer-name\":\"Phone\"},TY7lw38ch:{\"data-framer-name\":\"Tablet\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-65clw4\",\"data-framer-name\":\"About\",id:elementId2,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-82yhzo\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jbi6fs\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xxfj2g\",\"data-framer-name\":\"Section Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ubjomr\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TY7lw38ch:{__framer__animate:{transition:transition4},__framer__exit:animation4}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3q14wj\",\"data-styles-preset\":\"lUKNzEXdJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-89ddc9b7-829f-4db2-8461-b23d86da39cc, rgb(177, 208, 255))\"},children:\"part of Cover the Earth Ministries.\"})}),className:\"framer-a5q526\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-olfqje\",\"data-styles-preset\":\"a7n16K6Qh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-554be0a9-de8b-4902-91c9-639e565e0d45, rgb(214, 228, 255))\"},children:\"Baptize America is A Non-Profit Started By The Local Church For The Local Church To Build The Kingdom. \"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-olfqje\",\"data-styles-preset\":\"a7n16K6Qh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-554be0a9-de8b-4902-91c9-639e565e0d45, rgb(214, 228, 255))\"},children:\"Baptize America is A Non-Profit Started By The Local Church For The Local Church To Build The Kingdom. \"})}),className:\"framer-1k1th2p\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{\"data-framer-name\":\"Phone\"},TY7lw38ch:{\"data-framer-name\":\"Tablet\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ljiiv2\",\"data-framer-name\":\"Features/Features 03\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ata32i\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{width:undefined},TY7lw38ch:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 4, 220px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gsuay4-container\",id:\"gsuay4\",nodeId:\"LavHSbd1s\",rendersWithMotion:true,scopeId:\"VmaaF_n3_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentsFeaturesCard3,{AG4BDEmf7:\"Pentecost Sunday\",height:\"100%\",I09XFUB_J:\"CalendarCheck\",id:\"LavHSbd1s\",kQnouQ_I3:\"Many churches, one mission\",layoutId:\"LavHSbd1s\",style:{width:\"100%\"},variant:\"yZP2Yr_7H\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nlzglp-container\",nodeId:\"frZowWqre\",rendersWithMotion:true,scopeId:\"VmaaF_n3_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{style:{width:\"100%\"}},TY7lw38ch:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsFeaturesCard3,{AG4BDEmf7:\"Unity in America\",height:\"100%\",I09XFUB_J:\"Flag\",id:\"frZowWqre\",kQnouQ_I3:\"Local & National Events \",layoutId:\"frZowWqre\",variant:\"yZP2Yr_7H\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wk7n5y-container\",nodeId:\"kNADwRJIt\",rendersWithMotion:true,scopeId:\"VmaaF_n3_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{style:{width:\"100%\"}},TY7lw38ch:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsFeaturesCard3,{AG4BDEmf7:\"Interdenominational\",height:\"100%\",I09XFUB_J:\"Pentagon\",id:\"kNADwRJIt\",kQnouQ_I3:\"Over 100 denominations united\",layoutId:\"kNADwRJIt\",variant:\"yZP2Yr_7H\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kp0y0o-container\",nodeId:\"MPKjfoZya\",rendersWithMotion:true,scopeId:\"VmaaF_n3_\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{style:{width:\"100%\"}},TY7lw38ch:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentsFeaturesCard3,{AG4BDEmf7:\"16,000+  Baptized\",height:\"100%\",I09XFUB_J:\"Waves\",id:\"MPKjfoZya\",kQnouQ_I3:\"In 24 months\",layoutId:\"MPKjfoZya\",variant:\"yZP2Yr_7H\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{\"data-framer-name\":\"Phone\"},TY7lw38ch:{\"data-framer-name\":\"Tablet\"}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yyber6\",\"data-framer-name\":\"Content/Content 63\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xuw4gd\",\"data-framer-name\":\"Content Section\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4o8eq8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f5xeb8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yxd93m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3q14wj\",\"data-styles-preset\":\"lUKNzEXdJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"OUR STORY\"})})}),className:\"framer-1g8tat\",\"data-framer-name\":\"We thrive on pushing boundaries and thinking outside the box. Our team is driven by a passion for creativity and a commitment to delivering innovative solutions that make an impact. We believe in the power of collaboration. We work closely with our clients, involving them in every step of the creative process. Your vision and input are invaluable to us, and together, we can achieve remarkable results.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17m9qih\",\"data-styles-preset\":\"kOpKDuOvK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, rgb(255, 255, 255))\"},children:\"FROM VISION TO REALITY\"})}),className:\"framer-1aaz41w\",\"data-framer-name\":\"Results-Driven Approach\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"On May 28, 2023, we witnessed 4 ,166 people baptized, 300 churches bound together under the doctrine that all believers hold true, baptizing all who believe, making disciples of all nations. Baptize SoCal was just the beginning.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The momentum exploded. On May 19 2024, the Church of California came together to see 12,216 people baptized! When many people gave up on California, God didn't.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get ready for Baptize America. Pentecost Sunday June 8, 2025, the Church of America will unite in the largest synchronized day of water baptism in world history.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"This is not about any single church. It's about churches across the nation united, pursuing the fulfillment of the Great Commission. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"On Pentecost Sunday 2025, our nation and the nations of the earth will bear witness that God is not done with America. It will be saved. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"If God can do it in California, He can do it in any state. And if He can do it in America, He can do it in any other nation in the world. Join the movement today.\"})]}),className:\"framer-6x37qs\",\"data-framer-name\":\"We thrive on pushing boundaries and thinking outside the box. Our team is driven by a passion for creativity and a commitment to delivering innovative solutions that make an impact. We believe in the power of collaboration. We work closely with our clients, involving them in every step of the creative process. Your vision and input are invaluable to us, and together, we can achieve remarkable results.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8acv60-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xoit7JQe1\",scopeId:\"VmaaF_n3_\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 21, 158, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"xoit7JQe1\",isMixedBorderRadius:false,layoutId:\"xoit7JQe1\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/948088351?transparent=1\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xgnmb2\",\"data-framer-name\":\"Abstract Gradient Middle\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{\"data-framer-name\":\"Phone\"},TY7lw38ch:{\"data-framer-name\":\"Tablet\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ap01vm\",\"data-framer-name\":\"Our History\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i0y7px\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-izer9x\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t5q6rj\",\"data-framer-name\":\"Section Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12sbtqi\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3rlgm\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3q14wj\",\"data-styles-preset\":\"lUKNzEXdJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-62aae436-0dcd-4110-8d7d-669a91b828ac, rgb(89, 144, 255))\"},children:\"From Southern California to the Nation\"})}),className:\"framer-zxal17\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],style:{transformPerspective:1200},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-olfqje\",\"data-styles-preset\":\"a7n16K6Qh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5b4b7ebe-f44f-4c14-8258-2e151871dd82, rgb(0, 22, 158))\"},children:\"Our History\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-olfqje\",\"data-styles-preset\":\"a7n16K6Qh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5b4b7ebe-f44f-4c14-8258-2e151871dd82, rgb(0, 22, 158))\"},children:\"Our History\"})}),className:\"framer-jagob4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rxmby0\",\"data-styles-preset\":\"knejNwway\",style:{\"--framer-text-alignment\":\"center\"},children:\"What started with a vision from God, has turned into a nationwide movement.\"})}),className:\"framer-1bl67vy\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{width:`min(min(${componentViewport?.width||\"100vw\"} - 32px, 1280px), 700px)`},TY7lw38ch:{width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1280px), 700px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:385,width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 160px, 700px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10xf0zn-container\",nodeId:\"ZwOcVQn8k\",scopeId:\"VmaaF_n3_\",children:/*#__PURE__*/_jsx(Letters,{height:\"100%\",id:\"ZwOcVQn8k\",layoutId:\"ZwOcVQn8k\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"K5GCvLXIE\",width:\"100%\"})})})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{\"data-framer-name\":\"Phone\"},TY7lw38ch:{\"data-framer-name\":\"Tablet\"}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oy441w\",\"data-framer-name\":\"Logos/Logos 05\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qlis8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-crlq92\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-148mmuc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1npipvs\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5lzi2z\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dzbrze-container\",nodeId:\"IFW4V1XLv\",scopeId:\"VmaaF_n3_\",children:/*#__PURE__*/_jsx(ComponentsBadge,{D2jRnfGwK:6,DXClgl2J3:\"var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, rgb(255, 255, 255))\",height:\"100%\",id:\"IFW4V1XLv\",layoutId:\"IFW4V1XLv\",LcJ1W7bEe:\"var(--token-5b4b7ebe-f44f-4c14-8258-2e151871dd82, rgb(0, 22, 158))\",qIWJFFokM:\"var(--token-5b4b7ebe-f44f-4c14-8258-2e151871dd82, rgb(0, 22, 158))\",R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"UNITY\",SA9jAg9_n:false,variant:\"i_NHi7HQZ\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"chevron-right\",xKUAtX22H:\"var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, rgb(255, 255, 255))\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g1whrh\",\"data-styles-preset\":\"TjemKpILh\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, rgb(255, 255, 255))\"},children:\"Many Churches, One Mission\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, rgb(255, 255, 255))\"},children:\"Join churches across the nation who have united for the world\u2019s largest synchronized water baptism on Sunday, June 8, 2025.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1g1whrh\",\"data-styles-preset\":\"TjemKpILh\",style:{\"--framer-text-color\":\"var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, rgb(255, 255, 255))\"},children:\"Many Churches, One Mission\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w5cnob\",\"data-styles-preset\":\"pkVydr67E\",style:{\"--framer-text-color\":\"var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, rgb(255, 255, 255))\"},children:\"Join churches across the nation who have united for the world\u2019s largest synchronized water baptism on Sunday, June 8, 2025.\"})]}),className:\"framer-9t0j9k\",\"data-framer-name\":\"Design your site in minutes with Clonify\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jcqiog\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-117x3js\",\"data-framer-name\":\"Row 01\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wmgpep\",\"data-framer-name\":\"Logo Box\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:114,pixelHeight:119,pixelWidth:366,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MshfDf65HTxI1IpJKsmgWFN51g.png\"},className:\"framer-59ml2y\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-agu2x6\",\"data-framer-name\":\"Logo Box\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:132,pixelHeight:327,pixelWidth:406,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hNRxMqsMD1eU7M4rZ319vruwLM.png\"},className:\"framer-owyp0b\",\"data-framer-name\":\"Logo\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10ejvd2\",\"data-framer-name\":\"Row 01\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-owyudy\",\"data-framer-name\":\"Logo Box\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:114,pixelHeight:525,pixelWidth:625,positionX:\"center\",positionY:\"center\",sizes:\"173px\",src:\"https://framerusercontent.com/images/G9Goq4GUMPwPEEdVNsFDxC0Wfo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/G9Goq4GUMPwPEEdVNsFDxC0Wfo.png?scale-down-to=512 512w,https://framerusercontent.com/images/G9Goq4GUMPwPEEdVNsFDxC0Wfo.png 625w\"},className:\"framer-1ugjcb1\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nie7vy\",\"data-framer-name\":\"Logo Box\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:114,pixelHeight:207,pixelWidth:207,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LC4Etc6SIMh11VPn4vfe8swW2QM.png\"},className:\"framer-1mnr703\",\"data-framer-name\":\"Logo\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y3gv98\",\"data-framer-name\":\"Row 01\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h9t0wu\",\"data-framer-name\":\"Logo Box\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:114,pixelHeight:79,pixelWidth:697,positionX:\"center\",positionY:\"center\",sizes:\"173px\",src:\"https://framerusercontent.com/images/6flFBURfDPoF63OrrcaHKRKx0c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6flFBURfDPoF63OrrcaHKRKx0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/6flFBURfDPoF63OrrcaHKRKx0c.png 697w\"},className:\"framer-aeq9ci\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18x3bj1\",\"data-framer-name\":\"Logo Box\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:114,pixelHeight:151,pixelWidth:906,positionX:\"center\",positionY:\"center\",sizes:\"221px\",src:\"https://framerusercontent.com/images/56kci7UQoLJGHiZa6HZqWaOw90k.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/56kci7UQoLJGHiZa6HZqWaOw90k.png?scale-down-to=512 512w,https://framerusercontent.com/images/56kci7UQoLJGHiZa6HZqWaOw90k.png 906w\"},className:\"framer-saphcg\",\"data-framer-name\":\"Logo\"})})]})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:761,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nifn13-container\",nodeId:\"FsaCPaaCI\",scopeId:\"VmaaF_n3_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bDoCyrju4:{variant:\"tvGSpd4aC\"}},children:/*#__PURE__*/_jsx(FooterMain,{height:\"100%\",id:\"FsaCPaaCI\",layoutId:\"FsaCPaaCI\",style:{width:\"100%\"},variant:\"vORLnVfMI\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zf2Kt.framer-1syqotv, .framer-zf2Kt .framer-1syqotv { display: block; }\",\".framer-zf2Kt.framer-11alcrs { 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: 1100px; }\",\".framer-zf2Kt .framer-1g6248g-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",'.framer-zf2Kt .framer-sxcchw { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-30fb77e0-7703-415f-8b70-5d0dca061c94, #e5f2ff) /* {\"name\":\"primary/100\"} */ 0%, rgba(249, 252, 255, 1) 68.01801801801803%, var(--token-2546f2ec-502d-4b32-8634-ef8a4d8c3ed0, rgb(253, 253, 253)) /* {\"name\":\"dark/0\"} */ 75.06953828828829%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }',\".framer-zf2Kt .framer-gfgsax { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; min-height: 800px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-15gh2wy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-zf2Kt .framer-7sr2rl { flex: none; height: auto; max-width: 350px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zf2Kt .framer-nj85yi { aspect-ratio: 10.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 91px); position: relative; width: 100%; }\",\".framer-zf2Kt .framer-9k7h9o, .framer-zf2Kt .framer-a5q526, .framer-zf2Kt .framer-1k1th2p, .framer-zf2Kt .framer-1g8tat, .framer-zf2Kt .framer-1aaz41w, .framer-zf2Kt .framer-jagob4, .framer-zf2Kt .framer-9t0j9k { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zf2Kt .framer-1bdoel8-container { flex: none; height: 800px; left: calc(50.00000000000002% - 1120px / 2); position: absolute; top: calc(50.00000000000002% - 800px / 2); width: 1120px; z-index: 0; }\",\".framer-zf2Kt .framer-ucbslk-container { flex: none; height: 26px; left: calc(50.00000000000002% - 1440px / 2); position: absolute; top: calc(98.5227272727273% - 26px / 2); width: 1440px; z-index: 1; }\",\".framer-zf2Kt .framer-12f398v { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 6px; position: relative; width: min-content; }\",\".framer-zf2Kt .framer-1hoi3qk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-zf2Kt .framer-1ewonfl { 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: min-content; }\",\".framer-zf2Kt .framer-rsa548 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-zf2Kt .framer-1ohuong { aspect-ratio: 1 / 1; background-color: var(--token-996ab9a2-86fe-4aea-8944-17fbf338a16f, #c2dbff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zf2Kt .framer-pcjbu1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zf2Kt .framer-1o9oc9a, .framer-zf2Kt .framer-zkpgrn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zf2Kt .framer-14m9g5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zf2Kt .framer-65clw4 { align-content: center; align-items: center; background-color: var(--token-85e8d4e9-642a-4a41-9cad-e47f11ac7139, #00169e); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 96px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-82yhzo, .framer-zf2Kt .framer-i0y7px { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-jbi6fs, .framer-zf2Kt .framer-izer9x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-xxfj2g, .framer-zf2Kt .framer-t5q6rj { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; z-index: 2; }\",\".framer-zf2Kt .framer-1ubjomr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 850px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-ljiiv2 { align-content: center; align-items: center; background-color: var(--token-5e357dd0-0002-46c1-ad2e-9b4c046b7746, #1f1f1f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-1ata32i { display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(220px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-gsuay4-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-nlzglp-container, .framer-zf2Kt .framer-1wk7n5y-container, .framer-zf2Kt .framer-1kp0y0o-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: fit-content; }\",\".framer-zf2Kt .framer-1yyber6 { align-content: center; align-items: center; background-color: var(--token-3b9e3b89-3bb7-4e47-9469-f4978076121f, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-1xuw4gd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-zf2Kt .framer-4o8eq8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 710px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zf2Kt .framer-f5xeb8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-zf2Kt .framer-yxd93m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-6x37qs { flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zf2Kt .framer-8acv60-container { aspect-ratio: 1.5817409766454353 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1100px); left: -399px; opacity: 0.2; position: absolute; right: -400px; top: -170px; z-index: 0; }\",\".framer-zf2Kt .framer-1xgnmb2 { background: linear-gradient(259deg, rgba(255, 255, 255, 0.65) 6.445312500000005%, rgba(37, 64, 110, 0.7) 41.392173423423415%, rgba(0, 21, 158, 0.56) 68.47550675675676%); bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-zf2Kt .framer-ap01vm { align-content: center; align-items: center; background-color: var(--token-d2ab8007-8d8a-4991-958f-56c3dcbf90e0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 96px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-12sbtqi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 688px; }\",\".framer-zf2Kt .framer-z3rlgm { flex: none; height: 20px; overflow: hidden; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-zxal17 { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 688px; word-break: break-word; word-wrap: break-word; }\",\".framer-zf2Kt .framer-1bl67vy { flex: none; height: auto; max-width: 430px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zf2Kt .framer-10xf0zn-container { flex: none; height: auto; max-width: 700px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-1oy441w { align-content: center; align-items: center; background-color: var(--token-85e8d4e9-642a-4a41-9cad-e47f11ac7139, #00169e); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-18qlis8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-crlq92 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-zf2Kt .framer-148mmuc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-1npipvs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-5lzi2z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zf2Kt .framer-dzbrze-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zf2Kt .framer-jcqiog { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 623px; }\",\".framer-zf2Kt .framer-117x3js, .framer-zf2Kt .framer-10ejvd2, .framer-zf2Kt .framer-y3gv98 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",'.framer-zf2Kt .framer-1wmgpep, .framer-zf2Kt .framer-agu2x6, .framer-zf2Kt .framer-owyudy, .framer-zf2Kt .framer-nie7vy, .framer-zf2Kt .framer-1h9t0wu, .framer-zf2Kt .framer-18x3bj1 { align-content: center; align-items: center; background: linear-gradient(52deg, var(--token-554be0a9-de8b-4902-91c9-639e565e0d45, #d6e4ff) /* {\"name\":\"primary/3\"} */ -6%, rgb(255, 255, 255) 27.027027027027028%, rgb(255, 255, 255) 63.985078828828826%, var(--token-554be0a9-de8b-4902-91c9-639e565e0d45, rgb(214, 228, 255)) /* {\"name\":\"primary/3\"} */ 83.33333333333334%, var(--token-89ddc9b7-829f-4db2-8461-b23d86da39cc, rgb(177, 208, 255)) /* {\"name\":\"primary/5\"} */ 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 130px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-zf2Kt .framer-59ml2y { flex: none; height: 70px; position: relative; width: 173px; }\",\".framer-zf2Kt .framer-owyp0b { flex: none; height: 98px; position: relative; width: 174px; }\",\".framer-zf2Kt .framer-1ugjcb1, .framer-zf2Kt .framer-1mnr703 { flex: none; height: 88px; position: relative; width: 173px; }\",\".framer-zf2Kt .framer-aeq9ci { flex: none; height: 44px; position: relative; width: 173px; }\",\".framer-zf2Kt .framer-saphcg { flex: none; height: 44px; position: relative; width: 221px; }\",\".framer-zf2Kt .framer-1nifn13-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zf2Kt.framer-11alcrs, .framer-zf2Kt .framer-sxcchw, .framer-zf2Kt .framer-gfgsax, .framer-zf2Kt .framer-15gh2wy, .framer-zf2Kt .framer-12f398v, .framer-zf2Kt .framer-1hoi3qk, .framer-zf2Kt .framer-1ewonfl, .framer-zf2Kt .framer-rsa548, .framer-zf2Kt .framer-pcjbu1, .framer-zf2Kt .framer-14m9g5l, .framer-zf2Kt .framer-65clw4, .framer-zf2Kt .framer-82yhzo, .framer-zf2Kt .framer-jbi6fs, .framer-zf2Kt .framer-xxfj2g, .framer-zf2Kt .framer-1ubjomr, .framer-zf2Kt .framer-ljiiv2, .framer-zf2Kt .framer-1yyber6, .framer-zf2Kt .framer-1xuw4gd, .framer-zf2Kt .framer-4o8eq8, .framer-zf2Kt .framer-f5xeb8, .framer-zf2Kt .framer-yxd93m, .framer-zf2Kt .framer-ap01vm, .framer-zf2Kt .framer-i0y7px, .framer-zf2Kt .framer-izer9x, .framer-zf2Kt .framer-t5q6rj, .framer-zf2Kt .framer-12sbtqi, .framer-zf2Kt .framer-1oy441w, .framer-zf2Kt .framer-crlq92, .framer-zf2Kt .framer-148mmuc, .framer-zf2Kt .framer-1npipvs, .framer-zf2Kt .framer-5lzi2z, .framer-zf2Kt .framer-jcqiog, .framer-zf2Kt .framer-117x3js, .framer-zf2Kt .framer-1wmgpep, .framer-zf2Kt .framer-agu2x6, .framer-zf2Kt .framer-10ejvd2, .framer-zf2Kt .framer-owyudy, .framer-zf2Kt .framer-nie7vy, .framer-zf2Kt .framer-y3gv98, .framer-zf2Kt .framer-1h9t0wu, .framer-zf2Kt .framer-18x3bj1 { gap: 0px; } .framer-zf2Kt.framer-11alcrs > *, .framer-zf2Kt .framer-yxd93m > *, .framer-zf2Kt .framer-1wmgpep > *, .framer-zf2Kt .framer-agu2x6 > *, .framer-zf2Kt .framer-owyudy > *, .framer-zf2Kt .framer-nie7vy > *, .framer-zf2Kt .framer-1h9t0wu > *, .framer-zf2Kt .framer-18x3bj1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zf2Kt.framer-11alcrs > :first-child, .framer-zf2Kt .framer-15gh2wy > :first-child, .framer-zf2Kt .framer-12f398v > :first-child, .framer-zf2Kt .framer-65clw4 > :first-child, .framer-zf2Kt .framer-82yhzo > :first-child, .framer-zf2Kt .framer-jbi6fs > :first-child, .framer-zf2Kt .framer-xxfj2g > :first-child, .framer-zf2Kt .framer-1ubjomr > :first-child, .framer-zf2Kt .framer-ljiiv2 > :first-child, .framer-zf2Kt .framer-1yyber6 > :first-child, .framer-zf2Kt .framer-4o8eq8 > :first-child, .framer-zf2Kt .framer-f5xeb8 > :first-child, .framer-zf2Kt .framer-yxd93m > :first-child, .framer-zf2Kt .framer-ap01vm > :first-child, .framer-zf2Kt .framer-i0y7px > :first-child, .framer-zf2Kt .framer-izer9x > :first-child, .framer-zf2Kt .framer-t5q6rj > :first-child, .framer-zf2Kt .framer-12sbtqi > :first-child, .framer-zf2Kt .framer-1oy441w > :first-child, .framer-zf2Kt .framer-crlq92 > :first-child, .framer-zf2Kt .framer-1npipvs > :first-child, .framer-zf2Kt .framer-5lzi2z > :first-child, .framer-zf2Kt .framer-jcqiog > :first-child, .framer-zf2Kt .framer-1wmgpep > :first-child, .framer-zf2Kt .framer-agu2x6 > :first-child, .framer-zf2Kt .framer-owyudy > :first-child, .framer-zf2Kt .framer-nie7vy > :first-child, .framer-zf2Kt .framer-1h9t0wu > :first-child, .framer-zf2Kt .framer-18x3bj1 > :first-child { margin-top: 0px; } .framer-zf2Kt.framer-11alcrs > :last-child, .framer-zf2Kt .framer-15gh2wy > :last-child, .framer-zf2Kt .framer-12f398v > :last-child, .framer-zf2Kt .framer-65clw4 > :last-child, .framer-zf2Kt .framer-82yhzo > :last-child, .framer-zf2Kt .framer-jbi6fs > :last-child, .framer-zf2Kt .framer-xxfj2g > :last-child, .framer-zf2Kt .framer-1ubjomr > :last-child, .framer-zf2Kt .framer-ljiiv2 > :last-child, .framer-zf2Kt .framer-1yyber6 > :last-child, .framer-zf2Kt .framer-4o8eq8 > :last-child, .framer-zf2Kt .framer-f5xeb8 > :last-child, .framer-zf2Kt .framer-yxd93m > :last-child, .framer-zf2Kt .framer-ap01vm > :last-child, .framer-zf2Kt .framer-i0y7px > :last-child, .framer-zf2Kt .framer-izer9x > :last-child, .framer-zf2Kt .framer-t5q6rj > :last-child, .framer-zf2Kt .framer-12sbtqi > :last-child, .framer-zf2Kt .framer-1oy441w > :last-child, .framer-zf2Kt .framer-crlq92 > :last-child, .framer-zf2Kt .framer-1npipvs > :last-child, .framer-zf2Kt .framer-5lzi2z > :last-child, .framer-zf2Kt .framer-jcqiog > :last-child, .framer-zf2Kt .framer-1wmgpep > :last-child, .framer-zf2Kt .framer-agu2x6 > :last-child, .framer-zf2Kt .framer-owyudy > :last-child, .framer-zf2Kt .framer-nie7vy > :last-child, .framer-zf2Kt .framer-1h9t0wu > :last-child, .framer-zf2Kt .framer-18x3bj1 > :last-child { margin-bottom: 0px; } .framer-zf2Kt .framer-sxcchw > *, .framer-zf2Kt .framer-1hoi3qk > *, .framer-zf2Kt .framer-rsa548 > *, .framer-zf2Kt .framer-pcjbu1 > *, .framer-zf2Kt .framer-148mmuc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zf2Kt .framer-sxcchw > :first-child, .framer-zf2Kt .framer-gfgsax > :first-child, .framer-zf2Kt .framer-1hoi3qk > :first-child, .framer-zf2Kt .framer-1ewonfl > :first-child, .framer-zf2Kt .framer-rsa548 > :first-child, .framer-zf2Kt .framer-pcjbu1 > :first-child, .framer-zf2Kt .framer-14m9g5l > :first-child, .framer-zf2Kt .framer-1xuw4gd > :first-child, .framer-zf2Kt .framer-148mmuc > :first-child, .framer-zf2Kt .framer-117x3js > :first-child, .framer-zf2Kt .framer-10ejvd2 > :first-child, .framer-zf2Kt .framer-y3gv98 > :first-child { margin-left: 0px; } .framer-zf2Kt .framer-sxcchw > :last-child, .framer-zf2Kt .framer-gfgsax > :last-child, .framer-zf2Kt .framer-1hoi3qk > :last-child, .framer-zf2Kt .framer-1ewonfl > :last-child, .framer-zf2Kt .framer-rsa548 > :last-child, .framer-zf2Kt .framer-pcjbu1 > :last-child, .framer-zf2Kt .framer-14m9g5l > :last-child, .framer-zf2Kt .framer-1xuw4gd > :last-child, .framer-zf2Kt .framer-148mmuc > :last-child, .framer-zf2Kt .framer-117x3js > :last-child, .framer-zf2Kt .framer-10ejvd2 > :last-child, .framer-zf2Kt .framer-y3gv98 > :last-child { margin-right: 0px; } .framer-zf2Kt .framer-gfgsax > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-zf2Kt .framer-15gh2wy > *, .framer-zf2Kt .framer-ljiiv2 > *, .framer-zf2Kt .framer-4o8eq8 > *, .framer-zf2Kt .framer-1oy441w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zf2Kt .framer-12f398v > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-zf2Kt .framer-1ewonfl > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-zf2Kt .framer-14m9g5l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zf2Kt .framer-65clw4 > *, .framer-zf2Kt .framer-ap01vm > *, .framer-zf2Kt .framer-5lzi2z > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-zf2Kt .framer-82yhzo > *, .framer-zf2Kt .framer-i0y7px > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-zf2Kt .framer-jbi6fs > *, .framer-zf2Kt .framer-1yyber6 > *, .framer-zf2Kt .framer-izer9x > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-zf2Kt .framer-xxfj2g > *, .framer-zf2Kt .framer-t5q6rj > *, .framer-zf2Kt .framer-jcqiog > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zf2Kt .framer-1ubjomr > *, .framer-zf2Kt .framer-12sbtqi > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-zf2Kt .framer-1xuw4gd > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-zf2Kt .framer-f5xeb8 > *, .framer-zf2Kt .framer-crlq92 > *, .framer-zf2Kt .framer-1npipvs > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zf2Kt .framer-117x3js > *, .framer-zf2Kt .framer-10ejvd2 > *, .framer-zf2Kt .framer-y3gv98 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1099px) { .framer-zf2Kt.framer-11alcrs { width: 810px; } .framer-zf2Kt .framer-nj85yi { height: var(--framer-aspect-ratio-supported, 63px); } .framer-zf2Kt .framer-ucbslk-container { left: calc(1.6049382716049605% - 1440px / 2); top: calc(47.767253044654964% - 26px / 2); } .framer-zf2Kt .framer-65clw4, .framer-zf2Kt .framer-ap01vm { padding: 80px 40px 40px 40px; } .framer-zf2Kt .framer-xxfj2g, .framer-zf2Kt .framer-t5q6rj { padding: 0px; } .framer-zf2Kt .framer-ljiiv2, .framer-zf2Kt .framer-1yyber6, .framer-zf2Kt .framer-1oy441w { padding: 40px; } .framer-zf2Kt .framer-1ata32i { gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); } .framer-zf2Kt .framer-gsuay4-container { height: auto; } .framer-zf2Kt .framer-nlzglp-container, .framer-zf2Kt .framer-1wk7n5y-container, .framer-zf2Kt .framer-1kp0y0o-container { height: auto; width: 100%; } .framer-zf2Kt .framer-1xuw4gd { flex-direction: column; gap: 56px; } .framer-zf2Kt .framer-4o8eq8, .framer-zf2Kt .framer-crlq92 { flex: none; width: 100%; } .framer-zf2Kt .framer-8acv60-container { height: var(--framer-aspect-ratio-supported, 708px); left: -194px; right: -195px; top: -77px; } .framer-zf2Kt .framer-1xgnmb2 { right: -451px; z-index: 1; } .framer-zf2Kt .framer-12sbtqi, .framer-zf2Kt .framer-jcqiog { width: 100%; } .framer-zf2Kt .framer-zxal17 { width: 1fr; } .framer-zf2Kt .framer-18qlis8 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zf2Kt .framer-1ata32i, .framer-zf2Kt .framer-1xuw4gd, .framer-zf2Kt .framer-18qlis8 { gap: 0px; } .framer-zf2Kt .framer-1ata32i > *, .framer-zf2Kt .framer-1ata32i > :first-child, .framer-zf2Kt .framer-1ata32i > :last-child { margin: 0px; } .framer-zf2Kt .framer-1xuw4gd > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-zf2Kt .framer-1xuw4gd > :first-child, .framer-zf2Kt .framer-18qlis8 > :first-child { margin-top: 0px; } .framer-zf2Kt .framer-1xuw4gd > :last-child, .framer-zf2Kt .framer-18qlis8 > :last-child { margin-bottom: 0px; } .framer-zf2Kt .framer-18qlis8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-zf2Kt.framer-11alcrs { width: 390px; } .framer-zf2Kt .framer-gfgsax { flex-direction: column; min-height: 380px; padding: 0px; } .framer-zf2Kt .framer-15gh2wy, .framer-zf2Kt .framer-4o8eq8, .framer-zf2Kt .framer-crlq92, .framer-zf2Kt .framer-1wmgpep, .framer-zf2Kt .framer-agu2x6, .framer-zf2Kt .framer-owyudy, .framer-zf2Kt .framer-nie7vy, .framer-zf2Kt .framer-1h9t0wu, .framer-zf2Kt .framer-18x3bj1 { flex: none; width: 100%; } .framer-zf2Kt .framer-nj85yi { height: var(--framer-aspect-ratio-supported, 30px); } .framer-zf2Kt .framer-ucbslk-container { left: calc(50.00000000000002% - 100% / 2); width: 100%; } .framer-zf2Kt .framer-65clw4, .framer-zf2Kt .framer-ap01vm { padding: 40px 16px 16px 16px; } .framer-zf2Kt .framer-82yhzo, .framer-zf2Kt .framer-i0y7px { gap: 24px; } .framer-zf2Kt .framer-xxfj2g, .framer-zf2Kt .framer-t5q6rj { padding: 0px; } .framer-zf2Kt .framer-1ubjomr { padding: 40px 0px 40px 0px; } .framer-zf2Kt .framer-ljiiv2, .framer-zf2Kt .framer-1yyber6, .framer-zf2Kt .framer-1oy441w { padding: 40px 16px 40px 16px; } .framer-zf2Kt .framer-1ata32i { gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } .framer-zf2Kt .framer-gsuay4-container { height: auto; } .framer-zf2Kt .framer-nlzglp-container, .framer-zf2Kt .framer-1wk7n5y-container, .framer-zf2Kt .framer-1kp0y0o-container { height: auto; width: 100%; } .framer-zf2Kt .framer-1xuw4gd { flex-direction: column; gap: 40px; } .framer-zf2Kt .framer-8acv60-container { height: var(--framer-aspect-ratio-supported, 311px); left: -66px; right: -68px; top: -60px; } .framer-zf2Kt .framer-1xgnmb2 { bottom: -35px; right: -248px; top: -41px; } .framer-zf2Kt .framer-12sbtqi, .framer-zf2Kt .framer-jcqiog { width: 100%; } .framer-zf2Kt .framer-18qlis8 { flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-zf2Kt .framer-117x3js, .framer-zf2Kt .framer-10ejvd2, .framer-zf2Kt .framer-y3gv98 { flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zf2Kt .framer-gfgsax, .framer-zf2Kt .framer-82yhzo, .framer-zf2Kt .framer-1ata32i, .framer-zf2Kt .framer-1xuw4gd, .framer-zf2Kt .framer-i0y7px, .framer-zf2Kt .framer-18qlis8, .framer-zf2Kt .framer-117x3js, .framer-zf2Kt .framer-10ejvd2, .framer-zf2Kt .framer-y3gv98 { gap: 0px; } .framer-zf2Kt .framer-gfgsax > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-zf2Kt .framer-gfgsax > :first-child, .framer-zf2Kt .framer-82yhzo > :first-child, .framer-zf2Kt .framer-1xuw4gd > :first-child, .framer-zf2Kt .framer-i0y7px > :first-child, .framer-zf2Kt .framer-18qlis8 > :first-child, .framer-zf2Kt .framer-117x3js > :first-child, .framer-zf2Kt .framer-10ejvd2 > :first-child, .framer-zf2Kt .framer-y3gv98 > :first-child { margin-top: 0px; } .framer-zf2Kt .framer-gfgsax > :last-child, .framer-zf2Kt .framer-82yhzo > :last-child, .framer-zf2Kt .framer-1xuw4gd > :last-child, .framer-zf2Kt .framer-i0y7px > :last-child, .framer-zf2Kt .framer-18qlis8 > :last-child, .framer-zf2Kt .framer-117x3js > :last-child, .framer-zf2Kt .framer-10ejvd2 > :last-child, .framer-zf2Kt .framer-y3gv98 > :last-child { margin-bottom: 0px; } .framer-zf2Kt .framer-82yhzo > *, .framer-zf2Kt .framer-i0y7px > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zf2Kt .framer-1ata32i > *, .framer-zf2Kt .framer-1ata32i > :first-child, .framer-zf2Kt .framer-1ata32i > :last-child { margin: 0px; } .framer-zf2Kt .framer-1xuw4gd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-zf2Kt .framer-18qlis8 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-zf2Kt .framer-117x3js > *, .framer-zf2Kt .framer-10ejvd2 > *, .framer-zf2Kt .framer-y3gv98 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (min-width: 1920px) { .framer-zf2Kt.framer-11alcrs { width: 1920px; } .framer-zf2Kt .framer-nj85yi { height: var(--framer-aspect-ratio-supported, 19px); } .framer-zf2Kt .framer-ucbslk-container { bottom: 0px; left: 0px; right: 0px; top: unset; width: unset; } .framer-zf2Kt .framer-8acv60-container { height: var(--framer-aspect-ratio-supported, 1314px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4242\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TY7lw38ch\":{\"layout\":[\"fixed\",\"auto\"]},\"bDoCyrju4\":{\"layout\":[\"fixed\",\"auto\"]},\"xHxDG4i8V\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"HejBpCQFr\":{\"pattern\":\":HejBpCQFr\",\"name\":\"hero\"},\"BQxV1tkqZ\":{\"pattern\":\":BQxV1tkqZ\",\"name\":\"header\"},\"HB98hvzXW\":{\"pattern\":\":HB98hvzXW\",\"name\":\"text-section\"},\"lBJ83n1RU\":{\"pattern\":\":lBJ83n1RU\",\"name\":\"host-at-your-church\"},\"dEWLQkwzB\":{\"pattern\":\":dEWLQkwzB\",\"name\":\"history\"}}\n * @framerResponsiveScreen\n */const FramerVmaaF_n3_=withCSS(Component,css,\"framer-zf2Kt\");export default FramerVmaaF_n3_;FramerVmaaF_n3_.displayName=\"Church\";FramerVmaaF_n3_.defaultProps={height:4242,width:1100};addFonts(FramerVmaaF_n3_,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavBarFonts,...CursorImageTrailFonts,...TickerFonts,...ComponentsFeaturesCard3Fonts,...VimeoFonts,...LettersFonts,...ComponentsBadgeFonts,...FooterMainFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVmaaF_n3_\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"HejBpCQFr\\\":{\\\"pattern\\\":\\\":HejBpCQFr\\\",\\\"name\\\":\\\"hero\\\"},\\\"BQxV1tkqZ\\\":{\\\"pattern\\\":\\\":BQxV1tkqZ\\\",\\\"name\\\":\\\"header\\\"},\\\"HB98hvzXW\\\":{\\\"pattern\\\":\\\":HB98hvzXW\\\",\\\"name\\\":\\\"text-section\\\"},\\\"lBJ83n1RU\\\":{\\\"pattern\\\":\\\":lBJ83n1RU\\\",\\\"name\\\":\\\"host-at-your-church\\\"},\\\"dEWLQkwzB\\\":{\\\"pattern\\\":\\\":dEWLQkwzB\\\",\\\"name\\\":\\\"history\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"4242\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TY7lw38ch\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bDoCyrju4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xHxDG4i8V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1100\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SettingsMessage", "title", "description", "containerStyle", "u", "p", "shadowProperty", "ControlType", "heightProperty", "props", "useStore", "createStore", "useImagePreloader", "imageUrls", "imagesPreloaded", "setImagesPreloaded", "ye", "ue", "isMounted", "imagePromises", "url", "resolve", "reject", "img", "error", "CursorImageTrail", "images", "style", "frequency", "visibleFor", "perspective", "animation", "props", "threshold", "mousePos", "setMousePos", "isHovering", "setIsHovering", "currentImageIndex", "setCurrentImageIndex", "activeImages", "setActiveImages", "isInViewport", "setIsInViewport", "componentRef", "pe", "observer", "entry", "handleMouseMove", "event", "rect", "x", "y", "handleMouseEnter", "handleMouseLeave", "lastImage", "newImage", "prev", "p", "SettingsMessage", "Frame", "AnimatePresence", "id", "position", "state", "_images_position", "motion", "addPropertyControls", "ControlType", "SVGFonts", "getFonts", "SVG_Prod_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "expand", "height", "id", "image", "minimize", "mouseEnter", "text", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "N4VajsJhZ", "Ut0D8uBut", "RyfYTNHwk", "AJUPVitW5", "YYuAgNeT9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertuvzh1", "args", "onTap60ayct", "onTap5n34ha", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "RichText2", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerTItAiVhP7", "withCSS", "TItAiVhP7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LetterFonts", "getFonts", "TItAiVhP7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave1uunhkk", "args", "N4VajsJhZihpbsb", "Ut0D8uBut12132m1", "RyfYTNHwk21rsgd", "N4VajsJhZ7y7670", "RyfYTNHwk1rcebmp", "N4VajsJhZ1yuy7l1", "RyfYTNHwk182641x", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "Framerh4ve3mvKq", "withCSS", "h4ve3mvKq_default", "addPropertyControls", "ControlType", "addFonts", "NavBarFonts", "getFonts", "HAbouYDp5_default", "NavBarWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "RichTextWithFX", "RichText2", "CursorImageTrailFonts", "CursorImageTrail", "TickerFonts", "Ticker", "ComponentsFeaturesCard3Fonts", "hVqZpCcXV_default", "VimeoFonts", "Vimeo_default", "MotionDivWithFX", "motion", "LettersFonts", "h4ve3mvKq_default", "ComponentsBadgeFonts", "ZAoAiZr85_default", "FooterMainFonts", "r7jNNL1FL_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "animation1", "transition2", "animation2", "numberToString", "value", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "animation6", "transition6", "animation7", "transition7", "animation8", "transformTemplate2", "transition8", "animation9", "transition9", "animation10", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "className", "layoutId", "variant", "ODNz6JjQeBuGQ73zpf", "h6XDPb666BuGQ73zpf", "rB4plFKy_BuGQ73zpf", "idBuGQ73zpf", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "activeLocaleCode", "useLocaleCode", "elementId2", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "ContainerWithFX", "NavBarWithVariantAppearEffect", "RichText2", "x", "Image2", "RichTextWithFX", "Container", "CursorImageTrail", "Ticker", "ChildrenCanSuspend", "wSP568av_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "PathVariablesContext", "hVqZpCcXV_default", "MotionDivWithFX", "Vimeo_default", "h4ve3mvKq_default", "ZAoAiZr85_default", "r7jNNL1FL_default", "css", "FramerVmaaF_n3_", "withCSS", "VmaaF_n3_default", "addFonts", "NavBarFonts", "CursorImageTrailFonts", "TickerFonts", "ComponentsFeaturesCard3Fonts", "VimeoFonts", "LettersFonts", "ComponentsBadgeFonts", "FooterMainFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
