{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/IfujRwQgq9JUu0Jv13UW/3CwT3NH5YiSoLUZDyke0/LmNd6kmB9.js", "ssg:https://framerusercontent.com/modules/wbaha7dq5Gn6lSnE7mpT/JkuADix1GIWIi4vOdtlT/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"zdLKzR13F\"];const serializationHash=\"framer-m50Vr\";const variantClassNames={zdLKzR13F:\"framer-v-1ht0qh9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,pFP,text,title,width,...props})=>{var _ref,_ref1;return{...props,K6Yo88PmW:(_ref=text!==null&&text!==void 0?text:props.K6Yo88PmW)!==null&&_ref!==void 0?_ref:\"Raving review text that is somewhat long and stuff but maybe not rambling? Ok, maybe it is rambling.\",qfHf1G90E:(_ref1=title!==null&&title!==void 0?title:props.qfHf1G90E)!==null&&_ref1!==void 0?_ref1:\"-JDawg\",yasE8rYjD:pFP!==null&&pFP!==void 0?pFP:props.yasE8rYjD};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,yasE8rYjD,K6Yo88PmW,qfHf1G90E,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zdLKzR13F\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ht0qh9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zdLKzR13F\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sr42m3\",layoutDependency:layoutDependency,layoutId:\"LA834m5yi\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 8px 12px 8px rgba(54, 49, 43, 0.08)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"72px\",...toResponsiveImage(yasE8rYjD)},className:\"framer-gjr2ia\",layoutDependency:layoutDependency,layoutId:\"f2vc_lr3O\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g1qn3y\",layoutDependency:layoutDependency,layoutId:\"tRYcvqog5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15snmp-container\",layoutDependency:layoutDependency,layoutId:\"n8CBfNhUn-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(245, 201, 138)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"n8CBfNhUn\",layoutId:\"n8CBfNhUn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1zg19s-container\",layoutDependency:layoutDependency,layoutId:\"t9Wf0lMIo-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(245, 201, 138)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"t9Wf0lMIo\",layoutId:\"t9Wf0lMIo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lc4anr-container\",layoutDependency:layoutDependency,layoutId:\"zDb95zI6Q-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(245, 201, 138)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"zDb95zI6Q\",layoutId:\"zDb95zI6Q\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11gjvl-container\",layoutDependency:layoutDependency,layoutId:\"HERrWlBU6-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(245, 201, 138)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"HERrWlBU6\",layoutId:\"HERrWlBU6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10p9zfj-container\",layoutDependency:layoutDependency,layoutId:\"mqaKml2Bm-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(245, 201, 138)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"mqaKml2Bm\",layoutId:\"mqaKml2Bm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(98, 91, 79))\"},children:\"Raving review text that is somewhat long and stuff but maybe not rambling? Ok, maybe it is rambling.\"})}),className:\"framer-1gfx3yz\",fonts:[\"GF;Outfit-500\"],layoutDependency:layoutDependency,layoutId:\"atYAA13DE\",style:{\"--extracted-r6o4lv\":\"rgb(98, 91, 79)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:K6Yo88PmW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(98, 91, 79))\"},children:\"-JDawg\"})}),className:\"framer-1t92tya\",fonts:[\"GF;Outfit-regular\"],layoutDependency:layoutDependency,layoutId:\"opuPWkzoY\",style:{\"--extracted-r6o4lv\":\"rgb(98, 91, 79)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:qfHf1G90E,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m50Vr.framer-10lraik, .framer-m50Vr .framer-10lraik { display: block; }\",\".framer-m50Vr.framer-1ht0qh9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 390px; justify-content: center; padding: 8px; position: relative; width: 310px; }\",\".framer-m50Vr .framer-sr42m3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 343px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 278px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m50Vr .framer-gjr2ia { flex: none; height: 72px; position: relative; width: 72px; }\",\".framer-m50Vr .framer-1g1qn3y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 188px; }\",\".framer-m50Vr .framer-15snmp-container, .framer-m50Vr .framer-1zg19s-container, .framer-m50Vr .framer-lc4anr-container, .framer-m50Vr .framer-11gjvl-container, .framer-m50Vr .framer-10p9zfj-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-m50Vr .framer-1gfx3yz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 247px; word-break: break-word; word-wrap: break-word; }\",\".framer-m50Vr .framer-1t92tya { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 262px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-m50Vr.framer-1ht0qh9, .framer-m50Vr .framer-sr42m3, .framer-m50Vr .framer-1g1qn3y { gap: 0px; } .framer-m50Vr.framer-1ht0qh9 > *, .framer-m50Vr .framer-sr42m3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-m50Vr.framer-1ht0qh9 > :first-child, .framer-m50Vr .framer-sr42m3 > :first-child { margin-top: 0px; } .framer-m50Vr.framer-1ht0qh9 > :last-child, .framer-m50Vr .framer-sr42m3 > :last-child { margin-bottom: 0px; } .framer-m50Vr .framer-1g1qn3y > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-m50Vr .framer-1g1qn3y > :first-child { margin-left: 0px; } .framer-m50Vr .framer-1g1qn3y > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 390\n * @framerIntrinsicWidth 310\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yasE8rYjD\":\"pFP\",\"K6Yo88PmW\":\"text\",\"qfHf1G90E\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLmNd6kmB9=withCSS(Component,css,\"framer-m50Vr\");export default FramerLmNd6kmB9;FramerLmNd6kmB9.displayName=\"Review Card\";FramerLmNd6kmB9.defaultProps={height:390,width:310};addPropertyControls(FramerLmNd6kmB9,{yasE8rYjD:{title:\"PFP\",type:ControlType.ResponsiveImage},K6Yo88PmW:{defaultValue:\"Raving review text that is somewhat long and stuff but maybe not rambling? Ok, maybe it is rambling.\",displayTextArea:false,title:\"Text\",type:ControlType.String},qfHf1G90E:{defaultValue:\"-JDawg\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerLmNd6kmB9,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLmNd6kmB9\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"yasE8rYjD\\\":\\\"pFP\\\",\\\"K6Yo88PmW\\\":\\\"text\\\",\\\"qfHf1G90E\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"310\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"390\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LmNd6kmB9.map", "// Generated by Framer (4307032)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import JoinNewsletter from\"#framer/local/canvasComponent/bu8lAAVBL/bu8lAAVBL.js\";import Footer from\"#framer/local/canvasComponent/Ej0JlWC4L/Ej0JlWC4L.js\";import Button from\"#framer/local/canvasComponent/K9c4rv4BZ/K9c4rv4BZ.js\";import AppStoreButton from\"#framer/local/canvasComponent/kCd2bD0XB/kCd2bD0XB.js\";import ReviewCard from\"#framer/local/canvasComponent/LmNd6kmB9/LmNd6kmB9.js\";import TopNavigation from\"#framer/local/canvasComponent/rrZTxH931/rrZTxH931.js\";import GetAppOverlay from\"#framer/local/canvasComponent/tiLwE1X_Z/tiLwE1X_Z.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavigationFonts=getFonts(TopNavigation);const TopNavigationWithVariantAppearEffect=withVariantAppearEffect(TopNavigation);const AppStoreButtonFonts=getFonts(AppStoreButton);const YouTubeFonts=getFonts(YouTube);const ButtonFonts=getFonts(Button);const GetAppOverlayFonts=getFonts(GetAppOverlay);const ReviewCardFonts=getFonts(ReviewCard);const CarouselFonts=getFonts(Carousel);const JoinNewsletterFonts=getFonts(JoinNewsletter);const FooterFonts=getFonts(Footer);const breakpoints={pR2vQSSUm:\"(max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-s5xdQ\";const variantClassNames={pR2vQSSUm:\"framer-v-1er6l03\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"pR2vQSSUm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const fPNZeuy6z3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"N8TnZ8l4U\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"pR2vQSSUm\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"pR2vQSSUm\")return true;return false;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n8hu75-container\",\"data-framer-name\":\"Top Navbar\",layoutScroll:true,name:\"Top Navbar\",nodeId:\"peDIEApD7\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{__framer__targets:[{ref:ref1,target:\"RESiVX9vc\"}],variant:\"jI_hZa9lw\"}},children:/*#__PURE__*/_jsx(TopNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"b9lhBAau_\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"peDIEApD7\",layoutId:\"peDIEApD7\",name:\"Top Navbar\",style:{width:\"100%\"},variant:\"pNpE5SpPn\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1021,intrinsicWidth:1768,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1021,pixelWidth:1768,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/xNOQ1yIpJSErHbvmzXz8nwpFzI.svg\",srcSet:\"https://framerusercontent.com/images/xNOQ1yIpJSErHbvmzXz8nwpFzI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xNOQ1yIpJSErHbvmzXz8nwpFzI.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xNOQ1yIpJSErHbvmzXz8nwpFzI.svg 1768w\"},className:\"framer-18gn1l1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ghah4\",\"data-framer-name\":\"Hero Content\",id:elementId,ref:ref1,children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1684,intrinsicWidth:1038,pixelHeight:1684,pixelWidth:1038,sizes:\"425.3088px\",src:\"https://framerusercontent.com/images/Q0wQ05RhCfrlCd8jygPNtcMkQs.png\",srcSet:\"https://framerusercontent.com/images/Q0wQ05RhCfrlCd8jygPNtcMkQs.png?scale-down-to=1024 631w,https://framerusercontent.com/images/Q0wQ05RhCfrlCd8jygPNtcMkQs.png 1038w\"},className:\"framer-6g3dhw hidden-1er6l03\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t87r3l\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kwdsxv hidden-1er6l03\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-color\":\"rgb(126, 116, 103)\"},children:\"WELCOME TO THE NEW FINANCIAL FRONTIER\"})}),className:\"framer-1dddx55\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1so0s8x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(54, 49, 43)\"},children:\"Your Keys. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(54, 49, 43)\"},children:\"Your Crypto.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(54, 49, 43)\"},children:\"Your Keys. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(54, 49, 43)\"},children:\"Your Crypto.\"})]}),className:\"framer-1liz6ol\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fvw7oj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"Move your crypto out of exchanges and into the self-custody smart wallet that earns you money.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"Move your crypto out of exchanges and into the self-custody smart wallet that earns you money.\"})}),className:\"framer-7ha5ah\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s2ym0x\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pkrnvp-container\",nodeId:\"U5oUlaGbl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AppStoreButton,{height:\"100%\",id:\"U5oUlaGbl\",layoutId:\"U5oUlaGbl\",variant:\"RdTJpgUNG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13y9o10-container\",nodeId:\"b7kkaC9Wf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AppStoreButton,{height:\"100%\",id:\"b7kkaC9Wf\",layoutId:\"b7kkaC9Wf\",variant:\"g4WsaRRzM\",width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:806,intrinsicWidth:471,pixelHeight:806,pixelWidth:471,sizes:\"333.0893px\",src:\"https://framerusercontent.com/images/GHyc14kxxM2qgFse43fKRIxK9nQ.png\",srcSet:\"https://framerusercontent.com/images/GHyc14kxxM2qgFse43fKRIxK9nQ.png 471w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:806,intrinsicWidth:471,pixelHeight:806,pixelWidth:471,src:\"https://framerusercontent.com/images/GHyc14kxxM2qgFse43fKRIxK9nQ.png\",srcSet:\"https://framerusercontent.com/images/GHyc14kxxM2qgFse43fKRIxK9nQ.png 471w\"},className:\"framer-1cew6va hidden-72rtr7\",\"data-framer-name\":\"phone_sm\"})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-17eqkmn\",\"data-framer-name\":\"Video Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Buy, send, trade and earn crypto. All in one recoverable self-custody smart wallet.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Buy, send, trade and earn crypto. All in one recoverable self-custody smart wallet.\"})}),className:\"framer-1i12dsq\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bj3fdo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uYpxNFgJ8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"uYpxNFgJ8\",isMixedBorderRadius:false,isRed:false,layoutId:\"uYpxNFgJ8\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/Idc0koXQGQg\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wazo4w\",\"data-framer-name\":\"Own Your Keys Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vsh0z4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sze7ub\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11p17i8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 116, 103)\"},children:\"Own Your Keys,\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 116, 103)\"},children:\"Own Your Keys,\"})}),className:\"framer-1vcijw6\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Own Your Earnings\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Own Your Earnings\"})}),className:\"framer-6dz5bi\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"Decentralized finance (DeFi) is revolutionizing the future of financial services by cutting out the middlemen. With the right tools, like Giddy, you can put your crypto to work and earn passive income on the blockchain.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"Decentralized finance (DeFi) is revolutionizing the future of financial services by cutting out the middlemen. With the right tools, like Giddy, you can put your crypto to work and earn passive income on the blockchain.\"})}),className:\"framer-1l23rge\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18q4z01\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{y:(componentViewport?.y||0)+0+1491+24+0+0+20+139+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+1822+100+156.1+0+179.8+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1dyxlur-container\",id:\"1dyxlur\",nodeId:\"o2r62OEiT\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{CQ4iOU2fJ:false,fPNZeuy6z:fPNZeuy6z3bnx0g({overlay}),height:\"100%\",id:\"o2r62OEiT\",layoutId:\"o2r62OEiT\",variant:\"DD541Nrr5\",width:\"100%\",Y20_7l8Yi:\"Start Earning\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1w9nkva\"),\"data-framer-portal-id\":\"1dyxlur\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"MbtIzzUVv\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-j9yrf4-container\"),\"data-framer-portal-id\":\"1dyxlur\",inComponentSlot:true,nodeId:\"gYGmokVyY\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{variant:\"ikJGtxC8E\"}},children:/*#__PURE__*/_jsx(GetAppOverlay,{height:\"100%\",id:\"gYGmokVyY\",layoutId:\"gYGmokVyY\",variant:\"ePizSgggC\",width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IFGqyttB_:\"self-custody-crypto-is-more-important-than-ever\"},unresolvedPathSlugs:{IFGqyttB_:{collectionId:\"mz9xJ5X_E\",collectionItemId:\"I4jdbtoFi\"}},webPageId:\"a1a35HnZl\"},implicitPathVariables:undefined},{href:{pathVariables:{IFGqyttB_:\"self-custody-crypto-is-more-important-than-ever\"},unresolvedPathSlugs:{IFGqyttB_:{collectionId:\"mz9xJ5X_E\",collectionItemId:\"I4jdbtoFi\"}},webPageId:\"a1a35HnZl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{y:(componentViewport?.y||0)+0+1491+24+0+0+20+139+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+1822+100+156.1+0+179.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5668jj-container\",nodeId:\"kthxq7QC6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{tpZknH66m:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{CQ4iOU2fJ:false,height:\"100%\",id:\"kthxq7QC6\",layoutId:\"kthxq7QC6\",tpZknH66m:resolvedLinks[0],variant:\"sCuDY4RNd\",width:\"100%\",Y20_7l8Yi:\"Learn More\"})})})})})})]})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kntvuv\",\"data-framer-name\":\"p2p\",fill:\"black\",intrinsicHeight:486,intrinsicWidth:448,svg:'<svg width=\"448\" height=\"486\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m35.993 253.454 2.676-1.655 29.07-1.88h28.524l27.695 1.767 3.563 1.768-4.455 2.39-26.803 2.39H67.84l-29.843-2.205-2.003-2.575Zm271.806-75.24 2.21-1.268 24.059-1.437h23.616l22.92 1.352 2.945 1.353-3.686 1.834-22.179 1.835h-23.526l-24.698-1.694-1.661-1.975ZM196.684 478.741l4.051-2.356 44.1-2.682h43.276l42.002 2.519 5.403 2.519-6.755 3.411-40.65 3.406h-43.119l-45.267-3.148-3.041-3.669Z\" fill=\"#E2DFD9\"/><path d=\"m399.008 254.336-46.884 46.786 1.744 1.748 46.884-46.786-1.744-1.748Zm-10.02-111.433-2.422.476 15.546 79.165 2.422-.476-15.546-79.165Zm-141.722 56.774-.607 2.393 143.229 36.349.607-2.393-143.229-36.349Zm51.565-57.843-56.727 46.001 1.555 1.918 56.727-46.002-1.555-1.917ZM217.297 38.892l-.69 2.37 87.426 25.417.689-2.37-87.425-25.417Zm-7.339 15.649-2.441.368 19.863 131.806 2.441-.368-19.863-131.806Zm-23.755-2.633-55.443 53.484 1.714 1.777 55.443-53.484-1.714-1.777Zm37.676 155.753L95.008 327.5l1.68 1.807L225.56 209.469l-1.681-1.808Zm-74.618-25.358-.459 2.426 72.097 13.648.459-2.425-72.097-13.649Zm92.577 27.421-2.254 1.008 20.129 44.999 2.254-1.008-20.129-44.999Zm-178.752 21.38-2.454.267 10.203 93.616 2.454-.267-10.203-93.616Zm26.069 122.784-.577 2.4 85.52 20.547.577-2.4-85.52-20.547Z\" fill=\"#A79D90\"/><path d=\"m6.07 163.429 6.145 32.991L35.6 223.924l37.66 14.347 39.622-6.576 28.486-22.415 16.075-39.937-6.363-39.152-21.562-28.104L88.515 85.16l-43.534 8.5-28.66 26.185-10.25 43.584Z\" fill=\"#8FA7B0\"/><path d=\"m14.582 163.255 5.454 29.3 20.771 24.429 33.457 12.747 35.19-5.84 25.305-19.913-1.448-8.725 6.548-3.949 9.173-22.802-5.65-34.77-19.155-24.962-36.419-15.037-38.663 7.552-25.456 23.256-9.107 38.714Z\" fill=\"#DAE1E4\"/><path d=\"m123.828 212.579-5.908-14.128-10.408-7.047-29.13-8.545-16.838-1.677-18.914 3.276-9.6 7.132-6.133 9.033 13.91 16.361 33.456 12.747 35.191-5.84 14.374-11.312Z\" fill=\"#D2923F\"/><path opacity=\".6\" d=\"m117.921 198.451-10.408-7.047-8.153-2.39-42.333-7.131 1.745 9.863 12.63 10.324 14.835 1.481 3.68-2.199 3.906 4.101 1.773 8.86-1.785 12.175 15.643-2.598 14.375-11.311-5.908-14.128Z\" fill=\"#36312B\"/><path d=\"m106.189 160.399-.696 16.384-9.555 19.071-8.557 3.17-13.87-1.145-13.667-8.568-5.33-14.066.185-13.561 2.603-11.103 48.887 9.818Z\" fill=\"#995F39\"/><path opacity=\".4\" d=\"m97.408 192.919 3.4-11.036 1.402-8.035-1.402-4.197-16.277-.572-18.42-4.101-11.07-4.753 2.261-9.644 48.886 9.818-.695 16.384-8.085 16.136Z\" fill=\"#36312B\"/><path d=\"m100.629 141.272 8.377-4.415 8.904-.511 8.057 5.084 1.195 10.52-8.293 9.566-15.098 4.062-13.062.062-11.34-2.553-6.182-5.51-10.582-12.439 38.024-3.866Z\" fill=\"#BD8055\"/><path d=\"m62.745 143.702 5.975 7.518 12.243 4.893 13.925-1.465 7.822-6.968-.909-7.872-.398-3.479-.595-7.984-3.731-3.422-11.828-2.071-9.802-1.61-5.868 2.576-.068.218-1.964 4.663-2.294 6.862-.107.426-2.401 7.715Z\" fill=\"#BD8055\"/><path d=\"m62.745 143.696 5.133 7.289 15.026 4.242 14.767-1.061 5.044-6.486-.622-5.341-6.352 3.013-11.457.544-10.728-2.906-6.676-2.284-2.329-2.833-.522 1.739-1.284 4.084Z\" fill=\"#36312B\"/><path d=\"m90.709 165.64-14.398-5.611-7.3-7.518-7.82-14.526-7.132-5.415-10.654.208-3.62 6.402 1.213 8.713 7.4 6.812 20.221 6.721 22.09 4.214Z\" fill=\"#995F39\"/><path d=\"m74.684 128.138 7.844 3.17 10.616 1.055 6.256-1.42 1.408-2.598-3.731-3.422-11.828-2.071-9.802-1.61-5.868 2.576 5.105 4.32Z\" fill=\"#D8A27D\"/><path d=\"m406.295 106.34-9.134 32.801-20.322 20.053-30.663 8.702-30.758-7.917-20.894-19.626-9.903-32.576 7.714-30.405 18.931-20.653 33.474-10.503 33.703 9.706 20.771 22.612 7.081 27.806Z\" fill=\"#D2923F\"/><path d=\"m398.373 106.43-7.945 28.53-17.674 17.444-26.673 7.569-26.752-6.884-18.173-17.074-8.613-28.334 6.711-26.444 16.467-17.96 29.114-9.14 29.317 8.445 18.06 19.666 6.161 24.182Z\" fill=\"#DAE1E4\"/><path d=\"m317.208 151.091 1.975-8.797 5.481-7.743 22.286-8.102 13.101-.152 17.741 4.702 8.641 7.906-13.679 13.499-26.674 7.569-26.752-6.884-2.12-1.998Z\" fill=\"#D47B53\"/><path opacity=\".2\" d=\"m323.206 136.615.117 2.682 3.765 3.445 7.502 2.912 10.194.881 14.504-3.748 10.778-6.727 2.856-4.505-1.728-2.306-11.143-2.952-13.101.152-22.286 8.102-1.458 2.064Z\" fill=\"#F6F5F4\"/><path opacity=\".4\" d=\"m332.346 131.762.23 3.193 6.042 4.011 11.542-.134 10.441-7.115 1.324-4.926-1.874-.494-13.101.152-14.604 5.313Z\" fill=\"#36312B\"/><path d=\"m326.14 104.326-.566 12.691 6.082 15.351 4.46 3.294 5.841.953 6.856-1.167 11.126-5.683L365 119.273l.775-10.47-1.252-8.741-38.383 4.264Z\" fill=\"#D8A27D\"/><path d=\"M373.933 368.861 349.33 421.86l-39.999 28.289-54.339 6.194-49.88-21.971-29.911-39.057-7.698-57.914 21.54-49.329 37.805-29.692 59.603-8.461 54.368 25.821 28.867 44.066 4.247 49.055Z\" fill=\"#D47B53\"/><path d=\"m362.683 367.143-21.921 47.226-35.639 25.209-48.421 5.515-44.437-19.581-26.651-34.792-6.856-51.608 19.189-43.949 33.681-26.454 13.336 8.478 10.291-11.833 29.478-4.186 48.443 23.01 25.726 39.263 3.781 43.702Z\" fill=\"#DAE1E4\"/><path d=\"m197.128 405.745 12.551-16.635 16.109-5.779 41.306-1.442 22.768 3.473 29.428 13.219 13.421 21.483-27.588 19.514-48.42 5.516-44.437-19.582-15.138-19.767Z\" fill=\"#8FA7B0\"/><path opacity=\".2\" d=\"m261.993 411.121 7.081-2.755 2.429 8.074.253 3.658-19.812 1.515-30.157-8.994-11.923-11.513-.185-11.996 9.072-3.254 7.036-2.525 10.066-.382 1.661 5.061.218 6.419 8.254 13.46 16.007 3.232Z\" fill=\"#F6F5F4\"/><path opacity=\".4\" d=\"m289.861 385.362 29.429 13.219 13.421 21.483-27.588 19.514-38.967 4.438 5.684-18.274-.337-9.302-2.429-8.074-7.081 2.755-16.008-3.232-8.253-13.46-.393-11.502 52.522 2.435Z\" fill=\"#36312B\"/><path d=\"m242.008 334.175-9.887 20.019-1.941 15.951.084 12.417 7.205 11.266 11.995 5.729 18.448 1.122 11.845-3.692 14.223-11.272 8.652-16.31 4.163-14.959-64.787-20.271Z\" fill=\"#D8A27D\"/><path opacity=\".4\" d=\"m237.575 343.158 5.796 5.223 19.166 10.481 21.17 6.144 4.41 5.852.039 11.788-6.918 13.168 12.742-10.099 8.652-16.31 4.163-14.959-64.787-20.271-4.433 8.983Z\" fill=\"#36312B\"/><path d=\"m222.87 310.514 3.63 16.855 9.387 8.994 5.981 5.734 15.553 8.613 15.205 4.382 10.98-2.531 20.776-7.922-42.854-29.496-3.058-4.629-4.057-6.132-10.296-6.436-12.943.803-8.304 11.765Z\" fill=\"#BD8055\"/><path d=\"m254.845 321.422 4.774 13.437 15.66 10.868 17.814 2.166 14.857-5.454.909-10.957 1.998-12.653 1.043-5.745.528-2.884-5.319-6.918-13.556-3.018-15.469-5.269-6.704 1.644-7.541 12.091-2.755 3.894-6.239 8.798Z\" fill=\"#BD8055\"/><path d=\"m307.95 342.44-13.27 6.144-9.7-1.061-11.43-4.135-12.876-6.239-6.419-6.918-1.172-6.329 5.992-8.45 2.48 6.363 8.046 6.817 12.562 5.263 4.438 1.088 2.441 7.07 6.014-5.521 7.126.011 6.368-1.33-.6 7.227Z\" fill=\"#36312B\"/><path d=\"m257.42 350.71 20.856 2.732 13.628-4.202 20.479-12.243 14.279-.213 8.725 5.661.129 10.004-7.142 9.612-13.292 3.287-28.542-5.212-29.12-9.426Z\" fill=\"#995F39\"/><path d=\"m271.38 296.639.931 4.315-1.93 5.442 2.474 1.24 5.319-2.469 10.206 5.028 14.33 3.293 9.19-.404.528-2.884-5.319-6.918-13.556-3.018-15.469-5.269-6.704 1.644Z\" fill=\"#D8A27D\"/><path d=\"m337.732 109.415 4.949 3.995 4.573.656 5.97-.606 3.955 1.931 3.064 6.8-.191 5.897-3.922 6.749-2.093 6.054.023 9.14 6.39-4.954 4.921 3.069 3.013-6.789 6.52-7.434 4.757-1.212-3.332-10.015-2.402-10.492-3.765-5.448-2.278-2.144-12.831 3.047-17.321 1.756Z\" fill=\"#6C4429\"/><path opacity=\".4\" d=\"m326.332 110.245 3.551 1.173 11.429.511 15.598-1.841 5.594 2.318 5.414 6.289 2.2 11.412-.522 9.87 5.308-6.054 4.758-1.212-3.333-10.015-2.402-10.492-3.764-5.448-2.278-2.144-40.224 3.877-1.329 1.756Z\" fill=\"#36312B\"/><path d=\"m323.189 106.851-2.705 10.306.466 11.228 2.256 8.231 1.458-2.065 6.868-2.491-5.959-15.043.275-6.138 1.812-2.39-4.471-1.638Z\" fill=\"#6C4429\"/><path d=\"m410.141 192.075-1.443 6.036-3.566 3.791-5.527 1.791-5.653-1.233-.534-.468-1.371-1.193-2.038-1.774-.29-.854-.437-1.259-1.295-3.755 1.204-5.588 3.31-3.894 6.022-2.136 3.834.956 2.368.586 2.174 2.197.878.878.885.901.782 2.649.697 2.369Zm-137.484 26.324-4.479-4.297-1.469-4.992 1.248-5.674 3.921-4.255.674-.224 1.722-.58 2.561-.863.883.182 1.307.26 3.895.779 4.214 3.864 1.687 4.824-1.201 6.276-2.762 2.825-1.703 1.747-2.994.766-1.202.313-1.225.309-2.681-.664-2.396-.596Zm90.662 84.363-6.107 1.104-4.904-1.742-3.861-4.341-1.143-5.672.214-.678.542-1.734.805-2.58.666-.609.977-.905 2.918-2.695 5.602-1.143 4.895 1.466 4.376 4.656.665 3.895.415 2.404-1.138 2.874-.452 1.157-.469 1.172-2.111 1.781-1.89 1.59ZM54.255 261.976l2.452-5.702 4.16-3.127 5.75-.823 5.36 2.178.447.553 1.148 1.409 1.706 2.095.14.891.215 1.315.637 3.921-2.14 5.301-3.924 3.273-6.298 1.078-3.615-1.595-2.234-.982-1.768-2.534-.715-1.016-.719-1.038-.319-2.744-.282-2.453ZM163.225 59.53l6.014-1.533 5.015 1.39 4.159 4.057 1.541 5.577-.165.69-.417 1.77-.621 2.629-.621.655-.91.972-2.72 2.895-5.507 1.537-4.987-1.116-4.694-4.334-.94-3.838-.584-2.369.931-2.947.369-1.186.385-1.203 1.98-1.925 1.772-1.72Z\" fill=\"#E4A758\"/><path opacity=\".4\" d=\"m409.444 189.707-8.905 8.33-3.864-1.594-4.628 4.357-2.039-1.774-.29-.854 6.441-6.134 2.607 1.096 8.133-7.856.878.879.885.901.782 2.649Zm-134.391 29.288-2.688-11.894 3.329-2.529-1.42-6.195 2.56-.863.884.182 2.038 8.657-2.264 1.696 2.668 10.988-1.202.313-1.224.309-2.681-.664Zm90.155 82.176-11.207-4.806-.092-4.18-5.85-2.487.805-2.579.666-.609 8.205 3.433.044 2.828 10.462 4.29-.452 1.157-.469 1.173-2.112 1.78ZM54.539 264.428l10.194-6.691 3.536 2.23 5.303-3.504 1.706 2.095.14.891-7.391 4.947-2.382-1.525-9.353 6.355-.715-1.016-.72-1.038-.318-2.744ZM161.454 61.25l11.519 4.001.388 4.163 6.011 2.066-.62 2.63-.621.654-8.428-2.842-.243-2.818-10.74-3.54.369-1.185.385-1.203 1.98-1.926Z\" fill=\"#F6F5F4\"/><path d=\"m331.729 89.951-6.166-3.978-6.834-.993-6.559 3.378-1.633 8.029 5.751 7.944 11.373 4.158 10.071.926 8.921-1.201 5.14-3.832 9.005-8.876-29.069-5.555Z\" fill=\"#995F39\"/><path d=\"m222.87 310.514 3.63 16.855 9.387 8.994.011.006-6.469-9.982-1.235-14.29 9.202-8.265 10.425-.112 10.649 6.794-4.057-6.132-10.296-6.436-12.943.803-8.304 11.765Z\" fill=\"#D8A27D\"/><path opacity=\".2\" d=\"m275.459 362.611-.477 5.588-2.794 10.038-5.106 13.364-6.329 5.661-11.289 2.295-11.995-5.728-7.205-11.267-.084-12.416 1.941-15.951 5.454-11.037 5.796 5.224 19.649 10.621 12.439 3.608Z\" fill=\"#F6F5F4\"/><path opacity=\".15\" d=\"m70.6 165.977-2.587 5.773.174 10.688 5.414 10.481 7.014 5.549-7.103-.589-13.668-8.567-5.33-14.066.185-13.562.342-1.458 11.07 4.752 4.489.999Z\" fill=\"#F6F5F4\"/><path opacity=\".2\" d=\"m39.202 187.005-1.655 2.75v3.753l3.36 4.264 7.497 5.303 13.443 3.484 11.637 2.07h10.211l7.333-1.369 2.794-1.807-3.905-4.101-3.68 2.199-14.835-1.481-12.63-10.324-1.745-9.863-14.397 2.575-3.428 2.547Z\" fill=\"#F6F5F4\"/><path opacity=\".3\" d=\"m367.8 142.664 2.833 4.057.679 6.093 1.442-.409 13.679-13.5-6.772-6.194-4.758 1.212-6.52 7.434-.583 1.307Z\" fill=\"#36312B\"/><path d=\"m357.112 75.728-4.315 3.933-6.267 1.913-8.259.101-4.736-1.52-.909-2.099 3.114-2.384 9.264-.802 7.748-1.532 4.36 2.39Z\" fill=\"#BD8055\"/><path d=\"m330.798 89.345-1.689 8.197-1.538-5.695-2.412-3.551-4.085-2.974 4.489.651 5.235 3.372Z\" fill=\"#6C4429\"/><path d=\"m358.268 80.587 1.139 7.344.05.337 1.335 6.11-5.122 5.403-9.774 2.946-10.644-2.076-5.565-5.903 1.234-6.009.544-2.66 1.162-8.022 3.114-2.385 9.263-.802 7.748-1.532 4.36 2.39 1.156 4.859Z\" fill=\"#995F39\"/><path d=\"m337.732 109.415 11.486-3.35 6.138-5.307 7.019-10.677 5.863-3.692 8.208.875 2.357 5.184-1.521 6.638-6.171 4.758-16.058 3.815-17.321 1.756Z\" fill=\"#6C4429\"/><path opacity=\".2\" d=\"m332.626 78.056.545 1.207 2.979 2.059 2.199-.18 1.886-2.059 2.766-1.386 5.397-.426 5.431-.78 1.42-.707 1.863-.056-4.36-2.39-7.748 1.532-9.264.802-3.114 2.385Z\" fill=\"#F6F5F4\"/><path d=\"m252.909 192.583-2.323 16.675-19.39 10.368-15.811-15.278 2.328-16.675 19.385-10.368 15.811 15.278Z\" fill=\"#7E7467\"/><path d=\"m202.525 18.415 15.57 10.452.943 24.474-23.01 8.394-15.57-10.453-.942-24.474 23.009-8.393Zm-100.83 313.101-1.723 18.672-21.04 12.546-18.38-16.181 1.722-18.673 21.034-12.546 18.387 16.182Zm327.424-94.12-4.853 18.117-22.852 8.814-15.391-19.054 4.854-18.117 22.852-8.814 15.39 19.054Z\" fill=\"#635C4F\"/><path d=\"m415.115 328.991-11.356-11.446 1.981-12.271 14.375-7.294 11.372 11.441-1.974 12.27-14.398 7.3Zm-8.713-12.293 9.196 9.28 11.653-5.919 1.577-9.791-9.202-9.28-11.647 5.919-1.577 9.791Zm28.907-145.835-8.809-8.876 1.532-9.538 11.159-5.667 8.809 8.882-1.537 9.538-11.154 5.661Zm-6.767-9.538 7.143 7.199 9.044-4.59 1.223-7.602-7.142-7.199-9.039 4.59-1.229 7.602ZM102.357 41.424l-8.32-9.656 2.243-9.572 11.738-4.966 8.315 9.657-2.244 9.571-11.732 4.966Zm-6.172-10.178 6.733 7.855 9.538-4.023 1.784-7.636-6.732-7.855-9.539 4.023-1.784 7.636Zm38.041 410.953-15.435-4.657-4.102-11.732 9.157-13.264 15.435 4.657 4.107 11.732-9.162 13.264Zm-13.516-6.655 12.506 3.771 7.429-10.75-3.277-9.359-12.512-3.776-7.423 10.75 3.277 9.364ZM7.535 320.092l-7.513-9.903 2.75-9.19 11.737-4.141 7.507 9.887-2.75 9.19-11.731 4.157Zm-5.431-10.284 6.11 8.023 9.504-3.366 2.194-7.333-6.104-8.024-9.51 3.367-2.194 7.333ZM358.93 23.963l-11.042-5.734-1.436-9.482L355.3 0l11.037 5.74 1.436 9.482-8.843 8.741Zm-9.302-6.974 8.949 4.652 7.17-7.092-1.15-7.57-8.943-4.65-7.171 7.091 1.145 7.57ZM131.687 226.198l-1.398 2.034 3.56 2.447 1.398-2.034-3.56-2.447Zm54.231 40.261-6.509-4.488 1.397-2.031 6.509 4.488-1.397 2.031Zm-13.017-8.977-6.509-4.488 1.398-2.037 6.508 4.488-1.397 2.037Zm-13.017-8.943-6.508-4.489 1.397-2.037 6.508 4.489-1.397 2.037Zm-13.023-8.95-6.508-4.488 1.403-2.031 6.508 4.488-1.403 2.031Zm46.962 29.33-1.399 2.034 3.561 2.447 1.398-2.034-3.56-2.447Zm134.95-99.805-1.059 4.189 2.393.605 1.059-4.189-2.393-.605Zm-15.824 72.596-2.395-.611 2.143-8.478 2.396.606-2.144 8.483Zm4.281-16.955-2.39-.606 2.138-8.478 2.396.6-2.144 8.484Zm4.287-16.962-2.396-.6 2.144-8.478 2.395.6-2.143 8.478Zm4.281-16.955-2.39-.606 2.138-8.478 2.395.606-2.143 8.478Zm-17.365 58.775-1.059 4.188 2.393.605 1.059-4.188-2.393-.605Z\" fill=\"#A79D90\"/><path d=\"m414.2 264.462-1.843.177.414 4.3 1.843-.177-.414-4.3Zm1.082 10.902-1.844.177.639 6.646 1.843-.177-.638-6.646Zm1.233 13.364-1.843.177.412 4.301 1.844-.177-.413-4.301ZM150.558 418.963l-3.934 1.785.764 1.686 3.935-1.785-.765-1.686Zm15.931-7.227-7.966 3.613.765 1.686 7.966-3.613-.765-1.686Zm11.9-5.4-3.934 1.785.764 1.686 3.935-1.784-.765-1.687ZM121.976 31.262l-.238 1.836 4.284.555.238-1.836-4.284-.555Zm38.939 6.913-8.724-1.122.241-1.84 8.719 1.122-.236 1.84Zm-17.443-2.244-8.72-1.122.236-1.835 8.719 1.122-.235 1.835Zm26.411 1.546-.238 1.837 4.284.556.238-1.836-4.284-.557Z\" fill=\"#E2DFD9\"/><path d=\"m160.069 136.711-4.251.768.439 2.43 4.251-.769-.439-2.429Zm8.387.977-.437-2.43 7.939-1.436.437 2.429-7.939 1.437Zm15.879-2.867-.438-2.43 7.939-1.436.438 2.429-7.939 1.437Zm15.878-2.873-.438-2.43 7.939-1.436.438 2.43-7.939 1.436Zm15.878-2.873-.437-2.429 7.939-1.431.437 2.429-7.939 1.431Zm15.879-2.867-.438-2.429 7.939-1.437.438 2.43-7.939 1.436Zm15.878-2.873-.438-2.429 7.94-1.431.437 2.43-7.939 1.43Zm15.878-2.867-.437-2.429 7.939-1.436.443 2.429-7.945 1.436Zm19.69-6.071-4.251.768.439 2.429 4.251-.768-.439-2.429Z\" fill=\"#A79D90\"/><path d=\"m406.163 180.363-1.444 6.036-3.565 3.791-5.527 1.791-5.653-1.233-.534-.468-1.371-1.193-2.038-1.773-.29-.855-.437-1.259-1.295-3.755 1.204-5.588 3.31-3.894 6.022-2.136 3.834.956 2.368.587 2.174 2.196.878.878.885.901.782 2.649.697 2.369Zm-121.39 40.523-4.479-4.297-1.469-4.992 1.248-5.675 3.921-4.254.674-.225 1.722-.58 2.561-.862.884.182 1.306.259 3.895.78 4.214 3.864 1.687 4.824-1.201 6.275-2.762 2.826-1.703 1.747-2.994.766-1.202.313-1.225.309-2.681-.664-2.396-.596Zm87.672 73.527-6.108 1.104-4.904-1.742-3.861-4.341-1.142-5.672.214-.677.541-1.735.806-2.579.665-.609.978-.906 2.917-2.695 5.602-1.143 4.895 1.466 4.376 4.656.666 3.895.414 2.404-1.137 2.874-.452 1.157-.469 1.173-2.112 1.78-1.889 1.59ZM56.18 274.194l2.45-5.702 4.16-3.128 5.751-.822 5.36 2.178.447.552 1.148 1.409 1.706 2.096.14.891.215 1.315.637 3.921-2.14 5.301-3.924 3.273-6.298 1.078-3.615-1.595-2.234-.982-1.768-2.535-.715-1.015-.719-1.039-.319-2.743-.283-2.453Zm98.534-205.689 6.014-1.534 5.015 1.39 4.159 4.057 1.541 5.577-.165.69-.417 1.77-.621 2.63-.621.654-.911.972-2.719 2.895-5.507 1.537-4.987-1.116-4.694-4.334-.94-3.838-.584-2.369.931-2.947.369-1.186.385-1.203 1.98-1.925 1.772-1.72Z\" fill=\"#E4A758\" fill-opacity=\".5\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m402.168 172.805 1.013-4.236-.697-2.369-.782-2.649-.885-.901-.878-.879-2.174-2.196-2.368-.587-3.834-.955-6.022 2.136-3.31 3.893-1.204 5.589 1.295 3.755.437 1.259.29.854 1.883 1.639.281-1.301 3.309-3.894 6.022-2.136 3.834.956 2.368.587 1.422 1.435Zm-108.854 48.453 3.143 3.016 2.396.596 2.681.664 1.225-.309 1.202-.313 2.994-.766 1.703-1.747 2.762-2.825 1.201-6.276-1.687-4.824-4.214-3.864-3.895-.779-1.306-.26-.884-.182-2.367.797.982.9 1.687 4.824-1.201 6.275-2.762 2.826-1.703 1.747-1.957.5Zm84.447 66.46 4.286-.775 1.89-1.59 2.111-1.781.469-1.172.452-1.157 1.138-2.874-.415-2.404-.665-3.895-4.376-4.656-4.895-1.466-5.602 1.143-2.918 2.695-.977.906-.666.609-.744 2.383 1.304-.266 4.896 1.466 4.376 4.656.665 3.895.414 2.404-.743 1.879Zm-318.934-5.396-1.72 4.002.283 2.453.319 2.744.719 1.038.715 1.016 1.768 2.534 2.233.982 3.615 1.595 6.298-1.078 3.925-3.272 2.14-5.302-.637-3.921-.215-1.315-.14-.891-1.577-1.936-.499 1.234-3.924 3.273-6.298 1.078-3.615-1.595-2.234-.982-1.156-1.657ZM149.886 75.56l-4.221 1.076-1.772 1.72-1.98 1.926-.385 1.202-.369 1.187-.931 2.947.584 2.368.94 3.838 4.694 4.335 4.987 1.115 5.507-1.537 2.719-2.895.911-.972.621-.655.574-2.43-1.283.358-4.987-1.116-4.694-4.334-.94-3.838-.584-2.369.609-1.926Z\" fill=\"#E4A758\" fill-opacity=\".25\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h448v485.558H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zlw0r0\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o0wlu6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9cjmq6\",\"data-framer-name\":\"bank\",fill:\"black\",intrinsicHeight:443,intrinsicWidth:448,svg:'<svg width=\"448\" height=\"443\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"m414.089 64.523-9.824 35.157-21.811 21.48-32.889 9.293-32.967-8.52-22.38-21.06-10.586-34.937 8.305-32.59 20.315-22.12L348.151 0l36.13 10.442 22.243 24.263 7.565 29.818Z\" fill=\"#D2923F\"/><path d=\"m406.976 64.6-8.752 31.325-19.432 19.133-29.305 8.288-29.372-7.592-19.945-18.769-9.432-31.126 7.4-29.034 18.106-19.713 31.984-10 32.188 9.304L400.24 38.03l6.736 26.57Z\" fill=\"#DAE1E4\"/><path d=\"m308.785 105.091 6.063-11.524 9.349-5.185 25.324-5.058 14.39-.154 19.482 5.185 10.442 11.894-15.042 14.809-29.305 8.289-29.372-7.593-11.331-10.663Z\" fill=\"#995F39\"/><path opacity=\".2\" d=\"m349.328 101.867 4.086-2.419 2.314 4.738.525 2.231-12.066 2.932-19.498-2.507-8.515-5.898-1.325-7.377 5.268-2.92 4.08-2.265 6.168-1.253 1.536 2.954.784 3.931 6.444 7.472 10.199.381Z\" fill=\"#F6F5F4\"/><path opacity=\".4\" d=\"m363.911 83.17 19.481 5.185 10.443 11.894-15.042 14.809-23.585 6.671 1.668-11.845-1.149-5.698-2.314-4.738-4.086 2.419-10.199-.381-6.444-7.471-1.403-7.046 32.63-3.8Z\" fill=\"#36312B\"/><path d=\"m325.036 66.25 1.673 13.85 4.44 9.006 4.291 6.46 7.62 3.43 8.228-1.105 10.033-5.726 4.931-5.975 3.584-10.762-1.055-11.485-2.937-9.244-40.808 11.552Z\" fill=\"#D8A27D\"/><path opacity=\".4\" d=\"m325.787 72.463 4.821.75 13.606-1.076 13.17-4.025 4.307 1.551 4.053 6.152.884 9.249 3.208-9.636-1.055-11.485-2.937-9.244-40.808 11.552.751 6.212Z\" fill=\"#36312B\"/><path d=\"m306.935 60.42 7.664 7.576 7.985 1.49 5.086.956 11.077-.817 9.448-2.905 4.881-5.08 8.151-11.248-32.497-.767-3.181-1.375-4.219-1.822-7.581.154-6.494 4.843-.32 8.995Z\" fill=\"#BD8055\"/><path d=\"m327.389 55.19 7.09 5.395 11.905.326 10.056-4.958 5.903-7.93-3.225-4.6-1.336-5.04-1.419-3.364-.707-1.684-5.152-1.8-8.835 2.766-11.055 1.127-2.944 3.153.078 6.897-.105 2.981-.254 6.732Z\" fill=\"#BD8055\"/><path d=\"m362.343 48.023-4.838 7.753-5.433 2.76-7.394 1.746-8.869 1.137-5.72-1.419-2.778-2.91.243-6.472 3.473 2.485 6.544.812 8.366-1.546 2.694-.944 3.695 2.86 1.253-4.942 3.733-2.43 2.601-2.357 2.43 3.467Z\" fill=\"#D8A27D\"/><path d=\"m338.747 69.625 11.839-5.699 5.693-6.858 6.522-13.407 7.394-4.992 6.499-.027 3.49 5.19-.453 7.471-5.825 6.262-16.704 7.035-18.455 5.025Z\" fill=\"#995F39\"/><path d=\"m327.67 38.58 1.961 1.94 4.45 1.18 8.283-.441 9.327-2.882 4.672-3.358-.707-1.684-5.152-1.8-8.835 2.766-11.055 1.127-2.944 3.153Zm-20.735 21.84 7.664 7.576 7.985 1.49h.005l-6.797-3.009-5.533-7.046 1.988-7.47 5.411-3.628 7.891-.083-4.219-1.822-7.581.154-6.494 4.843-.32 8.995Z\" fill=\"#D8A27D\"/><path opacity=\".2\" d=\"m352.255 69.68 1.656 3.087 1.972 6.206 1.899 8.736-1.369 5.118-5.125 5.064-8.228 1.104-7.62-3.429-4.291-6.46-4.439-9.006-.922-7.637 4.82.75 13.905-1.164 7.742-2.37Z\" fill=\"#F6F5F4\"/><path d=\"m327.389 55.003-1.182-2.402-1.353-2.877-1.309-1.717-1.082-1.094 5.152 2.226-.226 5.864Z\" fill=\"#995F39\"/><path d=\"m339.117 85.064 2.496-1.066 2.055-.635 4.301.376 2.778 1.341 2.347 1.712 2.733 1.27-4.611 2.082-6.063.795-4.539-.403-1.751-1.33-1.479 1.236-4.528.497-3.91-.486-3.49-1.248 2.689-2.076 2.303-2.64 4.539-.773 2.192.492 1.938.856Z\" fill=\"#635C4F\"/><path d=\"M271.997 395.313H28.085v-18.255l5.378-11.579-5.378-11.745V242.916l4.622-7.945-4.622-7.726v-29.834h243.912v197.902Z\" fill=\"#536B75\"/><path d=\"M362.105 395.313H145.151V240.984l6.71-10.337-6.71-11.082v-22.154h216.954v197.902Z\" fill=\"#75929D\"/><path d=\"M297.663 255.037h-88.076v140.276h88.076V255.037Z\" fill=\"#3F535B\"/><path d=\"M432.324 181.552H195.17v15.853h237.154v-15.853Zm0 213.761H195.17v19.536h237.154v-19.536Z\" fill=\"#8FA7B0\"/><path d=\"M195.17 181.552H11.922v15.853H195.17v-15.853Z\" fill=\"#61808A\"/><path d=\"M195.17 395.313H11.922v19.536H195.17v-19.536Z\" fill=\"#536B75\"/><path d=\"M441.777 434.297H283.451l-12.513-3.754-13.805 3.754H195.17v-19.448h246.607v19.448Z\" fill=\"#A6BAC2\"/><path d=\"M195.17 414.849H0v19.448h195.17v-19.448Z\" fill=\"#61808A\"/><path d=\"m313.75 102.667-118.58 78.885h237.154L313.75 102.667Z\" fill=\"#8FA7B0\"/><path d=\"m216.998 183.684 96.751-64.368 96.746 64.368H216.998Z\" fill=\"#75929D\"/><path d=\"m313.75 119.316-7.704 5.124 89.048 59.244h15.401l-96.745-64.368Z\" fill=\"#536B75\"/><path d=\"m11.922 181.552 45.175-30.05 13.999-2.556 4.97-10.067 54.43-36.212h115.128l11.834 4.291 13.241-4.291h43.05l-118.58 78.885H11.922Zm199.863 201.304h-33.226v-86.295l5.787-10.442-5.787-9.067v-67.189h33.226v172.993Z\" fill=\"#A6BAC2\"/><path d=\"M190.133 382.856h-11.574v-86.494l5.787-10.243-5.787-9.067v-67.189h11.574v172.993Z\" fill=\"#536B75\"/><path d=\"M273.064 382.856h-33.226V209.863h33.226v136.29l-5.5 9.596 5.5 10.867v16.24Zm75.192 0H315.03V277.969l5.793-10.188-5.793-10.613v-47.305h33.226v125.61l-4.07 8.791 4.07 9.166v29.426Zm61.278 0h-33.226V209.863h33.226v88.034l-4.208 8.631 4.208 9.094v67.234Z\" fill=\"#A6BAC2\"/><path d=\"M219.097 197.411h-47.854v12.452h47.854v-12.452Zm0 185.445h-47.854v12.452h47.854v-12.452Zm61.277-185.445h-47.853v12.452h47.853v-12.452Z\" fill=\"#8FA7B0\"/><path d=\"M186.677 382.856h-15.434v12.452h15.434v-12.452Zm0-185.445h-15.434v12.452h15.434v-12.452Z\" fill=\"#536B75\"/><path d=\"M206.004 424.115h-54.017v14.136h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M201.841 424.115h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M172.181 424.115h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M206.004 424.115h-54.017v2.921h54.017v-2.921Z\" fill=\"#D2923F\"/><path d=\"M203.243 409.974h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M199.08 409.974h-16.009v14.136h16.009v-14.136Z\" fill=\"#F4C889\"/><path d=\"M169.421 409.974h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M203.243 409.974h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M204.9 395.838h-54.017v14.136H204.9v-14.136Z\" fill=\"#E4A758\"/><path d=\"M200.736 395.838h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M171.077 395.838h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M204.9 395.838h-54.017v2.921H204.9v-2.921Z\" fill=\"#D2923F\"/><path d=\"M206.556 381.702H152.54v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M202.392 381.702h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M172.734 381.702H152.54v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M206.556 381.702H152.54v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M208.212 367.566h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M204.049 367.566h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M174.39 367.566h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M219.097 197.411h-47.854v4.097h47.854v-4.097Zm61.277 0h-47.853v4.097h47.853v-4.097Z\" fill=\"#536B75\"/><path d=\"M280.374 382.856h-47.853v12.452h47.853v-12.452Zm75.199-185.445h-47.854v12.452h47.854v-12.452Zm0 185.445h-47.854v12.452h47.854v-12.452Zm61.277-185.445h-47.853v12.452h47.853v-12.452Zm0 185.445h-47.853v12.452h47.853v-12.452Z\" fill=\"#8FA7B0\"/><path d=\"M251.418 209.863h-11.58v172.993h11.58V209.863Zm75.192 172.993h-11.58V277.969l5.793-10.188-5.793-10.613v-47.305h11.58v172.993Zm61.277-172.993h-11.579v172.993h11.579V209.863ZM247.955 382.856h-15.434v12.452h15.434v-12.452Zm0-185.445h-15.434v12.452h15.434v-12.452Zm75.198 185.445h-15.434v12.452h15.434v-12.452Zm0-185.445h-15.434v12.452h15.434v-12.452Zm61.278 185.445h-15.434v12.452h15.434v-12.452Zm0-185.445h-15.434v12.452h15.434v-12.452Z\" fill=\"#536B75\"/><path d=\"M355.573 197.411h-47.854v4.097h47.854v-4.097Zm61.277 0h-47.853v4.097h47.853v-4.097Z\" fill=\"#536B75\"/><path d=\"M118.249 424.115H64.232v14.136h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M114.084 424.115H98.076v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M84.426 424.115H64.232v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M118.249 424.115H64.232v2.921h54.017v-2.921Z\" fill=\"#D2923F\"/><path d=\"M116.591 409.974H62.575v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M112.429 409.974H96.42v14.136h16.009v-14.136Z\" fill=\"#F4C889\"/><path d=\"M82.77 409.974H62.574v14.136H82.77v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M116.591 409.974H62.575v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M118.249 395.838H64.232v14.136h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M114.084 395.838H98.076v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M84.426 395.838H64.232v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M118.249 395.838H64.232v2.921h54.017v-2.921Z\" fill=\"#D2923F\"/><path d=\"M119.905 381.702H65.889v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M115.741 381.702H99.733v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M86.083 381.702H65.89v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M119.905 381.702H65.889v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M117.144 367.566H63.128v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M112.98 367.566H96.972v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M83.322 367.566H63.128v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M117.144 367.566H63.128v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M114.935 353.43H60.918v14.136h54.017V353.43Z\" fill=\"#E4A758\"/><path d=\"M110.771 353.43H94.763v14.136h16.008V353.43Z\" fill=\"#F4C889\"/><path d=\"M81.112 353.43H60.92v14.136h20.193V353.43Z\" fill=\"#BC7E2C\"/><path d=\"M160.773 414.728h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M156.61 414.728h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M126.951 414.728h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M160.773 414.728h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M162.43 428.864h-54.016V443h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M158.266 428.864h-16.009V443h16.009v-14.136Z\" fill=\"#F4C889\"/><path d=\"M128.608 428.864h-20.194V443h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M162.43 428.864h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M245.276 414.728H191.26v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M241.113 414.728h-16.009v14.136h16.009v-14.136Z\" fill=\"#F4C889\"/><path d=\"M211.454 414.728H191.26v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M246.933 428.864h-54.016V443h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M242.77 428.864h-16.008V443h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M213.11 428.864h-20.193V443h20.193v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M246.933 428.864h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M88.755 414.728H34.739v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M84.592 414.728H68.584v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M54.933 414.728H34.739v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M88.755 414.728H34.739v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M90.412 428.864H36.395V443h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M86.248 428.864H70.24V443h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M56.59 428.864H36.395V443H56.59v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M90.412 428.864H36.395v2.921h54.017v-2.921Z\" fill=\"#D2923F\"/><path d=\"M90.412 400.587H36.395v14.136h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M86.248 400.587H70.24v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M56.59 400.587H36.395v14.136H56.59v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M162.43 400.587h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M158.266 400.587h-16.009v14.136h16.009v-14.136Z\" fill=\"#F4C889\"/><path d=\"M128.608 400.587h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M162.43 400.587h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M159.117 386.451h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M154.953 386.451h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M125.295 386.451h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M159.117 386.451h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M157.46 372.315h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M153.296 372.315h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M123.638 372.315h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M157.46 372.315h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M160.773 358.179h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M156.61 358.179h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M126.951 358.179h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M160.773 358.179h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M162.43 344.043h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M158.266 344.043h-16.009v14.136h16.009v-14.136Z\" fill=\"#F4C889\"/><path d=\"M128.608 344.043h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M162.43 344.043h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M164.087 329.907H110.07v14.136h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M159.923 329.907h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M130.264 329.907H110.07v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M164.087 329.907H110.07v2.921h54.017v-2.921Z\" fill=\"#D2923F\"/><path d=\"M160.773 315.771h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M156.61 315.771h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M126.951 315.771h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M160.773 315.771h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M162.43 301.63h-54.016v14.136h54.016V301.63Z\" fill=\"#E4A758\"/><path d=\"M158.266 301.63h-16.009v14.136h16.009V301.63Z\" fill=\"#F4C889\"/><path d=\"M128.608 301.63h-20.194v14.136h20.194V301.63Z\" fill=\"#BC7E2C\"/><path d=\"M149.928 274.628c0 12.7-7.67 27.007-7.67 27.007h-13.087c-5.368 0-10.255-2.65-13.938-6.996l.287-6.427-5.472-3.004a33.993 33.993 0 0 1-1.657-10.58 34.76 34.76 0 0 1 .74-7.178l1.756-2.06-.309-2.855c3.407-8.835 10.442-14.909 18.57-14.909h12.502s8.278 13.584 8.278 27.002Z\" fill=\"#BC7E2C\"/><path d=\"M162.429 274.628a33.68 33.68 0 0 1-2.208 12.148 26.098 26.098 0 0 1-7.102 10.381 17.467 17.467 0 0 1-11.447 4.479c-10.74 0-19.575-10.613-20.647-24.219l1.105-2.397-1.16-2.208a33.353 33.353 0 0 1 1.657-8.918 27.009 27.009 0 0 1 6.626-10.906c3.457-3.357 7.731-5.339 12.386-5.339 4.799 0 9.222 2.12 12.734 5.676l.955 5.721 4.55 2.589a33.445 33.445 0 0 1 2.551 12.993Z\" fill=\"#E4A758\"/><path d=\"M155.461 274.628c.013 3-.453 5.982-1.381 8.835-1.524 4.578-4.191 8.183-7.46 10.022a9.982 9.982 0 0 1-4.97 1.342c-7.615 0-13.805-9.034-13.805-20.182 0-.552 0-1.049.044-1.569.276-5.267 1.933-9.972 4.418-13.329 2.485-3.358 5.721-5.29 9.305-5.29 7.675-.017 13.849 9.023 13.849 20.171Z\" fill=\"#D2923F\"/><path d=\"M154.08 283.447c-1.524 4.577-4.191 8.183-7.46 10.022l-18.692-20.431c.276-5.268 1.933-9.972 4.418-13.33l21.734 23.739Z\" fill=\"#E4A758\"/><path d=\"M141.673 254.44a9.29 9.29 0 0 0-1.105.072c7.096.823 12.701 9.509 12.701 20.116 0 10.608-5.588 19.288-12.701 20.111.367.046.736.07 1.105.072 7.615 0 13.805-9.04 13.805-20.183s-6.19-20.188-13.805-20.188Z\" fill=\"#BC7E2C\"/><path d=\"m133.881 257.975-4.594-5.014a26.994 26.994 0 0 0-6.626 10.905l5.61 6.135c.779-4.964 2.822-9.227 5.61-12.026Zm20.894 22.843c-1.06 4.815-3.313 8.835-6.273 11.32l4.595 5.019a26.095 26.095 0 0 0 7.107-10.408l-5.429-5.931Z\" fill=\"#F4C889\"/><path d=\"M402.72 424.115h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M398.555 424.115h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M368.898 424.115h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M402.72 424.115h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M399.959 409.974h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M395.795 409.974h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M366.137 409.974h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M399.959 409.974h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M403.824 395.838h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M399.661 395.838h-16.009v14.136h16.009v-14.136Z\" fill=\"#F4C889\"/><path d=\"M370.002 395.838h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M403.824 395.838h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M401.064 381.702h-54.017v14.136h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M396.899 381.702h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M367.241 381.702h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M401.064 381.702h-54.017v2.921h54.017v-2.921Z\" fill=\"#D2923F\"/><path d=\"M406.033 367.566h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M401.869 367.566h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M372.211 367.566h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M406.033 367.566h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M403.824 353.43h-54.016v14.136h54.016V353.43Z\" fill=\"#E4A758\"/><path d=\"M399.661 353.43h-16.009v14.136h16.009V353.43Z\" fill=\"#F4C889\"/><path d=\"M370.002 353.43h-20.194v14.136h20.194V353.43Z\" fill=\"#BC7E2C\"/><path d=\"M403.824 353.43h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M406.033 339.294h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M401.869 339.294h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M372.211 339.294h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M445.792 428.864h-54.017V443h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M441.627 428.864h-16.008V443h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M411.969 428.864h-20.194V443h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M445.792 428.864h-54.017v2.921h54.017v-2.921Z\" fill=\"#D2923F\"/><path d=\"M444.134 414.728h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M439.971 414.728h-16.009v14.136h16.009v-14.136Z\" fill=\"#F4C889\"/><path d=\"M410.312 414.728h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M444.134 414.728h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M445.792 400.587h-54.017v14.136h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M441.627 400.587h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M411.969 400.587h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M445.792 400.587h-54.017v2.921h54.017v-2.921Z\" fill=\"#D2923F\"/><path d=\"M447.448 386.451h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M443.284 386.451h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M413.626 386.451h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M447.448 386.451h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M444.687 372.315h-54.016v14.136h54.016v-14.136Z\" fill=\"#E4A758\"/><path d=\"M440.523 372.315h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M410.865 372.315h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"M444.687 372.315h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M448 358.19h-54.016v14.136H448V358.19Z\" fill=\"#E4A758\"/><path d=\"M443.836 358.19h-16.008v14.136h16.008V358.19Z\" fill=\"#F4C889\"/><path d=\"M414.178 358.19h-20.194v14.136h20.194V358.19Z\" fill=\"#BC7E2C\"/><path d=\"M448 358.19h-54.016v2.921H448v-2.921Z\" fill=\"#D2923F\"/><path d=\"M444.687 344.06h-54.016v14.136h54.016V344.06Z\" fill=\"#E4A758\"/><path d=\"M440.523 344.06h-16.008v14.136h16.008V344.06Z\" fill=\"#F4C889\"/><path d=\"M410.865 344.06h-20.194v14.136h20.194V344.06Z\" fill=\"#BC7E2C\"/><path d=\"M444.687 344.06h-54.016v2.921h54.016v-2.921Z\" fill=\"#D2923F\"/><path d=\"M446.896 329.924h-54.017v14.136h54.017v-14.136Z\" fill=\"#E4A758\"/><path d=\"M442.732 329.924h-16.008v14.136h16.008v-14.136Z\" fill=\"#F4C889\"/><path d=\"M413.073 329.924h-20.194v14.136h20.194v-14.136Z\" fill=\"#BC7E2C\"/><path d=\"m210.697 135.285-11.64 7.736-3.755 2.501h-71.234l15.395-10.237h71.234Z\" fill=\"#3F535B\"/><path d=\"m124.068 145.522 15.395-10.237v10.237h-15.395Z\" fill=\"#61808A\"/><path d=\"M166.003 140.431c0-.061-.028-1.485.11-3.97l2.761.16c-.132 2.358-.105 3.738-.105 3.749l-2.766.061Zm3.202-8.029-2.761-.281c.254-2.491.613-5.031 1.055-7.554l2.716.48a115.463 115.463 0 0 0-1.01 7.355Zm1.844-11.518-2.695-.586a116.013 116.013 0 0 1 1.878-7.382l2.651.778a103.281 103.281 0 0 0-1.834 7.19Zm3.115-11.232-2.618-.916a98.997 98.997 0 0 1 2.734-7.118l2.54 1.104a94.721 94.721 0 0 0-2.656 6.925v.005Zm4.417-10.762-2.485-1.209a84.144 84.144 0 0 1 3.634-6.715l2.369 1.42a84.271 84.271 0 0 0-3.518 6.499v.005Zm5.782-10.066-2.292-1.54a81.117 81.117 0 0 1 4.567-6.13l2.131 1.756a76.96 76.96 0 0 0-4.406 5.909v.005Zm7.178-9.089-2.032-1.872a76.819 76.819 0 0 1 5.456-5.356l1.833 2.065a73.644 73.644 0 0 0-5.262 5.157l.005.006Zm8.482-7.863-1.706-2.17a75.236 75.236 0 0 1 6.223-4.418l1.486 2.33a73.154 73.154 0 0 0-6.008 4.252l.005.006Zm9.614-6.439-1.358-2.402a88.138 88.138 0 0 1 6.814-3.434l1.104 2.523a81.162 81.162 0 0 0-6.566 3.308l.006.005Zm10.492-4.936-.994-2.573a93.764 93.764 0 0 1 7.178-2.452l.784 2.645a88.798 88.798 0 0 0-6.99 2.375l.022.005Zm11.071-3.49-.662-2.678c2.407-.596 4.909-1.104 7.432-1.563l.475 2.723a98.23 98.23 0 0 0-7.267 1.513l.022.005Zm11.431-2.17-.37-2.733a127.35 127.35 0 0 1 7.543-.79l.21 2.761c-2.529.171-5.009.43-7.405.757l.022.005Zm30.757-.64a173.227 173.227 0 0 0-7.443-.42l.099-2.761c2.474.083 5.02.226 7.56.42l-.216 2.76Zm-19.133-.381-.122-2.761a148.71 148.71 0 0 1 7.576-.133v2.761c-2.567-.017-5.058.022-7.476.127l.022.006Zm27.241 1.176a248.13 248.13 0 0 0-3.816-.42l.276-2.76c1.276.126 2.562.27 3.866.425l-.326 2.755Z\" fill=\"#635C4F\"/><path d=\"m189.868 135.627-1.767 8.829-.9 1.066H154.29l-2.711-7.526.403-2.711.894-6.036 6.886-8.647 5.003-3.418h5.522l5.202 1.242 2.087.497 2.126.503 3.567 3.175 3.192 2.849 3.291 9.835.116.342Z\" fill=\"#BC7E2C\"/><path d=\"m184.347 135.627-1.767 8.829-.9 1.066h-32.912l-.894-2.485-1.817-5.041.403-2.711.895-6.036 6.886-8.647 6.505-2.109 4.02-1.309 5.201 1.242 2.033.481.055.016 2.126.503 3.567 3.175 3.192 2.849.232.69 3.059 9.145.116.342Z\" fill=\"#E4A758\"/><path d=\"m181.171 126.141-19.382 19.381h-13.021l-.894-2.485 24.125-24.13.055.016 2.126.503 3.568 3.175 3.191 2.849.232.691Z\" fill=\"#F4C889\"/><path d=\"m178.123 135.87-1.192 5.964-3.109 3.688h-17.118l-2.182-1.772-1.22-3.38-1.044-2.899.326-2.186.552-3.722 4.655-5.842 4.39-1.43 2.717-.878 3.512.834.817.198.597.138 1.436.343 2.407 2.148 2.159 1.916 1.314 3.942.79 2.353.193.585Z\" fill=\"#D2923F\"/><path d=\"m177.141 132.932-12.59 12.59h-7.847l-2.181-1.772-1.221-3.38 15.926-15.925 2.032.481 2.407 2.148 2.159 1.916 1.315 3.942Z\" fill=\"#E4A758\"/><path d=\"m209.935 67.482 2.921 8.747-1.518 7.581-5.561 6.604-8.106 2.888h-4.743l-2.927-1.237-1.038-.839-1.541-1.248-4.583-3.716-2.877-7.996 1.115-7.51 5.92-7.437 4.296-2.932h4.743l4.468 1.065 1.794.425 1.828.437 3.065 2.727 2.744 2.441Z\" fill=\"#BC7E2C\"/><path d=\"m208.113 76.229-1.518 7.581-5.566 6.61-8.107 2.882-7.664-1.231-1.303-1.066-5.859-4.743-1.116-3.109-1.767-4.887 1.116-7.515 5.919-7.432 5.589-1.812 3.451-1.12 4.473 1.06 1.794.43.569.133 1.259.298 3.065 2.739 2.739 2.44.574 1.718 2.352 7.024Z\" fill=\"#E4A758\"/><path d=\"m205.761 69.205-21.806 21.8-5.859-4.743-1.116-3.109 21.144-21.143 1.259.298 3.065 2.739 2.739 2.44.574 1.718Z\" fill=\"#F4C889\"/><path d=\"m202.768 76.439-1.027 5.124-3.76 4.456-5.472 1.95-3.325-.536-1.855-.293-4.837-3.932-1.033-2.871-.911-2.529.751-5.075 3.998-5.013 3.771-1.226 2.336-.757 3.021.713.74.182.469.105 1.237.303 2.071 1.845 1.85 1.64 1.33 3.97.646 1.944Z\" fill=\"#D2923F\"/><path d=\"m202.122 74.495-12.938 12.938-1.856-.293-4.837-3.932-1.033-2.871 13.706-13.705.469.105 1.237.303 2.071 1.845 1.85 1.64 1.331 3.97Z\" fill=\"#E4A758\"/><path d=\"m260.694 44.832 2.661 7.951-1.38 6.897-5.064 6.008-7.372 2.628h-4.313l-2.661-1.127-.944-.767-1.403-1.132-4.164-3.385-2.617-7.272 1.011-6.825 5.383-6.764 3.91-2.667h4.313l4.064.966 1.634.386 1.663.398 2.788 2.485 2.491 2.22Z\" fill=\"#BC7E2C\"/><path d=\"m259.042 52.783-1.38 6.902-5.064 6.003-7.372 2.628-6.974-1.127-1.182-.96-5.328-4.324-1.016-2.822-1.607-4.45 1.016-6.825 5.384-6.764 5.08-1.646 3.136-1.021 4.07.966 1.635.386.513.122 1.149.276 2.788 2.485 2.491 2.22.519 1.562 2.142 6.389Z\" fill=\"#E4A758\"/><path d=\"M256.9 46.394 237.07 66.23l-5.328-4.324-1.016-2.822 19.227-19.232 1.149.276 2.788 2.485 2.491 2.22.519 1.562Z\" fill=\"#F4C889\"/><path d=\"m254.178 52.976-.933 4.66-3.419 4.054-4.98 1.772-3.021-.486-1.69-.27-4.395-3.573-.939-2.611-.834-2.298.685-4.616 3.639-4.566 3.429-1.11 2.126-.69 2.745.651.673.16.425.1 1.127.27 1.883 1.679 1.684 1.496 1.209 3.611.586 1.767Z\" fill=\"#D2923F\"/><path d=\"m253.593 51.21-11.768 11.766-1.689-.27-4.396-3.573-.939-2.612 12.463-12.468.426.1 1.126.27 1.883 1.679 1.684 1.496 1.21 3.611Z\" fill=\"#E4A758\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h448v443H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6yzrak\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kbyj95\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-91374i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 116, 103)\"},children:\"Grow Your Crypto:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 116, 103)\"},children:\"Grow Your Crypto:\"})}),className:\"framer-p4umlw\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"DeFi Made Easy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"DeFi Made Easy\"})}),className:\"framer-1rxbtgj\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"Ever wonder what happens when you deposit money with a bank? They lend it out and earn big profits on the spread. With Giddy, you get access to DeFi protocols that let you be a lender (and earn like one too).\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"Ever wonder what happens when you deposit money with a bank? They lend it out and earn big profits on the spread. With Giddy, you get access to DeFi protocols that let you be a lender (and earn like one too).\"})}),className:\"framer-1y4nkyw\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z17wbf\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{y:(componentViewport?.y||0)+0+2069+40+0+0+0+0+0+155+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+2557+100+0+92.1+0+201.8+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-ad62sm-container\",id:\"ad62sm\",nodeId:\"MwZZb8Noz\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{CQ4iOU2fJ:false,fPNZeuy6z:fPNZeuy6z3bnx0g({overlay:overlay1}),height:\"100%\",id:\"MwZZb8Noz\",layoutId:\"MwZZb8Noz\",variant:\"DD541Nrr5\",width:\"100%\",Y20_7l8Yi:\"Get Started\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-8klr2z\"),\"data-framer-portal-id\":\"ad62sm\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"n4W97pk0P\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-192uca4-container\"),\"data-framer-portal-id\":\"ad62sm\",inComponentSlot:true,nodeId:\"U2y_ITwzC\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{variant:\"ikJGtxC8E\"}},children:/*#__PURE__*/_jsx(GetAppOverlay,{height:\"100%\",id:\"U2y_ITwzC\",layoutId:\"U2y_ITwzC\",variant:\"ePizSgggC\",width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{IFGqyttB_:\"unlock-partial-eth-staking-with-giddy-coinbase-cloud\"},unresolvedPathSlugs:{IFGqyttB_:{collectionId:\"mz9xJ5X_E\",collectionItemId:\"OzwaWwqWX\"}},webPageId:\"a1a35HnZl\"},implicitPathVariables:undefined},{href:{pathVariables:{IFGqyttB_:\"unlock-partial-eth-staking-with-giddy-coinbase-cloud\"},unresolvedPathSlugs:{IFGqyttB_:{collectionId:\"mz9xJ5X_E\",collectionItemId:\"OzwaWwqWX\"}},webPageId:\"a1a35HnZl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{y:(componentViewport?.y||0)+0+2069+40+0+0+0+0+0+155+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+2557+100+0+92.1+0+201.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ni9tvu-container\",nodeId:\"YkZCC4dSE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{tpZknH66m:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{CQ4iOU2fJ:false,height:\"100%\",id:\"YkZCC4dSE\",layoutId:\"YkZCC4dSE\",tpZknH66m:resolvedLinks1[0],variant:\"ZH83kHTZu\",width:\"100%\",Y20_7l8Yi:\"Learn More\"})})})})})})]})]})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-ghp27l\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mxv5di\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"HAVE YOU HEARD?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"HAVE YOU HEARD?\"})}),className:\"framer-rqbw21\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"The word is getting out\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"The word is getting out\"})}),className:\"framer-12nem3x\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16bbahz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wx1n20\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1amfibo\",\"data-framer-name\":\"forbes\",fill:\"black\",intrinsicHeight:39,intrinsicWidth:112,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"112\" height=\"39\" fill=\"none\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.226 12.796c-1.784 0-3.196.37-4.608 1.185 0-4.074 0-7.852.148-9.11l-8.695 1.555v.74l.892.149c1.189.222 1.56.888 1.783 2.444.223 3.111.15 19.482 0 22.222 2.304.519 4.757.89 7.21.89 6.837 0 10.924-4.223 10.924-10.89.075-5.333-3.27-9.185-7.654-9.185Zm-2.973 18.593c-.52 0-1.19 0-1.56-.148-.15-1.778-.224-9.334-.15-16 .744-.223 1.264-.37 1.933-.37 2.824 0 4.385 3.332 4.385 7.406 0 5.186-1.933 9.112-4.608 9.112Zm-42.585-26H0v1.185l1.263.148c1.71.222 2.304 1.26 2.602 3.703.371 4.593.223 12.963 0 16.963-.223 2.445-.892 3.556-2.602 3.704L0 31.314v1.038h14.567v-1.038l-1.561-.222c-1.71-.148-2.304-1.259-2.601-3.703-.149-1.704-.223-4.37-.223-7.704l3.121.148c1.933 0 2.824 1.556 3.196 3.704h1.19v-9.185h-1.19c-.372 2.148-1.263 3.703-3.196 3.703l-3.121.148c0-4.37.149-8.444.223-10.889h4.533c3.493 0 5.277 2.149 6.54 6l1.264-.37-.074-7.555Z\" fill=\"#211B12\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.95 12.574c6.467 0 9.662 4.37 9.662 10.148 0 5.481-3.567 10.148-10.033 10.148-6.466 0-9.661-4.37-9.661-10.148 0-5.556 3.641-10.148 10.033-10.148Zm-.37 1.26c-2.825 0-3.568 3.851-3.568 8.814 0 4.889 1.263 8.815 3.865 8.815 2.972 0 3.716-3.852 3.716-8.815 0-4.815-1.264-8.815-4.014-8.815Zm48.01 8.962c0-5.26 3.344-10.296 9.885-10.296 5.425 0 7.952 4 7.952 9.26H83.46c-.148 4.74 2.156 8.221 6.838 8.221 2.08 0 3.121-.518 4.384-1.407l.52.667c-1.263 1.777-4.087 3.555-7.728 3.555-5.723.074-9.885-4.074-9.885-10Zm5.945-2.37 6.02-.148c0-2.593-.371-6.445-2.6-6.445-2.156 0-3.27 3.63-3.42 6.593Zm27.276-6.816c-1.561-.666-3.567-1.036-5.946-1.036-4.756 0-7.729 2.815-7.729 6.148 0 3.333 2.155 4.74 5.277 5.778 3.195 1.185 4.087 2.074 4.087 3.555 0 1.556-1.189 2.963-3.195 2.963-2.453 0-4.237-1.407-5.649-5.259l-.892.222.15 5.63c1.56.667 4.384 1.185 6.836 1.185 5.054 0 8.25-2.593 8.25-6.518 0-2.667-1.412-4.223-4.756-5.482-3.568-1.407-4.906-2.296-4.906-4 0-1.704 1.19-2.815 2.676-2.815 2.304 0 3.865 1.408 5.054 4.89l.892-.223-.149-5.037Zm-54.477-.518c-2.155-1.259-6.02-.666-8.1 4l.148-4.518-8.62 1.704v.74l.891.148c1.19.149 1.71.741 1.784 2.445.223 3.111.148 8.444 0 11.185-.149 1.556-.67 2.297-1.784 2.445l-.892.148v1.037h11.966v-1.037l-1.561-.148c-1.263-.148-1.71-.89-1.784-2.445-.223-2.444-.223-7.333-.148-10.37.669-.89 3.493-1.704 6.02 0l2.08-5.333Z\" fill=\"#211B12\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:'\"Up until now, the crypto world has been largely focused around two groups: experienced investors exploiting the system at every turn and common investors hoping for a random stroke of luck.\"'})}),className:\"framer-1qphbrz\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ph72hw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1y8puap\",\"data-framer-name\":\"ap_logo\",fill:\"black\",intrinsicHeight:57,intrinsicWidth:65,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"65\" height=\"57\" fill=\"none\"><path d=\"M0 49.23V57h65v-7.77H0Z\" fill=\"#FF322E\"/><path d=\"M36.058 0v32.558h7.87V6.566h3.162c3.678 0 5.774 1.733 5.774 4.889 0 3.082-2.096 4.888-5.774 4.888h-.515v6.566h.846c8.495 0 13.46-4.231 13.46-11.454C60.88 4.104 55.898 0 47.42 0H36.058ZM14.986 0 4.045 32.558h7.925L19.398 9.54l3.733 11.509h-4.817l-1.931 6.566h8.863l1.6 4.943h8.145L24.051 0h-9.065Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:'\"Giddy focuses on democratizing the most sophisticated strategies of wealth building in crypto that are typically dominated by high net worth investors.\"'})}),className:\"framer-xwvg83\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ayfghh\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-itcgkl\",\"data-framer-name\":\"block_telegraph_logo\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:182,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"182\" height=\"44\" fill=\"none\"><g clip-path=\"url(#a)\"><path d=\"M51.6 13.86c1.906 0 3.152 1.093 3.152 3.404v2.36c0 1.474-.534 2.39-1.398 2.822v.178c.991.407 1.602 1.347 1.602 2.922v2.694c0 2.312-1.245 3.405-3.152 3.405h-6.023c-.228 0-.355-.107-.355-.356V14.206c0-.254.127-.355.355-.355l5.82.008Zm-3.329 2.439v5.083h2.745c.661 0 .991-.305.991-.96v-3.156c0-.66-.33-.96-.99-.96l-2.746-.007Zm2.821 7.523h-2.82v5.387h2.82c.66 0 .961-.305.961-.96v-3.46c.005-.66-.3-.966-.96-.966v-.001Zm8.794 7.498c0 .229-.107.331-.306.331h-2.007a.297.297 0 0 1-.331-.33V13.936a.295.295 0 0 1 .331-.33h2.005c.203 0 .305.107.305.33l.003 17.383Zm2.592-2.694v-7.934c0-2.16 1.143-3.176 2.922-3.176h2.999c1.779 0 2.922 1.017 2.922 3.176v7.93c0 2.16-1.143 3.176-2.922 3.176h-3c-1.777.005-2.921-1.012-2.921-3.172Zm2.643-7.934v7.93c0 .635.306.915.915.915h1.729c.635 0 .915-.28.915-.915v-7.93c0-.635-.28-.915-.915-.915h-1.729c-.61.005-.915.284-.915.915Zm14.13 11.111h-2.644c-1.778 0-2.922-1.017-2.922-3.177v-7.934c0-2.16 1.144-3.176 2.922-3.176h2.644c1.779 0 2.922 1.017 2.922 3.176v1.12c0 .228-.127.33-.33.355l-1.856.203c-.228.025-.355-.107-.355-.306v-1.372c0-.635-.28-.915-.915-.915h-1.474c-.609 0-.914.28-.914.915v7.93c0 .635.305.915.915.915h1.473c.64 0 .915-.28.915-.915v-1.343c0-.203.127-.331.355-.356l1.83-.178c.255-.026.356.107.356.305v1.576c.001 2.16-1.143 3.177-2.922 3.177Zm10.801-7.373 3.61 6.887c.106.178.025.33-.18.33h-2.26a.477.477 0 0 1-.457-.279l-2.872-5.82h-.788v5.766c0 .228-.107.33-.306.33h-2.007a.295.295 0 0 1-.331-.33V13.937a.295.295 0 0 1 .331-.33h2.011c.203 0 .306.107.306.33v9.556h.788l2.694-5.54a.456.456 0 0 1 .458-.28h2.135c.203 0 .28.153.178.331l-3.31 6.425Zm4.295-8.13c-.229 0-.33-.152-.306-.355l.229-1.754a.366.366 0 0 1 .38-.33h8.413c.229 0 .331.128.305.356l-.229 1.753a.365.365 0 0 1-.381.33h-2.643v14.994c0 .255-.107.356-.33.356h-2.16c-.23 0-.332-.107-.332-.356V16.3h-2.946Zm15.655 15.503h-2.898c-1.778 0-2.922-1.017-2.922-3.177v-7.934c0-2.16 1.144-3.176 2.922-3.176h2.898c1.778 0 2.922 1.017 2.922 3.176v4.575c0 .203-.107.305-.33.305h-5.765v3.05c0 .635.305.915.915.915h1.728c.636 0 .915-.28.915-.915v-1.14c0-.202.127-.33.356-.305l1.855.203c.203.026.33.127.33.356v.89c-.003 2.16-1.146 3.177-2.926 3.177Zm-3.177-8.361h3.558v-2.75c0-.635-.28-.915-.915-.915h-1.728c-.609 0-.915.28-.915.915v2.75Zm11.285 7.878c0 .229-.107.331-.306.331h-2.007a.296.296 0 0 1-.331-.33V13.936a.299.299 0 0 1 .331-.33h2.007c.203 0 .306.107.306.33V31.32Zm8.411.483h-2.898c-1.779 0-2.922-1.017-2.922-3.177v-7.934c0-2.16 1.143-3.176 2.922-3.176h2.898c1.778 0 2.922 1.017 2.922 3.176v4.575c0 .203-.107.305-.33.305h-5.765v3.05c0 .635.305.915.915.915h1.724c.635 0 .915-.28.915-.915v-1.14c0-.202.127-.33.355-.305l1.856.203c.203.026.33.127.33.356v.89c.001 2.16-1.142 3.177-2.922 3.177Zm-3.177-8.361h3.558v-2.75c0-.635-.28-.915-.915-.915h-1.729c-.609 0-.914.28-.914.915v2.75Zm14.461 6.251c-.331.712-.915 1.348-2.364 1.348h-1.019c-1.652 0-2.67-.89-2.67-2.923v-7.675c0-2.029 1.017-2.923 2.67-2.923h1.219c1.474 0 2.058.661 2.388 1.372h.153v-.889c0-.228.107-.33.304-.33h1.808c.202 0 .304.106.304.33v14.434c0 2.16-1.144 3.05-2.922 3.05h-3.049c-1.678 0-2.746-.763-2.746-2.822v-.203c0-.228.128-.33.356-.355l1.855-.203c.228-.025.33.107.33.305v.356c0 .61.306.84.916.84h1.55c.736 0 1.067-.28 1.067-1.017v-2.695h-.15Zm-3.406-1.728c0 .56.28.814.838.814h1.449c.864 0 1.271-.407 1.271-1.27v-6.456c0-.863-.407-1.27-1.271-1.27h-1.449c-.559 0-.838.254-.838.813v7.37Zm9.328-10.292h1.779c.228 0 .33.107.33.331v1.322h.153c.254-.737.813-1.805 2.515-1.805h.508a.277.277 0 0 1 .301.2.298.298 0 0 1 .005.13l-.203 1.602c-.026.203-.127.33-.331.33h-.376c-1.576 0-2.364 1.093-2.364 2.872v8.666c0 .229-.107.331-.305.331h-2.008a.292.292 0 0 1-.246-.085.299.299 0 0 1-.083-.246V18.003a.292.292 0 0 1 .194-.314.295.295 0 0 1 .131-.016Zm13.009 12.757h-.153c-.305.712-.889 1.373-2.388 1.373h-1.196c-1.652 0-2.669-.89-2.669-2.923v-2.058c0-2.16 1.143-3.176 2.922-3.176h3.279v-2.954c0-.635-.306-.915-.915-.915h-1.576c-.635 0-.915.28-.915.915v1.195c0 .203-.127.331-.356.305l-1.854-.202c-.203-.026-.331-.127-.331-.356v-.942c0-2.16 1.143-3.176 2.922-3.176h2.745c1.779 0 2.922 1.017 2.922 3.176v10.624a.3.3 0 0 1-.013.133.304.304 0 0 1-.184.184.293.293 0 0 1-.133.014h-1.778c-.229 0-.331-.107-.331-.331l.002-.885Zm-.203-2.16v-2.49h-2.669c-.61 0-.89.28-.89.89v2.058c0 .56.28.813.814.813h1.453c.863 0 1.294-.407 1.294-1.268l-.002-.002Zm7.957 2.186v4.55c0 .228-.106.33-.305.33h-2.004a.296.296 0 0 1-.331-.33V18.003a.3.3 0 0 1 .013-.133.302.302 0 0 1 .185-.184.294.294 0 0 1 .133-.014h1.779c.228 0 .33.107.33.331v.89h.153c.306-.712.89-1.373 2.389-1.373h1.194c1.652 0 2.67.89 2.67 2.923v8.434c0 2.029-1.017 2.922-2.67 2.922h-.99c-1.449 0-2.059-.635-2.389-1.347l-.157.004Zm3.563-9.86c0-.56-.28-.814-.814-.814h-1.448c-.864 0-1.296.407-1.296 1.27v7.221c0 .864.427 1.27 1.296 1.27h1.448c.534 0 .814-.254.814-.813v-8.135Zm8.026-1.728c.331-.712.94-1.348 2.388-1.348h.864c1.652 0 2.669.89 2.669 2.923V31.32c0 .229-.107.331-.305.331h-2.004a.295.295 0 0 1-.317-.198.286.286 0 0 1-.013-.133V20.595c0-.56-.28-.813-.814-.813h-1.321c-.864 0-1.297.407-1.297 1.27V31.32c0 .229-.106.331-.305.331h-2.007a.299.299 0 0 1-.318-.198.3.3 0 0 1-.013-.133V13.937a.299.299 0 0 1 .013-.132.299.299 0 0 1 .318-.197h2.007c.203 0 .305.106.305.33v4.93h.15ZM36.72 13.947a1.906 1.906 0 1 0 0-3.812 1.906 1.906 0 0 0 0 3.812ZM19.46 3.812a1.906 1.906 0 1 0 0-3.812 1.906 1.906 0 0 0 0 3.812ZM1.906 13.947a1.906 1.906 0 1 0 0-3.812 1.906 1.906 0 0 0 0 3.812Zm0 19.609a1.906 1.906 0 1 0 0-3.812 1.906 1.906 0 0 0 0 3.812ZM19.46 43.965a1.906 1.906 0 1 0 0-3.811 1.906 1.906 0 0 0 0 3.811Zm17.26-9.748a1.906 1.906 0 1 0 0-3.812 1.906 1.906 0 0 0 0 3.812Z\" fill=\"#7F7F7F\"/><path d=\"M19.46 12.127a1.714 1.714 0 1 0 0-3.428 1.714 1.714 0 0 0 0 3.428Zm-.147 23.415a1.714 1.714 0 1 0 0-3.428 1.714 1.714 0 0 0 0 3.428Zm10.432-5.827a1.714 1.714 0 1 0 0-3.427 1.714 1.714 0 0 0 0 3.427Zm.109-11.841a1.714 1.714 0 1 0 0-3.427 1.714 1.714 0 0 0 0 3.427ZM8.927 29.603a1.714 1.714 0 1 0 0-3.427 1.714 1.714 0 0 0 0 3.427Z\" fill=\"#BBB\"/><path d=\"M19.48 23.56a1.714 1.714 0 1 0 0-3.428 1.714 1.714 0 0 0 0 3.427ZM9.117 17.874a1.714 1.714 0 1 0 0-3.427 1.714 1.714 0 0 0 0 3.427Z\" fill=\"#7F7F7F\"/><path d=\"m29.454 27.874.105-11.567.577.005-.105 11.567-.577-.005Z\" fill=\"#BBB\" stroke=\"#BBB\" stroke-width=\".303\"/><path d=\"m19.445 10.456.289-.498 10.132 5.873-.29.499-10.131-5.874Zm-.14 23.048 10.167-5.647.28.503-10.167 5.648-.28-.504Z\" fill=\"#BBB\" stroke=\"#BBB\" stroke-width=\".303\"/><path d=\"m9.164 28.354.286-.5 9.875 5.646-.287.5-9.874-5.646Z\" fill=\"#BBB\" stroke=\"#BBB\" stroke-width=\".303\"/><path d=\"m9.176 16.126 10.479 6.05\" stroke=\"#7F7F7F\" stroke-width=\".91\" stroke-miterlimit=\"10\"/><path d=\"M2.64 12.041H1.172V31.65H2.64V12.04Z\" fill=\"#7F7F7F\"/><path d=\"M19.093 1.272 1.54 11.407l.733 1.27L19.826 2.54l-.733-1.269Z\" fill=\"#7F7F7F\"/><path d=\"m19.831 1.271-.743 1.265 17.26 10.135.743-1.265L19.831 1.27Z\" fill=\"#7F7F7F\"/><path d=\"M37.453 12.041h-1.466V32.31h1.466V12.04Z\" fill=\"#7F7F7F\"/><path d=\"M36.36 31.67 19.1 41.42l.72 1.276 17.261-9.75-.721-1.276Z\" fill=\"#7F7F7F\"/><path d=\"m2.282 31.025-.748 1.261 17.553 10.41.749-1.26L2.282 31.024Z\" fill=\"#7F7F7F\"/><path d=\"M8.887 18.646c.19.018.383.014.572-.014v9.249h-.572v-9.235Zm2.226-3.982 8.07-4.701.291.498-8.07 4.7a2.496 2.496 0 0 0-.291-.497Z\" fill=\"#BBB\" stroke=\"#BBB\" stroke-width=\".303\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h182v43.983H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:'\"Giddy has made waves in the staking space with its platform providing the first one-tap solution to simplify the arduous DeFi strategy [...] The goal is to make sophisticated DeFi investing accessible to all\"'})}),className:\"framer-zmr3ou\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n8rcwy\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6q6upd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"GOOD THINGS TO SAY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(98, 91, 79)\"},children:\"GOOD THINGS TO SAY\"})}),className:\"framer-1e7q6b1\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"You're in good company\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"You're in good company\"})}),className:\"framer-1rivx4f\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1749rco-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VhWYsrl6c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"VhWYsrl6c\",layoutId:\"VhWYsrl6c\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p0dske-container\",inComponentSlot:true,nodeId:\"BJzSxIaeq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"BJzSxIaeq\",K6Yo88PmW:'\"Crypto is confusing. Giddy is not. It\\'s not easy to simplify the complexities within the crypto world but Giddy has managed to do it.\"',layoutId:\"BJzSxIaeq\",qfHf1G90E:\"-shummer-6\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:72,pixelWidth:72,src:\"https://framerusercontent.com/images/zPrKyIWdQt0QebFyUlOa095kRWw.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s41m9t-container\",inComponentSlot:true,nodeId:\"x8WbSEQRE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"x8WbSEQRE\",K6Yo88PmW:'\"Gamechanger for DeFi adoption. Easily the easiest way to get started with self-custody DeFi.\"',layoutId:\"x8WbSEQRE\",qfHf1G90E:\"-Tate24\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/K3QbovZQKekF1jP826BPj4HKWiM.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ft1y23-container\",inComponentSlot:true,nodeId:\"J7oGUiQYX\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"J7oGUiQYX\",K6Yo88PmW:'\"Giddy Making DeFi Easier - I was lucky enough to beta test their wallet and very happy I did. The wallet is very user friendly and staking can be done with 1 click.\"',layoutId:\"J7oGUiQYX\",qfHf1G90E:\"-Noochy12\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:72,pixelWidth:72,src:\"https://framerusercontent.com/images/g08AvUkfIFz3GZb3FdCuQlLI0o.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ift0uv-container\",inComponentSlot:true,nodeId:\"JU_HS5aNt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"JU_HS5aNt\",K6Yo88PmW:'\"Everything works great and is extremely fast. I sent some USDC from CB and received it in a few seconds. The swap is also extremely fast. I love the overall design and can\\'t wait for more.\"',layoutId:\"JU_HS5aNt\",qfHf1G90E:\"-Young and Dashing\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/y94WzBsdSKtWBkuUH6NMphI5UGg.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-n0724w-container\",inComponentSlot:true,nodeId:\"sZqXqn8WV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"sZqXqn8WV\",K6Yo88PmW:'\"I\\'ve been in DeFi for a while and have often wondered how we will ever be able to bring DeFi to the masses because it is too difficult or dangerous for the inexperienced. This app answered that question.\"',layoutId:\"sZqXqn8WV\",qfHf1G90E:\"-Doug W.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:72,pixelWidth:72,src:\"https://framerusercontent.com/images/8VeBid9qMyx305P5LfrsfFzWM.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1stnji6-container\",inComponentSlot:true,nodeId:\"xFQ_2yDrI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"xFQ_2yDrI\",K6Yo88PmW:'\"Love ! \u2764\uFE0F\"',layoutId:\"xFQ_2yDrI\",qfHf1G90E:\"-Kristy Cabibi\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/z6br3zLZTywlYbCla2rCGdXFxuY.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gw7uq1-container\",inComponentSlot:true,nodeId:\"tsvl3TRmn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"tsvl3TRmn\",K6Yo88PmW:'\"Amazing wallet, especially for staking your crypto. Been using it since the first waves of closed beta and it\\'s amazing! My money (crypto) is definitely growing!\"',layoutId:\"tsvl3TRmn\",qfHf1G90E:\"-Nesty1029\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/tcAsxi3J1Q1AtOhbsKaAJY02A.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yxc5tq-container\",inComponentSlot:true,nodeId:\"e19sN__Bq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"e19sN__Bq\",K6Yo88PmW:'\"Awesome!!!\"',layoutId:\"e19sN__Bq\",qfHf1G90E:'-FT0000000000\"0',style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:72,pixelWidth:72,src:\"https://framerusercontent.com/images/4aQI7D105QrEs8318uqWpj1Z92A.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jgut4m-container\",inComponentSlot:true,nodeId:\"ko3NbcADB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"ko3NbcADB\",K6Yo88PmW:'\"Awesome auto-compounding. Their staking pools auto-compound earnings! Probably one of my favorite features in the app. The entire app is clean and incredibly easy to use. Revolutionary for DeFi going forward.\"',layoutId:\"ko3NbcADB\",qfHf1G90E:\"-K$wizle\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/jBXfmUePMtCY8f7zQMewFekOQI.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-svsmlk-container\",inComponentSlot:true,nodeId:\"YZxoXh5JL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"YZxoXh5JL\",K6Yo88PmW:'\"This is an amazing step in integrating defi at a beginner\\'s level. Giddy up \u2B06\uFE0F\uD83D\uDCC8\"',layoutId:\"YZxoXh5JL\",qfHf1G90E:\"-tylerkibbles\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:72,pixelWidth:72,src:\"https://framerusercontent.com/images/zPrKyIWdQt0QebFyUlOa095kRWw.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-d6wbox-container\",inComponentSlot:true,nodeId:\"yF4maVr8Z\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"yF4maVr8Z\",K6Yo88PmW:\"\\\"Crazy simple. Giddy is doing exactly what is needed in Defi. I've been in the app for a few weeks and through a bunch of updates. Love using the app and love what i'm seeing.\\\"\",layoutId:\"yF4maVr8Z\",qfHf1G90E:\"-Brentron5967\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/K3QbovZQKekF1jP826BPj4HKWiM.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8gfds9-container\",inComponentSlot:true,nodeId:\"jaDm6lE8o\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"jaDm6lE8o\",K6Yo88PmW:'\"Crypto your mom can buy!!! Let\\'s go Giddy!!!!\"',layoutId:\"jaDm6lE8o\",qfHf1G90E:\"-John DiChristofero\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:72,pixelWidth:72,src:\"https://framerusercontent.com/images/g08AvUkfIFz3GZb3FdCuQlLI0o.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u4l7y5-container\",inComponentSlot:true,nodeId:\"CFpny5fos\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"CFpny5fos\",K6Yo88PmW:\"\\\"Whether you're a DeFi Degen or a DeFi Dunce, this app offers the most simple and secure way I've seen to get your piece of the DeFi pie. Thanks Giddy!\\\"\",layoutId:\"CFpny5fos\",qfHf1G90E:\"-DJW in Le-tah\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/y94WzBsdSKtWBkuUH6NMphI5UGg.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-o98twy-container\",inComponentSlot:true,nodeId:\"cFjRDyCE2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"cFjRDyCE2\",K6Yo88PmW:'\"Giddy DeFi is the future of simplified crypto investing. So easy your grandparents can do it! Giddy Up, Giddy Get Out, and Giddy DOWNLOAD the app today! GU\"',layoutId:\"cFjRDyCE2\",qfHf1G90E:\"-Austin Davis\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:72,pixelWidth:72,src:\"https://framerusercontent.com/images/8VeBid9qMyx305P5LfrsfFzWM.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aa7tuf-container\",inComponentSlot:true,nodeId:\"tbxRwfaLi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"tbxRwfaLi\",K6Yo88PmW:\"\\\"Giddy is by far the best wallet app in my honest opinion. I've been using multiple different apps and to find one that's so simple and straightforward was a godsend.\\\" \",layoutId:\"tbxRwfaLi\",qfHf1G90E:\"-Bman-MSMedia\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/z6br3zLZTywlYbCla2rCGdXFxuY.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-df6a4z-container\",inComponentSlot:true,nodeId:\"xL8dN8kX0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"xL8dN8kX0\",K6Yo88PmW:\"'Like Robinhood, Defi for the masses and I'm staking and harvesting everyday!\\\"\",layoutId:\"xL8dN8kX0\",qfHf1G90E:\"-Skitramp\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/tcAsxi3J1Q1AtOhbsKaAJY02A.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-p5ltgc-container\",inComponentSlot:true,nodeId:\"UA7QSgEHb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"UA7QSgEHb\",K6Yo88PmW:'\"Smoothest experience in DeFi. This app takes you from novice to DeFi pro in minutes, explaining each step along the way.\"',layoutId:\"UA7QSgEHb\",qfHf1G90E:\"-SirLuchos\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:72,pixelWidth:72,src:\"https://framerusercontent.com/images/4aQI7D105QrEs8318uqWpj1Z92A.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l4n3h5-container\",inComponentSlot:true,nodeId:\"JcBGpI8Ta\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewCard,{height:\"100%\",id:\"JcBGpI8Ta\",K6Yo88PmW:'\"#1 app in the game for crypto. Leading the pack of DeFi apps. The UI and experience of Giddy is the best of the best. A++\"',layoutId:\"JcBGpI8Ta\",qfHf1G90E:\"-w1nning421\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",yasE8rYjD:addImageAlt({pixelHeight:73,pixelWidth:72,src:\"https://framerusercontent.com/images/jBXfmUePMtCY8f7zQMewFekOQI.png\"},\"\")})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3635}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:490,width:\"1200px\",y:(componentViewport?.y||0)+0+4470,children:/*#__PURE__*/_jsx(Container,{className:\"framer-smf955-container\",nodeId:\"XYbVeZc5M\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{style:{width:\"100%\"},variant:\"LhpThlJua\"}},children:/*#__PURE__*/_jsx(JoinNewsletter,{height:\"100%\",id:\"XYbVeZc5M\",layoutId:\"XYbVeZc5M\",style:{height:\"100%\",width:\"100%\"},variant:\"I7rS92GWw\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-klubhi\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{y:(componentViewport?.y||0)+0+4125+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:665,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4960+120+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7gl8ry-container\",nodeId:\"K1Mqt1QR4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pR2vQSSUm:{variant:\"CqM82994X\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"K1Mqt1QR4\",layoutId:\"K1Mqt1QR4\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WHpXP0ify\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s5xdQ.framer-lux5qc, .framer-s5xdQ .framer-lux5qc { display: block; }\",\".framer-s5xdQ.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-s5xdQ .framer-1n8hu75-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-s5xdQ .framer-18gn1l1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1021px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-s5xdQ .framer-16ghah4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s5xdQ .framer-6g3dhw { aspect-ratio: 0.6163895486935868 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 689px); overflow: visible; position: relative; width: 425px; }\",\".framer-s5xdQ .framer-t87r3l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 530px; }\",\".framer-s5xdQ .framer-1kwdsxv { 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; padding: 0px; position: relative; width: min-content; }\",\".framer-s5xdQ .framer-1dddx55, .framer-s5xdQ .framer-1liz6ol { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s5xdQ .framer-1so0s8x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-s5xdQ .framer-1fvw7oj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-s5xdQ .framer-7ha5ah { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 397px; word-break: break-word; word-wrap: break-word; }\",\".framer-s5xdQ .framer-1s2ym0x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 28px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-s5xdQ .framer-1pkrnvp-container, .framer-s5xdQ .framer-13y9o10-container, .framer-s5xdQ .framer-1dyxlur-container, .framer-s5xdQ .framer-5668jj-container, .framer-s5xdQ .framer-ad62sm-container, .framer-s5xdQ .framer-ni9tvu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-s5xdQ .framer-1cew6va { aspect-ratio: 0.5843672456575683 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 570px); overflow: visible; position: relative; width: 333px; }\",\".framer-s5xdQ .framer-17eqkmn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: 801px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-s5xdQ .framer-1i12dsq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 640px; word-break: break-word; word-wrap: break-word; }\",\".framer-s5xdQ .framer-bj3fdo-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 357px); position: relative; width: 636px; }\",\".framer-s5xdQ .framer-wazo4w { align-content: center; align-items: center; background-color: #ece9e4; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 735px; justify-content: center; overflow: hidden; padding: 100px 48px 100px 0px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-s5xdQ .framer-vsh0z4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-s5xdQ .framer-1sze7ub { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 534px; }\",\".framer-s5xdQ .framer-11p17i8, .framer-s5xdQ .framer-91374i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 371px; }\",\".framer-s5xdQ .framer-1vcijw6, .framer-s5xdQ .framer-6dz5bi, .framer-s5xdQ .framer-p4umlw, .framer-s5xdQ .framer-1rxbtgj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s5xdQ .framer-1l23rge, .framer-s5xdQ .framer-1y4nkyw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-s5xdQ .framer-18q4z01, .framer-s5xdQ .framer-z17wbf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-s5xdQ.framer-1w9nkva, .framer-s5xdQ.framer-8klr2z { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-s5xdQ.framer-j9yrf4-container, .framer-s5xdQ.framer-192uca4-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-s5xdQ .framer-kntvuv { aspect-ratio: 0.9218106995884774 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 486px); position: relative; width: 448px; }\",\".framer-s5xdQ .framer-zlw0r0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 72px; position: relative; width: 100%; }\",\".framer-s5xdQ .framer-1o0wlu6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 429px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1128px; }\",\".framer-s5xdQ .framer-9cjmq6 { aspect-ratio: 1.0112866817155757 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 429px); position: relative; width: 434px; }\",\".framer-s5xdQ .framer-6yzrak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 429px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 694px; }\",\".framer-s5xdQ .framer-kbyj95 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 547px; }\",\".framer-s5xdQ .framer-ghp27l { align-content: center; align-items: center; background-color: #ece9e4; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 600px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-s5xdQ .framer-1mxv5di { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 97px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 492px; }\",\".framer-s5xdQ .framer-rqbw21, .framer-s5xdQ .framer-12nem3x, .framer-s5xdQ .framer-1e7q6b1, .framer-s5xdQ .framer-1rivx4f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-s5xdQ .framer-16bbahz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-s5xdQ .framer-wx1n20, .framer-s5xdQ .framer-1ph72hw, .framer-s5xdQ .framer-ayfghh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-s5xdQ .framer-1amfibo { aspect-ratio: 2.871794871794872 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 112px; }\",\".framer-s5xdQ .framer-1qphbrz, .framer-s5xdQ .framer-xwvg83, .framer-s5xdQ .framer-zmr3ou { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\",\".framer-s5xdQ .framer-1y8puap { aspect-ratio: 1.1403508771929824 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); position: relative; width: 65px; }\",\".framer-s5xdQ .framer-itcgkl { aspect-ratio: 4.136363636363637 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 182px; }\",\".framer-s5xdQ .framer-1n8rcwy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 684px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-s5xdQ .framer-6q6upd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 97px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 536px; }\",\".framer-s5xdQ .framer-1749rco-container { flex: none; height: auto; position: relative; width: 933px; }\",\".framer-s5xdQ .framer-1p0dske-container, .framer-s5xdQ .framer-s41m9t-container, .framer-s5xdQ .framer-ft1y23-container, .framer-s5xdQ .framer-1ift0uv-container, .framer-s5xdQ .framer-n0724w-container, .framer-s5xdQ .framer-1stnji6-container, .framer-s5xdQ .framer-1gw7uq1-container, .framer-s5xdQ .framer-1yxc5tq-container, .framer-s5xdQ .framer-jgut4m-container, .framer-s5xdQ .framer-svsmlk-container, .framer-s5xdQ .framer-d6wbox-container, .framer-s5xdQ .framer-8gfds9-container, .framer-s5xdQ .framer-1u4l7y5-container, .framer-s5xdQ .framer-o98twy-container, .framer-s5xdQ .framer-1aa7tuf-container, .framer-s5xdQ .framer-df6a4z-container, .framer-s5xdQ .framer-p5ltgc-container, .framer-s5xdQ .framer-1l4n3h5-container { height: 390px; position: relative; width: 310px; }\",\".framer-s5xdQ .framer-smf955-container { flex: none; height: 490px; position: relative; width: 1200px; }\",\".framer-s5xdQ .framer-klubhi { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-s5xdQ .framer-7gl8ry-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\"@media (max-width: 1199px) { .framer-s5xdQ.framer-72rtr7 { width: 390px; } .framer-s5xdQ .framer-1n8hu75-container { left: 0px; order: 0; transform: unset; } .framer-s5xdQ .framer-18gn1l1 { align-content: flex-start; align-items: flex-start; gap: 0px; order: 1; } .framer-s5xdQ .framer-16ghah4 { flex-direction: column; gap: 0px; order: 0; padding: 48px 0px 0px 0px; } .framer-s5xdQ .framer-t87r3l { align-content: center; align-items: center; gap: 10px; order: 2; padding: 0px 18px 0px 18px; width: 100%; } .framer-s5xdQ .framer-1so0s8x { gap: 6px; justify-content: center; } .framer-s5xdQ .framer-7ha5ah { flex: 1 0 0px; width: 1px; } .framer-s5xdQ .framer-1s2ym0x { flex-direction: column; padding: 18px 0px 0px 0px; } .framer-s5xdQ .framer-1cew6va { order: 1; } .framer-s5xdQ .framer-17eqkmn { height: 470px; order: 2; padding: 60px; } .framer-s5xdQ .framer-bj3fdo-container { height: var(--framer-aspect-ratio-supported, 197px); width: 351px; } .framer-s5xdQ .framer-wazo4w { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex-direction: column; height: min-content; order: 3; padding: 24px 0px 24px 0px; width: 100%; will-change: unset; } .framer-s5xdQ .framer-vsh0z4 { flex: none; gap: 5px; height: min-content; order: 0; padding: 0px 0px 12px 0px; width: 100%; } .framer-s5xdQ .framer-1sze7ub { align-content: center; align-items: center; flex: 1 0 0px; gap: 20px; padding: 20px; width: 1px; } .framer-s5xdQ .framer-11p17i8, .framer-s5xdQ .framer-91374i { width: min-content; } .framer-s5xdQ .framer-1vcijw6, .framer-s5xdQ .framer-6dz5bi, .framer-s5xdQ .framer-p4umlw, .framer-s5xdQ .framer-1rxbtgj { white-space: pre; width: auto; } .framer-s5xdQ .framer-kntvuv { height: var(--framer-aspect-ratio-supported, 296px); order: 1; width: 273px; } .framer-s5xdQ .framer-zlw0r0 { flex-direction: column; order: 4; padding: 40px 0px 40px 0px; } .framer-s5xdQ .framer-1o0wlu6 { flex-direction: column; height: min-content; order: 0; width: 100%; } .framer-s5xdQ .framer-9cjmq6 { height: var(--framer-aspect-ratio-supported, 282px); order: 1; width: 286px; } .framer-s5xdQ .framer-6yzrak { height: min-content; order: 0; width: 100%; } .framer-s5xdQ .framer-kbyj95 { align-content: center; align-items: center; flex: 1 0 0px; gap: 28px; padding: 0px 20px 40px 20px; width: 1px; } .framer-s5xdQ .framer-ghp27l { height: min-content; order: 5; padding: 60px; } .framer-s5xdQ .framer-1mxv5di, .framer-s5xdQ .framer-6q6upd { height: min-content; width: 100%; } .framer-s5xdQ .framer-12nem3x, .framer-s5xdQ .framer-wx1n20, .framer-s5xdQ .framer-1qphbrz, .framer-s5xdQ .framer-1ph72hw, .framer-s5xdQ .framer-xwvg83, .framer-s5xdQ .framer-ayfghh, .framer-s5xdQ .framer-zmr3ou, .framer-s5xdQ .framer-1rivx4f, .framer-s5xdQ .framer-1749rco-container { width: 100%; } .framer-s5xdQ .framer-16bbahz { flex-direction: column; gap: 36px; padding: 0px 8px 0px 8px; width: 113%; } .framer-s5xdQ .framer-1n8rcwy { height: min-content; order: 6; padding: 60px 20px 60px 20px; } .framer-s5xdQ .framer-smf955-container { height: auto; order: 7; width: 100%; } .framer-s5xdQ .framer-klubhi { gap: 0px; order: 8; padding: 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5745\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pR2vQSSUm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"N8TnZ8l4U\":{\"pattern\":\":N8TnZ8l4U\",\"name\":\"content\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-s5xdQ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5745,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v14/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"}]},...TopNavigationFonts,...AppStoreButtonFonts,...YouTubeFonts,...ButtonFonts,...GetAppOverlayFonts,...ReviewCardFonts,...CarouselFonts,...JoinNewsletterFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"N8TnZ8l4U\\\":{\\\"pattern\\\":\\\":N8TnZ8l4U\\\",\\\"name\\\":\\\"content\\\"}}\",\"framerIntrinsicHeight\":\"5745\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pR2vQSSUm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "pFP", "text", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "yasE8rYjD", "K6Yo88PmW", "qfHf1G90E", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "Image2", "ComponentViewportProvider", "Icon", "RichText", "css", "FramerLmNd6kmB9", "withCSS", "LmNd6kmB9_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "TopNavigationFonts", "getFonts", "rrZTxH931_default", "TopNavigationWithVariantAppearEffect", "withVariantAppearEffect", "AppStoreButtonFonts", "kCd2bD0XB_default", "YouTubeFonts", "Youtube", "ButtonFonts", "K9c4rv4BZ_default", "GetAppOverlayFonts", "tiLwE1X_Z_default", "ReviewCardFonts", "LmNd6kmB9_default", "CarouselFonts", "Carousel", "JoinNewsletterFonts", "bu8lAAVBL_default", "FooterFonts", "Ej0JlWC4L_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "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", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "fPNZeuy6z3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "isDisplayed", "isDisplayed1", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "Container", "Image2", "getLoadingLazyAtYPosition", "RichText", "x", "l", "AnimatePresence", "Ga", "ResolveLinks", "resolvedLinks", "SVG", "overlay1", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
