{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/HFtj0hHNgwe8M4lNPPfL/8Ett0txy2ZcAPPvSa3Hw/AJkenUwGV.js", "ssg:https://framerusercontent.com/modules/fdvwqzxpzVQ3zwTelZOk/S5vXUERIyfhbYBGFfyow/r3QEXL_oi.js", "ssg:https://framerusercontent.com/modules/reK6yOfEkP1GHzSvPRlR/QsuQfFFhsv9sBytjYpC5/a1GBbGNfZ.js", "ssg:https://framerusercontent.com/modules/jyOsJpugtw2qdEmtXHMQ/KPw7bu5J6sO3KTuUCvha/NaPeJgXE_.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (c90df04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"xoUPoJKHw\",\"m20u_idz7\"];const serializationHash=\"framer-DMB8h\";const variantClassNames={m20u_idz7:\"framer-v-1gooeid\",xoUPoJKHw:\"framer-v-wgtnbx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"xoUPoJKHw\",Open:\"m20u_idz7\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"xoUPoJKHw\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xoUPoJKHw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapbs1rz6=activeVariantCallback(async(...args)=>{setVariant(\"m20u_idz7\");});const onTap17pihhm=activeVariantCallback(async(...args)=>{setVariant(\"xoUPoJKHw\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"m20u_idz7\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wgtnbx\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"xoUPoJKHw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({m20u_idz7:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jduffl\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"m867vJrOE\",onTap:onTapbs1rz6,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{m20u_idz7:{backgroundColor:\"rgba(28, 28, 28, 0)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({m20u_idz7:{onTap:onTap17pihhm}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1raezlg\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"mvzGPx7CW\",style:{opacity:.3,rotate:0},variants:{m20u_idz7:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zn5r8x\",layoutDependency:layoutDependency,layoutId:\"I_wIyKwPv\",style:{backgroundColor:\"rgb(245, 245, 245)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bryvw0\",layoutDependency:layoutDependency,layoutId:\"VD6OERRxz\",style:{backgroundColor:\"rgb(245, 245, 245)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-v1q6e0\",fonts:[\"CUSTOM;Ambit SemiBold\"],layoutDependency:layoutDependency,layoutId:\"qZA2FUJyb\",style:{\"--extracted-r6o4lv\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gtlpms\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"R8IvnEIP1\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:0},variants:{m20u_idz7:{opacity:1}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ybbb8l\",layoutDependency:layoutDependency,layoutId:\"w3MysyRaa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-q9lbig\",fonts:[\"CUSTOM;Ambit Regular\"],layoutDependency:layoutDependency,layoutId:\"ENegWew_3\",style:{\"--extracted-r6o4lv\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{m20u_idz7:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DMB8h.framer-1kg7akc, .framer-DMB8h .framer-1kg7akc { display: block; }\",\".framer-DMB8h.framer-wgtnbx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-DMB8h .framer-jduffl { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-DMB8h .framer-1raezlg { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-DMB8h .framer-zn5r8x { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-DMB8h .framer-1bryvw0 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-DMB8h .framer-v1q6e0 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-DMB8h .framer-gtlpms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 10px 40px; position: relative; width: 100%; }\",\".framer-DMB8h .framer-ybbb8l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-DMB8h .framer-q9lbig { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DMB8h.framer-wgtnbx, .framer-DMB8h .framer-jduffl, .framer-DMB8h .framer-gtlpms, .framer-DMB8h .framer-ybbb8l { gap: 0px; } .framer-DMB8h.framer-wgtnbx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DMB8h.framer-wgtnbx > :first-child, .framer-DMB8h .framer-gtlpms > :first-child, .framer-DMB8h .framer-ybbb8l > :first-child { margin-top: 0px; } .framer-DMB8h.framer-wgtnbx > :last-child, .framer-DMB8h .framer-gtlpms > :last-child, .framer-DMB8h .framer-ybbb8l > :last-child { margin-bottom: 0px; } .framer-DMB8h .framer-jduffl > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-DMB8h .framer-jduffl > :first-child { margin-left: 0px; } .framer-DMB8h .framer-jduffl > :last-child { margin-right: 0px; } .framer-DMB8h .framer-gtlpms > *, .framer-DMB8h .framer-ybbb8l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-DMB8h.framer-v-1gooeid .framer-jduffl, .framer-DMB8h.framer-v-1gooeid .framer-ybbb8l { order: 0; }\",\".framer-DMB8h.framer-v-1gooeid .framer-gtlpms { order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"m20u_idz7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAJkenUwGV=withCSS(Component,css,\"framer-DMB8h\");export default FramerAJkenUwGV;FramerAJkenUwGV.displayName=\"Row Copy\";FramerAJkenUwGV.defaultProps={height:88,width:400};addPropertyControls(FramerAJkenUwGV,{variant:{options:[\"xoUPoJKHw\",\"m20u_idz7\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerAJkenUwGV,[{explicitInter:true,fonts:[{family:\"Ambit SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/gdu1rZt2lZRzH1E0aBe5PrXOWg.woff\"},{family:\"Ambit Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/8QeTuXvOqOcpvTptyc965IQFpnM.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAJkenUwGV\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m20u_idz7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerIntrinsicHeight\":\"88\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AJkenUwGV.map", "// Generated by Framer (c90df04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"LnhkOrua1\",\"qyM7h18uL\"];const serializationHash=\"framer-hp6sz\";const variantClassNames={LnhkOrua1:\"framer-v-gfd19i\",qyM7h18uL:\"framer-v-5unflm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"LnhkOrua1\",Open:\"qyM7h18uL\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"LnhkOrua1\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LnhkOrua1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1y7qw2b=activeVariantCallback(async(...args)=>{setVariant(\"qyM7h18uL\");});const onTapdj2eq5=activeVariantCallback(async(...args)=>{setVariant(\"LnhkOrua1\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"qyM7h18uL\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gfd19i\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"LnhkOrua1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({qyM7h18uL:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hgsgvn\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mzveopiqc\",onTap:onTap1y7qw2b,...addPropertyOverrides({qyM7h18uL:{onTap:onTapdj2eq5}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ni5xhw\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"BtQMvtt75\",style:{opacity:.3,rotate:0},variants:{qyM7h18uL:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c4pwo1\",layoutDependency:layoutDependency,layoutId:\"KtwRCIMuC\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hk0r7r\",layoutDependency:layoutDependency,layoutId:\"tXgV8vCpl\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1rodc6k\",fonts:[\"CUSTOM;Ambit SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ZCI4My11U\",style:{\"--extracted-r6o4lv\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-23mdin\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"MaHv0X6LI\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:0},variants:{qyM7h18uL:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1fe23ap\",fonts:[\"CUSTOM;Ambit Regular\"],layoutDependency:layoutDependency,layoutId:\"Qlr5wuPIz\",style:{\"--extracted-r6o4lv\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{qyM7h18uL:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hp6sz.framer-45rke6, .framer-hp6sz .framer-45rke6 { display: block; }\",\".framer-hp6sz.framer-gfd19i { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-hp6sz .framer-hgsgvn { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-hp6sz .framer-1ni5xhw { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-hp6sz .framer-1c4pwo1 { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-hp6sz .framer-hk0r7r { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-hp6sz .framer-1rodc6k { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-hp6sz .framer-23mdin { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-hp6sz .framer-1fe23ap { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hp6sz.framer-gfd19i, .framer-hp6sz .framer-hgsgvn, .framer-hp6sz .framer-23mdin { gap: 0px; } .framer-hp6sz.framer-gfd19i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hp6sz.framer-gfd19i > :first-child, .framer-hp6sz .framer-23mdin > :first-child { margin-top: 0px; } .framer-hp6sz.framer-gfd19i > :last-child, .framer-hp6sz .framer-23mdin > :last-child { margin-bottom: 0px; } .framer-hp6sz .framer-hgsgvn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-hp6sz .framer-hgsgvn > :first-child { margin-left: 0px; } .framer-hp6sz .framer-hgsgvn > :last-child { margin-right: 0px; } .framer-hp6sz .framer-23mdin > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qyM7h18uL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerr3QEXL_oi=withCSS(Component,css,\"framer-hp6sz\");export default Framerr3QEXL_oi;Framerr3QEXL_oi.displayName=\"Row Copy 2\";Framerr3QEXL_oi.defaultProps={height:88,width:400};addPropertyControls(Framerr3QEXL_oi,{variant:{options:[\"LnhkOrua1\",\"qyM7h18uL\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(Framerr3QEXL_oi,[{explicitInter:true,fonts:[{family:\"Ambit SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/gdu1rZt2lZRzH1E0aBe5PrXOWg.woff\"},{family:\"Ambit Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/8QeTuXvOqOcpvTptyc965IQFpnM.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr3QEXL_oi\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qyM7h18uL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"88\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./r3QEXL_oi.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import RowCopy from\"https://framerusercontent.com/modules/HFtj0hHNgwe8M4lNPPfL/8Ett0txy2ZcAPPvSa3Hw/AJkenUwGV.js\";import RowCopy2 from\"https://framerusercontent.com/modules/fdvwqzxpzVQ3zwTelZOk/S5vXUERIyfhbYBGFfyow/r3QEXL_oi.js\";const RowCopyFonts=getFonts(RowCopy);const RowCopy2Fonts=getFonts(RowCopy2);const cycleOrder=[\"UDovcncOA\",\"MW_mcM0y3\",\"AHGD7LLLq\"];const serializationHash=\"framer-XTtwm\";const variantClassNames={AHGD7LLLq:\"framer-v-15hkx4k\",MW_mcM0y3:\"framer-v-1rv0tqk\",UDovcncOA:\"framer-v-1q0n0pk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"MW_mcM0y3\",Ethos:\"UDovcncOA\",Variant:\"AHGD7LLLq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"UDovcncOA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UDovcncOA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"MW_mcM0y3\")return false;return true;};const isDisplayed1=()=>{if([\"MW_mcM0y3\",\"AHGD7LLLq\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"AHGD7LLLq\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1q0n0pk\",className,classNames),\"data-framer-name\":\"Ethos\",layoutDependency:layoutDependency,layoutId:\"UDovcncOA\",ref:refBinding,style:{backgroundColor:\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(21, 21, 21))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({AHGD7LLLq:{\"data-framer-name\":undefined},MW_mcM0y3:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s7o2iv-container\",layoutDependency:layoutDependency,layoutId:\"WAqCoP5QO-container\",nodeId:\"WAqCoP5QO\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy,{height:\"100%\",id:\"WAqCoP5QO\",layoutId:\"WAqCoP5QO\",style:{width:\"100%\"},T8rQFvSBR:\"Allio is committed to the values that made America great, honoring historical figures and founders without judging them by modern standards.\",variant:\"xoUPoJKHw\",W88zB8mIG:\"American Values\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ep3ufd\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ilJpw5gLG\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+89,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c8pm51-container\",layoutDependency:layoutDependency,layoutId:\"pYyPbBzuM-container\",nodeId:\"pYyPbBzuM\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"pYyPbBzuM\",layoutId:\"pYyPbBzuM\",style:{width:\"100%\"},T8rQFvSBR:\"Allio has no affiliation with any political party or ideology. Instead, Allio focuses on liberty and the original Bill of Rights\u2014with particular attention to Amendments 1, 2, and 4\u2014and values the Federalist Papers for postulating checks and balances within government.\",variant:\"LnhkOrua1\",W88zB8mIG:\"Politically Agnostic\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-114ed3f\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"EOkPcMPX_\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+178,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j1um0u-container\",layoutDependency:layoutDependency,layoutId:\"haeycOBsi-container\",nodeId:\"haeycOBsi\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"haeycOBsi\",layoutId:\"haeycOBsi\",style:{width:\"100%\"},T8rQFvSBR:\"Freedom breeds innovation, as evidenced by the United States' global leadership and historic growth. Education on liberty and free markets is critical for maintaining this advantage against global challengers.\",variant:\"LnhkOrua1\",W88zB8mIG:\"Innovation and Freedom\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vvcy6n\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"WTIdQXKF0\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+267,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rqto2g-container\",layoutDependency:layoutDependency,layoutId:\"IIbwsJq1X-container\",nodeId:\"IIbwsJq1X\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"IIbwsJq1X\",layoutId:\"IIbwsJq1X\",style:{width:\"100%\"},T8rQFvSBR:\"Staying informed on politics and policy is essential for macro portfolio construction, assessing fiscal and monetary policy through historical perspectives to understand asset value determinants.\",variant:\"LnhkOrua1\",W88zB8mIG:\"Macro Approach\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8mplp6\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"aCI0Ry8TH\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+356,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ayk4z-container\",layoutDependency:layoutDependency,layoutId:\"pN5Jqwgc_-container\",nodeId:\"pN5Jqwgc_\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"pN5Jqwgc_\",layoutId:\"pN5Jqwgc_\",style:{width:\"100%\"},T8rQFvSBR:\"Financial literacy begins with understanding economics and policies governing scarcity, opposing socialism and high tax rates, which historically have failed.\",variant:\"LnhkOrua1\",W88zB8mIG:\"Economic Literacy\",width:\"100%\",...addPropertyOverrides({AHGD7LLLq:{T8rQFvSBR:\"Financial literacy begins with understanding economics and policies governing supply and demand as opposed to socialism, which historically has failed. \"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-172sfaw\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"fHAVLfRc8\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+445,...addPropertyOverrides({MW_mcM0y3:{y:(componentViewport?.y||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t5kyuw-container\",layoutDependency:layoutDependency,layoutId:\"wQyiqXXd7-container\",nodeId:\"wQyiqXXd7\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"wQyiqXXd7\",layoutId:\"wQyiqXXd7\",style:{width:\"100%\"},T8rQFvSBR:\"Allio opposes DEI mandates, advocating for meritocracy based on character and ability, and believes in true diversity of thought and socioeconomic background.\",variant:\"LnhkOrua1\",W88zB8mIG:\"Meritocracy Over DEI\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13p8hbv\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"dgXW8Enht\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+534,...addPropertyOverrides({MW_mcM0y3:{y:(componentViewport?.y||0)+0+89}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jpjj7g-container\",layoutDependency:layoutDependency,layoutId:\"x8FmPYNBK-container\",nodeId:\"x8FmPYNBK\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"x8FmPYNBK\",layoutId:\"x8FmPYNBK\",style:{width:\"100%\"},T8rQFvSBR:\"Economic instability arises from large scale economic inequality; an equitable compensation structure should align management, shareholders, and employees.\",variant:\"LnhkOrua1\",W88zB8mIG:\"Economic Equity\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-f1m4rn\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Blo4i0cLB\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+623,...addPropertyOverrides({MW_mcM0y3:{y:(componentViewport?.y||0)+0+178}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kd4iog-container\",layoutDependency:layoutDependency,layoutId:\"zF2QE8Avp-container\",nodeId:\"zF2QE8Avp\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"zF2QE8Avp\",layoutId:\"zF2QE8Avp\",style:{width:\"100%\"},T8rQFvSBR:\"Globalization has exported manufacturing jobs, negatively impacting most Americans with benefits accruing to big business and government. Allio believes this trend must be reversed.\",variant:\"LnhkOrua1\",W88zB8mIG:\"Globalization Impact\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1myqaak\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"WIruess0l\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+712,...addPropertyOverrides({MW_mcM0y3:{y:(componentViewport?.y||0)+0+267}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lsz3dw-container\",layoutDependency:layoutDependency,layoutId:\"rOMCjkwWK-container\",nodeId:\"rOMCjkwWK\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"rOMCjkwWK\",layoutId:\"rOMCjkwWK\",style:{width:\"100%\"},T8rQFvSBR:\"The risk of losing the dollar as the international reserve currency threatens US hegemony and living standards, driven by poor government policies; gold is considered a hedge against this trend. \",variant:\"LnhkOrua1\",W88zB8mIG:\"De-dollarization Threat\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ci6sv0\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"OHjdX6QNK\",style:{backgroundColor:\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"}}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+801,...addPropertyOverrides({MW_mcM0y3:{y:(componentViewport?.y||0)+0+356}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16bckwu-container\",layoutDependency:layoutDependency,layoutId:\"jcsdB4EvI-container\",nodeId:\"jcsdB4EvI\",rendersWithMotion:true,scopeId:\"a1GBbGNfZ\",children:/*#__PURE__*/_jsx(RowCopy2,{height:\"100%\",id:\"jcsdB4EvI\",layoutId:\"jcsdB4EvI\",style:{width:\"100%\"},T8rQFvSBR:\"Allio focuses on providing an optimal investing experience through 'Open Architecture,' allowing clients to integrate banking with investment flexibility, prioritizing investment over banking services.\",variant:\"LnhkOrua1\",W88zB8mIG:\"Open Architecture\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XTtwm.framer-mikcor, .framer-XTtwm .framer-mikcor { display: block; }\",\".framer-XTtwm.framer-1q0n0pk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1000px; }\",\".framer-XTtwm .framer-s7o2iv-container, .framer-XTtwm .framer-c8pm51-container, .framer-XTtwm .framer-1j1um0u-container, .framer-XTtwm .framer-rqto2g-container, .framer-XTtwm .framer-ayk4z-container, .framer-XTtwm .framer-t5kyuw-container, .framer-XTtwm .framer-jpjj7g-container, .framer-XTtwm .framer-1kd4iog-container, .framer-XTtwm .framer-1lsz3dw-container, .framer-XTtwm .framer-16bckwu-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XTtwm .framer-ep3ufd, .framer-XTtwm .framer-114ed3f, .framer-XTtwm .framer-1vvcy6n, .framer-XTtwm .framer-8mplp6, .framer-XTtwm .framer-172sfaw, .framer-XTtwm .framer-13p8hbv, .framer-XTtwm .framer-f1m4rn, .framer-XTtwm .framer-1myqaak, .framer-XTtwm .framer-ci6sv0 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-XTtwm.framer-v-15hkx4k.framer-1q0n0pk { width: 1011px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 649\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MW_mcM0y3\":{\"layout\":[\"fixed\",\"auto\"]},\"AHGD7LLLq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framera1GBbGNfZ=withCSS(Component,css,\"framer-XTtwm\");export default Framera1GBbGNfZ;Framera1GBbGNfZ.displayName=\"Accordion Copy\";Framera1GBbGNfZ.defaultProps={height:649,width:1e3};addPropertyControls(Framera1GBbGNfZ,{variant:{options:[\"UDovcncOA\",\"MW_mcM0y3\",\"AHGD7LLLq\"],optionTitles:[\"Ethos\",\"Variant 2\",\"Variant\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framera1GBbGNfZ,[{explicitInter:true,fonts:[]},...RowCopyFonts,...RowCopy2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera1GBbGNfZ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"649\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MW_mcM0y3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AHGD7LLLq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./a1GBbGNfZ.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import AccordionCopy from\"#framer/local/canvasComponent/a1GBbGNfZ/a1GBbGNfZ.js\";import NewFooter from\"#framer/local/canvasComponent/bzO57btil/bzO57btil.js\";import Logomark from\"#framer/local/canvasComponent/n6BqYjuz4/n6BqYjuz4.js\";import NavMenu from\"#framer/local/canvasComponent/upsgqSs4Y/upsgqSs4Y.js\";import metadataProvider from\"#framer/local/webPageMetadata/NaPeJgXE_/NaPeJgXE_.js\";const NavMenuFonts=getFonts(NavMenu);const VideoFonts=getFonts(Video);const LogomarkFonts=getFonts(Logomark);const AccordionCopyFonts=getFonts(AccordionCopy);const MotionDivWithFX=withFX(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionHeaderWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.header);const NewFooterFonts=getFonts(NewFooter);const breakpoints={BmZsGWFht:\"(min-width: 450px) and (max-width: 450px)\",gfrPGhXXw:\"(max-width: 449px)\",kQw08Kdc5:\"(min-width: 810px) and (max-width: 999px)\",mihphTF0r:\"(min-width: 451px) and (max-width: 599px)\",oSWyJp9Vw:\"(min-width: 1200px) and (max-width: 1199px)\",qA9W_Z3ht:\"(min-width: 600px) and (max-width: 809px)\",T4yB7mM2j:\"(min-width: 1716px) and (max-width: 1999px)\",uHkMGxxU4:\"(min-width: 2000px)\",YeCuDSGag:\"(min-width: 1200px) and (max-width: 1715px)\",YKM2ir8fc:\"(min-width: 1000px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QdISB\";const variantClassNames={BmZsGWFht:\"framer-v-1cdgtfl\",gfrPGhXXw:\"framer-v-123r1lu\",kQw08Kdc5:\"framer-v-10f1fdy\",mihphTF0r:\"framer-v-1ipfxyu\",oSWyJp9Vw:\"framer-v-198tqm1\",qA9W_Z3ht:\"framer-v-1j3es2k\",T4yB7mM2j:\"framer-v-1tphpm7\",uHkMGxxU4:\"framer-v-wzi1x4\",YeCuDSGag:\"framer-v-19ig3op\",YKM2ir8fc:\"framer-v-1rtyzrg\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition1={damping:30,delay:0,mass:1,stiffness:48,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:87,type:\"spring\"};const transition3={damping:30,delay:.5,mass:1,stiffness:100,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:40,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:148,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation7={backgroundColor:\"var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, rgb(124, 83, 246))\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition6};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition6};const animation9={backgroundColor:\"rgb(0, 0, 0)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition6};const animation10={backgroundColor:\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(21, 21, 21))\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition6};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"2000\":\"uHkMGxxU4\",\"Desktop 3\":\"oSWyJp9Vw\",\"Desktop Mid\":\"YKM2ir8fc\",\"Desktop Midwide\":\"T4yB7mM2j\",\"Phone Wide\":\"BmZsGWFht\",\"Tablet 2\":\"qA9W_Z3ht\",Desktop:\"YeCuDSGag\",Phone:\"gfrPGhXXw\",Tablet:\"kQw08Kdc5\",Tablet2:\"mihphTF0r\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YeCuDSGag\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"gfrPGhXXw\",\"BmZsGWFht\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"mihphTF0r\",\"qA9W_Z3ht\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"gfrPGhXXw\",\"BmZsGWFht\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"kQw08Kdc5\",\"mihphTF0r\",\"qA9W_Z3ht\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"kQw08Kdc5\",\"mihphTF0r\",\"qA9W_Z3ht\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"YeCuDSGag\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:'html body { background: linear-gradient(180deg, var(--token-8c7734e2-dc00-4237-a87f-84786ddee94b, rgb(10, 10, 10)) /* {\"name\":\"Dark Black\"} */ 0%, var(--token-8c7734e2-dc00-4237-a87f-84786ddee94b, rgb(10, 10, 10)) /* {\"name\":\"Dark Black\"} */ 18.01801801801802%, var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247)) /* {\"name\":\"Off White\"} */ 25.021818693693692%, var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247)) /* {\"name\":\"Off White\"} */ 100%); } @media (min-width: 451px) and (max-width: 599px) { html body { background: var(--token-8c7734e2-dc00-4237-a87f-84786ddee94b, rgb(10, 10, 10)); } } @media (min-width: 600px) and (max-width: 809px) { html body { background: var(--token-8c7734e2-dc00-4237-a87f-84786ddee94b, rgb(10, 10, 10)); } }'}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-19ig3op\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xlhkno-container\",nodeId:\"WvwFJYNOt\",scopeId:\"NaPeJgXE_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{variant:\"LiK7a881o\"},gfrPGhXXw:{variant:\"LiK7a881o\"},mihphTF0r:{variant:\"LiK7a881o\"},qA9W_Z3ht:{variant:\"LiK7a881o\"}},children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"WvwFJYNOt\",layoutId:\"WvwFJYNOt\",style:{height:\"100%\",width:\"100%\"},variant:\"k1YViY4Ca\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{background:undefined}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250},className:\"framer-12q6itg\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yayti9\",\"data-framer-name\":\"Overlay\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4lyhab-container\",isModuleExternal:true,nodeId:\"zx5NZ79Jz\",scopeId:\"NaPeJgXE_\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"zx5NZ79Jz\",isMixedBorderRadius:false,layoutId:\"zx5NZ79Jz\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vHOJ1edJNZ9xYMr6Y4SzpWBfLSE.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{style:{rotate:540}},qA9W_Z3ht:{style:{rotate:540}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4irso7\",\"data-framer-name\":\"Overlay\",style:{rotate:539}})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{y:(componentViewport?.y||0)+0+57+60+0},gfrPGhXXw:{y:(componentViewport?.y||0)+0+57+60+-23},kQw08Kdc5:{y:(componentViewport?.y||0)+0+57+60+-12},mihphTF0r:{y:(componentViewport?.y||0)+0+57+60+99},oSWyJp9Vw:{y:(componentViewport?.y||0)+0+57+60+2},qA9W_Z3ht:{y:(componentViewport?.y||0)+0+57+60+59.5},T4yB7mM2j:{y:(componentViewport?.y||0)+0+57+60+92.5},uHkMGxxU4:{y:(componentViewport?.y||0)+0+57+60+79},YKM2ir8fc:{y:(componentViewport?.y||0)+0+57+60+4.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:\"110px\",y:(componentViewport?.y||0)+0+57+60+-9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-58uemh-container\",nodeId:\"lPLZ9sKhs\",scopeId:\"NaPeJgXE_\",children:/*#__PURE__*/_jsx(Logomark,{height:\"100%\",id:\"lPLZ9sKhs\",layoutId:\"lPLZ9sKhs\",style:{height:\"100%\",width:\"100%\"},variant:\"x70SpBCq0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Mission\"})})},gfrPGhXXw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Mission\"})})},mihphTF0r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Mission\"})})},qA9W_Z3ht:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Mission\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our Mission\"})}),className:\"framer-1gbcw2k\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, rgb(124, 83, 246))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:'\"Economic freedom is a prerequisite '}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:'to  political freedom\"'})]}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tUmcgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Rg Regular\", \"RocaTwo-Rg Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Milton Freedman\\xa0\"})]})},gfrPGhXXw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, rgb(124, 83, 246))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:'\"Economic freedom is a prerequisite to political freedom\"'})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tUmcgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Rg Regular\", \"RocaTwo-Rg Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Milton Freedman\\xa0\"})]})},mihphTF0r:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, rgb(124, 83, 246))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:'\"Economic freedom is a prerequisite to political freedom\"'})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tUmcgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Rg Regular\", \"RocaTwo-Rg Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Milton Freedman\\xa0\"})]})},qA9W_Z3ht:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, rgb(124, 83, 246))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:'\"Economic freedom is a '}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:'prerequisite to political freedom\"'})]}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tUmcgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Rg Regular\", \"RocaTwo-Rg Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Milton Freedman\\xa0\"})]})},T4yB7mM2j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(144, 107, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:'\"Economic freedom is a prerequisite to political freedom\"'}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tUmcgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Rg Regular\", \"RocaTwo-Rg Regular Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Milton Freedman\\xa0\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, rgb(124, 83, 246))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:'\"Economic freedom is a prerequisite to political freedom\"'})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tUmcgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Rg Regular\", \"RocaTwo-Rg Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Milton Freedman\\xa0\"})]}),className:\"framer-ns6383\",fonts:[\"CUSTOM;Ambit Regular\",\"CUSTOM;RocaTwo-Rg Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-108y9uq\",\"data-framer-name\":\"Allio Story\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ibxzqr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:[\"Financial literacy isn\u2019t possible without being literate on economics. Economic freedom was the basis for the founding of our republic and it eventually led to the most prosperous, innovative, productive economy in all of human history. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The American experiment began as a minimum viable product, designed to uphold liberty and promote opportunity; over time, it became a beacon for the disenfranchised across the globe to  to find refuge, rebuild, and thrive. The only way to preserve our freedom and prosperity is to uphold America\u2019s founding principles and ensure our people understand their importance in maintaining national sovereignty and self-reliance.\"]})})},gfrPGhXXw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:[\"Financial literacy isn\u2019t possible without being literate on economics. Economic freedom was the basis for the founding of our republic and it eventually led to the most prosperous, innovative, productive economy in all of human history. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The American experiment began as a minimum viable product, designed to uphold liberty and promote opportunity; over time, it became a beacon for the disenfranchised across the globe to  to find refuge, rebuild, and thrive. The only way to preserve our freedom and prosperity is to uphold America\u2019s founding principles and ensure our people understand their importance in maintaining national sovereignty and self-reliance.\"]})})},kQw08Kdc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.545em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"},children:[\"Financial literacy isn\u2019t possible without being literate on economics. Economic freedom is a prerequisite to political freedom. Economic freedom was the basis for the founding of our republic and it eventually led to the most prosperous, innovative, productive economy in all of human history. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The American experiment began as a minimum viable product, designed to uphold liberty and promote opportunity; over time, it became a beacon for the disenfranchised across the globe to  to find refuge, rebuild, and thrive. The only way to preserve our freedom and prosperity is to uphold America\u2019s founding principles and ensure our electorate understands their importance in maintaining national sovereignty and self-reliance.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})},mihphTF0r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.545em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9bab5030-cc59-4fa7-bcaf-588015dd3767, rgb(215, 179, 255))\"},children:[\"Financial literacy isn\u2019t possible without being literate on economics. Economic freedom is a prerequisite to political freedom. Economic freedom was the basis for the founding of our republic and it eventually led to the most prosperous, innovative, productive economy in all of human history. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The American experiment began as a minimum viable product, designed to uphold liberty and promote opportunity; over time, it became a beacon for the disenfranchised across the globe to  to find refuge, rebuild, and thrive. The only way to preserve our freedom and prosperity is to uphold America\u2019s founding principles and ensure our electorate understands their importance in maintaining national sovereignty and self-reliance.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.545em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:[\"Financial literacy isn\u2019t possible without being literate on economics. Economic freedom was the basis for the founding of our republic and it eventually led to the most prosperous, innovative, productive economy in all of human history. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The American experiment began as a minimum viable product, designed to uphold liberty and promote opportunity; over time, it became a beacon for the disenfranchised across the globe to  to find refuge, rebuild, and thrive. The only way to preserve our freedom and prosperity is to uphold America\u2019s founding principles and ensure our people understand their importance in maintaining national sovereignty and self-reliance.\"]})}),className:\"framer-zoxq07\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s0sy2n\",\"data-framer-name\":\"Ethos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IEJvbGQ=\",\"--framer-font-family\":'\"Ambit Bold\", \"Ambit Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, rgb(124, 83, 246))\"},children:\"Our Ethos\"})}),className:\"framer-1tjfy20\",fonts:[\"CUSTOM;Ambit Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(21, 21, 21))\"},children:\"At Allio, we believe in transparency and the power of informed decisions. Our ethos is built on providing clients with the tools and insights they need to grow their wealth confidently.\"})}),className:\"framer-1vbu6it\",fonts:[\"CUSTOM;Ambit Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhsp6 hidden-123r1lu hidden-1cdgtfl\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{y:(componentViewport?.y||0)+0+513.625+100+302+0},mihphTF0r:{width:`max(min(1029px, ${componentViewport?.width||\"100vw\"}), 1px)`,y:(componentViewport?.y||0)+0+687.625+100+302+0},oSWyJp9Vw:{y:(componentViewport?.y||0)+0+856.125+100+302+0},qA9W_Z3ht:{width:`max(min(1029px, ${componentViewport?.width||\"100vw\"}), 1px)`,y:(componentViewport?.y||0)+0+775.125+100+302+0},T4yB7mM2j:{y:(componentViewport?.y||0)+0+1194+100+302+0},uHkMGxxU4:{y:(componentViewport?.y||0)+0+1194+100+302+0},YKM2ir8fc:{y:(componentViewport?.y||0)+0+861.125+100+302+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:649,width:`max((min(1029px, ${componentViewport?.width||\"100vw\"}) - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+0+834.125+100+302+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wwctaa-container\",nodeId:\"jEhtYsPNE\",scopeId:\"NaPeJgXE_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mihphTF0r:{variant:\"UDovcncOA\"},qA9W_Z3ht:{variant:\"UDovcncOA\"}},children:/*#__PURE__*/_jsx(AccordionCopy,{height:\"100%\",id:\"jEhtYsPNE\",layoutId:\"jEhtYsPNE\",style:{width:\"100%\"},variant:\"AHGD7LLLq\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{y:(componentViewport?.y||0)+0+513.625+100+302+0},oSWyJp9Vw:{y:(componentViewport?.y||0)+0+856.125+100+302+0},T4yB7mM2j:{y:(componentViewport?.y||0)+0+1194+100+302+0},uHkMGxxU4:{y:(componentViewport?.y||0)+0+1194+100+302+0},YKM2ir8fc:{y:(componentViewport?.y||0)+0+861.125+100+302+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:649,width:`max((min(1029px, ${componentViewport?.width||\"100vw\"}) - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+0+834.125+100+302+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wjvgqd-container hidden-1ipfxyu hidden-1j3es2k\",nodeId:\"KEs3OKtUC\",scopeId:\"NaPeJgXE_\",children:/*#__PURE__*/_jsx(AccordionCopy,{height:\"100%\",id:\"KEs3OKtUC\",layoutId:\"KEs3OKtUC\",style:{width:\"100%\"},variant:\"MW_mcM0y3\",width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{height:649,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+575+100+302},gfrPGhXXw:{height:649,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+721+100+302}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1918gyn-container hidden-19ig3op hidden-198tqm1 hidden-10f1fdy hidden-1rtyzrg hidden-1tphpm7 hidden-wzi1x4 hidden-1ipfxyu hidden-1j3es2k\",nodeId:\"PJUzMOLes\",scopeId:\"NaPeJgXE_\",children:/*#__PURE__*/_jsx(AccordionCopy,{height:\"100%\",id:\"PJUzMOLes\",layoutId:\"PJUzMOLes\",style:{width:\"100%\"},variant:\"UDovcncOA\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n57tgq hidden-10f1fdy hidden-1ipfxyu hidden-1j3es2k\",\"data-framer-name\":\"Bill Of Rights\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1676+0+-7),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"738px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}},gfrPGhXXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1822+0+-7),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"738px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}},oSWyJp9Vw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1957.125+50+0),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}},T4yB7mM2j:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2295+50+0),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"1057px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}},uHkMGxxU4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2295+50+0),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"1057px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}},YKM2ir8fc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1962.125+50+0),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1935.125+50+0),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"1057px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"},className:\"framer-1nneuxn\",\"data-framer-appear-id\":\"1nneuxn\",\"data-framer-name\":\"Header Image\",initial:animation2,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1huwme\",\"data-framer-name\":\"BoR Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IEJvbGQ=\",\"--framer-font-family\":'\"Ambit Bold\", \"Ambit Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(27, 27, 27))\"},children:\"Bill of Rights\"})}),className:\"framer-1w8o1es\",fonts:[\"CUSTOM;Ambit Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(27, 27, 27))\"},children:\"Allio aligns itself with traditional American values, particularly those enshrined in the Bill of Rights. The brand proudly upholds freedoms such as speech, expression, and the right to bear arms, viewing them as essential for innovation and economic growth.\"})})},gfrPGhXXw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(27, 27, 27))\"},children:\"Allio aligns itself with traditional American values, particularly those enshrined in the Bill of Rights. The brand proudly upholds freedoms such as speech, expression, and the right to bear arms, viewing them as essential for innovation and economic growth.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(27, 27, 27))\"},children:\"Allio aligns itself with traditional American values, particularly those enshrined in the Bill of Rights. The brand proudly upholds freedoms such as speech, expression, and the right to bear arms, viewing them as essential for innovation and economic growth.\"})}),className:\"framer-1bc2njp\",fonts:[\"CUSTOM;Ambit Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionHeaderWithOptimizedAppearEffect,{animate:animation3,className:\"framer-bmod0h\",\"data-framer-appear-id\":\"bmod0h\",\"data-framer-name\":\"BoR Row 1\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-qb5deo\",\"data-framer-appear-id\":\"qb5deo\",\"data-framer-name\":\"Features Itens\",initial:animation6,optimized:true,style:{scale:.8,transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13w6ucf\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"First Amendment\"})}),className:\"framer-kb7e4x\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",whileHover:animation8,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guarantees the freedoms of speech, religion, press, assembly, and the right to petition the government.\"})}),className:\"framer-1vwtprm\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qw6acx\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Second Amendment\"})}),className:\"framer-1c6njar\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Protects the right to keep and bear arms.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1xccow6\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dma3th\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Third Amendment\"})}),className:\"framer-16tp2uz\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Prohibits the quartering of soldiers in private homes without the owner's consent in peacetime.\"})}),className:\"framer-57fpuv\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m24aw0\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Fourth Amendment\"})}),className:\"framer-1d58lhv\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Protects against unreasonable searches and seizures and sets requirements for search warrants based on probable cause.\"})}),className:\"framer-fhags3\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-irefeb\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Fifth Amendment\"})}),className:\"framer-f9n9fn\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guarantees the right to due process, prohibits self-incrimination and double jeopardy, and mandates compensation for eminent domain takings.\"})}),className:\"framer-1tcbwzk\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f6s9dx hidden-19ig3op hidden-198tqm1 hidden-1rtyzrg hidden-1tphpm7 hidden-wzi1x4\",\"data-framer-name\":\"Item 01\",whileHover:animation9,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Sixth Amendment\"})}),className:\"framer-1jlsz06\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",whileHover:animation8,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Provides the right to a speedy, public trial by an impartial jury, to confront witnesses, to compulsory process for obtaining witnesses, and to legal counsel.\"})}),className:\"framer-wdm9oe\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u9qd6m hidden-19ig3op hidden-198tqm1 hidden-1rtyzrg hidden-1tphpm7 hidden-wzi1x4\",\"data-framer-name\":\"Item 01\",whileHover:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Seventh Amendment\"})}),className:\"framer-1s1cs8j\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guarantees the right to a jury trial in civil cases involving claims of more than twenty dollars.\"})}),className:\"framer-izorkc\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19grzz6 hidden-19ig3op hidden-198tqm1 hidden-1rtyzrg hidden-1tphpm7 hidden-wzi1x4\",\"data-framer-name\":\"Item 01\",whileHover:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Eight Amendment\"})}),className:\"framer-ne1jzd\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Prohibits excessive bail and fines, as well as cruel and unusual punishment.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-sroxe3\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vunuqh hidden-19ig3op hidden-198tqm1 hidden-1rtyzrg hidden-1tphpm7 hidden-wzi1x4\",\"data-framer-name\":\"Item 01\",whileHover:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Ninth Amendment\"})}),className:\"framer-1ifmmn2\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Declares that the listing of individual rights in the Constitution and Bill of Rights is not exhaustive; people have other rights not specifically mentioned.\"})}),className:\"framer-dtvh1x\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{whileHover:undefined},gfrPGhXXw:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lo2hm4 hidden-19ig3op hidden-198tqm1 hidden-1rtyzrg hidden-1tphpm7 hidden-wzi1x4\",\"data-framer-name\":\"Item 01\",whileHover:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Tenth Amendment\"})}),className:\"framer-1nxi8m9\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"States that powers not delegated to the federal government, nor prohibited to the states, are reserved to the states or the people.\"})}),className:\"framer-jgdt7g\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionHeaderWithOptimizedAppearEffect,{animate:animation3,className:\"framer-38yb6f hidden-123r1lu hidden-1cdgtfl\",\"data-framer-appear-id\":\"38yb6f\",\"data-framer-name\":\"BoR Row 2\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1404v4e\",\"data-framer-name\":\"Features Itens\",style:{scale:.8,transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p9ul76\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Sixth Amendment\"})}),className:\"framer-g6k0wp\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",whileHover:animation8,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Provides the right to a speedy, public trial by an impartial jury, to confront witnesses, to compulsory process for obtaining witnesses, and to legal counsel.\"})}),className:\"framer-ej29ul\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oyoeqa\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Seventh Amendment\"})}),className:\"framer-atzr9v\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guarantees the right to a jury trial in civil cases involving claims of more than twenty dollars.\"})}),className:\"framer-kmi8ga\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-soz1dh\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Eighth Amendment\"})}),className:\"framer-1n9fun7\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Prohibits excessive bail and fines, as well as cruel and unusual punishment.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1qp6ov6\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4gwmld\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Ninth Amendment\"})}),className:\"framer-1icay58\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Declares that the listing of individual rights in the Constitution and Bill of Rights is not exhaustive; people have other rights not specifically mentioned.\"})}),className:\"framer-1kf68xf\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11vvud7\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Tenth Amendment\"})}),className:\"framer-dlum60\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"States that powers not delegated to the federal government, nor prohibited to the states, are reserved to the states or the people.\"})}),className:\"framer-lgyk6t\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{y:(componentViewport?.y||0)+0+2922},gfrPGhXXw:{y:(componentViewport?.y||0)+0+3068},kQw08Kdc5:{y:(componentViewport?.y||0)+0+2737.625},mihphTF0r:{y:(componentViewport?.y||0)+0+2812.625},oSWyJp9Vw:{y:(componentViewport?.y||0)+0+3458.125},qA9W_Z3ht:{y:(componentViewport?.y||0)+0+3049.125},T4yB7mM2j:{y:(componentViewport?.y||0)+0+3796},uHkMGxxU4:{y:(componentViewport?.y||0)+0+3796},YKM2ir8fc:{y:(componentViewport?.y||0)+0+3513.125}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:818,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3436.125,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11s7xjo-container\",nodeId:\"Jqrilh6sl\",scopeId:\"NaPeJgXE_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BmZsGWFht:{variant:\"PJGyYMKK5\"},gfrPGhXXw:{variant:\"PJGyYMKK5\"},mihphTF0r:{variant:\"PJGyYMKK5\"}},children:/*#__PURE__*/_jsx(NewFooter,{height:\"100%\",id:\"Jqrilh6sl\",layoutId:\"Jqrilh6sl\",style:{width:\"100%\"},variant:\"UNSGmSo1J\",width:\"100%\"})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mihphTF0r:{__framer__threshold:0},qA9W_Z3ht:{__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ii2ooh hidden-19ig3op hidden-198tqm1 hidden-1rtyzrg hidden-123r1lu hidden-1tphpm7 hidden-wzi1x4 hidden-1cdgtfl\",\"data-framer-name\":\"Bill Of Rights\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1614.625+50+0),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"741px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}},mihphTF0r:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1788.625+40+0),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"741px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}},qA9W_Z3ht:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1876.125+50+25),pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"741px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280,pixelHeight:1080,pixelWidth:1920,positionX:\"right\",positionY:\"bottom\",sizes:\"741px\",src:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png\",srcSet:\"https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UhgzV08rm2lYpH1v8pROBStobiw.png 1920w\"},className:\"framer-1ldhnnd\",\"data-framer-appear-id\":\"1ldhnnd\",\"data-framer-name\":\"Header Image\",initial:animation2,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-14uxmdc\",\"data-framer-name\":\"BoR Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IEJvbGQ=\",\"--framer-font-family\":'\"Ambit Bold\", \"Ambit Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(27, 27, 27))\"},children:\"Bill of Rights\"})}),className:\"framer-yxiwck\",fonts:[\"CUSTOM;Ambit Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Ambit Regular\", \"Ambit Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(27, 27, 27))\"},children:\"Allio aligns itself with traditional American values, particularly those enshrined in the Bill of Rights. The brand proudly upholds freedoms such as speech, expression, and the right to bear arms, viewing them as essential for innovation and economic growth.\"})}),className:\"framer-1y5rvs5\",fonts:[\"CUSTOM;Ambit Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionHeaderWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1yfbjmp\",\"data-framer-appear-id\":\"1yfbjmp\",\"data-framer-name\":\"BoR Row 1\",initial:animation4,optimized:true,children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1c597ut\",\"data-framer-appear-id\":\"1c597ut\",\"data-framer-name\":\"Features Itens\",initial:animation6,optimized:true,style:{scale:.8,transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4qodjs\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"First Amendment\"})}),className:\"framer-g8r3dk\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",whileHover:animation8,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guarantees the freedoms of speech, religion, press, assembly, and the right to petition the government.\"})}),className:\"framer-lzmuxq\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13s7xz6\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Second Amendment\"})}),className:\"framer-1r3dw5l\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Protects the right to keep and bear arms.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-5zqsc0\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ymzo6a\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Third Amendment\"})}),className:\"framer-1owx0i\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Prohibits the quartering of soldiers in private homes without the owner's consent in peacetime.\"})}),className:\"framer-1xn2nxm\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184616g\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Fourth Amendment\"})}),className:\"framer-1l2xr6g\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Protects against unreasonable searches and seizures and sets requirements for search warrants based on probable cause.\"})}),className:\"framer-l4b1af\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zafi08\",\"data-framer-name\":\"Item 01\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Fifth Amendment\"})}),className:\"framer-1sc91hz\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guarantees the right to due process, prohibits self-incrimination and double jeopardy, and mandates compensation for eminent domain takings.\"})}),className:\"framer-9jmnsf\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ae7v3\",\"data-framer-name\":\"Item 01\",whileHover:animation9,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Sixth Amendment\"})}),className:\"framer-4egyxn\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",whileHover:animation8,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Provides the right to a speedy, public trial by an impartial jury, to confront witnesses, to compulsory process for obtaining witnesses, and to legal counsel.\"})}),className:\"framer-1un4ie\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined},qA9W_Z3ht:{whileHover:animation7}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pr784q\",\"data-framer-name\":\"Item 01\",whileHover:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Seventh Amendment\"})}),className:\"framer-sr93fj\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guarantees the right to a jury trial in civil cases involving claims of more than twenty dollars.\"})}),className:\"framer-1n6rl9r\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined},qA9W_Z3ht:{whileHover:animation7}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-klans4\",\"data-framer-name\":\"Item 01\",whileHover:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Eight Amendment\"})}),className:\"framer-v1wgws\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Prohibits excessive bail and fines, as well as cruel and unusual punishment.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-sfa0ka\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\",\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined},qA9W_Z3ht:{whileHover:animation7}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3wlhxt\",\"data-framer-name\":\"Item 01\",whileHover:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Ninth Amendment\"})}),className:\"framer-bra313\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Declares that the listing of individual rights in the Constitution and Bill of Rights is not exhaustive; people have other rights not specifically mentioned.\"})}),className:\"framer-67ub8z\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kQw08Kdc5:{whileHover:undefined},qA9W_Z3ht:{whileHover:animation7}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pxcqmp\",\"data-framer-name\":\"Item 01\",whileHover:animation10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1JvY2FUd28tQmwgUmVndWxhcg==\",\"--framer-font-family\":'\"RocaTwo-Bl Regular\", \"RocaTwo-Bl Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247))\"},children:\"Tenth Amendment\"})}),className:\"framer-pg38rw\",\"data-framer-name\":\"Grow Fast Get Help\",fonts:[\"CUSTOM;RocaTwo-Bl Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FtYml0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Ambit SemiBold\", \"Ambit SemiBold Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"States that powers not delegated to the federal government, nor prohibited to the states, are reserved to the states or the people.\"})}),className:\"framer-fl53fy\",\"data-framer-name\":\"Provide exceptional customer service with our all-in-one platform. Leverage automation for speed, offer human interactions for a personal touch, and automate customer support to close leads faster.\",fonts:[\"CUSTOM;Ambit SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QdISB.framer-kyxcpw, .framer-QdISB .framer-kyxcpw { display: block; }\",\".framer-QdISB.framer-19ig3op { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-8c7734e2-dc00-4237-a87f-84786ddee94b, #0a0a0a) 0%, var(--token-8c7734e2-dc00-4237-a87f-84786ddee94b, rgb(10, 10, 10)) 18.01801801801802%, var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247)) 25.021818693693692%, var(--token-5475285f-35de-450d-9bd6-14b97785060c, rgb(253, 247, 247)) 100%); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-QdISB .framer-1xlhkno-container { flex: none; height: 57px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-QdISB .framer-12q6itg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 424px; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-QdISB .framer-yayti9 { bottom: 0px; flex: none; gap: 10px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-QdISB .framer-4lyhab-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QdISB .framer-4irso7 { background: radial-gradient(41% 50% at 50.1% 73.7%, rgba(96, 37, 168, 0) 7.840653153153154%, var(--token-506f75c2-7103-4a13-b602-339f9548ea11, rgb(21, 21, 21)) 100%); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; bottom: -108px; cursor: default; flex: none; left: -241px; overflow: hidden; position: absolute; right: -278px; top: -59px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-QdISB .framer-58uemh-container { flex: none; height: 66px; position: relative; width: 110px; }\",\".framer-QdISB .framer-1gbcw2k, .framer-QdISB .framer-ns6383 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-QdISB .framer-108y9uq { align-content: center; align-items: center; background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-QdISB .framer-ibxzqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-QdISB .framer-zoxq07 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-QdISB .framer-1s0sy2n { align-content: center; align-items: center; background-color: var(--token-5475285f-35de-450d-9bd6-14b97785060c, #fdf7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-QdISB .framer-1tjfy20, .framer-QdISB .framer-1w8o1es, .framer-QdISB .framer-yxiwck { --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-QdISB .framer-1vbu6it { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 616px; word-break: break-word; word-wrap: break-word; }\",\".framer-QdISB .framer-1bhsp6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1029px; }\",\".framer-QdISB .framer-wwctaa-container, .framer-QdISB .framer-wjvgqd-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-QdISB .framer-1918gyn-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-QdISB .framer-1n57tgq { align-content: center; align-items: center; background-color: var(--token-5475285f-35de-450d-9bd6-14b97785060c, #fdf7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QdISB .framer-1nneuxn { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 446px; overflow: hidden; position: relative; width: 1057px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-1huwme { align-content: center; align-items: center; background-color: var(--token-5475285f-35de-450d-9bd6-14b97785060c, #fdf7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: 280px; justify-content: center; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 99%; }\",\".framer-QdISB .framer-1bc2njp { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 813px; word-break: break-word; word-wrap: break-word; }\",\".framer-QdISB .framer-bmod0h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 344px; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 101%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-qb5deo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 125%; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 120%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-13w6ucf, .framer-QdISB .framer-1p9ul76, .framer-QdISB .framer-4qodjs { align-content: center; align-items: center; background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 339px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 244px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-kb7e4x, .framer-QdISB .framer-1jlsz06, .framer-QdISB .framer-g6k0wp, .framer-QdISB .framer-g8r3dk, .framer-QdISB .framer-4egyxn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 184px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-QdISB .framer-1vwtprm, .framer-QdISB .framer-1xccow6, .framer-QdISB .framer-57fpuv, .framer-QdISB .framer-fhags3, .framer-QdISB .framer-1tcbwzk, .framer-QdISB .framer-wdm9oe, .framer-QdISB .framer-izorkc, .framer-QdISB .framer-sroxe3, .framer-QdISB .framer-dtvh1x, .framer-QdISB .framer-jgdt7g, .framer-QdISB .framer-ej29ul, .framer-QdISB .framer-kmi8ga, .framer-QdISB .framer-1qp6ov6, .framer-QdISB .framer-1kf68xf, .framer-QdISB .framer-lgyk6t, .framer-QdISB .framer-lzmuxq, .framer-QdISB .framer-5zqsc0, .framer-QdISB .framer-1xn2nxm, .framer-QdISB .framer-l4b1af, .framer-QdISB .framer-9jmnsf, .framer-QdISB .framer-1un4ie, .framer-QdISB .framer-1n6rl9r, .framer-QdISB .framer-sfa0ka, .framer-QdISB .framer-67ub8z, .framer-QdISB .framer-fl53fy { flex: none; height: 86px; position: relative; white-space: pre-wrap; width: 170px; word-break: break-word; word-wrap: break-word; }\",\".framer-QdISB .framer-1qw6acx, .framer-QdISB .framer-dma3th, .framer-QdISB .framer-1m24aw0, .framer-QdISB .framer-irefeb, .framer-QdISB .framer-1oyoeqa, .framer-QdISB .framer-soz1dh, .framer-QdISB .framer-4gwmld, .framer-QdISB .framer-11vvud7, .framer-QdISB .framer-13s7xz6, .framer-QdISB .framer-184616g, .framer-QdISB .framer-zafi08 { align-content: center; align-items: center; background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 339px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 244px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-1c6njar, .framer-QdISB .framer-16tp2uz, .framer-QdISB .framer-1d58lhv, .framer-QdISB .framer-f9n9fn, .framer-QdISB .framer-1s1cs8j, .framer-QdISB .framer-ne1jzd, .framer-QdISB .framer-1ifmmn2, .framer-QdISB .framer-1nxi8m9, .framer-QdISB .framer-atzr9v, .framer-QdISB .framer-1n9fun7, .framer-QdISB .framer-1icay58, .framer-QdISB .framer-dlum60, .framer-QdISB .framer-1r3dw5l, .framer-QdISB .framer-1owx0i, .framer-QdISB .framer-1l2xr6g, .framer-QdISB .framer-1sc91hz, .framer-QdISB .framer-sr93fj, .framer-QdISB .framer-v1wgws, .framer-QdISB .framer-bra313, .framer-QdISB .framer-pg38rw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 184px; word-break: break-word; word-wrap: break-word; }\",\".framer-QdISB .framer-f6s9dx, .framer-QdISB .framer-10ae7v3 { align-content: center; align-items: center; background-color: var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, #7c53f6); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 339px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 244px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-u9qd6m, .framer-QdISB .framer-19grzz6, .framer-QdISB .framer-1vunuqh, .framer-QdISB .framer-lo2hm4, .framer-QdISB .framer-pr784q, .framer-QdISB .framer-klans4, .framer-QdISB .framer-3wlhxt, .framer-QdISB .framer-pxcqmp { align-content: center; align-items: center; background-color: var(--token-cdb8265a-1ff6-46f9-a869-09aa53323d39, #7c53f6); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 339px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 244px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-38yb6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 381px; justify-content: center; overflow: hidden; padding: 0px 40px 40px 40px; position: relative; width: 101%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-1404v4e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 123%; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 120%; }\",\".framer-QdISB .framer-11s7xjo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-QdISB .framer-ii2ooh { align-content: center; align-items: center; background-color: var(--token-5475285f-35de-450d-9bd6-14b97785060c, #fdf7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 32%; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-QdISB .framer-1ldhnnd { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 446px; overflow: hidden; position: relative; width: 741px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-14uxmdc { align-content: center; align-items: center; background-color: var(--token-5475285f-35de-450d-9bd6-14b97785060c, #fdf7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: 280px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 86%; }\",\".framer-QdISB .framer-1y5rvs5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 673px; word-break: break-word; word-wrap: break-word; }\",\".framer-QdISB .framer-1yfbjmp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: auto; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-1c597ut { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: 347px; justify-content: flex-start; max-width: 1440px; overflow: auto; padding: 0px; position: relative; width: 120%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-QdISB .framer-1ymzo6a { align-content: center; align-items: center; background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 339px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 244px; will-change: var(--framer-will-change-effect-override, transform); }\",\"@media (min-width: 1200px) and (max-width: 1199px) { .framer-QdISB .framer-12q6itg { height: 446px; } .framer-QdISB .framer-4irso7 { bottom: -137px; left: -241px; right: -278px; top: -96px; } .framer-QdISB .framer-1n57tgq { padding: 50px 40px 0px 40px; } .framer-QdISB .framer-1nneuxn { width: 100%; }}\",\"@media (min-width: 810px) and (max-width: 999px) { .framer-QdISB.framer-19ig3op { width: 810px; } .framer-QdISB .framer-1xlhkno-container { order: 0; } .framer-QdISB .framer-12q6itg { background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); height: 418px; order: 1; } .framer-QdISB .framer-4irso7 { bottom: 0px; left: -156px; right: -150px; top: -57px; } .framer-QdISB .framer-108y9uq { order: 2; padding: 0px; width: 100%; } .framer-QdISB .framer-ibxzqr { padding: 0px 50px 0px 50px; } .framer-QdISB .framer-zoxq07 { order: 0; width: 718px; } .framer-QdISB .framer-1s0sy2n { order: 3; } .framer-QdISB .framer-1vbu6it { width: 100%; } .framer-QdISB .framer-11s7xjo-container { order: 7; } .framer-QdISB .framer-ii2ooh { height: min-content; order: 4; padding: 50px 0px 0px 0px; } .framer-QdISB .framer-4qodjs, .framer-QdISB .framer-13s7xz6, .framer-QdISB .framer-1ymzo6a, .framer-QdISB .framer-184616g, .framer-QdISB .framer-zafi08 { will-change: unset; } .framer-QdISB .framer-10ae7v3, .framer-QdISB .framer-pr784q, .framer-QdISB .framer-klans4, .framer-QdISB .framer-3wlhxt, .framer-QdISB .framer-pxcqmp { background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); will-change: unset; }}\",\"@media (min-width: 1000px) and (max-width: 1199px) { .framer-QdISB.framer-19ig3op { width: 1000px; } .framer-QdISB .framer-12q6itg { height: 451px; } .framer-QdISB .framer-4irso7 { bottom: -137px; left: -241px; right: -278px; top: -51px; } .framer-QdISB .framer-108y9uq, .framer-QdISB .framer-1nneuxn { width: 100%; } .framer-QdISB .framer-1n57tgq { padding: 50px 40px 50px 40px; } .framer-QdISB .framer-bmod0h { padding: 0px; width: 100%; } .framer-QdISB .framer-qb5deo, .framer-QdISB .framer-1404v4e { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); } .framer-QdISB .framer-13w6ucf, .framer-QdISB .framer-1qw6acx, .framer-QdISB .framer-dma3th, .framer-QdISB .framer-1m24aw0, .framer-QdISB .framer-irefeb, .framer-QdISB .framer-1p9ul76, .framer-QdISB .framer-1oyoeqa, .framer-QdISB .framer-soz1dh, .framer-QdISB .framer-4gwmld, .framer-QdISB .framer-11vvud7 { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-QdISB .framer-38yb6f { padding: 0px 0px 40px 0px; width: 100%; }}\",\"@media (max-width: 449px) { .framer-QdISB.framer-19ig3op { width: 375px; } .framer-QdISB .framer-1xlhkno-container { order: 0; } .framer-QdISB .framer-12q6itg { height: 504px; order: 1; padding: 60px 20px 60px 20px; } .framer-QdISB .framer-4irso7 { bottom: -137px; left: -157px; right: -149px; top: -58px; } .framer-QdISB .framer-ns6383 { width: 100%; } .framer-QdISB .framer-108y9uq { order: 2; padding: 0px; width: 100%; } .framer-QdISB .framer-ibxzqr { gap: 46px; padding: 0px 30px 40px 30px; } .framer-QdISB .framer-zoxq07 { width: 323px; } .framer-QdISB .framer-1s0sy2n { order: 3; overflow: hidden; } .framer-QdISB .framer-1vbu6it { width: 312px; } .framer-QdISB .framer-1n57tgq { height: 1246px; order: 4; padding: 0px; } .framer-QdISB .framer-1nneuxn { height: 539px; width: 738px; } .framer-QdISB .framer-1huwme { height: 374px; width: 99%; } .framer-QdISB .framer-1bc2njp { width: 337px; } .framer-QdISB .framer-bmod0h { height: min-content; overflow: auto; padding: 0px; width: 100%; } .framer-QdISB .framer-qb5deo { align-content: flex-start; align-items: flex-start; gap: 17px; height: 347px; justify-content: flex-start; overflow: auto; } .framer-QdISB .framer-13w6ucf, .framer-QdISB .framer-1qw6acx, .framer-QdISB .framer-1m24aw0, .framer-QdISB .framer-irefeb { will-change: unset; } .framer-QdISB .framer-dma3th { gap: 8px; will-change: unset; } .framer-QdISB .framer-f6s9dx, .framer-QdISB .framer-u9qd6m, .framer-QdISB .framer-19grzz6, .framer-QdISB .framer-1vunuqh, .framer-QdISB .framer-lo2hm4 { background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); will-change: unset; } .framer-QdISB .framer-11s7xjo-container { order: 7; }}\",\"@media (min-width: 1716px) and (max-width: 1999px) { .framer-QdISB.framer-19ig3op { width: 1716px; } .framer-QdISB .framer-12q6itg { height: 600px; } .framer-QdISB .framer-108y9uq { height: 537px; }}\",\"@media (min-width: 2000px) { .framer-QdISB.framer-19ig3op { width: 2000px; } .framer-QdISB .framer-12q6itg { height: 600px; } .framer-QdISB .framer-108y9uq { height: 537px; }}\",\"@media (min-width: 451px) and (max-width: 599px) { .framer-QdISB.framer-19ig3op { background-color: var(--token-8c7734e2-dc00-4237-a87f-84786ddee94b, #0a0a0a); width: 451px; } .framer-QdISB .framer-1xlhkno-container { order: 0; } .framer-QdISB .framer-12q6itg { height: 532px; order: 1; padding: 60px 60px 0px 60px; } .framer-QdISB .framer-4irso7 { bottom: -9px; left: -159px; right: -147px; top: 0px; } .framer-QdISB .framer-108y9uq { order: 2; padding: 0px; width: 100%; } .framer-QdISB .framer-ibxzqr { padding: 40px 50px 20px 50px; } .framer-QdISB .framer-zoxq07 { order: 0; width: 687px; } .framer-QdISB .framer-1s0sy2n { order: 3; } .framer-QdISB .framer-1vbu6it, .framer-QdISB .framer-1y5rvs5 { width: 100%; } .framer-QdISB .framer-11s7xjo-container { order: 7; } .framer-QdISB .framer-ii2ooh { height: min-content; order: 4; padding: 40px 0px 0px 0px; } .framer-QdISB .framer-14uxmdc { height: min-content; padding: 40px 20px 40px 20px; } .framer-QdISB .framer-10ae7v3, .framer-QdISB .framer-pr784q, .framer-QdISB .framer-klans4, .framer-QdISB .framer-3wlhxt, .framer-QdISB .framer-pxcqmp { background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); }}\",\"@media (min-width: 450px) and (max-width: 450px) { .framer-QdISB.framer-19ig3op { width: 450px; } .framer-QdISB .framer-1xlhkno-container { order: 0; } .framer-QdISB .framer-12q6itg { height: min-content; order: 1; padding: 60px 20px 60px 20px; } .framer-QdISB .framer-4irso7 { bottom: -210px; left: -158px; right: -148px; top: -57px; } .framer-QdISB .framer-108y9uq { order: 2; padding: 0px; width: 100%; } .framer-QdISB .framer-ibxzqr { gap: 46px; padding: 0px 30px 40px 30px; } .framer-QdISB .framer-zoxq07 { width: 100%; } .framer-QdISB .framer-1s0sy2n { order: 3; overflow: hidden; } .framer-QdISB .framer-1vbu6it { width: 312px; } .framer-QdISB .framer-1n57tgq { height: 1246px; order: 4; padding: 0px; } .framer-QdISB .framer-1nneuxn { height: 539px; width: 738px; } .framer-QdISB .framer-1huwme { height: 374px; width: 99%; } .framer-QdISB .framer-1bc2njp { width: 337px; } .framer-QdISB .framer-bmod0h { height: min-content; overflow: auto; padding: 0px; width: 100%; } .framer-QdISB .framer-qb5deo { align-content: flex-start; align-items: flex-start; gap: 17px; height: 347px; justify-content: flex-start; overflow: auto; } .framer-QdISB .framer-13w6ucf, .framer-QdISB .framer-1qw6acx, .framer-QdISB .framer-1m24aw0, .framer-QdISB .framer-irefeb { will-change: unset; } .framer-QdISB .framer-dma3th { gap: 8px; will-change: unset; } .framer-QdISB .framer-f6s9dx, .framer-QdISB .framer-u9qd6m, .framer-QdISB .framer-19grzz6, .framer-QdISB .framer-1vunuqh, .framer-QdISB .framer-lo2hm4 { background-color: var(--token-506f75c2-7103-4a13-b602-339f9548ea11, #151515); will-change: unset; } .framer-QdISB .framer-11s7xjo-container { order: 7; }}\",\"@media (min-width: 600px) and (max-width: 809px) { .framer-QdISB.framer-19ig3op { background-color: var(--token-8c7734e2-dc00-4237-a87f-84786ddee94b, #0a0a0a); width: 600px; } .framer-QdISB .framer-1xlhkno-container { order: 0; } .framer-QdISB .framer-12q6itg { height: 525px; order: 1; } .framer-QdISB .framer-4irso7 { bottom: -8px; left: -158px; right: -148px; top: -115px; } .framer-QdISB .framer-108y9uq { order: 2; padding: 0px; width: 100%; } .framer-QdISB .framer-ibxzqr { padding: 0px 50px 0px 50px; width: 607px; } .framer-QdISB .framer-zoxq07 { order: 0; width: 687px; } .framer-QdISB .framer-1s0sy2n { order: 3; } .framer-QdISB .framer-1vbu6it { width: 100%; } .framer-QdISB .framer-11s7xjo-container { order: 7; } .framer-QdISB .framer-ii2ooh { height: 1173px; order: 4; padding: 50px 0px 0px 0px; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4104\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oSWyJp9Vw\":{\"layout\":[\"fixed\",\"auto\"]},\"kQw08Kdc5\":{\"layout\":[\"fixed\",\"auto\"]},\"YKM2ir8fc\":{\"layout\":[\"fixed\",\"auto\"]},\"gfrPGhXXw\":{\"layout\":[\"fixed\",\"auto\"]},\"T4yB7mM2j\":{\"layout\":[\"fixed\",\"auto\"]},\"uHkMGxxU4\":{\"layout\":[\"fixed\",\"auto\"]},\"mihphTF0r\":{\"layout\":[\"fixed\",\"auto\"]},\"BmZsGWFht\":{\"layout\":[\"fixed\",\"auto\"]},\"qA9W_Z3ht\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerNaPeJgXE_=withCSS(Component,css,\"framer-QdISB\");export default FramerNaPeJgXE_;FramerNaPeJgXE_.displayName=\"Page\";FramerNaPeJgXE_.defaultProps={height:4104,width:1200};addFonts(FramerNaPeJgXE_,[{explicitInter:true,fonts:[{family:\"Ambit SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/gdu1rZt2lZRzH1E0aBe5PrXOWg.woff\"},{family:\"Ambit Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/8QeTuXvOqOcpvTptyc965IQFpnM.woff\"},{family:\"RocaTwo-Rg Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/JSZ4pRxI0OMvUQxopg7PGrP7tas.ttf\"},{family:\"Ambit Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/KsAwROhgyIlClfaVoWNQexKlRRw.woff\"},{family:\"RocaTwo-Bl Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/rQaKcBrJ57RwGrTQWsuJE9aZXTM.ttf\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavMenuFonts,...VideoFonts,...LogomarkFonts,...AccordionCopyFonts,...NewFooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNaPeJgXE_\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4104\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oSWyJp9Vw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kQw08Kdc5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YKM2ir8fc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gfrPGhXXw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T4yB7mM2j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uHkMGxxU4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mihphTF0r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BmZsGWFht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qA9W_Z3ht\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapbs1rz6", "args", "onTap17pihhm", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "css", "FramerAJkenUwGV", "withCSS", "AJkenUwGV_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1y7qw2b", "args", "onTapdj2eq5", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "css", "Framerr3QEXL_oi", "withCSS", "r3QEXL_oi_default", "addPropertyControls", "ControlType", "addFonts", "RowCopyFonts", "getFonts", "AJkenUwGV_default", "RowCopy2Fonts", "r3QEXL_oi_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framera1GBbGNfZ", "withCSS", "a1GBbGNfZ_default", "addPropertyControls", "ControlType", "addFonts", "NavMenuFonts", "getFonts", "upsgqSs4Y_default", "VideoFonts", "Video", "LogomarkFonts", "n6BqYjuz4_default", "AccordionCopyFonts", "a1GBbGNfZ_default", "MotionDivWithFX", "withFX", "motion", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "MotionHeaderWithOptimizedAppearEffect", "NewFooterFonts", "bzO57btil_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "transition3", "animation1", "animation2", "transition4", "animation3", "animation4", "transition5", "animation5", "animation6", "transition6", "animation7", "animation8", "animation9", "animation10", "animation11", "animation12", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText", "getLoadingLazyAtYPosition", "css", "FramerNaPeJgXE_", "withCSS", "NaPeJgXE_default", "addFonts", "__FramerMetadata__"]
}
