{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/qZsRK7EKLNkbLdi2vY9Q/JA628FUi13GHedprOcxc/TSVNFx3jW.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9f979fb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Mailchimp from\"https://framerusercontent.com/modules/0ZSF8VJcL5AhXebKiUw3/nbsZGufHZBGrLw7CNirb/Mailchimp.js\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import NavigationCopy from\"#framer/local/canvasComponent/mHh5kEsll/mHh5kEsll.js\";import WordsV2 from\"#framer/local/canvasComponent/vXMKHCg4S/vXMKHCg4S.js\";import*as sharedStyle1 from\"#framer/local/css/L36M2t41e/L36M2t41e.js\";import*as sharedStyle from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import metadataProvider from\"#framer/local/webPageMetadata/TSVNFx3jW/TSVNFx3jW.js\";const NavigationCopyFonts=getFonts(NavigationCopy);const SearchFonts=getFonts(Search);const SlideshowFonts=getFonts(Slideshow);const TickerFonts=getFonts(Ticker);const MailchimpFonts=getFonts(Mailchimp);const WordsV2Fonts=getFonts(WordsV2);const cycleOrder=[\"h3kKcFXyD\",\"DbiDr62Tz\",\"LBXXbXJcT\"];const breakpoints={DbiDr62Tz:\"(min-width: 810px) and (max-width: 1199px)\",h3kKcFXyD:\"(min-width: 1200px)\",LBXXbXJcT:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SItyH\";const variantClassNames={DbiDr62Tz:\"framer-v-9fpjgx\",h3kKcFXyD:\"framer-v-ewdy1u\",LBXXbXJcT:\"framer-v-1eh8k0q\"};const transitions={default:{duration:0}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"h3kKcFXyD\",Phone:\"LBXXbXJcT\",Tablet:\"DbiDr62Tz\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"h3kKcFXyD\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-SItyH`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-SItyH`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LBXXbXJcT\")return true;return!isBrowser();};const isDisplayed1=()=>{if(baseVariant===\"LBXXbXJcT\")return!isBrowser();return true;};const id=useRouteElementId(\"v_goFn8Is\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(baseVariant===\"DbiDr62Tz\")return true;return!isBrowser();};const isDisplayed3=()=>{if(baseVariant===\"DbiDr62Tz\")return!isBrowser();return true;};const id1=useRouteElementId(\"fLM385435\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"h3kKcFXyD\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ewdy1u\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1knt6mp-container hidden-ewdy1u hidden-9fpjgx\",children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"WYrKnOVfm\",layoutId:\"WYrKnOVfm\",style:{width:\"100%\"},variant:\"Jw0EqQFk9\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dbzlga-container hidden-1eh8k0q\",children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"xA7kjYBnC\",layoutId:\"xA7kjYBnC\",style:{width:\"100%\"},variant:\"h1k6byKZ7\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1y9um5p\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y2sach\",\"data-framer-name\":\"Hero Stack - Name\",name:\"Hero Stack - Name\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8bo5s8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DbiDr62Tz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhIE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Changa One\", sans-serif',\"--framer-font-size\":\"63px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LiN2Ukpox\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Paradocs.\"})})})})},LBXXbXJcT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhIE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Changa One\", sans-serif',\"--framer-font-size\":\"59px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LiN2Ukpox\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Paradocs.\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhIE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Changa One\", sans-serif',\"--framer-font-size\":\"100px\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LiN2Ukpox\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Paradocs.\"})})})}),className:\"framer-1yvk9q5\",fonts:[\"GF;Changa One-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DbiDr62Tz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:[\"Building the World's Largest \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTcwMA==\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"Paranormal\"}),\" Database\"]})})},LBXXbXJcT:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\"},children:\"Building the World's Largest \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTcwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:[\"Paranormal\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" Database\"})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-font-weight\":\"500\"},children:[\"Building the World's Largest \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTcwMA==\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"Paranormal\"}),\" Database\"]})}),className:\"framer-1vp3p5r\",fonts:[\"GF;Changa-500\",\"GF;Changa-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ys3gci-container hidden-1eh8k0q\",id:id,ref:ref2,children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",transition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",id:\"v_goFn8Is\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"v_goFn8Is\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:true,heightTransition:{damping:60,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ivg2cx\",\"data-framer-name\":\"Explainers\",name:\"Explainers\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-njoa2g hidden-ewdy1u hidden-9fpjgx\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTYwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[\"Every Source, Every Study, \",/*#__PURE__*/_jsx(\"br\",{}),\"One Nexus\"]})}),className:\"framer-1sftzsw\",\"data-framer-name\":\"Title\",fonts:[\"GF;Changa-600\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"In today's digital age, we find ourselves drowning in a sea of data, yet starved for cohesive understanding, especially in the realm of unexplained phenomena. This paradox has sparked the creation of a revolutionary platform aimed at not merely aggregating but synthesizing the global trove of knowledge on extraordinary events. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"Picture a gateway that amalgamates every known encounter, academic inquiry, and the spectrum of data concerning remarkable phenomena into a singular, comprehensive repository. \"}),\"This vision is about transcending aggregation to forge an unparalleled database, meticulously organized and woven together with the threads of advanced artificial intelligence.\"]})}),className:\"framer-1xnbihc\",\"data-framer-name\":\"Copy\",fonts:[\"GF;Changa-500\"],name:\"Copy\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ugefc-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:11,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"hv7_3HSR3\",intervalControl:1.5,itemAmount:1,layoutId:\"hv7_3HSR3\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:371,intrinsicWidth:320,pixelHeight:742,pixelWidth:640,sizes:\"320px\",src:\"https://framerusercontent.com/images/VCJ9m0OxR3LQNHKOzgxU2SPpqI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VCJ9m0OxR3LQNHKOzgxU2SPpqI.jpg 640w\"},className:\"framer-1jy903n\",\"data-framer-name\":\"Cash_Landrum_UFO_illustration_by_Kathy_Schuessler\",name:\"Cash_Landrum_UFO_illustration_by_Kathy_Schuessler\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:320,pixelHeight:786,pixelWidth:640,sizes:\"320px\",src:\"https://framerusercontent.com/images/rEw3rEiwNAbtXFjGIuCZaVgu5pk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rEw3rEiwNAbtXFjGIuCZaVgu5pk.jpg 640w\"},className:\"framer-cspfoa\",\"data-framer-name\":\"UFO_photographed_by_Italian_pilot_Giancarlo_Cecconi_1979\",name:\"UFO_photographed_by_Italian_pilot_Giancarlo_Cecconi_1979\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:698,pixelHeight:786,pixelWidth:1396,sizes:\"698px\",src:\"https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=512 512w, https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png 1396w\"},className:\"framer-xvuqpf\",\"data-framer-name\":\"Screenshot_2024_03_10_at_10_03_49_AM\",name:\"Screenshot_2024_03_10_at_10_03_49_AM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:415.5,intrinsicWidth:600,pixelHeight:831,pixelWidth:1200,sizes:\"600.722px\",src:\"https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=512 512w, https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=1024 1024w, https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp 1200w\"},className:\"framer-82ie08\",\"data-framer-name\":\"ufo3_540x374\",name:\"ufo3_540x374\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1160,intrinsicWidth:889.5,pixelHeight:2320,pixelWidth:1779,sizes:\"410.2435px\",src:\"https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=1024 785w, https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=2048 1570w, https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg 1779w\"},className:\"framer-10a4lpx\",\"data-framer-name\":\"marcel_roswell_debris_0\",name:\"marcel_roswell_debris_0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:777,intrinsicWidth:438,pixelHeight:1554,pixelWidth:876,sizes:\"257.0502px\",src:\"https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png?scale-down-to=1024 577w, https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png 876w\"},className:\"framer-k9szy3\",\"data-framer-name\":\"Screenshot_2024_02_28_at_7_49_22_PM\",name:\"Screenshot_2024_02_28_at_7_49_22_PM\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"The essence of our platform lies in its \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"capability to transform fragmented snippets of information into a structured knowledge network.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\" Leveraging sophisticated AI, we aim to reveal hidden patterns, link seemingly unrelated data points, and illuminate the dark corners of our collective understanding. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-7d4036fc-c33c-480e-a0a5-77c99668359e, rgb(136, 136, 136))\"},children:\"This network is not just an archive; it's an \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"active analytical engine that democratizes data analysis, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-7d4036fc-c33c-480e-a0a5-77c99668359e, rgb(136, 136, 136))\"},children:\"making the wealth of academic knowledge as accessible to the public as it is to researchers.\"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Beyond the technological marvel, our initiative is fundamentally a call to collaborative exploration. It stands as a beacon for those who seek to understand the mysteries that elude conventional explanation. By briditing gaps between disparate pieces of data, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"we facilitate a new kind of discovery process.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-7d4036fc-c33c-480e-a0a5-77c99668359e, rgb(136, 136, 136))\"},children:\"Each user's query, each data entry, becomes a building block in a larger edifice of knowledge, enabling breakthroughs that no isolated effort could achieve.\"})]})}),className:\"framer-sdc8qc\",\"data-framer-name\":\"Copy\",fonts:[\"GF;Changa-500\"],name:\"Copy\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lr0d9e-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"xgTL3lfBu\",layoutId:\"xgTL3lfBu\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:487,intrinsicWidth:740,pixelHeight:974,pixelWidth:1480,sizes:\"740px\",src:\"https://framerusercontent.com/images/gazG2gBWTKZhUmCgNT4ju0dIpM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gazG2gBWTKZhUmCgNT4ju0dIpM.png?scale-down-to=512 512w, https://framerusercontent.com/images/gazG2gBWTKZhUmCgNT4ju0dIpM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/gazG2gBWTKZhUmCgNT4ju0dIpM.png 1480w\"},className:\"framer-vbabkq\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_43_15_PM\",name:\"Screenshot_2024_03_10_at_7_43_15_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:354,intrinsicWidth:497,pixelHeight:708,pixelWidth:994,sizes:\"497px\",src:\"https://framerusercontent.com/images/CRCHyqLEW0d2Y6NNDLBGOdkrQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CRCHyqLEW0d2Y6NNDLBGOdkrQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/CRCHyqLEW0d2Y6NNDLBGOdkrQ.png 994w\"},className:\"framer-1sgq5a7\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_35_47_PM\",name:\"Screenshot_2024_03_10_at_7_35_47_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:571,intrinsicWidth:497,pixelHeight:1142,pixelWidth:994,sizes:\"300px\",src:\"https://framerusercontent.com/images/7kMbgwpFiDn5u8rvBisXaD9oUV4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7kMbgwpFiDn5u8rvBisXaD9oUV4.png?scale-down-to=1024 891w, https://framerusercontent.com/images/7kMbgwpFiDn5u8rvBisXaD9oUV4.png 994w\"},className:\"framer-beeooz\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_35_25_PM\",name:\"Screenshot_2024_03_10_at_7_35_25_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:651,intrinsicWidth:1210,pixelHeight:1302,pixelWidth:2420,sizes:\"657.9724px\",src:\"https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png?scale-down-to=512 512w, https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png 2420w\"},className:\"framer-1hgmxd5\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_41_47_PM\",name:\"Screenshot_2024_03_10_at_7_41_47_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:334,intrinsicWidth:598,pixelHeight:668,pixelWidth:1196,sizes:\"598px\",src:\"https://framerusercontent.com/images/9L0iVD9uyR7CGu1oPop09wFsM0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9L0iVD9uyR7CGu1oPop09wFsM0.png?scale-down-to=512 512w, https://framerusercontent.com/images/9L0iVD9uyR7CGu1oPop09wFsM0.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/9L0iVD9uyR7CGu1oPop09wFsM0.png 1196w\"},className:\"framer-wocirf\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_41_24_PM\",name:\"Screenshot_2024_03_10_at_7_41_24_PM\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"As we gear up for this journey, we extend an invitation to join us at the intersection of curiosity and technology. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"Whether you're an academic, an enthusiast, or simply someone intrigued by the unexplained, your participation is crucial.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\" Together, we can sift through the noise, connecting dots across the vast expanse of human inquiry to unveil the underlying truths of our world.\"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Paradocs is creating more than just a database, we're nurturing a community dedicated to discovery. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"Here, every piece of information, from the scholarly to the anecdotal, contributes to a grand mosaic of understanding.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\" As we embark on this venture, let's unite in our quest to decode the mysteries of the universe, leveraging every available tool in our arsenal. Join us, and be part of a collective endeavor to map the unseen, one discovery at a time.\"})]})}),className:\"framer-16kx2lg hidden-ewdy1u hidden-9fpjgx\",\"data-framer-name\":\"Copy\",fonts:[\"GF;Changa-500\"],name:\"Copy\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l40jpd hidden-ewdy1u hidden-9fpjgx\",\"data-framer-name\":\"Pivot\",name:\"Pivot\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ry8y4-container\",children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:11,bottomLeftRadius:11,bottomRightRadius:11,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",fontWeight:600,label:\"Sign Up\"},font:true,fontFamily:\"changa\",fontSize:18,fontWeight:800,gap:11,height:\"100%\",id:\"F6De_fmDA\",input:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholder:\"Enter Your Email\",placeholderColor:\"rgba(0, 0, 0, 0.3)\",value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"F6De_fmDA\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{width:\"100%\"},topLeftRadius:11,topRightRadius:11,url:'https://paradocsproject.us18.list-manage.com/subscribe/post?u=4de122f2a1c626c756b69fe00&amp;id=5e3b91474f&amp;f_id=00d834e1f0\" method=\"post\" id=\"mc-embedded-subscribe-form\" name=\"mc-embedded-subscribe-form\" class=\"validate\" target=\"_blank',width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTYwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:[\"Sign up for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"early access\"}),\" and project updates\"]})}),className:\"framer-p9oqjm\",fonts:[\"GF;Changa-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oy5xz9 hidden-1eh8k0q\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3vwpd9\",\"data-framer-name\":\"Every Source\",name:\"Every Source\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fys9af\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DbiDr62Tz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTYwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[\"Every Source, Every Study, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"39px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"One Nexus\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTYwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"39px\"},children:\"Every Source, Every Study, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"39px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"39px\"},children:\"One Nexus\"})]})}),className:\"framer-1o3c4p3\",\"data-framer-name\":\"Title\",fonts:[\"GF;Changa-600\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"In today's digital age, we find ourselves drowning in a sea of data, yet starved for cohesive understanding, especially in the realm of unexplained phenomena. This paradox has sparked the creation of a revolutionary platform aimed at not merely aggregating but synthesizing the global trove of knowledge on extraordinary events. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"Picture a gateway that amalgamates every known encounter, academic inquiry, and the spectrum of data concerning remarkable phenomena into a singular, comprehensive repository.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTcwMA==\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\" \"}),\"This vision is about transcending aggregation to forge an unparalleled database, meticulously organized and woven together with the threads of advanced artificial intelligence.\"]})}),className:\"framer-1itee5n\",\"data-framer-name\":\"Copy\",fonts:[\"GF;Changa-500\",\"GF;Changa-700\"],name:\"Copy\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5g3tod-container hidden-ewdy1u\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:11,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"jaqmkxxrr\",intervalControl:1.5,itemAmount:1,layoutId:\"jaqmkxxrr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:371,intrinsicWidth:320,pixelHeight:742,pixelWidth:640,sizes:\"320px\",src:\"https://framerusercontent.com/images/VCJ9m0OxR3LQNHKOzgxU2SPpqI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VCJ9m0OxR3LQNHKOzgxU2SPpqI.jpg 640w\"},className:\"framer-1jy903n\",\"data-framer-name\":\"Cash_Landrum_UFO_illustration_by_Kathy_Schuessler\",name:\"Cash_Landrum_UFO_illustration_by_Kathy_Schuessler\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:320,pixelHeight:786,pixelWidth:640,sizes:\"320px\",src:\"https://framerusercontent.com/images/rEw3rEiwNAbtXFjGIuCZaVgu5pk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rEw3rEiwNAbtXFjGIuCZaVgu5pk.jpg 640w\"},className:\"framer-cspfoa\",\"data-framer-name\":\"UFO_photographed_by_Italian_pilot_Giancarlo_Cecconi_1979\",name:\"UFO_photographed_by_Italian_pilot_Giancarlo_Cecconi_1979\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:698,pixelHeight:786,pixelWidth:1396,sizes:\"698px\",src:\"https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=512 512w, https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png 1396w\"},className:\"framer-xvuqpf\",\"data-framer-name\":\"Screenshot_2024_03_10_at_10_03_49_AM\",name:\"Screenshot_2024_03_10_at_10_03_49_AM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:415.5,intrinsicWidth:600,pixelHeight:831,pixelWidth:1200,sizes:\"600.722px\",src:\"https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=512 512w, https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=1024 1024w, https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp 1200w\"},className:\"framer-82ie08\",\"data-framer-name\":\"ufo3_540x374\",name:\"ufo3_540x374\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1160,intrinsicWidth:889.5,pixelHeight:2320,pixelWidth:1779,sizes:\"410.2435px\",src:\"https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=1024 785w, https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=2048 1570w, https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg 1779w\"},className:\"framer-10a4lpx\",\"data-framer-name\":\"marcel_roswell_debris_0\",name:\"marcel_roswell_debris_0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:777,intrinsicWidth:438,pixelHeight:1554,pixelWidth:876,sizes:\"257.0502px\",src:\"https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png?scale-down-to=1024 577w, https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png 876w\"},className:\"framer-k9szy3\",\"data-framer-name\":\"Screenshot_2024_02_28_at_7_49_22_PM\",name:\"Screenshot_2024_02_28_at_7_49_22_PM\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yks862-container hidden-9fpjgx\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:11,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"dVNd7exsu\",intervalControl:1.5,itemAmount:1,layoutId:\"dVNd7exsu\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:371,intrinsicWidth:320,pixelHeight:742,pixelWidth:640,sizes:\"320px\",src:\"https://framerusercontent.com/images/VCJ9m0OxR3LQNHKOzgxU2SPpqI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VCJ9m0OxR3LQNHKOzgxU2SPpqI.jpg 640w\"},className:\"framer-1jy903n\",\"data-framer-name\":\"Cash_Landrum_UFO_illustration_by_Kathy_Schuessler\",name:\"Cash_Landrum_UFO_illustration_by_Kathy_Schuessler\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:320,pixelHeight:786,pixelWidth:640,sizes:\"320px\",src:\"https://framerusercontent.com/images/rEw3rEiwNAbtXFjGIuCZaVgu5pk.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rEw3rEiwNAbtXFjGIuCZaVgu5pk.jpg 640w\"},className:\"framer-cspfoa\",\"data-framer-name\":\"UFO_photographed_by_Italian_pilot_Giancarlo_Cecconi_1979\",name:\"UFO_photographed_by_Italian_pilot_Giancarlo_Cecconi_1979\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:698,pixelHeight:786,pixelWidth:1396,sizes:\"698px\",src:\"https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=512 512w, https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/25KrStBC5drh6BhfoSceeVv9A1I.png 1396w\"},className:\"framer-xvuqpf\",\"data-framer-name\":\"Screenshot_2024_03_10_at_10_03_49_AM\",name:\"Screenshot_2024_03_10_at_10_03_49_AM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:415.5,intrinsicWidth:600,pixelHeight:831,pixelWidth:1200,sizes:\"600.722px\",src:\"https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=512 512w, https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp?scale-down-to=1024 1024w, https://framerusercontent.com/images/iwQtSO4SDxt4yab4sPSBuCAGhs.webp 1200w\"},className:\"framer-82ie08\",\"data-framer-name\":\"ufo3_540x374\",name:\"ufo3_540x374\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1160,intrinsicWidth:889.5,pixelHeight:2320,pixelWidth:1779,sizes:\"410.2435px\",src:\"https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=1024 785w, https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg?scale-down-to=2048 1570w, https://framerusercontent.com/images/BHDTRVR34PXDA3I1Wzv9yb5BuA.jpg 1779w\"},className:\"framer-10a4lpx\",\"data-framer-name\":\"marcel_roswell_debris_0\",name:\"marcel_roswell_debris_0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:777,intrinsicWidth:438,pixelHeight:1554,pixelWidth:876,sizes:\"257.0502px\",src:\"https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png?scale-down-to=1024 577w, https://framerusercontent.com/images/VXO1H62oyYc8vQDmOvTCbepTtM.png 876w\"},className:\"framer-k9szy3\",\"data-framer-name\":\"Screenshot_2024_02_28_at_7_49_22_PM\",name:\"Screenshot_2024_02_28_at_7_49_22_PM\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfoyzk\",\"data-framer-name\":\"Every Source\",name:\"Every Source\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jr7rf\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"The essence of our platform lies in its \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"capability to transform fragmented snippets of information into a structured knowledge network.\"}),\" Leveraging sophisticated AI, we aim to reveal hidden patterns, link seemingly unrelated data points, and illuminate the dark corners of our collective understanding. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7d4036fc-c33c-480e-a0a5-77c99668359e, rgb(136, 136, 136))\"},children:\"This network is not just an archive; \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"it's an active analytical engine that democratizes data analysis\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\",\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7d4036fc-c33c-480e-a0a5-77c99668359e, rgb(136, 136, 136))\"},children:\" making the wealth of academic knowledge as accessible to the public as it is to researchers.\"})]})}),className:\"framer-1cpiv43\",\"data-framer-name\":\"Copy\",fonts:[\"GF;Changa-500\"],name:\"Copy\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Beyond the technological marvel, our initiative is fundamentally a call to collaborative exploration. It stands as a beacon for those who seek to understand the mysteries that elude conventional explanation. By bridging gaps between disparate pieces of data, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"we facilitate a new kind of discovery process. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7d4036fc-c33c-480e-a0a5-77c99668359e, rgb(136, 136, 136))\"},children:\"Each user's query, each data entry, becomes a building block in a larger edifice of knowledge, enabling breakthroughs that no isolated effort could achieve.\"})]})}),className:\"framer-wgg0ut\",\"data-framer-name\":\"Copy\",fonts:[\"GF;Changa-500\"],name:\"Copy\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17m6rna-container hidden-1eh8k0q\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"CqSc0PzzI\",layoutId:\"CqSc0PzzI\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:487,intrinsicWidth:740,pixelHeight:974,pixelWidth:1480,sizes:\"740px\",src:\"https://framerusercontent.com/images/gazG2gBWTKZhUmCgNT4ju0dIpM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gazG2gBWTKZhUmCgNT4ju0dIpM.png?scale-down-to=512 512w, https://framerusercontent.com/images/gazG2gBWTKZhUmCgNT4ju0dIpM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/gazG2gBWTKZhUmCgNT4ju0dIpM.png 1480w\"},className:\"framer-vbabkq\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_43_15_PM\",name:\"Screenshot_2024_03_10_at_7_43_15_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:354,intrinsicWidth:497,pixelHeight:708,pixelWidth:994,sizes:\"497px\",src:\"https://framerusercontent.com/images/CRCHyqLEW0d2Y6NNDLBGOdkrQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CRCHyqLEW0d2Y6NNDLBGOdkrQ.png?scale-down-to=512 512w, https://framerusercontent.com/images/CRCHyqLEW0d2Y6NNDLBGOdkrQ.png 994w\"},className:\"framer-1sgq5a7\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_35_47_PM\",name:\"Screenshot_2024_03_10_at_7_35_47_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:571,intrinsicWidth:497,pixelHeight:1142,pixelWidth:994,sizes:\"300px\",src:\"https://framerusercontent.com/images/7kMbgwpFiDn5u8rvBisXaD9oUV4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7kMbgwpFiDn5u8rvBisXaD9oUV4.png?scale-down-to=1024 891w, https://framerusercontent.com/images/7kMbgwpFiDn5u8rvBisXaD9oUV4.png 994w\"},className:\"framer-beeooz\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_35_25_PM\",name:\"Screenshot_2024_03_10_at_7_35_25_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:651,intrinsicWidth:1210,pixelHeight:1302,pixelWidth:2420,sizes:\"657.9724px\",src:\"https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png?scale-down-to=512 512w, https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/Z6T8xdtgOM5MKnAdHehDxlxcY4A.png 2420w\"},className:\"framer-1hgmxd5\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_41_47_PM\",name:\"Screenshot_2024_03_10_at_7_41_47_PM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:334,intrinsicWidth:598,pixelHeight:668,pixelWidth:1196,sizes:\"598px\",src:\"https://framerusercontent.com/images/9L0iVD9uyR7CGu1oPop09wFsM0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9L0iVD9uyR7CGu1oPop09wFsM0.png?scale-down-to=512 512w, https://framerusercontent.com/images/9L0iVD9uyR7CGu1oPop09wFsM0.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/9L0iVD9uyR7CGu1oPop09wFsM0.png 1196w\"},className:\"framer-wocirf\",\"data-framer-name\":\"Screenshot_2024_03_10_at_7_41_24_PM\",name:\"Screenshot_2024_03_10_at_7_41_24_PM\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gjizvs hidden-1eh8k0q\",\"data-framer-name\":\"Explainers\",name:\"Explainers\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4pr7eo\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q16ny6\",\"data-framer-name\":\"Every Source\",name:\"Every Source\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d51yj0\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"As we gear up for this journey, we extend an invitation to join us at the intersection of curiosity and technology. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"Whether you're an academic, an enthusiast, or simply someone intrigued by the unexplained, your participation is crucial.\"}),\" Together, we can sift through the noise, connecting dots across the vast expanse of human inquiry to unveil the underlying truths of our world.\"]})}),className:\"framer-1r1o4kb\",\"data-framer-name\":\"Copy\",fonts:[\"GF;Changa-500\"],name:\"Copy\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Paradocs is creating more than just a database, we're nurturing a community dedicated to discovery. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"Here, every piece of information, from the scholarly to the anecdotal, contributes to a grand mosaic of understanding.\"}),\" As we embark on this venture, let's unite in our quest to decode the mysteries of the universe, leveraging every available tool in our arsenal. Join us, and be part of a collective endeavor to map the unseen, one discovery at a time.\"]})}),className:\"framer-1ks0duk\",\"data-framer-name\":\"Copy\",fonts:[\"GF;Changa-500\"],name:\"Copy\",verticalAlignment:\"top\",withExternalLayout:true})]})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11r206o hidden-1eh8k0q\",\"data-framer-name\":\"Pivot\",name:\"Pivot\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u3f27k-container\",children:/*#__PURE__*/_jsx(Mailchimp,{borderRadius:11,bottomLeftRadius:11,bottomRightRadius:11,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\",fontWeight:600,label:\"Sign Up\"},font:true,fontFamily:\"changa\",fontSize:18,fontWeight:800,gap:11,height:\"100%\",id:\"Izdoc42sO\",input:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(235, 235, 235)\",placeholder:\"Enter Your Email\",placeholderColor:\"rgba(0, 0, 0, 0.3)\",value:\"\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"Izdoc42sO\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{width:\"100%\"},topLeftRadius:11,topRightRadius:11,url:'https://paradocsproject.us18.list-manage.com/subscribe/post?u=4de122f2a1c626c756b69fe00&amp;id=5e3b91474f&amp;f_id=00d834e1f0\" method=\"post\" id=\"mc-embedded-subscribe-form\" name=\"mc-embedded-subscribe-form\" class=\"validate\" target=\"_blank',width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DbiDr62Tz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTYwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:[\"Sign up for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"early access\"}),\" and project updates\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTYwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:[\"Sign up for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9fcb1e2a-0359-4fe4-8ce7-b5fc7fb9fcc2, rgb(144, 0, 240))\"},children:\"early access\"}),\" and project updates\"]})}),className:\"framer-fivhra\",fonts:[\"GF;Changa-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1wo5aje\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-131o6ok\",\"data-framer-name\":\"Hero Stack - Name\",name:\"Hero Stack - Name\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfr3y5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DbiDr62Tz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhIE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Changa One\", sans-serif',\"--framer-font-size\":\"44px\"},children:\"Dive into\"})})},LBXXbXJcT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhIE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Changa One\", sans-serif',\"--framer-font-size\":\"26px\"},children:\"Dive into\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhIE9uZS1yZWd1bGFy\",\"--framer-font-family\":'\"Changa One\", sans-serif',\"--framer-font-size\":\"50px\"},children:\"Dive into\"})}),className:\"framer-1o1a5x9\",fonts:[\"GF;Changa One-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eztzxr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DbiDr62Tz:{WkS2JBURN:44},LBXXbXJcT:{WkS2JBURN:26}},children:/*#__PURE__*/_jsx(WordsV2,{aiz8n1X4_:\"Conciousness.\",BLBlaHvVI:\"Extrasensory Perception.\",height:\"100%\",id:\"wt1_Lo8KL\",iMhTNNniU:\"the Phenomenon.\",iv2urplv3:\"Near-Death Experiences.\",layoutId:\"wt1_Lo8KL\",mZvY6Ulx9:\"Cryptids.\",n9PCDxhZq:\"Occultism.\",NdeVXQhVM:\"UFOs.\",NTXaG3s5K:\"Alien Abduction Cases.\",OOu909225:\"the Supernatural.\",pWiBq9vXQ:\"Reincarnation.\",rEBzFtDZE:\"Aliens.\",TaER_2gse:\"the Paranormal.\",Tku7bIEJl:\"the Extraordinary.\",TW1ZHzSd1:\"the Unknown.\",variant:\"eLGwhucHO\",width:\"100%\",WkS2JBURN:50})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o82o19-container hidden-1eh8k0q\",id:id1,ref:ref3,children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",transition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",id:\"fLM385435\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"fLM385435\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:true,heightTransition:{damping:60,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n53zx5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LBXXbXJcT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8ebb4457-384c-4a88-b9cb-52e778b1464e, rgb(230, 230, 230))\"},children:\"\\xa9 Paradocs 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8ebb4457-384c-4a88-b9cb-52e778b1464e, rgb(230, 230, 230))\"},children:\"\\xa9 Paradocs 2024\"})}),className:\"framer-1q6pzwl\",fonts:[\"GF;Changa-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cbogmm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LBXXbXJcT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SbDfkpkOp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-rcxf77\",\"data-styles-preset\":\"L36M2t41e\",children:\"About\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SbDfkpkOp\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-rcxf77\",\"data-styles-preset\":\"L36M2t41e\",children:\"About\"})})})}),className:\"framer-m38wg2\",fonts:[\"GF;Changa-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LBXXbXJcT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://us18.list-manage.com/contact-form?u=4de122f2a1c626c756b69fe00&form_id=45214316b9a9f8dbbc3eb20e19ac5b88\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-rcxf77\",\"data-styles-preset\":\"L36M2t41e\",children:\"Contact Us\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hhbmdhLTUwMA==\",\"--framer-font-family\":'\"Changa\", \"Changa Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://us18.list-manage.com/contact-form?u=4de122f2a1c626c756b69fe00&form_id=45214316b9a9f8dbbc3eb20e19ac5b88\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-rcxf77\",\"data-styles-preset\":\"L36M2t41e\",children:\"Contact Us\"})})})}),className:\"framer-t2grl8\",fonts:[\"GF;Changa-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-SItyH[data-border=\"true\"]::after, .framer-SItyH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-SItyH { background: white; }`,\".framer-SItyH.framer-1twhj95, .framer-SItyH .framer-1twhj95 { display: block; }\",\".framer-SItyH.framer-ewdy1u { 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 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-SItyH .framer-1knt6mp-container, .framer-SItyH .framer-1dbzlga-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-SItyH .framer-1y9um5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 100px 5px 100px; position: relative; width: 100%; }\",\".framer-SItyH .framer-y2sach { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 239px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-SItyH .framer-8bo5s8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 167px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1147px; }\",\".framer-SItyH .framer-1yvk9q5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SItyH .framer-1vp3p5r, .framer-SItyH .framer-p9oqjm, .framer-SItyH .framer-fivhra, .framer-SItyH .framer-1o1a5x9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SItyH .framer-ys3gci-container, .framer-SItyH .framer-o82o19-container { cursor: pointer; flex: none; height: 36px; position: absolute; right: 829px; top: -50px; width: 228px; z-index: 1; }\",\".framer-SItyH .framer-ivg2cx, .framer-SItyH .framer-1gjizvs { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-SItyH .framer-njoa2g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: auto; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 330px; }\",\".framer-SItyH .framer-1sftzsw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-SItyH .framer-1xnbihc, .framer-SItyH .framer-sdc8qc, .framer-SItyH .framer-16kx2lg { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 328px; word-break: break-word; word-wrap: break-word; }\",\".framer-SItyH .framer-1ugefc-container { flex: none; height: 341px; position: relative; width: 323px; }\",\".framer-SItyH .framer-1jy903n { aspect-ratio: 0.862533692722372 / 1; height: var(--framer-aspect-ratio-supported, 371px); overflow: visible; position: relative; width: 320px; }\",\".framer-SItyH .framer-cspfoa { aspect-ratio: 0.8142493638676844 / 1; height: var(--framer-aspect-ratio-supported, 393px); overflow: visible; position: relative; width: 320px; }\",\".framer-SItyH .framer-xvuqpf { aspect-ratio: 1.7760814249363868 / 1; height: var(--framer-aspect-ratio-supported, 393px); overflow: visible; position: relative; width: 698px; }\",\".framer-SItyH .framer-82ie08 { aspect-ratio: 1.444043321299639 / 1; height: var(--framer-aspect-ratio-supported, 416px); overflow: visible; position: relative; width: 600px; }\",\".framer-SItyH .framer-10a4lpx { aspect-ratio: 0.7668103448275863 / 1; height: var(--framer-aspect-ratio-supported, 535px); overflow: visible; position: relative; width: 410px; }\",\".framer-SItyH .framer-k9szy3 { aspect-ratio: 0.5637065637065637 / 1; height: var(--framer-aspect-ratio-supported, 456px); overflow: visible; position: relative; width: 257px; }\",\".framer-SItyH .framer-lr0d9e-container { flex: none; height: 273px; position: relative; width: 353px; }\",\".framer-SItyH .framer-vbabkq { aspect-ratio: 1.5195071868583163 / 1; height: var(--framer-aspect-ratio-supported, 487px); overflow: visible; position: relative; width: 740px; }\",\".framer-SItyH .framer-1sgq5a7 { aspect-ratio: 1.4039548022598871 / 1; height: var(--framer-aspect-ratio-supported, 354px); overflow: visible; position: relative; width: 497px; }\",\".framer-SItyH .framer-beeooz { aspect-ratio: 0.8704028021015762 / 1; height: var(--framer-aspect-ratio-supported, 345px); overflow: visible; position: relative; width: 300px; }\",\".framer-SItyH .framer-1hgmxd5 { aspect-ratio: 1.858678955453149 / 1; height: var(--framer-aspect-ratio-supported, 354px); overflow: visible; position: relative; width: 658px; }\",\".framer-SItyH .framer-wocirf { aspect-ratio: 1.7904191616766467 / 1; height: var(--framer-aspect-ratio-supported, 334px); overflow: visible; position: relative; width: 598px; }\",\".framer-SItyH .framer-l40jpd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: visible; padding: 32px 40px 10px 40px; position: relative; width: 390px; }\",\".framer-SItyH .framer-10ry8y4-container { flex: none; height: 39px; position: relative; width: 295px; }\",\".framer-SItyH .framer-oy5xz9, .framer-SItyH .framer-4pr7eo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-SItyH .framer-3vwpd9, .framer-SItyH .framer-xfoyzk, .framer-SItyH .framer-1q16ny6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-SItyH .framer-fys9af { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\".framer-SItyH .framer-1o3c4p3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-SItyH .framer-1itee5n, .framer-SItyH .framer-1cpiv43, .framer-SItyH .framer-wgg0ut, .framer-SItyH .framer-1r1o4kb, .framer-SItyH .framer-1ks0duk { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 475px; word-break: break-word; word-wrap: break-word; }\",\".framer-SItyH .framer-5g3tod-container { flex: none; height: 614px; position: relative; width: 351px; }\",\".framer-SItyH .framer-1yks862-container { align-self: stretch; flex: none; height: auto; position: relative; width: 47%; }\",\".framer-SItyH .framer-5jr7rf, .framer-SItyH .framer-1d51yj0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 53px; height: auto; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\".framer-SItyH .framer-17m6rna-container { flex: none; height: 274px; position: relative; width: 1012px; }\",\".framer-SItyH .framer-11r206o { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: visible; padding: 28px 40px 28px 40px; position: relative; width: 100%; }\",\".framer-SItyH .framer-u3f27k-container { flex: none; height: 39px; position: relative; width: 460px; }\",\".framer-SItyH .framer-1wo5aje { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 100px 25px 100px; position: relative; width: 100%; }\",\".framer-SItyH .framer-131o6ok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 132px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-SItyH .framer-1mfr3y5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 140px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1147px; }\",\".framer-SItyH .framer-1eztzxr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SItyH .framer-n53zx5 { align-content: center; align-items: center; background-color: #222222; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 100%; overflow: visible; padding: 19px 50px 19px 50px; position: relative; width: 100%; }\",\".framer-SItyH .framer-1q6pzwl, .framer-SItyH .framer-m38wg2, .framer-SItyH .framer-t2grl8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SItyH .framer-1cbogmm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SItyH.framer-ewdy1u, .framer-SItyH .framer-1y9um5p, .framer-SItyH .framer-y2sach, .framer-SItyH .framer-8bo5s8, .framer-SItyH .framer-ivg2cx, .framer-SItyH .framer-njoa2g, .framer-SItyH .framer-l40jpd, .framer-SItyH .framer-oy5xz9, .framer-SItyH .framer-3vwpd9, .framer-SItyH .framer-fys9af, .framer-SItyH .framer-xfoyzk, .framer-SItyH .framer-5jr7rf, .framer-SItyH .framer-1gjizvs, .framer-SItyH .framer-4pr7eo, .framer-SItyH .framer-1q16ny6, .framer-SItyH .framer-1d51yj0, .framer-SItyH .framer-11r206o, .framer-SItyH .framer-1wo5aje, .framer-SItyH .framer-131o6ok, .framer-SItyH .framer-1mfr3y5, .framer-SItyH .framer-1cbogmm { gap: 0px; } .framer-SItyH.framer-ewdy1u > *, .framer-SItyH .framer-8bo5s8 > *, .framer-SItyH .framer-oy5xz9 > *, .framer-SItyH .framer-4pr7eo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SItyH.framer-ewdy1u > :first-child, .framer-SItyH .framer-1y9um5p > :first-child, .framer-SItyH .framer-y2sach > :first-child, .framer-SItyH .framer-8bo5s8 > :first-child, .framer-SItyH .framer-njoa2g > :first-child, .framer-SItyH .framer-l40jpd > :first-child, .framer-SItyH .framer-oy5xz9 > :first-child, .framer-SItyH .framer-fys9af > :first-child, .framer-SItyH .framer-4pr7eo > :first-child, .framer-SItyH .framer-11r206o > :first-child, .framer-SItyH .framer-1wo5aje > :first-child, .framer-SItyH .framer-131o6ok > :first-child { margin-top: 0px; } .framer-SItyH.framer-ewdy1u > :last-child, .framer-SItyH .framer-1y9um5p > :last-child, .framer-SItyH .framer-y2sach > :last-child, .framer-SItyH .framer-8bo5s8 > :last-child, .framer-SItyH .framer-njoa2g > :last-child, .framer-SItyH .framer-l40jpd > :last-child, .framer-SItyH .framer-oy5xz9 > :last-child, .framer-SItyH .framer-fys9af > :last-child, .framer-SItyH .framer-4pr7eo > :last-child, .framer-SItyH .framer-11r206o > :last-child, .framer-SItyH .framer-1wo5aje > :last-child, .framer-SItyH .framer-131o6ok > :last-child { margin-bottom: 0px; } .framer-SItyH .framer-1y9um5p > *, .framer-SItyH .framer-1wo5aje > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-SItyH .framer-y2sach > *, .framer-SItyH .framer-131o6ok > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SItyH .framer-ivg2cx > *, .framer-SItyH .framer-1gjizvs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SItyH .framer-ivg2cx > :first-child, .framer-SItyH .framer-3vwpd9 > :first-child, .framer-SItyH .framer-xfoyzk > :first-child, .framer-SItyH .framer-5jr7rf > :first-child, .framer-SItyH .framer-1gjizvs > :first-child, .framer-SItyH .framer-1q16ny6 > :first-child, .framer-SItyH .framer-1d51yj0 > :first-child, .framer-SItyH .framer-1mfr3y5 > :first-child, .framer-SItyH .framer-1cbogmm > :first-child { margin-left: 0px; } .framer-SItyH .framer-ivg2cx > :last-child, .framer-SItyH .framer-3vwpd9 > :last-child, .framer-SItyH .framer-xfoyzk > :last-child, .framer-SItyH .framer-5jr7rf > :last-child, .framer-SItyH .framer-1gjizvs > :last-child, .framer-SItyH .framer-1q16ny6 > :last-child, .framer-SItyH .framer-1d51yj0 > :last-child, .framer-SItyH .framer-1mfr3y5 > :last-child, .framer-SItyH .framer-1cbogmm > :last-child { margin-right: 0px; } .framer-SItyH .framer-njoa2g > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-SItyH .framer-l40jpd > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-SItyH .framer-3vwpd9 > *, .framer-SItyH .framer-xfoyzk > *, .framer-SItyH .framer-1q16ny6 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-SItyH .framer-fys9af > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SItyH .framer-5jr7rf > *, .framer-SItyH .framer-1d51yj0 > * { margin: 0px; margin-left: calc(53px / 2); margin-right: calc(53px / 2); } .framer-SItyH .framer-11r206o > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-SItyH .framer-1mfr3y5 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-SItyH .framer-1cbogmm > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } }\",\"@media (min-width: 1200px) { .framer-SItyH .hidden-ewdy1u { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-SItyH .hidden-9fpjgx { display: none !important; } .${metadata.bodyClassName}-framer-SItyH { background: white; } .framer-SItyH.framer-ewdy1u { width: 810px; } .framer-SItyH .framer-1y9um5p { gap: 28px; padding: 10px 50px 5px 50px; } .framer-SItyH .framer-y2sach, .framer-SItyH .framer-131o6ok { height: 130px; order: 1; width: 702px; } .framer-SItyH .framer-8bo5s8, .framer-SItyH .framer-1mfr3y5 { height: 119px; width: 679px; } .framer-SItyH .framer-ys3gci-container, .framer-SItyH .framer-fys9af, .framer-SItyH .framer-o82o19-container { order: 0; } .framer-SItyH .framer-ivg2cx { padding: 0px 50px 0px 50px; } .framer-SItyH .framer-3vwpd9 { padding: 0px 0px 0px 0px; } .framer-SItyH .framer-1itee5n, .framer-SItyH .framer-1cpiv43, .framer-SItyH .framer-wgg0ut, .framer-SItyH .framer-1r1o4kb, .framer-SItyH .framer-1ks0duk { width: 330px; } .framer-SItyH .framer-5g3tod-container, .framer-SItyH .framer-fivhra { order: 1; } .framer-SItyH .framer-xfoyzk { padding: 47px 0px 47px 0px; } .framer-SItyH .framer-5jr7rf, .framer-SItyH .framer-1d51yj0 { gap: 50px; } .framer-SItyH .framer-17m6rna-container { width: 717px; } .framer-SItyH .framer-1gjizvs { padding: 0px 50px 0px 50px; width: min-content; } .framer-SItyH .framer-4pr7eo { width: 711px; } .framer-SItyH .framer-1q16ny6 { padding: 47px 0px 47px 0px; width: min-content; } .framer-SItyH .framer-11r206o { gap: 13px; padding: 32px 40px 10px 40px; } .framer-SItyH .framer-u3f27k-container { order: 0; width: 393px; } .framer-SItyH .framer-1wo5aje { gap: 28px; padding: 0px 50px 25px 50px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SItyH .framer-1y9um5p, .framer-SItyH .framer-5jr7rf, .framer-SItyH .framer-1d51yj0, .framer-SItyH .framer-11r206o, .framer-SItyH .framer-1wo5aje { gap: 0px; } .framer-SItyH .framer-1y9um5p > *, .framer-SItyH .framer-1wo5aje > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-SItyH .framer-1y9um5p > :first-child, .framer-SItyH .framer-11r206o > :first-child, .framer-SItyH .framer-1wo5aje > :first-child { margin-top: 0px; } .framer-SItyH .framer-1y9um5p > :last-child, .framer-SItyH .framer-11r206o > :last-child, .framer-SItyH .framer-1wo5aje > :last-child { margin-bottom: 0px; } .framer-SItyH .framer-5jr7rf > *, .framer-SItyH .framer-1d51yj0 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-SItyH .framer-5jr7rf > :first-child, .framer-SItyH .framer-1d51yj0 > :first-child { margin-left: 0px; } .framer-SItyH .framer-5jr7rf > :last-child, .framer-SItyH .framer-1d51yj0 > :last-child { margin-right: 0px; } .framer-SItyH .framer-11r206o > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }}`,`@media (max-width: 809px) { .framer-SItyH .hidden-1eh8k0q { display: none !important; } .${metadata.bodyClassName}-framer-SItyH { background: white; } .framer-SItyH.framer-ewdy1u { width: 390px; } .framer-SItyH .framer-1knt6mp-container, .framer-SItyH .framer-njoa2g, .framer-SItyH .framer-1ugefc-container { order: 0; } .framer-SItyH .framer-1y9um5p { gap: 5px; order: 2; padding: 0px 30px 0px 30px; } .framer-SItyH .framer-y2sach { height: 183px; width: 379px; } .framer-SItyH .framer-8bo5s8 { height: 154px; width: 368px; } .framer-SItyH .framer-ivg2cx { flex-direction: column; gap: 41px; order: 4; padding: 21px 30px 21px 30px; } .framer-SItyH .framer-1sftzsw, .framer-SItyH .framer-16kx2lg { order: 1; } .framer-SItyH .framer-1xnbihc, .framer-SItyH .framer-l40jpd { order: 2; } .framer-SItyH .framer-sdc8qc { order: 3; } .framer-SItyH .framer-lr0d9e-container { order: 4; } .framer-SItyH .framer-1wo5aje { gap: 5px; order: 7; padding: 0px 30px 25px 30px; } .framer-SItyH .framer-131o6ok { height: 122px; width: 379px; } .framer-SItyH .framer-1mfr3y5 { flex-direction: column; gap: 0px; height: 52px; width: 368px; } .framer-SItyH .framer-n53zx5 { background-color: #000000; flex-direction: column; gap: 10px; justify-content: center; order: 8; padding: 17px 30px 17px 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SItyH .framer-1y9um5p, .framer-SItyH .framer-ivg2cx, .framer-SItyH .framer-1wo5aje, .framer-SItyH .framer-1mfr3y5, .framer-SItyH .framer-n53zx5 { gap: 0px; } .framer-SItyH .framer-1y9um5p > *, .framer-SItyH .framer-1wo5aje > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-SItyH .framer-1y9um5p > :first-child, .framer-SItyH .framer-ivg2cx > :first-child, .framer-SItyH .framer-1wo5aje > :first-child, .framer-SItyH .framer-1mfr3y5 > :first-child, .framer-SItyH .framer-n53zx5 > :first-child { margin-top: 0px; } .framer-SItyH .framer-1y9um5p > :last-child, .framer-SItyH .framer-ivg2cx > :last-child, .framer-SItyH .framer-1wo5aje > :last-child, .framer-SItyH .framer-1mfr3y5 > :last-child, .framer-SItyH .framer-n53zx5 > :last-child { margin-bottom: 0px; } .framer-SItyH .framer-ivg2cx > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-SItyH .framer-1mfr3y5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SItyH .framer-n53zx5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2442\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DbiDr62Tz\":{\"layout\":[\"fixed\",\"auto\"]},\"LBXXbXJcT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerTSVNFx3jW=withCSS(Component,css,\"framer-SItyH\");export default FramerTSVNFx3jW;FramerTSVNFx3jW.displayName=\"Page\";FramerTSVNFx3jW.defaultProps={height:2442,width:1200};addFonts(FramerTSVNFx3jW,[{family:\"Changa One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/changaone/v20/xfu00W3wXn3QLUJXhzq46APouLfbK64.woff2\",weight:\"400\"},{family:\"Changa\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjXp9htf1ZM.woff2\",weight:\"500\"},{family:\"Changa\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjXp9htf1ZM.woff2\",weight:\"700\"},{family:\"Changa\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjXp9htf1ZM.woff2\",weight:\"600\"},...NavigationCopyFonts,...SearchFonts,...SlideshowFonts,...TickerFonts,...MailchimpFonts,...WordsV2Fonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTSVNFx3jW\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2442\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DbiDr62Tz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LBXXbXJcT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavigationCopyFonts", "getFonts", "mHh5kEsll_default", "SearchFonts", "Search_default", "SlideshowFonts", "Slideshow", "TickerFonts", "Ticker", "MailchimpFonts", "Mailchimp_default", "WordsV2Fonts", "vXMKHCg4S_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transitions", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "ref1", "pe", "isDisplayed", "isDisplayed1", "useRouteElementId", "ref2", "isDisplayed2", "isDisplayed3", "id1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "mHh5kEsll_default", "PropertyOverrides", "x", "Link", "RichText", "Search_default", "Slideshow", "Image2", "Ticker", "Mailchimp_default", "vXMKHCg4S_default", "css", "FramerTSVNFx3jW", "withCSS", "TSVNFx3jW_default", "addFonts", "NavigationCopyFonts", "SearchFonts", "SlideshowFonts", "TickerFonts", "MailchimpFonts", "WordsV2Fonts", "fonts", "__FramerMetadata__"]
}
