{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js", "ssg:https://framerusercontent.com/modules/9oNoGW6Wf0NxLSVBj4Lv/kXXobQxB7rC1x5kjqW8Q/dibiyK5ot.js", "ssg:https://framerusercontent.com/modules/eOxrB1aoc1u8yTVB1LG8/uQxiSte2gNRFnHG3Hvrk/GneDnYDxy.js", "ssg:https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js", "ssg:https://framerusercontent.com/modules/jDn32RfauNdLnTtn2Pcd/ViTCO2s9iZJ8cZQZMajO/V5nGfGfGC.js", "ssg:https://framerusercontent.com/modules/y6AaZbLlVTA8Anz0Xw5I/AHQSXSDi98h5EDKLt1wr/IOJnH9t8g.js", "ssg:https://framerusercontent.com/modules/rgxUqkv08aNbuy1mMUQ0/GRwzZBDjGP07XC1mDWcz/MBWHXQP6D.js", "ssg:https://framerusercontent.com/modules/57RVjHgDJdrpCHxFe8na/BmDGLGIK2AqVPqGrHShZ/XY1WACrc3.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,Color}from\"framer\";import{motion}from\"framer-motion\";/**\n * PATTERN\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Pattern(props){const{patternType,front,back,radius,scale,shouldAnimate,direction,diagonal,duration}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;let pattern;let position;let size;let repeat;let blendMode;let filter;let addBackground;let backgroundPosAnimation;const frontHex=Color.toHexString(Color(front));const backHex=Color.toHexString(Color(back));const frontWithoutHex=frontHex.replace(\"#\",\"\");const backWithoutHex=backHex.replace(\"#\",\"\");const factor=direction===\"left\"||direction===\"top\"?-1:1;const xScale=direction===\"left\"||direction===\"right\"?factor*scale:0;const yScale=direction===\"top\"||direction===\"bottom\"?factor*scale:0;if(patternType===\"wave\"){pattern=`radial-gradient(circle at center center, ${front}, ${back}), repeating-radial-gradient(circle at center center, ${front}, ${front}, ${scale}px, transparent ${scale*2}px, transparent ${scale}px)`;blendMode=\"multiply\";}if(patternType===\"zigzag\"){pattern=`linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;position=`${scale}px 0, ${scale}px 0, 0 0, 0 0`;size=`${scale*2}px ${scale*2}px`;repeat=`repeat`;}if(patternType===\"diagonal\"){pattern=`repeating-linear-gradient(45deg, ${front}, ${front} ${scale/2}px, ${back} ${scale/2}px, ${back} ${scale*2}px )`;}if(patternType===\"diagonal-two\"){pattern=`repeating-linear-gradient( 135deg, ${front}, ${front} ${scale/2}px, ${back} ${scale/2}px, ${back} ${scale*2}px )`;}if(patternType===\"blocks\"){pattern=`linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back})`;size=`${scale*8}px ${scale*14}px`;position=`0 0, 0 0, ${scale*4}px ${scale*7}px, ${scale*4}px ${scale*7}px, 0 0, ${scale*4}px ${scale*7}px`;}if(patternType===\"polka\"){pattern=`radial-gradient(${front} 1px, transparent 1px), radial-gradient(${front} 1px, ${back} 1px)`;size=`${scale*2}px ${scale*2}px`;position=`0 0, ${scale}px ${scale}px`;}if(patternType===\"rhombus\"){pattern=`linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;position=`${scale}px 0, ${scale}px 0, 0 0, 0 0`;size=`${scale}px ${scale}px`;repeat=\"repeat\";}if(patternType===\"stars\"){pattern=`radial-gradient(ellipse ${scale}px ${scale}px, ${front}, ${front} 25%, ${back} 25%)`;size=`${scale/2}px ${scale/2}px`;if(shouldAnimate){backgroundPosAnimation=`${xScale}px ${yScale}px`;}}if(patternType===\"circles\"){pattern=`radial-gradient(circle at 100% 50%, ${back} 20%, ${front} 21%, ${front} 34%, transparent 35%, transparent), radial-gradient(circle at 0% 50%, ${back} 20%, ${front} 21%, ${front} 34%, ${back} 35%, ${back})`;size=`${scale*2}px ${scale*2}px`;}if(patternType===\"rectangles\"){pattern=`repeating-linear-gradient(45deg, ${front} 25%, transparent 25%, transparent 75%, ${front} 75%, ${front}), repeating-linear-gradient(45deg, ${front} 25%, ${back} 25%, ${back} 75%, ${front} 75%, ${front})`;position=`0 0, ${scale}px ${scale}px`;size=`${scale*2}px ${scale*2}px`;}if(patternType===\"lines\"){pattern=`linear-gradient(0deg, ${front} 50%, ${back} 50%)`;size=`${scale}px ${scale}px`;}if(patternType===\"lines-vertical\"){pattern=`linear-gradient(to right, ${front} 50%, ${back} 50%)`;size=`${scale}px ${scale}px`;}if(patternType===\"paper\"){pattern=`linear-gradient(${front} 2px, transparent 2px), linear-gradient(90deg, ${front} 2px, transparent 2px), linear-gradient(${front} 1px, transparent 1px), linear-gradient(90deg, ${front} 1px, ${back} 1px)`;size=`${scale*5}px ${scale*5}px, ${scale*5}px ${scale*5}px, ${scale}px ${scale}px, ${scale}px ${scale}px`;position=`-2px -2px, -2px -2px, -1px -1px, -1px -1px`;}if(patternType===\"crosses\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;size=`${scale*4}px ${scale*4}px`;addBackground=back;}if(patternType===\"wave-lines\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;size=`${scale*10}px ${scale*2}px`;addBackground=back;if(shouldAnimate){backgroundPosAnimation=`${xScale*10}px ${yScale*2}px`;}}if(patternType===\"clouds\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28'%3E%3Cpath fill='%23${frontWithoutHex}' d='M56 26v2h-7.75c2.3-1.27 4.94-2 7.75-2zm-26 2a2 2 0 1 0-4 0h-4.09A25.98 25.98 0 0 0 0 16v-2c.67 0 1.34.02 2 .07V14a2 2 0 0 0-2-2v-2a4 4 0 0 1 3.98 3.6 28.09 28.09 0 0 1 2.8-3.86A8 8 0 0 0 0 6V4a9.99 9.99 0 0 1 8.17 4.23c.94-.95 1.96-1.83 3.03-2.63A13.98 13.98 0 0 0 0 0h7.75c2 1.1 3.73 2.63 5.1 4.45 1.12-.72 2.3-1.37 3.53-1.93A20.1 20.1 0 0 0 14.28 0h2.7c.45.56.88 1.14 1.29 1.74 1.3-.48 2.63-.87 4-1.15-.11-.2-.23-.4-.36-.59H26v.07a28.4 28.4 0 0 1 4 0V0h4.09l-.37.59c1.38.28 2.72.67 4.01 1.15.4-.6.84-1.18 1.3-1.74h2.69a20.1 20.1 0 0 0-2.1 2.52c1.23.56 2.41 1.2 3.54 1.93A16.08 16.08 0 0 1 48.25 0H56c-4.58 0-8.65 2.2-11.2 5.6 1.07.8 2.09 1.68 3.03 2.63A9.99 9.99 0 0 1 56 4v2a8 8 0 0 0-6.77 3.74c1.03 1.2 1.97 2.5 2.79 3.86A4 4 0 0 1 56 10v2a2 2 0 0 0-2 2.07 28.4 28.4 0 0 1 2-.07v2c-9.2 0-17.3 4.78-21.91 12H30zM7.75 28H0v-2c2.81 0 5.46.73 7.75 2zM56 20v2c-5.6 0-10.65 2.3-14.28 6h-2.7c4.04-4.89 10.15-8 16.98-8zm-39.03 8h-2.69C10.65 24.3 5.6 22 0 22v-2c6.83 0 12.94 3.11 16.97 8zm15.01-.4a28.09 28.09 0 0 1 2.8-3.86 8 8 0 0 0-13.55 0c1.03 1.2 1.97 2.5 2.79 3.86a4 4 0 0 1 7.96 0zm14.29-11.86c1.3-.48 2.63-.87 4-1.15a25.99 25.99 0 0 0-44.55 0c1.38.28 2.72.67 4.01 1.15a21.98 21.98 0 0 1 36.54 0zm-5.43 2.71c1.13-.72 2.3-1.37 3.54-1.93a19.98 19.98 0 0 0-32.76 0c1.23.56 2.41 1.2 3.54 1.93a15.98 15.98 0 0 1 25.68 0zm-4.67 3.78c.94-.95 1.96-1.83 3.03-2.63a13.98 13.98 0 0 0-22.4 0c1.07.8 2.09 1.68 3.03 2.63a9.99 9.99 0 0 1 16.34 0z'%3E%3C/path%3E%3C/svg%3E\")`;size=`${scale*5.6}px ${scale*2.8}px`;addBackground=back;if(shouldAnimate){backgroundPosAnimation=`${xScale*5.6}px ${yScale*2.8}px`;}}if(patternType===\"stars-two\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath fill='%23${frontWithoutHex}' d='m16 8.764 2.351 4.764 5.257.764L19.804 18l.898 5.236L16 20.764l-4.702 2.472.898-5.236-3.804-3.708 5.257-.764Z'%3E%3C/path%3E%3C/svg%3E\")`;size=`${scale*3.2}px ${scale*3.2}px`;addBackground=back;}if(patternType===\"wiggle\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*5.2}px ${scale*2.6}px`;if(shouldAnimate){if(diagonal){backgroundPosAnimation=`-${scale*5.2}px -${scale*5.2}px`;}else{backgroundPosAnimation=`${scale*5.2}px ${scale*5.2}px`;}}}if(patternType===\"groovy\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='24' height='40' viewBox='0 0 24 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0C4.477 0 0 4.477 0 10v30zm22 0c-5.523 0-10-4.477-10-10V0c5.523 0 10 4.477 10 10v30z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*2.4}px ${scale*4}px`;if(shouldAnimate){backgroundPosAnimation=`${xScale*2.4}px ${yScale*4}px`;}}if(patternType===\"plus\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*6}px ${scale*6}px`;}return /*#__PURE__*/ _jsx(motion.div,{style:{width:\"100%\",height:\"100%\",backgroundColor:addBackground?addBackground:\"transparent\",backgroundImage:pattern,backgroundPosition:position,backgroundSize:size,backgroundRepeat:repeat,backgroundBlendMode:blendMode,borderRadius:radius,filter:filter},animate:shouldAnimate&&{backgroundPosition:backgroundPosAnimation},transition:{type:\"tween\",ease:\"linear\",duration:duration,repeat:Infinity,repeatType:\"loop\"}});};Pattern.displayName=\"Pattern\";/* Property Controls */ addPropertyControls(Pattern,{patternType:{type:ControlType.Enum,defaultValue:\"wave-lines\",options:[\"wave-lines\",\"clouds\",\"wiggle\",\"groovy\",\"plus\",\"circles\",\"rectangles\",\"lines\",\"lines-vertical\",\"diagonal\",\"diagonal-two\",\"blocks\",\"wave\",\"zigzag\",\"polka\",\"rhombus\",\"stars\",\"stars-two\",\"paper\",\"crosses\",],optionTitles:[\"Wave Lines\",\"Clouds\",\"Wiggle\",\"Groovy\",\"Plus\",\"Circles\",\"Rectangles\",\"Lines\",\"Lines Vertical\",\"Diagonal\",\"Diagonal 2\",\"Blocks\",\"Wave\",\"ZigZag\",\"Polka\",\"Rhombus\",\"Stars\",\"Stars 2\",\"Paper\",\"Crosses\",],title:\"Type\"},front:{type:ControlType.Color,title:\"Front\",defaultValue:\"#FFF\"},back:{type:ControlType.Color,title:\"Back\",defaultValue:\"#2DD\"},scale:{type:ControlType.Number,min:1,max:100,step:1,defaultValue:10},radius:{type:ControlType.Number,min:0,max:100,step:1,defaultValue:0},shouldAnimate:{type:ControlType.Boolean,title:\"Animate\",defaultValue:false,hidden(props){return props.patternType!==\"wave-lines\"&&props.patternType!==\"wiggle\"&&props.patternType!==\"clouds\"&&props.patternType!==\"stars\"&&props.patternType!==\"groovy\";}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true,hidden(props){return props.patternType===\"wiggle\"||props.shouldAnimate===false;}},diagonal:{type:ControlType.Boolean,title:\"Direction\",defaultValue:true,enabledTitle:\"TL\",disabledTitle:\"BR\",hidden(props){return props.patternType!==\"wiggle\";}},duration:{type:ControlType.Number,min:0,max:50,step:.1,defaultValue:5,hidden(props){return props.shouldAnimate===false;}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Pattern\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pattern.map", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Pattern from\"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";const PatternFonts=getFonts(Pattern);const PatternControls=getPropertyControls(Pattern);const cycleOrder=[\"b4cU4cA3f\",\"mXMj1khrN\",\"lzd956UTB\",\"ia7psKHMF\",\"Z9mkX69z9\",\"GRyejAJzI\",\"Zx6Z9bvu1\"];const serializationHash=\"framer-fAJat\";const variantClassNames={b4cU4cA3f:\"framer-v-g3a1fd\",GRyejAJzI:\"framer-v-vx3n5f\",ia7psKHMF:\"framer-v-1w0uaka\",lzd956UTB:\"framer-v-uhhzlt\",mXMj1khrN:\"framer-v-1b4pc6s\",Z9mkX69z9:\"framer-v-19i7wdv\",Zx6Z9bvu1:\"framer-v-1yz056u\"};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Diagonal 2\":\"diagonal-two\",\"Lines Vertical\":\"lines-vertical\",\"Stars 2\":\"stars-two\",\"Wave Lines\":\"wave-lines\",Blocks:\"blocks\",Circles:\"circles\",Clouds:\"clouds\",Crosses:\"crosses\",Diagonal:\"diagonal\",Groovy:\"groovy\",Lines:\"lines\",Paper:\"paper\",Plus:\"plus\",Polka:\"polka\",Rectangles:\"rectangles\",Rhombus:\"rhombus\",Stars:\"stars\",Wave:\"wave\",Wiggle:\"wiggle\",ZigZag:\"zigzag\"};const humanReadableVariantMap={\"Dark Bottom-Right\":\"GRyejAJzI\",\"Dark Top-Left\":\"Zx6Z9bvu1\",\"Only Pattern\":\"lzd956UTB\",\"Pattern V2\":\"ia7psKHMF\",Graphic:\"mXMj1khrN\",Pattern:\"b4cU4cA3f\",White:\"Z9mkX69z9\"};const getProps=({color,height,id,scale,type,width,...props})=>{var _ref,_ref1,_humanReadableEnumMap_type,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,eBLrwE2iO:(_ref=color!==null&&color!==void 0?color:props.eBLrwE2iO)!==null&&_ref!==void 0?_ref:\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(184, 157, 90))\",RriglqH4v:(_ref1=scale!==null&&scale!==void 0?scale:props.RriglqH4v)!==null&&_ref1!==void 0?_ref1:20,UjKQOh_GD:(_ref3=(_ref2=(_humanReadableEnumMap_type=humanReadableEnumMap[type])!==null&&_humanReadableEnumMap_type!==void 0?_humanReadableEnumMap_type:type)!==null&&_ref2!==void 0?_ref2:props.UjKQOh_GD)!==null&&_ref3!==void 0?_ref3:\"polka\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"b4cU4cA3f\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,UjKQOh_GD,eBLrwE2iO,RriglqH4v,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"b4cU4cA3f\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"mXMj1khrN\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"GRyejAJzI\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"lzd956UTB\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-g3a1fd\",className,classNames),\"data-framer-name\":\"Pattern\",layoutDependency:layoutDependency,layoutId:\"b4cU4cA3f\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{GRyejAJzI:{backgroundColor:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(1, 73, 75))\"},Zx6Z9bvu1:{backgroundColor:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(1, 73, 75))\"}},...addPropertyOverrides({GRyejAJzI:{\"data-framer-name\":\"Dark Bottom-Right\"},ia7psKHMF:{\"data-framer-name\":\"Pattern V2\"},lzd956UTB:{\"data-framer-name\":\"Only Pattern\"},mXMj1khrN:{\"data-framer-name\":\"Graphic\"},Z9mkX69z9:{\"data-framer-name\":\"White\"},Zx6Z9bvu1:{\"data-framer-name\":\"Dark Top-Left\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,pixelHeight:816,pixelWidth:1456,src:\"https://framerusercontent.com/images/bjosMJ1mWHqkfE6cUUonjIryIM.png\",srcSet:\"https://framerusercontent.com/images/bjosMJ1mWHqkfE6cUUonjIryIM.png?scale-down-to=512 512w,https://framerusercontent.com/images/bjosMJ1mWHqkfE6cUUonjIryIM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bjosMJ1mWHqkfE6cUUonjIryIM.png 1456w\"},className:\"framer-b4r0q3\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"mQT8VKmy6\",...addPropertyOverrides({mXMj1khrN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:816,pixelWidth:1456,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/bjosMJ1mWHqkfE6cUUonjIryIM.png\",srcSet:\"https://framerusercontent.com/images/bjosMJ1mWHqkfE6cUUonjIryIM.png?scale-down-to=512 512w,https://framerusercontent.com/images/bjosMJ1mWHqkfE6cUUonjIryIM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bjosMJ1mWHqkfE6cUUonjIryIM.png 1456w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8nj9tv-container\",layoutDependency:layoutDependency,layoutId:\"r6zUvr2Mo-container\",children:/*#__PURE__*/_jsx(Pattern,{back:\"rgba(35, 84, 84, 0)\",diagonal:true,direction:\"left\",duration:5,front:eBLrwE2iO,height:\"100%\",id:\"r6zUvr2Mo\",layoutId:\"r6zUvr2Mo\",patternType:UjKQOh_GD,radius:0,scale:20,shouldAnimate:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({lzd956UTB:{scale:RriglqH4v}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wid1eg\",\"data-framer-name\":\"gradient\",layoutDependency:layoutDependency,layoutId:\"x_SVUMlnU\",style:{background:'linear-gradient(150deg, rgba(2, 145, 150, 0) 1.70595894671492e-15%, var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151)) /* {\"name\":\"Tuirquoise/35\"} */ 70.27072483094791%)'},variants:{GRyejAJzI:{background:'linear-gradient(165deg, var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(1, 73, 75)) /* {\"name\":\"Tuirquoise/15\"} */ 54.27052899059066%, rgba(1, 72, 74, 0) 99.99999999999993%)'},ia7psKHMF:{background:'linear-gradient(127deg, var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(2, 47, 82)) /* {\"name\":\"Giant Blue\"} */ 25.475019590553337%, rgba(2, 145, 150, 0) 105.20072069677697%)'},mXMj1khrN:{background:'linear-gradient(120deg, var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151)) /* {\"name\":\"Tuirquoise/30\"} */ -4.169483159847258%, rgba(2, 146, 151, 0.6) 100%)'},Z9mkX69z9:{background:'linear-gradient(150deg, rgba(255, 255, 255, 0) 1.70595894671492e-15%, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)) /* {\"name\":\"White/100\"} */ 70.27072483094791%)'},Zx6Z9bvu1:{background:\"linear-gradient(159deg, rgba(1, 72, 74, 0) -7.552770393480814e-14%, rgb(1, 72, 74) 40.24493514079395%)\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fAJat.framer-1w6wrp5, .framer-fAJat .framer-1w6wrp5 { display: block; }\",\".framer-fAJat.framer-g3a1fd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 816px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1456px; }\",\".framer-fAJat .framer-b4r0q3 { flex: none; height: 990px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fAJat .framer-8nj9tv-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fAJat .framer-wid1eg { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fAJat.framer-g3a1fd { gap: 0px; } .framer-fAJat.framer-g3a1fd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fAJat.framer-g3a1fd > :first-child { margin-left: 0px; } .framer-fAJat.framer-g3a1fd > :last-child { margin-right: 0px; } }\",\".framer-fAJat.framer-v-1b4pc6s .framer-b4r0q3 { order: 0; }\",\".framer-fAJat.framer-v-1b4pc6s .framer-8nj9tv-container { order: 1; }\",\".framer-fAJat.framer-v-1b4pc6s .framer-wid1eg { order: 2; }\",\".framer-fAJat.framer-v-uhhzlt.framer-g3a1fd { height: 323px; width: 362px; }\",\".framer-fAJat.framer-v-vx3n5f.framer-g3a1fd, .framer-fAJat.framer-v-1yz056u.framer-g3a1fd { width: 1293px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 816\n * @framerIntrinsicWidth 1456\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mXMj1khrN\":{\"layout\":[\"fixed\",\"fixed\"]},\"lzd956UTB\":{\"layout\":[\"fixed\",\"fixed\"]},\"ia7psKHMF\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z9mkX69z9\":{\"layout\":[\"fixed\",\"fixed\"]},\"GRyejAJzI\":{\"layout\":[\"fixed\",\"fixed\"]},\"Zx6Z9bvu1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"UjKQOh_GD\":\"type\",\"eBLrwE2iO\":\"color\",\"RriglqH4v\":\"scale\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdibiyK5ot=withCSS(Component,css,\"framer-fAJat\");export default FramerdibiyK5ot;FramerdibiyK5ot.displayName=\"Graphic Pattern\";FramerdibiyK5ot.defaultProps={height:816,width:1456};addPropertyControls(FramerdibiyK5ot,{variant:{options:[\"b4cU4cA3f\",\"mXMj1khrN\",\"lzd956UTB\",\"ia7psKHMF\",\"Z9mkX69z9\",\"GRyejAJzI\",\"Zx6Z9bvu1\"],optionTitles:[\"Pattern\",\"Graphic\",\"Only Pattern\",\"Pattern V2\",\"White\",\"Dark Bottom-Right\",\"Dark Top-Left\"],title:\"Variant\",type:ControlType.Enum},UjKQOh_GD:(PatternControls===null||PatternControls===void 0?void 0:PatternControls[\"patternType\"])&&{...PatternControls[\"patternType\"],defaultValue:\"polka\",description:undefined,hidden:undefined,title:\"Type\"},eBLrwE2iO:{defaultValue:'var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(184, 157, 90)) /* {\"name\":\"Gold\"} */',title:\"Color\",type:ControlType.Color},RriglqH4v:{defaultValue:20,max:100,min:1,step:1,title:\"Scale\",type:ControlType.Number}});addFonts(FramerdibiyK5ot,[{explicitInter:true,fonts:[]},...PatternFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdibiyK5ot\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"816\",\"framerIntrinsicWidth\":\"1456\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mXMj1khrN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lzd956UTB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ia7psKHMF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z9mkX69z9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GRyejAJzI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Zx6Z9bvu1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"UjKQOh_GD\\\":\\\"type\\\",\\\"eBLrwE2iO\\\":\\\"color\\\",\\\"RriglqH4v\\\":\\\"scale\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dibiyK5ot.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-ynfCT .framer-styles-preset-o8o4o4:not(.rich-text-wrapper), .framer-ynfCT .framer-styles-preset-o8o4o4.rich-text-wrapper a { --framer-link-current-text-color: var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, #ffffff) /* {\"name\":\"White/100\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, #ffffff) /* {\"name\":\"White/100\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, #ffffff); --framer-link-text-decoration: none; }'];export const className=\"framer-ynfCT\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}const defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const mergedProps={...defaultProps,...props};const{outputType,timeFormat,showYear,showMonth,showWeekday,// showHours,\nshowMinutes,showSeconds,monthFormat,color,font,tabularFont}=mergedProps;const localCode=useLocaleCode();const getTextContent=useCallback(()=>formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,// showHours,\n    showMinutes,showSeconds},timeFormat,monthFormat,localCode),[localCode,monthFormat,outputType,showMinutes,showMonth,showSeconds,showWeekday,showYear,timeFormat]);const timeoutRef=useRef()// FIXME: With React 19, we can remove this and return a cleanup from the ref callback\n;const updateCountdown=useCallback(node=>{if(node===null){// React calls w/ `null` on unmount or if the ref function changes.\nclearTimeout(timeoutRef.current);return;}let prev;const tick=()=>{const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);const textContent=getTextContent();if(prev!==textContent){node.textContent=textContent;prev=textContent;}};tick();},[getTextContent]);const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;},[isCanvas]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},ref:isCanvas?undefined:updateCountdown,children:getTextContent()});}Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"pjWlzKYnl\",\"AhUAVmWv9\"];const serializationHash=\"framer-PrH9U\";const variantClassNames={AhUAVmWv9:\"framer-v-1gm5lzb\",pjWlzKYnl:\"framer-v-po6jck\"};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"pjWlzKYnl\",White:\"AhUAVmWv9\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"pjWlzKYnl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pjWlzKYnl\",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(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"pjWlzKYnl\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-po6jck\",className,classNames)} framer-q0arz5`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"pjWlzKYnl\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AhUAVmWv9:{\"data-framer-name\":\"White\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151)))\"},children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Giant\"}),\" Venture Capital\"]})}),className:\"framer-ulq6uo\",fonts:[\"GF;Inter-700\",\"GF;Inter-900\"],layoutDependency:layoutDependency,layoutId:\"lGrCfLvVT\",style:{\"--extracted-r6o4lv\":\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151))\"},variants:{AhUAVmWv9:{\"--extracted-r6o4lv\":\"var(--token-1b3a9887-1275-4e93-ab27-0379cd7d0c69, rgb(255, 241, 204))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AhUAVmWv9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3a9887-1275-4e93-ab27-0379cd7d0c69, rgb(255, 241, 204)))\"},children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Giant\"}),\" Venture Capital\"]})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PrH9U.framer-q0arz5, .framer-PrH9U .framer-q0arz5 { display: block; }\",\".framer-PrH9U.framer-po6jck { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-PrH9U .framer-ulq6uo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PrH9U.framer-po6jck { gap: 0px; } .framer-PrH9U.framer-po6jck > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PrH9U.framer-po6jck > :first-child { margin-left: 0px; } .framer-PrH9U.framer-po6jck > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 252\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"AhUAVmWv9\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerV5nGfGfGC=withCSS(Component,css,\"framer-PrH9U\");export default FramerV5nGfGfGC;FramerV5nGfGfGC.displayName=\"Logo\";FramerV5nGfGfGC.defaultProps={height:36,width:252};addPropertyControls(FramerV5nGfGfGC,{variant:{options:[\"pjWlzKYnl\",\"AhUAVmWv9\"],optionTitles:[\"Default\",\"White\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerV5nGfGfGC,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV5nGfGfGC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"AhUAVmWv9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"252\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./V5nGfGfGC.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/QiycTxX7vdblEOi3o00G/Time.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/eOxrB1aoc1u8yTVB1LG8/uQxiSte2gNRFnHG3Hvrk/GneDnYDxy.js\";import GraphicPattern from\"https://framerusercontent.com/modules/9oNoGW6Wf0NxLSVBj4Lv/kXXobQxB7rC1x5kjqW8Q/dibiyK5ot.js\";import Logo from\"https://framerusercontent.com/modules/jDn32RfauNdLnTtn2Pcd/ViTCO2s9iZJ8cZQZMajO/V5nGfGfGC.js\";const GraphicPatternFonts=getFonts(GraphicPattern);const LogoFonts=getFonts(Logo);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"mmiFuYbAK\",\"IxqM4Jftw\",\"cI8L1mZ18\"];const serializationHash=\"framer-1gEjL\";const variantClassNames={cI8L1mZ18:\"framer-v-krtw2y\",IxqM4Jftw:\"framer-v-smlx2e\",mmiFuYbAK:\"framer-v-4yf7vs\"};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"mmiFuYbAK\",Mobile:\"cI8L1mZ18\",Tablet:\"IxqM4Jftw\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"mmiFuYbAK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mmiFuYbAK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"IxqM4Jftw\",\"cI8L1mZ18\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"cI8L1mZ18\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"cI8L1mZ18\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4yf7vs\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"mmiFuYbAK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cI8L1mZ18:{\"data-framer-name\":\"Mobile\"},IxqM4Jftw:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||628)-0,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0,...addPropertyOverrides({cI8L1mZ18:{height:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0},IxqM4Jftw:{height:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||708)-0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12482yi-container\",layoutDependency:layoutDependency,layoutId:\"gTu2WalcP-container\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"rgb(2, 219, 227)\",height:\"100%\",id:\"gTu2WalcP\",layoutId:\"gTu2WalcP\",RriglqH4v:20,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"GRyejAJzI\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-nklixk\",layoutDependency:layoutDependency,layoutId:\"xprO5T1Di\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hmdboh\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"y4HEXXvy1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||628)-240-683)/2+0+0)+0+0+0,...addPropertyOverrides({cI8L1mZ18:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+96+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-192-791.6)/2+0+0)+0+0+0+0},IxqM4Jftw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||708)-240-888)/2+0+0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e0jd26-container\",layoutDependency:layoutDependency,layoutId:\"ETzmZ6xTg-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"ETzmZ6xTg\",layoutId:\"ETzmZ6xTg\",style:{height:\"100%\"},variant:\"AhUAVmWv9\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||628)-240-683)/2+0+0)+0+0+84),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OhQZygiFfIpWuCviADypQUXnNI.png\"},className:\"framer-18r0zai\",layoutDependency:layoutDependency,layoutId:\"mtvQOPiws\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hafzi0\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"EK43rAx9f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253)))\"},children:\"MENU\"})}),className:\"framer-1eomxxe\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"GAJd8j1xJ\",style:{\"--extracted-r6o4lv\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-oz3kfn\",layoutDependency:layoutDependency,layoutId:\"YHH5Ma6Go\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19gg7n6\",layoutDependency:layoutDependency,layoutId:\"Xu70yIGaN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eucEC2kGW\"},nodeId:\"uEqzPVBtS\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o8o4o4\",\"data-styles-preset\":\"GneDnYDxy\",children:\"About\"})})})}),className:\"framer-1ysen6k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uEqzPVBtS\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"on5ew391w\"},nodeId:\"Jpf6iTGxn\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o8o4o4\",\"data-styles-preset\":\"GneDnYDxy\",children:\"Projects\"})})})}),className:\"framer-e0bgoo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Jpf6iTGxn\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u4Em6h7Vn\"},nodeId:\"qZHoeMO2N\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o8o4o4\",\"data-styles-preset\":\"GneDnYDxy\",children:\"News\"})})})}),className:\"framer-12cl6bm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qZHoeMO2N\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LjrOuxaz_\"},nodeId:\"Vs1u9MxMa\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o8o4o4\",\"data-styles-preset\":\"GneDnYDxy\",children:\"Contact\"})})})}),className:\"framer-c9gia6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Vs1u9MxMa\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-knj4yy\",layoutDependency:layoutDependency,layoutId:\"uR10Oxhx4\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5yhahz\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"rf8nOfWG1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253)))\"},children:\"PROJECTS\"})}),className:\"framer-1v3lr2s\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"njQE6iHa7\",style:{\"--extracted-r6o4lv\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({cI8L1mZ18:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253)))\"},children:\"PROJECTS\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-biso3y\",layoutDependency:layoutDependency,layoutId:\"UKKcVkKlt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tfdr6z\",layoutDependency:layoutDependency,layoutId:\"Bl6GlO7Es\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"on5ew391w\"},nodeId:\"cTISlfaGU\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o8o4o4\",\"data-styles-preset\":\"GneDnYDxy\",children:\"Nuvau Minerals\"})})})}),className:\"framer-5smbz2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cTISlfaGU\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cI8L1mZ18:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"on5ew391w\"},nodeId:\"cTISlfaGU\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o8o4o4\",\"data-styles-preset\":\"GneDnYDxy\",children:\"Nuvau Minerals\"})})})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sef5z2\",layoutDependency:layoutDependency,layoutId:\"OiHd8DMgo\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1422k3x\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"ob5K1VLWA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253)))\"},children:\"CONTACT\"})}),className:\"framer-1gs1nfb\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"s9rpR8ZK3\",style:{\"--extracted-r6o4lv\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s0obub\",layoutDependency:layoutDependency,layoutId:\"v8VzpPGd1\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\"E: ewan@giantventurecapital.com\"})}),className:\"framer-8x9ph5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bmCjRuMj_\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\"P: (807) 473 - 6723\"})}),className:\"framer-130bit6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mgjG7x6MX\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-115c69g\",layoutDependency:layoutDependency,layoutId:\"X9_UK6pF4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\"E: ewan@giantventurecapital.com\"})}),className:\"framer-7legre\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OZpkwAsiW\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y4htcd\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"VDl3AyoT3\",style:{backgroundColor:\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l6k0nu\",layoutDependency:layoutDependency,layoutId:\"nvWLsmQpz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14f849i\",layoutDependency:layoutDependency,layoutId:\"VMpeFLv2F\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\"\\xa9 Copyright  \"})}),className:\"framer-kuf2m8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jOgvCVfJq\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-thpcpg-container\",layoutDependency:layoutDependency,layoutId:\"zh6r99z4X-container\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"zh6r99z4X\",layoutId:\"zh6r99z4X\",monthFormat:\"long\",outputType:\"date\",showMinutes:true,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\". All rights Reserved.\"})}),className:\"framer-1h76w5j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GBbkBKz62\",style:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1gEjL.framer-8sn2b5, .framer-1gEjL .framer-8sn2b5 { display: block; }\",\".framer-1gEjL.framer-4yf7vs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 120px 48px 120px 48px; position: relative; width: 1384px; }\",\".framer-1gEjL .framer-12482yi-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-1gEjL .framer-nklixk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-1gEjL .framer-hmdboh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 30%; z-index: 2; }\",\".framer-1gEjL .framer-e0jd26-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-1gEjL .framer-18r0zai { flex: none; height: 143px; position: relative; width: 196px; }\",\".framer-1gEjL .framer-1hafzi0, .framer-1gEjL .framer-5yhahz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 192px; z-index: 2; }\",\".framer-1gEjL .framer-1eomxxe, .framer-1gEjL .framer-1v3lr2s, .framer-1gEjL .framer-1gs1nfb { flex: none; height: 36px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1gEjL .framer-oz3kfn, .framer-1gEjL .framer-biso3y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1gEjL .framer-19gg7n6, .framer-1gEjL .framer-1tfdr6z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1gEjL .framer-1ysen6k, .framer-1gEjL .framer-e0bgoo, .framer-1gEjL .framer-12cl6bm, .framer-1gEjL .framer-c9gia6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-1gEjL .framer-knj4yy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 19px; min-width: 100px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1gEjL .framer-5smbz2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 192px; word-break: break-word; word-wrap: break-word; }\",\".framer-1gEjL .framer-sef5z2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 19px; min-width: 192px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-1gEjL .framer-1422k3x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 243px; z-index: 2; }\",\".framer-1gEjL .framer-s0obub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1gEjL .framer-8x9ph5, .framer-1gEjL .framer-130bit6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1gEjL .framer-115c69g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-1gEjL .framer-7legre { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1gEjL .framer-y4htcd { flex: none; height: 1px; max-width: 1200px; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-1gEjL .framer-l6k0nu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 14px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-1gEjL .framer-14f849i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 14px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1gEjL .framer-kuf2m8, .framer-1gEjL .framer-1h76w5j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-1gEjL .framer-thpcpg-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1gEjL.framer-4yf7vs, .framer-1gEjL .framer-hmdboh, .framer-1gEjL .framer-1hafzi0, .framer-1gEjL .framer-oz3kfn, .framer-1gEjL .framer-19gg7n6, .framer-1gEjL .framer-knj4yy, .framer-1gEjL .framer-5yhahz, .framer-1gEjL .framer-biso3y, .framer-1gEjL .framer-1tfdr6z, .framer-1gEjL .framer-sef5z2, .framer-1gEjL .framer-1422k3x, .framer-1gEjL .framer-s0obub, .framer-1gEjL .framer-115c69g, .framer-1gEjL .framer-l6k0nu, .framer-1gEjL .framer-14f849i { gap: 0px; } .framer-1gEjL.framer-4yf7vs > *, .framer-1gEjL .framer-hmdboh > *, .framer-1gEjL .framer-1hafzi0 > *, .framer-1gEjL .framer-5yhahz > *, .framer-1gEjL .framer-1422k3x > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1gEjL.framer-4yf7vs > :first-child, .framer-1gEjL .framer-hmdboh > :first-child, .framer-1gEjL .framer-1hafzi0 > :first-child, .framer-1gEjL .framer-oz3kfn > :first-child, .framer-1gEjL .framer-19gg7n6 > :first-child, .framer-1gEjL .framer-knj4yy > :first-child, .framer-1gEjL .framer-5yhahz > :first-child, .framer-1gEjL .framer-biso3y > :first-child, .framer-1gEjL .framer-1tfdr6z > :first-child, .framer-1gEjL .framer-sef5z2 > :first-child, .framer-1gEjL .framer-1422k3x > :first-child, .framer-1gEjL .framer-s0obub > :first-child { margin-top: 0px; } .framer-1gEjL.framer-4yf7vs > :last-child, .framer-1gEjL .framer-hmdboh > :last-child, .framer-1gEjL .framer-1hafzi0 > :last-child, .framer-1gEjL .framer-oz3kfn > :last-child, .framer-1gEjL .framer-19gg7n6 > :last-child, .framer-1gEjL .framer-knj4yy > :last-child, .framer-1gEjL .framer-5yhahz > :last-child, .framer-1gEjL .framer-biso3y > :last-child, .framer-1gEjL .framer-1tfdr6z > :last-child, .framer-1gEjL .framer-sef5z2 > :last-child, .framer-1gEjL .framer-1422k3x > :last-child, .framer-1gEjL .framer-s0obub > :last-child { margin-bottom: 0px; } .framer-1gEjL .framer-oz3kfn > *, .framer-1gEjL .framer-19gg7n6 > *, .framer-1gEjL .framer-knj4yy > *, .framer-1gEjL .framer-biso3y > *, .framer-1gEjL .framer-1tfdr6z > *, .framer-1gEjL .framer-sef5z2 > *, .framer-1gEjL .framer-s0obub > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1gEjL .framer-115c69g > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-1gEjL .framer-115c69g > :first-child, .framer-1gEjL .framer-l6k0nu > :first-child, .framer-1gEjL .framer-14f849i > :first-child { margin-left: 0px; } .framer-1gEjL .framer-115c69g > :last-child, .framer-1gEjL .framer-l6k0nu > :last-child, .framer-1gEjL .framer-14f849i > :last-child { margin-right: 0px; } .framer-1gEjL .framer-l6k0nu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1gEjL .framer-14f849i > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-1gEjL.framer-v-smlx2e.framer-4yf7vs { overflow: hidden; width: 762px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1gEjL.framer-v-smlx2e .framer-nklixk { flex-direction: column; gap: 48px; justify-content: flex-start; max-width: unset; }\",\".framer-1gEjL.framer-v-smlx2e .framer-hmdboh { order: 0; padding: 0px 24px 0px 0px; width: 100%; }\",\".framer-1gEjL.framer-v-smlx2e .framer-1hafzi0 { gap: 24px; order: 1; padding: 0px 24px 0px 0px; width: 100%; }\",\".framer-1gEjL.framer-v-smlx2e .framer-1eomxxe, .framer-1gEjL.framer-v-smlx2e .framer-1v3lr2s, .framer-1gEjL.framer-v-smlx2e .framer-1gs1nfb, .framer-1gEjL.framer-v-krtw2y .framer-1eomxxe, .framer-1gEjL.framer-v-krtw2y .framer-1gs1nfb { height: auto; }\",\".framer-1gEjL.framer-v-smlx2e .framer-oz3kfn { gap: 42px; }\",\".framer-1gEjL.framer-v-smlx2e .framer-19gg7n6 { flex-direction: row; gap: 0px; order: 0; width: 100%; }\",\".framer-1gEjL.framer-v-smlx2e .framer-1ysen6k { flex: 1 0 0px; order: 0; width: 1px; }\",\".framer-1gEjL.framer-v-smlx2e .framer-e0bgoo, .framer-1gEjL.framer-v-krtw2y .framer-130bit6 { flex: 1 0 0px; order: 1; width: 1px; }\",\".framer-1gEjL.framer-v-smlx2e .framer-12cl6bm { flex: 1 0 0px; order: 3; width: 1px; }\",\".framer-1gEjL.framer-v-smlx2e .framer-c9gia6 { flex: 1 0 0px; order: 2; width: 1px; }\",\".framer-1gEjL.framer-v-smlx2e .framer-5yhahz { gap: 24px; order: 2; padding: 0px 24px 0px 0px; width: 100%; }\",\".framer-1gEjL.framer-v-smlx2e .framer-1tfdr6z { flex-direction: row; gap: 0px; width: 100%; }\",\".framer-1gEjL.framer-v-smlx2e .framer-5smbz2, .framer-1gEjL.framer-v-smlx2e .framer-8x9ph5, .framer-1gEjL.framer-v-smlx2e .framer-130bit6 { flex: 1 0 0px; width: 1px; }\",\".framer-1gEjL.framer-v-smlx2e .framer-1422k3x { gap: 24px; order: 3; width: 100%; }\",\".framer-1gEjL.framer-v-smlx2e .framer-s0obub { flex-direction: row; gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1gEjL.framer-v-smlx2e .framer-nklixk, .framer-1gEjL.framer-v-smlx2e .framer-1hafzi0, .framer-1gEjL.framer-v-smlx2e .framer-oz3kfn, .framer-1gEjL.framer-v-smlx2e .framer-19gg7n6, .framer-1gEjL.framer-v-smlx2e .framer-5yhahz, .framer-1gEjL.framer-v-smlx2e .framer-1tfdr6z, .framer-1gEjL.framer-v-smlx2e .framer-1422k3x, .framer-1gEjL.framer-v-smlx2e .framer-s0obub { gap: 0px; } .framer-1gEjL.framer-v-smlx2e .framer-nklixk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1gEjL.framer-v-smlx2e .framer-nklixk > :first-child, .framer-1gEjL.framer-v-smlx2e .framer-1hafzi0 > :first-child, .framer-1gEjL.framer-v-smlx2e .framer-oz3kfn > :first-child, .framer-1gEjL.framer-v-smlx2e .framer-5yhahz > :first-child, .framer-1gEjL.framer-v-smlx2e .framer-1422k3x > :first-child { margin-top: 0px; } .framer-1gEjL.framer-v-smlx2e .framer-nklixk > :last-child, .framer-1gEjL.framer-v-smlx2e .framer-1hafzi0 > :last-child, .framer-1gEjL.framer-v-smlx2e .framer-oz3kfn > :last-child, .framer-1gEjL.framer-v-smlx2e .framer-5yhahz > :last-child, .framer-1gEjL.framer-v-smlx2e .framer-1422k3x > :last-child { margin-bottom: 0px; } .framer-1gEjL.framer-v-smlx2e .framer-1hafzi0 > *, .framer-1gEjL.framer-v-smlx2e .framer-5yhahz > *, .framer-1gEjL.framer-v-smlx2e .framer-1422k3x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1gEjL.framer-v-smlx2e .framer-oz3kfn > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-1gEjL.framer-v-smlx2e .framer-19gg7n6 > *, .framer-1gEjL.framer-v-smlx2e .framer-1tfdr6z > *, .framer-1gEjL.framer-v-smlx2e .framer-s0obub > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1gEjL.framer-v-smlx2e .framer-19gg7n6 > :first-child, .framer-1gEjL.framer-v-smlx2e .framer-1tfdr6z > :first-child, .framer-1gEjL.framer-v-smlx2e .framer-s0obub > :first-child { margin-left: 0px; } .framer-1gEjL.framer-v-smlx2e .framer-19gg7n6 > :last-child, .framer-1gEjL.framer-v-smlx2e .framer-1tfdr6z > :last-child, .framer-1gEjL.framer-v-smlx2e .framer-s0obub > :last-child { margin-right: 0px; } }\",\".framer-1gEjL.framer-v-krtw2y.framer-4yf7vs { padding: 96px 24px 96px 24px; width: 390px; }\",\".framer-1gEjL.framer-v-krtw2y .framer-nklixk { align-content: center; align-items: center; flex-direction: column; gap: 48px; justify-content: flex-start; max-width: unset; }\",\".framer-1gEjL.framer-v-krtw2y .framer-hmdboh { gap: 0px; padding: 0px 24px 0px 0px; width: 100%; }\",\".framer-1gEjL.framer-v-krtw2y .framer-1hafzi0 { gap: 24px; padding: 0px 24px 0px 0px; width: 100%; }\",\".framer-1gEjL.framer-v-krtw2y .framer-19gg7n6 { flex-direction: row; gap: 35px; justify-content: flex-start; width: 100%; }\",\".framer-1gEjL.framer-v-krtw2y .framer-1ysen6k, .framer-1gEjL.framer-v-krtw2y .framer-e0bgoo, .framer-1gEjL.framer-v-krtw2y .framer-12cl6bm, .framer-1gEjL.framer-v-krtw2y .framer-c9gia6, .framer-1gEjL.framer-v-krtw2y .framer-5smbz2 { white-space: pre; width: auto; }\",\".framer-1gEjL.framer-v-krtw2y .framer-5yhahz { gap: 24px; justify-content: flex-start; padding: 0px 24px 0px 0px; width: min-content; }\",\".framer-1gEjL.framer-v-krtw2y .framer-1v3lr2s { height: auto; white-space: pre; width: auto; }\",\".framer-1gEjL.framer-v-krtw2y .framer-biso3y { width: 318px; }\",\".framer-1gEjL.framer-v-krtw2y .framer-1tfdr6z { align-content: flex-start; align-items: flex-start; gap: 0px; justify-content: flex-start; width: 100%; }\",\".framer-1gEjL.framer-v-krtw2y .framer-1422k3x { gap: 24px; justify-content: center; width: 100%; }\",\".framer-1gEjL.framer-v-krtw2y .framer-s0obub { align-content: flex-start; align-items: flex-start; flex-direction: row; gap: 25px; justify-content: flex-start; }\",\".framer-1gEjL.framer-v-krtw2y .framer-7legre { order: 0; }\",\".framer-1gEjL.framer-v-krtw2y .framer-l6k0nu { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; height: min-content; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1gEjL.framer-v-krtw2y .framer-nklixk, .framer-1gEjL.framer-v-krtw2y .framer-hmdboh, .framer-1gEjL.framer-v-krtw2y .framer-1hafzi0, .framer-1gEjL.framer-v-krtw2y .framer-19gg7n6, .framer-1gEjL.framer-v-krtw2y .framer-5yhahz, .framer-1gEjL.framer-v-krtw2y .framer-1tfdr6z, .framer-1gEjL.framer-v-krtw2y .framer-1422k3x, .framer-1gEjL.framer-v-krtw2y .framer-s0obub, .framer-1gEjL.framer-v-krtw2y .framer-l6k0nu { gap: 0px; } .framer-1gEjL.framer-v-krtw2y .framer-nklixk > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1gEjL.framer-v-krtw2y .framer-nklixk > :first-child, .framer-1gEjL.framer-v-krtw2y .framer-hmdboh > :first-child, .framer-1gEjL.framer-v-krtw2y .framer-1hafzi0 > :first-child, .framer-1gEjL.framer-v-krtw2y .framer-5yhahz > :first-child, .framer-1gEjL.framer-v-krtw2y .framer-1tfdr6z > :first-child, .framer-1gEjL.framer-v-krtw2y .framer-1422k3x > :first-child, .framer-1gEjL.framer-v-krtw2y .framer-l6k0nu > :first-child { margin-top: 0px; } .framer-1gEjL.framer-v-krtw2y .framer-nklixk > :last-child, .framer-1gEjL.framer-v-krtw2y .framer-hmdboh > :last-child, .framer-1gEjL.framer-v-krtw2y .framer-1hafzi0 > :last-child, .framer-1gEjL.framer-v-krtw2y .framer-5yhahz > :last-child, .framer-1gEjL.framer-v-krtw2y .framer-1tfdr6z > :last-child, .framer-1gEjL.framer-v-krtw2y .framer-1422k3x > :last-child, .framer-1gEjL.framer-v-krtw2y .framer-l6k0nu > :last-child { margin-bottom: 0px; } .framer-1gEjL.framer-v-krtw2y .framer-hmdboh > *, .framer-1gEjL.framer-v-krtw2y .framer-1tfdr6z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1gEjL.framer-v-krtw2y .framer-1hafzi0 > *, .framer-1gEjL.framer-v-krtw2y .framer-5yhahz > *, .framer-1gEjL.framer-v-krtw2y .framer-1422k3x > *, .framer-1gEjL.framer-v-krtw2y .framer-l6k0nu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1gEjL.framer-v-krtw2y .framer-19gg7n6 > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-1gEjL.framer-v-krtw2y .framer-19gg7n6 > :first-child, .framer-1gEjL.framer-v-krtw2y .framer-s0obub > :first-child { margin-left: 0px; } .framer-1gEjL.framer-v-krtw2y .framer-19gg7n6 > :last-child, .framer-1gEjL.framer-v-krtw2y .framer-s0obub > :last-child { margin-right: 0px; } .framer-1gEjL.framer-v-krtw2y .framer-s0obub > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 628\n * @framerIntrinsicWidth 1384\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IxqM4Jftw\":{\"layout\":[\"fixed\",\"auto\"]},\"cI8L1mZ18\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIOJnH9t8g=withCSS(Component,css,\"framer-1gEjL\");export default FramerIOJnH9t8g;FramerIOJnH9t8g.displayName=\"Footer\";FramerIOJnH9t8g.defaultProps={height:628,width:1384};addPropertyControls(FramerIOJnH9t8g,{variant:{options:[\"mmiFuYbAK\",\"IxqM4Jftw\",\"cI8L1mZ18\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIOJnH9t8g,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...GraphicPatternFonts,...LogoFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIOJnH9t8g\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1384\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IxqM4Jftw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cI8L1mZ18\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"628\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={CKZiMul0b:{hover:true},qwGJsD2DB:{hover:true}};const cycleOrder=[\"CKZiMul0b\",\"GrXt0nvhy\",\"qwGJsD2DB\",\"O3MuOEPtb\"];const serializationHash=\"framer-3LgPG\";const variantClassNames={CKZiMul0b:\"framer-v-1wm3bir\",GrXt0nvhy:\"framer-v-1pedheg\",O3MuOEPtb:\"framer-v-jcw7p9\",qwGJsD2DB:\"framer-v-2xqwef\"};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Default - White\":\"qwGJsD2DB\",\"White - Selected\":\"O3MuOEPtb\",Default:\"CKZiMul0b\",Selected:\"GrXt0nvhy\"};const getProps=({height,hover,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,PFHTFROiN:(_ref=title!==null&&title!==void 0?title:props.PFHTFROiN)!==null&&_ref!==void 0?_ref:\"Menu Link\",pTSRtOIWT:link!==null&&link!==void 0?link:props.pTSRtOIWT,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"CKZiMul0b\",vUdE704SQ:hover!==null&&hover!==void 0?hover:props.vUdE704SQ};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PFHTFROiN,pTSRtOIWT,vUdE704SQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CKZiMul0b\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter17sbsja=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(vUdE704SQ){const res=await vUdE704SQ(...args);if(res===false)return false;}});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(Link,{href:pTSRtOIWT,nodeId:\"CKZiMul0b\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1wm3bir\",className,classNames)} framer-1u6cw8d`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CKZiMul0b\",onMouseEnter:onMouseEnter17sbsja,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"CKZiMul0b-hover\":{\"data-framer-name\":undefined},\"qwGJsD2DB-hover\":{\"data-framer-name\":undefined},GrXt0nvhy:{\"data-framer-name\":\"Selected\"},O3MuOEPtb:{\"data-framer-name\":\"White - Selected\"},qwGJsD2DB:{\"data-framer-name\":\"Default - White\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l48ukl\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"k8eJ9NsEn\",style:{backgroundColor:\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151))\",opacity:0},variants:{\"CKZiMul0b-hover\":{opacity:1},\"qwGJsD2DB-hover\":{opacity:1},GrXt0nvhy:{opacity:1},O3MuOEPtb:{backgroundColor:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",opacity:1},qwGJsD2DB:{backgroundColor:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\"}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItMzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(153, 153, 153)))\"},children:\"Menu Link\"})}),className:\"framer-1tyvbu2\",fonts:[\"GF;Inter-300\"],layoutDependency:layoutDependency,layoutId:\"lybLZA8m4\",style:{\"--extracted-r6o4lv\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:PFHTFROiN,variants:{\"CKZiMul0b-hover\":{\"--extracted-r6o4lv\":\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151))\"},GrXt0nvhy:{\"--extracted-r6o4lv\":\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151))\"},O3MuOEPtb:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\"},qwGJsD2DB:{\"--extracted-r6o4lv\":\"var(--token-1b3a9887-1275-4e93-ab27-0379cd7d0c69, rgb(255, 241, 204))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"CKZiMul0b-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItMzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151)))\"},children:\"Menu Link\"})})},GrXt0nvhy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItMzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151)))\"},children:\"Menu Link\"})})},O3MuOEPtb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItMzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\"Menu Link\"})})},qwGJsD2DB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3a9887-1275-4e93-ab27-0379cd7d0c69, rgb(255, 241, 204)))\"},children:\"Menu Link\"})}),fonts:[\"GF;Inter-regular\"]}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3LgPG.framer-1u6cw8d, .framer-3LgPG .framer-1u6cw8d { display: block; }\",\".framer-3LgPG.framer-1wm3bir { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3LgPG .framer-l48ukl { bottom: 0px; flex: none; height: 1px; left: calc(50.63291139240509% - 1px / 2); overflow: visible; position: absolute; width: 1px; z-index: 1; }\",\".framer-3LgPG .framer-1tyvbu2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3LgPG.framer-1wm3bir { gap: 0px; } .framer-3LgPG.framer-1wm3bir > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3LgPG.framer-1wm3bir > :first-child { margin-left: 0px; } .framer-3LgPG.framer-1wm3bir > :last-child { margin-right: 0px; } }\",\".framer-3LgPG.framer-v-1pedheg.framer-1wm3bir, .framer-3LgPG.framer-v-jcw7p9.framer-1wm3bir { cursor: unset; }\",\".framer-3LgPG.framer-v-1pedheg .framer-l48ukl, .framer-3LgPG.framer-v-jcw7p9 .framer-l48ukl { left: calc(50.63291139240509% - 12px / 2); width: 12px; }\",\".framer-3LgPG.framer-v-1wm3bir.hover .framer-l48ukl, .framer-3LgPG.framer-v-2xqwef.hover .framer-l48ukl { left: 0px; right: 0px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 78\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"GrXt0nvhy\":{\"layout\":[\"auto\",\"fixed\"]},\"qwGJsD2DB\":{\"layout\":[\"auto\",\"fixed\"]},\"O3MuOEPtb\":{\"layout\":[\"auto\",\"fixed\"]},\"AXW4x5jDf\":{\"layout\":[\"auto\",\"fixed\"]},\"MUE4Docyv\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"PFHTFROiN\":\"title\",\"pTSRtOIWT\":\"link\",\"vUdE704SQ\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMBWHXQP6D=withCSS(Component,css,\"framer-3LgPG\");export default FramerMBWHXQP6D;FramerMBWHXQP6D.displayName=\"Menu Link\";FramerMBWHXQP6D.defaultProps={height:36,width:78};addPropertyControls(FramerMBWHXQP6D,{variant:{options:[\"CKZiMul0b\",\"GrXt0nvhy\",\"qwGJsD2DB\",\"O3MuOEPtb\"],optionTitles:[\"Default\",\"Selected\",\"Default - White\",\"White - Selected\"],title:\"Variant\",type:ControlType.Enum},PFHTFROiN:{defaultValue:\"Menu Link\",displayTextArea:false,title:\"Title\",type:ControlType.String},pTSRtOIWT:{title:\"Link\",type:ControlType.Link},vUdE704SQ:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerMBWHXQP6D,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZ1rib2Bg-4.woff2\",weight:\"300\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMBWHXQP6D\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"PFHTFROiN\\\":\\\"title\\\",\\\"pTSRtOIWT\\\":\\\"link\\\",\\\"vUdE704SQ\\\":\\\"hover\\\"}\",\"framerIntrinsicHeight\":\"36\",\"framerIntrinsicWidth\":\"78\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"GrXt0nvhy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qwGJsD2DB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"O3MuOEPtb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"AXW4x5jDf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"MUE4Docyv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MBWHXQP6D.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/eOxrB1aoc1u8yTVB1LG8/uQxiSte2gNRFnHG3Hvrk/GneDnYDxy.js\";import MenuLink from\"https://framerusercontent.com/modules/rgxUqkv08aNbuy1mMUQ0/GRwzZBDjGP07XC1mDWcz/MBWHXQP6D.js\";import Logo from\"https://framerusercontent.com/modules/jDn32RfauNdLnTtn2Pcd/ViTCO2s9iZJ8cZQZMajO/V5nGfGfGC.js\";const LogoFonts=getFonts(Logo);const MenuLinkFonts=getFonts(MenuLink);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"PBkoL4UZR\",\"dJdHhhAFi\",\"dBjPSjmbz\",\"rTdYQ4M5A\",\"o2rJLjwkI\",\"vDJCODqzP\",\"Neowa3Xxw\",\"HhN2LTpf_\",\"JDZlM7bpr\",\"Hx4CkqXSj\",\"vT53Gfa65\",\"W18G7Xzz6\",\"qoZUyBdQl\",\"eZZWkmcue\",\"OaSdsVTnt\",\"y0C4W8oKx\",\"SsRCPwpHC\",\"k9tEgo3Hf\",\"Bl7YeOvDX\",\"eNHLYdbwl\",\"DOe8fw3eH\",\"qe1dAhXEJ\",\"cJ3iYbiUK\",\"Gj38WlCYS\",\"V4U_4ItMm\",\"SyX08y3M6\",\"Qlw5m7SSk\",\"Mm35WLbfG\"];const serializationHash=\"framer-LqNyz\";const variantClassNames={Bl7YeOvDX:\"framer-v-1pu8i7h\",cJ3iYbiUK:\"framer-v-153z2yf\",dBjPSjmbz:\"framer-v-znwdhl\",dJdHhhAFi:\"framer-v-6v98wm\",DOe8fw3eH:\"framer-v-1dtt9p2\",eNHLYdbwl:\"framer-v-1rzoxu9\",eZZWkmcue:\"framer-v-mc713t\",Gj38WlCYS:\"framer-v-1lbptyq\",HhN2LTpf_:\"framer-v-1lvhwvx\",Hx4CkqXSj:\"framer-v-14vsdvi\",JDZlM7bpr:\"framer-v-v1tqio\",k9tEgo3Hf:\"framer-v-1sl21u9\",Mm35WLbfG:\"framer-v-1s2cfmh\",Neowa3Xxw:\"framer-v-htuj9j\",o2rJLjwkI:\"framer-v-ufleqf\",OaSdsVTnt:\"framer-v-fmco5g\",PBkoL4UZR:\"framer-v-w7sxm8\",qe1dAhXEJ:\"framer-v-1b1uybm\",Qlw5m7SSk:\"framer-v-pi6wuy\",qoZUyBdQl:\"framer-v-1wiq9pe\",rTdYQ4M5A:\"framer-v-dnz5m4\",SsRCPwpHC:\"framer-v-xnttkq\",SyX08y3M6:\"framer-v-1pw4e3f\",V4U_4ItMm:\"framer-v-16mf2i4\",vDJCODqzP:\"framer-v-15ibj5b\",vT53Gfa65:\"framer-v-20leqy\",W18G7Xzz6:\"framer-v-cgtcxh\",y0C4W8oKx:\"framer-v-ia00uo\"};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 transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - About Us\":\"dJdHhhAFi\",\"Desktop - Blog\":\"o2rJLjwkI\",\"Desktop - Contact\":\"vDJCODqzP\",\"Desktop - Home - Transparent\":\"Neowa3Xxw\",\"Desktop - Home\":\"PBkoL4UZR\",\"Desktop - Pricing\":\"rTdYQ4M5A\",\"Desktop - Services\":\"dBjPSjmbz\",\"Mobile - About Us - Open\":\"k9tEgo3Hf\",\"Mobile - About Us\":\"SsRCPwpHC\",\"Mobile - Blog - Opened\":\"Gj38WlCYS\",\"Mobile - Blog\":\"cJ3iYbiUK\",\"Mobile - Contact - Opened\":\"SyX08y3M6\",\"Mobile - Contact\":\"V4U_4ItMm\",\"Mobile - Home - Open\":\"y0C4W8oKx\",\"Mobile - Home - Transparent - Open\":\"Mm35WLbfG\",\"Mobile - Home - Transparent\":\"Qlw5m7SSk\",\"Mobile - Home\":\"OaSdsVTnt\",\"Mobile - Pricing - Opened\":\"qe1dAhXEJ\",\"Mobile - Pricing\":\"DOe8fw3eH\",\"Mobile - Services - Opened\":\"eNHLYdbwl\",\"Mobile - Services\":\"Bl7YeOvDX\",\"Tablet - About Us\":\"JDZlM7bpr\",\"Tablet - Blog\":\"W18G7Xzz6\",\"Tablet - Contact\":\"qoZUyBdQl\",\"Tablet - Home - Transparent\":\"eZZWkmcue\",\"Tablet - Home\":\"HhN2LTpf_\",\"Tablet - Pricing\":\"vT53Gfa65\",\"Tablet - Services\":\"Hx4CkqXSj\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"PBkoL4UZR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PBkoL4UZR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapn3q3fq=activeVariantCallback(async(...args)=>{setVariant(\"y0C4W8oKx\");});const onTap1s5ew50=activeVariantCallback(async(...args)=>{setVariant(\"OaSdsVTnt\");});const onTap6hzwiw=activeVariantCallback(async(...args)=>{setVariant(\"k9tEgo3Hf\");});const onTap1kgtznu=activeVariantCallback(async(...args)=>{setVariant(\"SsRCPwpHC\");});const onTap1gr5o3u=activeVariantCallback(async(...args)=>{setVariant(\"eNHLYdbwl\");});const onTap1gp5tm7=activeVariantCallback(async(...args)=>{setVariant(\"Bl7YeOvDX\");});const onTapyq304g=activeVariantCallback(async(...args)=>{setVariant(\"qe1dAhXEJ\");});const onTap1q8wg4c=activeVariantCallback(async(...args)=>{setVariant(\"DOe8fw3eH\");});const onTapv72x9q=activeVariantCallback(async(...args)=>{setVariant(\"Gj38WlCYS\");});const onTapkzet67=activeVariantCallback(async(...args)=>{setVariant(\"cJ3iYbiUK\");});const onTapvs8x6f=activeVariantCallback(async(...args)=>{setVariant(\"SyX08y3M6\");});const onTap1dnsxzm=activeVariantCallback(async(...args)=>{setVariant(\"V4U_4ItMm\");});const onTap74d7qg=activeVariantCallback(async(...args)=>{setVariant(\"Mm35WLbfG\");});const onTap1x5n9f=activeVariantCallback(async(...args)=>{setVariant(\"Qlw5m7SSk\");});const vUdE704SQizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"OaSdsVTnt\",\"y0C4W8oKx\",\"SsRCPwpHC\",\"k9tEgo3Hf\",\"Bl7YeOvDX\",\"eNHLYdbwl\",\"DOe8fw3eH\",\"qe1dAhXEJ\",\"cJ3iYbiUK\",\"Gj38WlCYS\",\"V4U_4ItMm\",\"SyX08y3M6\",\"Qlw5m7SSk\",\"Mm35WLbfG\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"OaSdsVTnt\",\"SsRCPwpHC\",\"Bl7YeOvDX\",\"DOe8fw3eH\",\"cJ3iYbiUK\",\"V4U_4ItMm\",\"Qlw5m7SSk\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"Neowa3Xxw\",\"eZZWkmcue\",\"Mm35WLbfG\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed3=()=>{if(baseVariant===\"Mm35WLbfG\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"eZZWkmcue\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"Neowa3Xxw\")return true;return false;};const ref2=React.useRef(null);const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w7sxm8\",className,classNames),\"data-framer-name\":\"Desktop - Home\",layoutDependency:layoutDependency,layoutId:\"PBkoL4UZR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(25px)\",backgroundColor:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",boxShadow:\"0px 2px 20px 0px rgba(0, 0, 0, 0.1)\",WebkitBackdropFilter:\"blur(25px)\",...style},variants:{eZZWkmcue:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Neowa3Xxw:{backgroundColor:\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(1, 63, 110))\"},Qlw5m7SSk:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({Bl7YeOvDX:{\"data-framer-name\":\"Mobile - Services\"},cJ3iYbiUK:{\"data-framer-name\":\"Mobile - Blog\"},dBjPSjmbz:{\"data-framer-name\":\"Desktop - Services\"},dJdHhhAFi:{\"data-framer-name\":\"Desktop - About Us\"},DOe8fw3eH:{\"data-framer-name\":\"Mobile - Pricing\"},eNHLYdbwl:{\"data-framer-name\":\"Mobile - Services - Opened\"},eZZWkmcue:{\"data-framer-name\":\"Tablet - Home - Transparent\"},Gj38WlCYS:{\"data-framer-name\":\"Mobile - Blog - Opened\"},HhN2LTpf_:{\"data-framer-name\":\"Tablet - Home\"},Hx4CkqXSj:{\"data-framer-name\":\"Tablet - Services\"},JDZlM7bpr:{\"data-framer-name\":\"Tablet - About Us\"},k9tEgo3Hf:{\"data-framer-name\":\"Mobile - About Us - Open\"},Mm35WLbfG:{\"data-framer-name\":\"Mobile - Home - Transparent - Open\"},Neowa3Xxw:{\"data-framer-name\":\"Desktop - Home - Transparent\"},o2rJLjwkI:{\"data-framer-name\":\"Desktop - Blog\"},OaSdsVTnt:{\"data-framer-name\":\"Mobile - Home\"},qe1dAhXEJ:{\"data-framer-name\":\"Mobile - Pricing - Opened\"},Qlw5m7SSk:{\"data-framer-name\":\"Mobile - Home - Transparent\"},qoZUyBdQl:{\"data-framer-name\":\"Tablet - Contact\"},rTdYQ4M5A:{\"data-framer-name\":\"Desktop - Pricing\"},SsRCPwpHC:{\"data-framer-name\":\"Mobile - About Us\"},SyX08y3M6:{\"data-framer-name\":\"Mobile - Contact - Opened\"},V4U_4ItMm:{\"data-framer-name\":\"Mobile - Contact\"},vDJCODqzP:{\"data-framer-name\":\"Desktop - Contact\"},vT53Gfa65:{\"data-framer-name\":\"Tablet - Pricing\"},W18G7Xzz6:{\"data-framer-name\":\"Tablet - Blog\"},y0C4W8oKx:{\"data-framer-name\":\"Mobile - Home - Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5zvvzq\",\"data-framer-name\":\"Nav\",layoutDependency:layoutDependency,layoutId:\"yWwEMHhXD\",style:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"none\"},variants:{eZZWkmcue:{backdropFilter:\"blur(25px)\",WebkitBackdropFilter:\"blur(25px)\"},Mm35WLbfG:{backgroundColor:\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151))\"},Neowa3Xxw:{backdropFilter:\"blur(25px)\",backgroundColor:\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(1, 63, 110))\",WebkitBackdropFilter:\"blur(25px)\"},Qlw5m7SSk:{backdropFilter:\"blur(25px)\",backgroundColor:\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(1, 63, 110))\",WebkitBackdropFilter:\"blur(25px)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ofiqx\",layoutDependency:layoutDependency,layoutId:\"DBHYCeezE\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0,...addPropertyOverrides({Bl7YeOvDX:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},cJ3iYbiUK:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},dBjPSjmbz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},dJdHhhAFi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},DOe8fw3eH:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},eNHLYdbwl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+0+0},Gj38WlCYS:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+0+0},HhN2LTpf_:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},Hx4CkqXSj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},JDZlM7bpr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},k9tEgo3Hf:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+0+0},Mm35WLbfG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||378)-0-378)/2)+24+0+0},o2rJLjwkI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},OaSdsVTnt:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},qe1dAhXEJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+0+0},qoZUyBdQl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},rTdYQ4M5A:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},SsRCPwpHC:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},SyX08y3M6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+0+0},V4U_4ItMm:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},vDJCODqzP:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},vT53Gfa65:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},W18G7Xzz6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0},y0C4W8oKx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1exxgzh-container\",layoutDependency:layoutDependency,layoutId:\"MII994OCx-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"MII994OCx\",layoutId:\"MII994OCx\",style:{height:\"100%\"},variant:\"pjWlzKYnl\",width:\"100%\",...addPropertyOverrides({eZZWkmcue:{variant:\"AhUAVmWv9\"},Mm35WLbfG:{variant:\"AhUAVmWv9\"},Neowa3Xxw:{variant:\"AhUAVmWv9\"},Qlw5m7SSk:{variant:\"AhUAVmWv9\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lud0pt\",\"data-framer-name\":\"Hamburger Menu\",layoutDependency:layoutDependency,layoutId:\"pw0n1tMiW\",style:{backgroundColor:\"rgb(255, 255, 255)\"},variants:{Mm35WLbfG:{backgroundColor:\"rgba(0, 0, 0, 0)\"},Qlw5m7SSk:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({Bl7YeOvDX:{\"data-highlight\":true,onTap:onTap1gr5o3u},cJ3iYbiUK:{\"data-highlight\":true,onTap:onTapv72x9q},DOe8fw3eH:{\"data-highlight\":true,onTap:onTapyq304g},eNHLYdbwl:{\"data-highlight\":true,onTap:onTap1gp5tm7},Gj38WlCYS:{\"data-highlight\":true,onTap:onTapkzet67},k9tEgo3Hf:{\"data-highlight\":true,onTap:onTap1kgtznu},Mm35WLbfG:{\"data-highlight\":true,onTap:onTap1x5n9f},OaSdsVTnt:{\"data-highlight\":true,onTap:onTapn3q3fq},qe1dAhXEJ:{\"data-highlight\":true,onTap:onTap1q8wg4c},Qlw5m7SSk:{\"data-highlight\":true,onTap:onTap74d7qg},SsRCPwpHC:{\"data-highlight\":true,onTap:onTap6hzwiw},SyX08y3M6:{\"data-highlight\":true,onTap:onTap1dnsxzm},V4U_4ItMm:{\"data-highlight\":true,onTap:onTapvs8x6f},y0C4W8oKx:{\"data-highlight\":true,onTap:onTap1s5ew50}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qb9rz7\",\"data-framer-name\":\"Hamburger1\",layoutDependency:layoutDependency,layoutId:\"xUUDqiGLw\",style:{backgroundColor:\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\",rotate:0},variants:{eNHLYdbwl:{rotate:45},Gj38WlCYS:{rotate:45},k9tEgo3Hf:{rotate:45},Mm35WLbfG:{backgroundColor:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",rotate:45},qe1dAhXEJ:{rotate:45},Qlw5m7SSk:{backgroundColor:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\"},SyX08y3M6:{rotate:45},y0C4W8oKx:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cxjy22\",\"data-framer-name\":\"Hamburger2\",layoutDependency:layoutDependency,layoutId:\"SnW4USiec\",style:{backgroundColor:\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\",rotate:0},variants:{eNHLYdbwl:{rotate:-45},Gj38WlCYS:{rotate:-45},k9tEgo3Hf:{rotate:-45},Mm35WLbfG:{backgroundColor:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",rotate:-45},qe1dAhXEJ:{rotate:-45},Qlw5m7SSk:{backgroundColor:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\"},SyX08y3M6:{rotate:-45},y0C4W8oKx:{rotate:-45}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-p35buh\",\"data-framer-name\":\"Left Stack\",layoutDependency:layoutDependency,layoutId:\"Qn1iepVVD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g84dit\",\"data-framer-name\":\"Menu Items\",layoutDependency:layoutDependency,layoutId:\"nbjb9PXA8\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0,...addPropertyOverrides({dBjPSjmbz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},dJdHhhAFi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},eNHLYdbwl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+0},Gj38WlCYS:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+0},HhN2LTpf_:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},Hx4CkqXSj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},JDZlM7bpr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},k9tEgo3Hf:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+0},o2rJLjwkI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},qe1dAhXEJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+0},qoZUyBdQl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},rTdYQ4M5A:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},SyX08y3M6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+0},vDJCODqzP:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},vT53Gfa65:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},W18G7Xzz6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},y0C4W8oKx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z2a1gn-container\",\"data-framer-name\":\"Services and Pricing\",layoutDependency:layoutDependency,layoutId:\"QH3EU8GzS-container\",name:\"Services and Pricing\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"QH3EU8GzS\",layoutId:\"QH3EU8GzS\",name:\"Services and Pricing\",PFHTFROiN:\"Home\",pTSRtOIWT:resolvedLinks[0],style:{height:\"100%\"},variant:\"CKZiMul0b\",width:\"100%\",...addPropertyOverrides({dBjPSjmbz:{pTSRtOIWT:resolvedLinks[2]},dJdHhhAFi:{pTSRtOIWT:resolvedLinks[1]},eNHLYdbwl:{pTSRtOIWT:resolvedLinks[14]},Gj38WlCYS:{pTSRtOIWT:resolvedLinks[16]},HhN2LTpf_:{pTSRtOIWT:resolvedLinks[6]},Hx4CkqXSj:{pTSRtOIWT:resolvedLinks[8]},JDZlM7bpr:{pTSRtOIWT:resolvedLinks[7]},k9tEgo3Hf:{pTSRtOIWT:resolvedLinks[13]},o2rJLjwkI:{pTSRtOIWT:resolvedLinks[4]},qe1dAhXEJ:{pTSRtOIWT:resolvedLinks[15]},qoZUyBdQl:{pTSRtOIWT:resolvedLinks[11]},rTdYQ4M5A:{pTSRtOIWT:resolvedLinks[3]},SyX08y3M6:{pTSRtOIWT:resolvedLinks[17]},vDJCODqzP:{pTSRtOIWT:resolvedLinks[5]},vT53Gfa65:{pTSRtOIWT:resolvedLinks[9]},W18G7Xzz6:{pTSRtOIWT:resolvedLinks[10]},y0C4W8oKx:{pTSRtOIWT:resolvedLinks[12]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0,...addPropertyOverrides({dBjPSjmbz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},dJdHhhAFi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},eNHLYdbwl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+54},Gj38WlCYS:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+54},HhN2LTpf_:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},Hx4CkqXSj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},JDZlM7bpr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},k9tEgo3Hf:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+54},Mm35WLbfG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||378)-0-378)/2)+24+54+0+0+0+54},o2rJLjwkI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},qe1dAhXEJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+54},qoZUyBdQl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},rTdYQ4M5A:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},SyX08y3M6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+54},vDJCODqzP:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},vT53Gfa65:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},W18G7Xzz6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},y0C4W8oKx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+54}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-igwr18-container\",\"data-framer-name\":\"About Us\",layoutDependency:layoutDependency,layoutId:\"eTZvd3HRN-container\",name:\"About Us\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"eTZvd3HRN\",layoutId:\"eTZvd3HRN\",name:\"About Us\",PFHTFROiN:\"About\",pTSRtOIWT:resolvedLinks1[0],style:{height:\"100%\"},variant:\"CKZiMul0b\",width:\"100%\",...addPropertyOverrides({dBjPSjmbz:{pTSRtOIWT:resolvedLinks1[2]},dJdHhhAFi:{pTSRtOIWT:resolvedLinks1[1],variant:\"GrXt0nvhy\"},eNHLYdbwl:{pTSRtOIWT:resolvedLinks1[16]},eZZWkmcue:{pTSRtOIWT:resolvedLinks1[13],variant:\"qwGJsD2DB\"},Gj38WlCYS:{pTSRtOIWT:resolvedLinks1[18]},HhN2LTpf_:{pTSRtOIWT:resolvedLinks1[7]},Hx4CkqXSj:{pTSRtOIWT:resolvedLinks1[9]},JDZlM7bpr:{pTSRtOIWT:resolvedLinks1[8],variant:\"GrXt0nvhy\"},k9tEgo3Hf:{pTSRtOIWT:resolvedLinks1[15],variant:\"GrXt0nvhy\"},Mm35WLbfG:{pTSRtOIWT:resolvedLinks1[20],variant:\"qwGJsD2DB\"},Neowa3Xxw:{PFHTFROiN:\"Home\",pTSRtOIWT:resolvedLinks1[6],variant:\"qwGJsD2DB\"},o2rJLjwkI:{pTSRtOIWT:resolvedLinks1[4]},qe1dAhXEJ:{pTSRtOIWT:resolvedLinks1[17]},qoZUyBdQl:{pTSRtOIWT:resolvedLinks1[12]},rTdYQ4M5A:{pTSRtOIWT:resolvedLinks1[3]},SyX08y3M6:{pTSRtOIWT:resolvedLinks1[19]},vDJCODqzP:{pTSRtOIWT:resolvedLinks1[5]},vT53Gfa65:{pTSRtOIWT:resolvedLinks1[10]},W18G7Xzz6:{pTSRtOIWT:resolvedLinks1[11]},y0C4W8oKx:{pTSRtOIWT:resolvedLinks1[14]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Mm35WLbfG:{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||378)-0-378)/2)+24+54+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1coq4t3-container\",\"data-framer-name\":\"About Us\",layoutDependency:layoutDependency,layoutId:\"OP8Q7nH30-container\",name:\"About Us\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"OP8Q7nH30\",layoutId:\"OP8Q7nH30\",name:\"About Us\",PFHTFROiN:\"Home\",pTSRtOIWT:resolvedLinks2[0],style:{height:\"100%\"},variant:\"qwGJsD2DB\",width:\"100%\",...addPropertyOverrides({Mm35WLbfG:{pTSRtOIWT:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({eZZWkmcue:{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x3raid-container\",\"data-framer-name\":\"About Us\",layoutDependency:layoutDependency,layoutId:\"S6iQGSDti-container\",name:\"About Us\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"S6iQGSDti\",layoutId:\"S6iQGSDti\",name:\"About Us\",PFHTFROiN:\"Home\",pTSRtOIWT:resolvedLinks3[0],style:{height:\"100%\"},variant:\"qwGJsD2DB\",width:\"100%\",...addPropertyOverrides({eZZWkmcue:{pTSRtOIWT:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Neowa3Xxw:{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2xy0f4-container\",\"data-framer-name\":\"About Us\",layoutDependency:layoutDependency,layoutId:\"BA0ufogcl-container\",name:\"About Us\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"BA0ufogcl\",layoutId:\"BA0ufogcl\",name:\"About Us\",PFHTFROiN:\"About\",pTSRtOIWT:resolvedLinks4[0],style:{height:\"100%\"},variant:\"qwGJsD2DB\",width:\"100%\",...addPropertyOverrides({Neowa3Xxw:{pTSRtOIWT:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined},{href:{webPageId:\"on5ew391w\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0,...addPropertyOverrides({dBjPSjmbz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},dJdHhhAFi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},eNHLYdbwl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+108},Gj38WlCYS:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+108},HhN2LTpf_:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},Hx4CkqXSj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},JDZlM7bpr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},k9tEgo3Hf:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+108},Mm35WLbfG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||378)-0-378)/2)+24+54+0+0+0+108},o2rJLjwkI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},qe1dAhXEJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+108},qoZUyBdQl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},rTdYQ4M5A:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},SyX08y3M6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+108},vDJCODqzP:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},vT53Gfa65:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},W18G7Xzz6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},y0C4W8oKx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+108}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w8ykz9-container\",\"data-framer-name\":\"Services and Pricing\",id:`${layoutId}-w8ykz9`,layoutDependency:layoutDependency,layoutId:\"sVHpModiW-container\",name:\"Services and Pricing\",ref:ref2,children:[/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"sVHpModiW\",layoutId:\"sVHpModiW\",name:\"Services and Pricing\",PFHTFROiN:\"Projects\",pTSRtOIWT:resolvedLinks5[0],style:{height:\"100%\"},variant:\"CKZiMul0b\",vUdE704SQ:vUdE704SQizu9gt({overlay}),width:\"100%\",...addPropertyOverrides({dBjPSjmbz:{pTSRtOIWT:resolvedLinks5[2],variant:\"GrXt0nvhy\"},dJdHhhAFi:{pTSRtOIWT:resolvedLinks5[1]},eNHLYdbwl:{pTSRtOIWT:resolvedLinks5[16],variant:\"GrXt0nvhy\"},eZZWkmcue:{pTSRtOIWT:resolvedLinks5[13],variant:\"qwGJsD2DB\"},Gj38WlCYS:{pTSRtOIWT:resolvedLinks5[18]},HhN2LTpf_:{pTSRtOIWT:resolvedLinks5[7]},Hx4CkqXSj:{pTSRtOIWT:resolvedLinks5[9],variant:\"GrXt0nvhy\"},JDZlM7bpr:{pTSRtOIWT:resolvedLinks5[8]},k9tEgo3Hf:{pTSRtOIWT:resolvedLinks5[15]},Mm35WLbfG:{pTSRtOIWT:resolvedLinks5[20],variant:\"qwGJsD2DB\"},Neowa3Xxw:{pTSRtOIWT:resolvedLinks5[6],variant:\"qwGJsD2DB\"},o2rJLjwkI:{pTSRtOIWT:resolvedLinks5[4]},qe1dAhXEJ:{pTSRtOIWT:resolvedLinks5[17]},qoZUyBdQl:{pTSRtOIWT:resolvedLinks5[12]},rTdYQ4M5A:{pTSRtOIWT:resolvedLinks5[3]},SyX08y3M6:{pTSRtOIWT:resolvedLinks5[19]},vDJCODqzP:{pTSRtOIWT:resolvedLinks5[5]},vT53Gfa65:{pTSRtOIWT:resolvedLinks5[10]},W18G7Xzz6:{pTSRtOIWT:resolvedLinks5[11]},y0C4W8oKx:{pTSRtOIWT:resolvedLinks5[14]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-w8ykz9`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1bav27v\",\"data-framer-name\":\"Menu\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"oYJI7B2G1\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(184, 157, 90))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(17, 17, 17))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"on5ew391w\"},nodeId:\"D4TuIDeKZ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o8o4o4\",\"data-styles-preset\":\"GneDnYDxy\",children:\"Nuvau Minerals Corp\"})})})}),className:\"framer-d2rw5o\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"D4TuIDeKZ\",style:{\"--extracted-r6o4lv\":\"rgb(17, 17, 17)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{Neowa3Xxw:{\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Neowa3Xxw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"on5ew391w\"},nodeId:\"D4TuIDeKZ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o8o4o4\",\"data-styles-preset\":\"GneDnYDxy\",children:\"Nuvau Minerals Corp\"})})})})}},baseVariant,gestureVariant)})})})})]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined},{href:{webPageId:\"u4Em6h7Vn\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0,...addPropertyOverrides({dBjPSjmbz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},dJdHhhAFi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},eNHLYdbwl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+162},Gj38WlCYS:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+162},HhN2LTpf_:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},Hx4CkqXSj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},JDZlM7bpr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},k9tEgo3Hf:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+162},Mm35WLbfG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||378)-0-378)/2)+24+54+0+0+0+162},o2rJLjwkI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},qe1dAhXEJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+162},qoZUyBdQl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},rTdYQ4M5A:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},SyX08y3M6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+162},vDJCODqzP:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},vT53Gfa65:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},W18G7Xzz6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},y0C4W8oKx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+162}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qm6ofv-container\",\"data-framer-name\":\"Services and Pricing\",layoutDependency:layoutDependency,layoutId:\"ixVbTPwO6-container\",name:\"Services and Pricing\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"ixVbTPwO6\",layoutId:\"ixVbTPwO6\",name:\"Services and Pricing\",PFHTFROiN:\"News\",pTSRtOIWT:resolvedLinks6[0],style:{height:\"100%\"},variant:\"CKZiMul0b\",width:\"100%\",...addPropertyOverrides({dBjPSjmbz:{pTSRtOIWT:resolvedLinks6[2]},dJdHhhAFi:{pTSRtOIWT:resolvedLinks6[1]},eNHLYdbwl:{pTSRtOIWT:resolvedLinks6[16]},eZZWkmcue:{pTSRtOIWT:resolvedLinks6[13],variant:\"qwGJsD2DB\"},Gj38WlCYS:{pTSRtOIWT:resolvedLinks6[18]},HhN2LTpf_:{pTSRtOIWT:resolvedLinks6[7]},Hx4CkqXSj:{pTSRtOIWT:resolvedLinks6[9]},JDZlM7bpr:{pTSRtOIWT:resolvedLinks6[8]},k9tEgo3Hf:{pTSRtOIWT:resolvedLinks6[15]},Mm35WLbfG:{pTSRtOIWT:resolvedLinks6[20],variant:\"qwGJsD2DB\"},Neowa3Xxw:{pTSRtOIWT:resolvedLinks6[6],variant:\"qwGJsD2DB\"},o2rJLjwkI:{pTSRtOIWT:resolvedLinks6[4]},qe1dAhXEJ:{pTSRtOIWT:resolvedLinks6[17],variant:\"GrXt0nvhy\"},qoZUyBdQl:{pTSRtOIWT:resolvedLinks6[12]},rTdYQ4M5A:{pTSRtOIWT:resolvedLinks6[3],variant:\"GrXt0nvhy\"},SyX08y3M6:{pTSRtOIWT:resolvedLinks6[19]},vDJCODqzP:{pTSRtOIWT:resolvedLinks6[5]},vT53Gfa65:{pTSRtOIWT:resolvedLinks6[10],variant:\"GrXt0nvhy\"},W18G7Xzz6:{pTSRtOIWT:resolvedLinks6[11]},y0C4W8oKx:{pTSRtOIWT:resolvedLinks6[14]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined},{href:{webPageId:\"LjrOuxaz_\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||84)-0-84)/2)+24+0+0,...addPropertyOverrides({dBjPSjmbz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},dJdHhhAFi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},eNHLYdbwl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+216},Gj38WlCYS:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+216},HhN2LTpf_:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},Hx4CkqXSj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},JDZlM7bpr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},k9tEgo3Hf:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+216},Mm35WLbfG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||378)-0-378)/2)+24+54+0+0+0+216},o2rJLjwkI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},qe1dAhXEJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+216},qoZUyBdQl:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},rTdYQ4M5A:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},SyX08y3M6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+216},vDJCODqzP:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},vT53Gfa65:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},W18G7Xzz6:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-84)/2)+24+0+0},y0C4W8oKx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-384)/2)+24+60+0+0+0+216}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wqkksr-container\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"eoXaDMk7v-container\",name:\"Contact\",children:/*#__PURE__*/_jsx(MenuLink,{height:\"100%\",id:\"eoXaDMk7v\",layoutId:\"eoXaDMk7v\",name:\"Contact\",PFHTFROiN:\"Contact\",pTSRtOIWT:resolvedLinks7[0],style:{height:\"100%\"},variant:\"CKZiMul0b\",width:\"100%\",...addPropertyOverrides({dBjPSjmbz:{pTSRtOIWT:resolvedLinks7[2]},dJdHhhAFi:{pTSRtOIWT:resolvedLinks7[1]},eNHLYdbwl:{pTSRtOIWT:resolvedLinks7[16]},eZZWkmcue:{pTSRtOIWT:resolvedLinks7[13],variant:\"qwGJsD2DB\"},Gj38WlCYS:{pTSRtOIWT:resolvedLinks7[18]},HhN2LTpf_:{pTSRtOIWT:resolvedLinks7[7]},Hx4CkqXSj:{pTSRtOIWT:resolvedLinks7[9]},JDZlM7bpr:{pTSRtOIWT:resolvedLinks7[8]},k9tEgo3Hf:{pTSRtOIWT:resolvedLinks7[15]},Mm35WLbfG:{pTSRtOIWT:resolvedLinks7[20],variant:\"qwGJsD2DB\"},Neowa3Xxw:{pTSRtOIWT:resolvedLinks7[6],variant:\"qwGJsD2DB\"},o2rJLjwkI:{pTSRtOIWT:resolvedLinks7[4]},qe1dAhXEJ:{pTSRtOIWT:resolvedLinks7[17]},qoZUyBdQl:{pTSRtOIWT:resolvedLinks7[12],variant:\"GrXt0nvhy\"},rTdYQ4M5A:{pTSRtOIWT:resolvedLinks7[3]},SyX08y3M6:{pTSRtOIWT:resolvedLinks7[19],variant:\"GrXt0nvhy\"},vDJCODqzP:{pTSRtOIWT:resolvedLinks7[5],variant:\"GrXt0nvhy\"},vT53Gfa65:{pTSRtOIWT:resolvedLinks7[10]},W18G7Xzz6:{pTSRtOIWT:resolvedLinks7[11]},y0C4W8oKx:{pTSRtOIWT:resolvedLinks7[14]}},baseVariant,gestureVariant)})})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LqNyz.framer-1cimmeq, .framer-LqNyz .framer-1cimmeq { display: block; }\",\".framer-LqNyz.framer-w7sxm8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 1200px; }\",\".framer-LqNyz .framer-5zvvzq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 1px; }\",\".framer-LqNyz .framer-2ofiqx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LqNyz .framer-1exxgzh-container, .framer-LqNyz .framer-z2a1gn-container, .framer-LqNyz .framer-igwr18-container, .framer-LqNyz .framer-1coq4t3-container, .framer-LqNyz .framer-x3raid-container, .framer-LqNyz .framer-2xy0f4-container, .framer-LqNyz .framer-w8ykz9-container, .framer-LqNyz .framer-qm6ofv-container, .framer-LqNyz .framer-wqkksr-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-LqNyz .framer-1lud0pt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-LqNyz .framer-1qb9rz7 { flex: none; height: 1px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: 7px; width: 24px; z-index: 1; }\",\".framer-LqNyz .framer-1cxjy22 { bottom: 7px; flex: none; height: 1px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; width: 24px; z-index: 1; }\",\".framer-LqNyz .framer-p35buh, .framer-LqNyz .framer-g84dit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LqNyz .framer-1bav27v { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-LqNyz .framer-d2rw5o { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-w7sxm8, .framer-LqNyz .framer-2ofiqx, .framer-LqNyz .framer-1lud0pt, .framer-LqNyz .framer-p35buh, .framer-LqNyz .framer-g84dit, .framer-LqNyz .framer-1bav27v { gap: 0px; } .framer-LqNyz.framer-w7sxm8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LqNyz.framer-w7sxm8 > :first-child, .framer-LqNyz .framer-2ofiqx > :first-child, .framer-LqNyz .framer-p35buh > :first-child, .framer-LqNyz .framer-g84dit > :first-child { margin-left: 0px; } .framer-LqNyz.framer-w7sxm8 > :last-child, .framer-LqNyz .framer-2ofiqx > :last-child, .framer-LqNyz .framer-p35buh > :last-child, .framer-LqNyz .framer-g84dit > :last-child { margin-right: 0px; } .framer-LqNyz .framer-2ofiqx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-LqNyz .framer-1lud0pt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LqNyz .framer-1lud0pt > :first-child, .framer-LqNyz .framer-1bav27v > :first-child { margin-top: 0px; } .framer-LqNyz .framer-1lud0pt > :last-child, .framer-LqNyz .framer-1bav27v > :last-child { margin-bottom: 0px; } .framer-LqNyz .framer-p35buh > *, .framer-LqNyz .framer-g84dit > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-LqNyz .framer-1bav27v > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-LqNyz.framer-v-6v98wm .framer-z2a1gn-container, .framer-LqNyz.framer-v-znwdhl .framer-z2a1gn-container, .framer-LqNyz.framer-v-dnz5m4 .framer-z2a1gn-container, .framer-LqNyz.framer-v-ufleqf .framer-z2a1gn-container, .framer-LqNyz.framer-v-15ibj5b .framer-z2a1gn-container, .framer-LqNyz.framer-v-v1tqio .framer-z2a1gn-container, .framer-LqNyz.framer-v-14vsdvi .framer-z2a1gn-container, .framer-LqNyz.framer-v-20leqy .framer-z2a1gn-container, .framer-LqNyz.framer-v-cgtcxh .framer-z2a1gn-container, .framer-LqNyz.framer-v-1wiq9pe .framer-z2a1gn-container, .framer-LqNyz.framer-v-mc713t .framer-x3raid-container, .framer-LqNyz.framer-v-1sl21u9 .framer-z2a1gn-container, .framer-LqNyz.framer-v-1rzoxu9 .framer-z2a1gn-container, .framer-LqNyz.framer-v-1b1uybm .framer-z2a1gn-container, .framer-LqNyz.framer-v-1lbptyq .framer-z2a1gn-container, .framer-LqNyz.framer-v-1pw4e3f .framer-z2a1gn-container, .framer-LqNyz.framer-v-1s2cfmh .framer-1coq4t3-container { order: 0; }\",\".framer-LqNyz.framer-v-6v98wm .framer-igwr18-container, .framer-LqNyz.framer-v-znwdhl .framer-igwr18-container, .framer-LqNyz.framer-v-dnz5m4 .framer-igwr18-container, .framer-LqNyz.framer-v-ufleqf .framer-igwr18-container, .framer-LqNyz.framer-v-15ibj5b .framer-igwr18-container, .framer-LqNyz.framer-v-v1tqio .framer-igwr18-container, .framer-LqNyz.framer-v-14vsdvi .framer-igwr18-container, .framer-LqNyz.framer-v-20leqy .framer-igwr18-container, .framer-LqNyz.framer-v-cgtcxh .framer-igwr18-container, .framer-LqNyz.framer-v-1wiq9pe .framer-igwr18-container, .framer-LqNyz.framer-v-1sl21u9 .framer-igwr18-container, .framer-LqNyz.framer-v-1rzoxu9 .framer-igwr18-container, .framer-LqNyz.framer-v-1b1uybm .framer-igwr18-container, .framer-LqNyz.framer-v-1lbptyq .framer-igwr18-container, .framer-LqNyz.framer-v-1pw4e3f .framer-igwr18-container { order: 1; }\",\".framer-LqNyz.framer-v-6v98wm .framer-w8ykz9-container, .framer-LqNyz.framer-v-znwdhl .framer-w8ykz9-container, .framer-LqNyz.framer-v-dnz5m4 .framer-w8ykz9-container, .framer-LqNyz.framer-v-ufleqf .framer-w8ykz9-container, .framer-LqNyz.framer-v-15ibj5b .framer-w8ykz9-container, .framer-LqNyz.framer-v-v1tqio .framer-w8ykz9-container, .framer-LqNyz.framer-v-14vsdvi .framer-w8ykz9-container, .framer-LqNyz.framer-v-20leqy .framer-w8ykz9-container, .framer-LqNyz.framer-v-cgtcxh .framer-w8ykz9-container, .framer-LqNyz.framer-v-1wiq9pe .framer-w8ykz9-container, .framer-LqNyz.framer-v-mc713t .framer-w8ykz9-container, .framer-LqNyz.framer-v-1sl21u9 .framer-w8ykz9-container, .framer-LqNyz.framer-v-1rzoxu9 .framer-w8ykz9-container, .framer-LqNyz.framer-v-1b1uybm .framer-w8ykz9-container, .framer-LqNyz.framer-v-1lbptyq .framer-w8ykz9-container, .framer-LqNyz.framer-v-1pw4e3f .framer-w8ykz9-container, .framer-LqNyz.framer-v-1s2cfmh .framer-w8ykz9-container { order: 5; }\",\".framer-LqNyz.framer-v-6v98wm .framer-qm6ofv-container, .framer-LqNyz.framer-v-znwdhl .framer-qm6ofv-container, .framer-LqNyz.framer-v-dnz5m4 .framer-qm6ofv-container, .framer-LqNyz.framer-v-ufleqf .framer-qm6ofv-container, .framer-LqNyz.framer-v-15ibj5b .framer-qm6ofv-container, .framer-LqNyz.framer-v-v1tqio .framer-qm6ofv-container, .framer-LqNyz.framer-v-14vsdvi .framer-qm6ofv-container, .framer-LqNyz.framer-v-20leqy .framer-qm6ofv-container, .framer-LqNyz.framer-v-cgtcxh .framer-qm6ofv-container, .framer-LqNyz.framer-v-1wiq9pe .framer-qm6ofv-container, .framer-LqNyz.framer-v-mc713t .framer-qm6ofv-container, .framer-LqNyz.framer-v-1sl21u9 .framer-qm6ofv-container, .framer-LqNyz.framer-v-1rzoxu9 .framer-qm6ofv-container, .framer-LqNyz.framer-v-1b1uybm .framer-qm6ofv-container, .framer-LqNyz.framer-v-1lbptyq .framer-qm6ofv-container, .framer-LqNyz.framer-v-1pw4e3f .framer-qm6ofv-container, .framer-LqNyz.framer-v-1s2cfmh .framer-qm6ofv-container { order: 6; }\",\".framer-LqNyz.framer-v-6v98wm .framer-wqkksr-container, .framer-LqNyz.framer-v-znwdhl .framer-wqkksr-container, .framer-LqNyz.framer-v-dnz5m4 .framer-wqkksr-container, .framer-LqNyz.framer-v-ufleqf .framer-wqkksr-container, .framer-LqNyz.framer-v-15ibj5b .framer-wqkksr-container, .framer-LqNyz.framer-v-v1tqio .framer-wqkksr-container, .framer-LqNyz.framer-v-14vsdvi .framer-wqkksr-container, .framer-LqNyz.framer-v-20leqy .framer-wqkksr-container, .framer-LqNyz.framer-v-cgtcxh .framer-wqkksr-container, .framer-LqNyz.framer-v-1wiq9pe .framer-wqkksr-container, .framer-LqNyz.framer-v-mc713t .framer-wqkksr-container, .framer-LqNyz.framer-v-1sl21u9 .framer-wqkksr-container, .framer-LqNyz.framer-v-1rzoxu9 .framer-wqkksr-container, .framer-LqNyz.framer-v-1b1uybm .framer-wqkksr-container, .framer-LqNyz.framer-v-1lbptyq .framer-wqkksr-container, .framer-LqNyz.framer-v-1pw4e3f .framer-wqkksr-container, .framer-LqNyz.framer-v-1s2cfmh .framer-wqkksr-container { order: 7; }\",\".framer-LqNyz.framer-v-htuj9j .framer-g84dit { padding: 0px 20px 0px 20px; }\",\".framer-LqNyz.framer-v-1lvhwvx.framer-w7sxm8, .framer-LqNyz.framer-v-v1tqio.framer-w7sxm8, .framer-LqNyz.framer-v-14vsdvi.framer-w7sxm8, .framer-LqNyz.framer-v-20leqy.framer-w7sxm8, .framer-LqNyz.framer-v-cgtcxh.framer-w7sxm8, .framer-LqNyz.framer-v-1wiq9pe.framer-w7sxm8, .framer-LqNyz.framer-v-mc713t.framer-w7sxm8 { padding: 0px; width: 810px; }\",\".framer-LqNyz.framer-v-1lvhwvx .framer-5zvvzq, .framer-LqNyz.framer-v-v1tqio .framer-5zvvzq, .framer-LqNyz.framer-v-14vsdvi .framer-5zvvzq, .framer-LqNyz.framer-v-20leqy .framer-5zvvzq, .framer-LqNyz.framer-v-cgtcxh .framer-5zvvzq, .framer-LqNyz.framer-v-1wiq9pe .framer-5zvvzq, .framer-LqNyz.framer-v-mc713t .framer-5zvvzq, .framer-LqNyz.framer-v-pi6wuy .framer-5zvvzq { padding: 24px; }\",\".framer-LqNyz.framer-v-mc713t .framer-igwr18-container { order: 3; }\",\".framer-LqNyz.framer-v-fmco5g.framer-w7sxm8, .framer-LqNyz.framer-v-ia00uo.framer-w7sxm8, .framer-LqNyz.framer-v-xnttkq.framer-w7sxm8, .framer-LqNyz.framer-v-1sl21u9.framer-w7sxm8, .framer-LqNyz.framer-v-1pu8i7h.framer-w7sxm8, .framer-LqNyz.framer-v-1rzoxu9.framer-w7sxm8, .framer-LqNyz.framer-v-1dtt9p2.framer-w7sxm8, .framer-LqNyz.framer-v-1b1uybm.framer-w7sxm8, .framer-LqNyz.framer-v-153z2yf.framer-w7sxm8, .framer-LqNyz.framer-v-1lbptyq.framer-w7sxm8, .framer-LqNyz.framer-v-16mf2i4.framer-w7sxm8, .framer-LqNyz.framer-v-1pw4e3f.framer-w7sxm8, .framer-LqNyz.framer-v-pi6wuy.framer-w7sxm8, .framer-LqNyz.framer-v-1s2cfmh.framer-w7sxm8 { padding: 0px; width: 390px; }\",\".framer-LqNyz.framer-v-fmco5g .framer-5zvvzq, .framer-LqNyz.framer-v-xnttkq .framer-5zvvzq, .framer-LqNyz.framer-v-1pu8i7h .framer-5zvvzq, .framer-LqNyz.framer-v-1dtt9p2 .framer-5zvvzq, .framer-LqNyz.framer-v-153z2yf .framer-5zvvzq, .framer-LqNyz.framer-v-16mf2i4 .framer-5zvvzq { flex-direction: column; gap: 18px; justify-content: center; padding: 24px; }\",\".framer-LqNyz.framer-v-fmco5g .framer-2ofiqx, .framer-LqNyz.framer-v-ia00uo .framer-2ofiqx, .framer-LqNyz.framer-v-xnttkq .framer-2ofiqx, .framer-LqNyz.framer-v-1sl21u9 .framer-2ofiqx, .framer-LqNyz.framer-v-1pu8i7h .framer-2ofiqx, .framer-LqNyz.framer-v-1rzoxu9 .framer-2ofiqx, .framer-LqNyz.framer-v-1dtt9p2 .framer-2ofiqx, .framer-LqNyz.framer-v-1b1uybm .framer-2ofiqx, .framer-LqNyz.framer-v-153z2yf .framer-2ofiqx, .framer-LqNyz.framer-v-1lbptyq .framer-2ofiqx, .framer-LqNyz.framer-v-16mf2i4 .framer-2ofiqx, .framer-LqNyz.framer-v-1pw4e3f .framer-2ofiqx, .framer-LqNyz.framer-v-1s2cfmh .framer-2ofiqx { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-LqNyz.framer-v-fmco5g .framer-1lud0pt, .framer-LqNyz.framer-v-ia00uo .framer-1lud0pt, .framer-LqNyz.framer-v-xnttkq .framer-1lud0pt, .framer-LqNyz.framer-v-1sl21u9 .framer-1lud0pt, .framer-LqNyz.framer-v-1pu8i7h .framer-1lud0pt, .framer-LqNyz.framer-v-1rzoxu9 .framer-1lud0pt, .framer-LqNyz.framer-v-1dtt9p2 .framer-1lud0pt, .framer-LqNyz.framer-v-1b1uybm .framer-1lud0pt, .framer-LqNyz.framer-v-153z2yf .framer-1lud0pt, .framer-LqNyz.framer-v-1lbptyq .framer-1lud0pt, .framer-LqNyz.framer-v-16mf2i4 .framer-1lud0pt, .framer-LqNyz.framer-v-1pw4e3f .framer-1lud0pt, .framer-LqNyz.framer-v-pi6wuy .framer-1lud0pt, .framer-LqNyz.framer-v-1s2cfmh .framer-1lud0pt { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-fmco5g .framer-5zvvzq, .framer-LqNyz.framer-v-fmco5g .framer-2ofiqx { gap: 0px; } .framer-LqNyz.framer-v-fmco5g .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-LqNyz.framer-v-fmco5g .framer-5zvvzq > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-fmco5g .framer-5zvvzq > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-fmco5g .framer-2ofiqx > *, .framer-LqNyz.framer-v-fmco5g .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-fmco5g .framer-2ofiqx > :last-child { margin: 0px; } }\",\".framer-LqNyz.framer-v-ia00uo .framer-5zvvzq, .framer-LqNyz.framer-v-1sl21u9 .framer-5zvvzq, .framer-LqNyz.framer-v-1rzoxu9 .framer-5zvvzq, .framer-LqNyz.framer-v-1b1uybm .framer-5zvvzq, .framer-LqNyz.framer-v-1lbptyq .framer-5zvvzq, .framer-LqNyz.framer-v-1pw4e3f .framer-5zvvzq { flex-direction: column; gap: 24px; justify-content: center; padding: 24px 24px 48px 24px; }\",\".framer-LqNyz.framer-v-ia00uo .framer-1qb9rz7, .framer-LqNyz.framer-v-1sl21u9 .framer-1qb9rz7, .framer-LqNyz.framer-v-1rzoxu9 .framer-1qb9rz7, .framer-LqNyz.framer-v-1b1uybm .framer-1qb9rz7, .framer-LqNyz.framer-v-1lbptyq .framer-1qb9rz7, .framer-LqNyz.framer-v-1pw4e3f .framer-1qb9rz7, .framer-LqNyz.framer-v-1s2cfmh .framer-1qb9rz7 { top: calc(50.00000000000002% - 1px / 2); }\",\".framer-LqNyz.framer-v-ia00uo .framer-1cxjy22, .framer-LqNyz.framer-v-1sl21u9 .framer-1cxjy22, .framer-LqNyz.framer-v-1rzoxu9 .framer-1cxjy22, .framer-LqNyz.framer-v-1b1uybm .framer-1cxjy22, .framer-LqNyz.framer-v-1lbptyq .framer-1cxjy22, .framer-LqNyz.framer-v-1pw4e3f .framer-1cxjy22, .framer-LqNyz.framer-v-1s2cfmh .framer-1cxjy22 { bottom: unset; top: calc(50.00000000000002% - 1px / 2); }\",\".framer-LqNyz.framer-v-ia00uo .framer-p35buh, .framer-LqNyz.framer-v-ia00uo .framer-g84dit, .framer-LqNyz.framer-v-1sl21u9 .framer-p35buh, .framer-LqNyz.framer-v-1sl21u9 .framer-g84dit, .framer-LqNyz.framer-v-1rzoxu9 .framer-p35buh, .framer-LqNyz.framer-v-1rzoxu9 .framer-g84dit, .framer-LqNyz.framer-v-1b1uybm .framer-p35buh, .framer-LqNyz.framer-v-1b1uybm .framer-g84dit, .framer-LqNyz.framer-v-1lbptyq .framer-p35buh, .framer-LqNyz.framer-v-1lbptyq .framer-g84dit, .framer-LqNyz.framer-v-1pw4e3f .framer-p35buh, .framer-LqNyz.framer-v-1pw4e3f .framer-g84dit { flex-direction: column; gap: 18px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-ia00uo .framer-5zvvzq, .framer-LqNyz.framer-v-ia00uo .framer-2ofiqx, .framer-LqNyz.framer-v-ia00uo .framer-p35buh, .framer-LqNyz.framer-v-ia00uo .framer-g84dit { gap: 0px; } .framer-LqNyz.framer-v-ia00uo .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LqNyz.framer-v-ia00uo .framer-5zvvzq > :first-child, .framer-LqNyz.framer-v-ia00uo .framer-p35buh > :first-child, .framer-LqNyz.framer-v-ia00uo .framer-g84dit > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-ia00uo .framer-5zvvzq > :last-child, .framer-LqNyz.framer-v-ia00uo .framer-p35buh > :last-child, .framer-LqNyz.framer-v-ia00uo .framer-g84dit > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-ia00uo .framer-2ofiqx > *, .framer-LqNyz.framer-v-ia00uo .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-ia00uo .framer-2ofiqx > :last-child { margin: 0px; } .framer-LqNyz.framer-v-ia00uo .framer-p35buh > *, .framer-LqNyz.framer-v-ia00uo .framer-g84dit > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-xnttkq .framer-5zvvzq, .framer-LqNyz.framer-v-xnttkq .framer-2ofiqx { gap: 0px; } .framer-LqNyz.framer-v-xnttkq .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-LqNyz.framer-v-xnttkq .framer-5zvvzq > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-xnttkq .framer-5zvvzq > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-xnttkq .framer-2ofiqx > *, .framer-LqNyz.framer-v-xnttkq .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-xnttkq .framer-2ofiqx > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-1sl21u9 .framer-5zvvzq, .framer-LqNyz.framer-v-1sl21u9 .framer-2ofiqx, .framer-LqNyz.framer-v-1sl21u9 .framer-p35buh, .framer-LqNyz.framer-v-1sl21u9 .framer-g84dit { gap: 0px; } .framer-LqNyz.framer-v-1sl21u9 .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LqNyz.framer-v-1sl21u9 .framer-5zvvzq > :first-child, .framer-LqNyz.framer-v-1sl21u9 .framer-p35buh > :first-child, .framer-LqNyz.framer-v-1sl21u9 .framer-g84dit > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-1sl21u9 .framer-5zvvzq > :last-child, .framer-LqNyz.framer-v-1sl21u9 .framer-p35buh > :last-child, .framer-LqNyz.framer-v-1sl21u9 .framer-g84dit > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-1sl21u9 .framer-2ofiqx > *, .framer-LqNyz.framer-v-1sl21u9 .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-1sl21u9 .framer-2ofiqx > :last-child { margin: 0px; } .framer-LqNyz.framer-v-1sl21u9 .framer-p35buh > *, .framer-LqNyz.framer-v-1sl21u9 .framer-g84dit > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-1pu8i7h .framer-5zvvzq, .framer-LqNyz.framer-v-1pu8i7h .framer-2ofiqx { gap: 0px; } .framer-LqNyz.framer-v-1pu8i7h .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-LqNyz.framer-v-1pu8i7h .framer-5zvvzq > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-1pu8i7h .framer-5zvvzq > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-1pu8i7h .framer-2ofiqx > *, .framer-LqNyz.framer-v-1pu8i7h .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-1pu8i7h .framer-2ofiqx > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-1rzoxu9 .framer-5zvvzq, .framer-LqNyz.framer-v-1rzoxu9 .framer-2ofiqx, .framer-LqNyz.framer-v-1rzoxu9 .framer-p35buh, .framer-LqNyz.framer-v-1rzoxu9 .framer-g84dit { gap: 0px; } .framer-LqNyz.framer-v-1rzoxu9 .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LqNyz.framer-v-1rzoxu9 .framer-5zvvzq > :first-child, .framer-LqNyz.framer-v-1rzoxu9 .framer-p35buh > :first-child, .framer-LqNyz.framer-v-1rzoxu9 .framer-g84dit > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-1rzoxu9 .framer-5zvvzq > :last-child, .framer-LqNyz.framer-v-1rzoxu9 .framer-p35buh > :last-child, .framer-LqNyz.framer-v-1rzoxu9 .framer-g84dit > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-1rzoxu9 .framer-2ofiqx > *, .framer-LqNyz.framer-v-1rzoxu9 .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-1rzoxu9 .framer-2ofiqx > :last-child { margin: 0px; } .framer-LqNyz.framer-v-1rzoxu9 .framer-p35buh > *, .framer-LqNyz.framer-v-1rzoxu9 .framer-g84dit > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-1dtt9p2 .framer-5zvvzq, .framer-LqNyz.framer-v-1dtt9p2 .framer-2ofiqx { gap: 0px; } .framer-LqNyz.framer-v-1dtt9p2 .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-LqNyz.framer-v-1dtt9p2 .framer-5zvvzq > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-1dtt9p2 .framer-5zvvzq > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-1dtt9p2 .framer-2ofiqx > *, .framer-LqNyz.framer-v-1dtt9p2 .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-1dtt9p2 .framer-2ofiqx > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-1b1uybm .framer-5zvvzq, .framer-LqNyz.framer-v-1b1uybm .framer-2ofiqx, .framer-LqNyz.framer-v-1b1uybm .framer-p35buh, .framer-LqNyz.framer-v-1b1uybm .framer-g84dit { gap: 0px; } .framer-LqNyz.framer-v-1b1uybm .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LqNyz.framer-v-1b1uybm .framer-5zvvzq > :first-child, .framer-LqNyz.framer-v-1b1uybm .framer-p35buh > :first-child, .framer-LqNyz.framer-v-1b1uybm .framer-g84dit > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-1b1uybm .framer-5zvvzq > :last-child, .framer-LqNyz.framer-v-1b1uybm .framer-p35buh > :last-child, .framer-LqNyz.framer-v-1b1uybm .framer-g84dit > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-1b1uybm .framer-2ofiqx > *, .framer-LqNyz.framer-v-1b1uybm .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-1b1uybm .framer-2ofiqx > :last-child { margin: 0px; } .framer-LqNyz.framer-v-1b1uybm .framer-p35buh > *, .framer-LqNyz.framer-v-1b1uybm .framer-g84dit > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-153z2yf .framer-5zvvzq, .framer-LqNyz.framer-v-153z2yf .framer-2ofiqx { gap: 0px; } .framer-LqNyz.framer-v-153z2yf .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-LqNyz.framer-v-153z2yf .framer-5zvvzq > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-153z2yf .framer-5zvvzq > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-153z2yf .framer-2ofiqx > *, .framer-LqNyz.framer-v-153z2yf .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-153z2yf .framer-2ofiqx > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-1lbptyq .framer-5zvvzq, .framer-LqNyz.framer-v-1lbptyq .framer-2ofiqx, .framer-LqNyz.framer-v-1lbptyq .framer-p35buh, .framer-LqNyz.framer-v-1lbptyq .framer-g84dit { gap: 0px; } .framer-LqNyz.framer-v-1lbptyq .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LqNyz.framer-v-1lbptyq .framer-5zvvzq > :first-child, .framer-LqNyz.framer-v-1lbptyq .framer-p35buh > :first-child, .framer-LqNyz.framer-v-1lbptyq .framer-g84dit > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-1lbptyq .framer-5zvvzq > :last-child, .framer-LqNyz.framer-v-1lbptyq .framer-p35buh > :last-child, .framer-LqNyz.framer-v-1lbptyq .framer-g84dit > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-1lbptyq .framer-2ofiqx > *, .framer-LqNyz.framer-v-1lbptyq .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-1lbptyq .framer-2ofiqx > :last-child { margin: 0px; } .framer-LqNyz.framer-v-1lbptyq .framer-p35buh > *, .framer-LqNyz.framer-v-1lbptyq .framer-g84dit > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-16mf2i4 .framer-5zvvzq, .framer-LqNyz.framer-v-16mf2i4 .framer-2ofiqx { gap: 0px; } .framer-LqNyz.framer-v-16mf2i4 .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-LqNyz.framer-v-16mf2i4 .framer-5zvvzq > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-16mf2i4 .framer-5zvvzq > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-16mf2i4 .framer-2ofiqx > *, .framer-LqNyz.framer-v-16mf2i4 .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-16mf2i4 .framer-2ofiqx > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-1pw4e3f .framer-5zvvzq, .framer-LqNyz.framer-v-1pw4e3f .framer-2ofiqx, .framer-LqNyz.framer-v-1pw4e3f .framer-p35buh, .framer-LqNyz.framer-v-1pw4e3f .framer-g84dit { gap: 0px; } .framer-LqNyz.framer-v-1pw4e3f .framer-5zvvzq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LqNyz.framer-v-1pw4e3f .framer-5zvvzq > :first-child, .framer-LqNyz.framer-v-1pw4e3f .framer-p35buh > :first-child, .framer-LqNyz.framer-v-1pw4e3f .framer-g84dit > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-1pw4e3f .framer-5zvvzq > :last-child, .framer-LqNyz.framer-v-1pw4e3f .framer-p35buh > :last-child, .framer-LqNyz.framer-v-1pw4e3f .framer-g84dit > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-1pw4e3f .framer-2ofiqx > *, .framer-LqNyz.framer-v-1pw4e3f .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-1pw4e3f .framer-2ofiqx > :last-child { margin: 0px; } .framer-LqNyz.framer-v-1pw4e3f .framer-p35buh > *, .framer-LqNyz.framer-v-1pw4e3f .framer-g84dit > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\".framer-LqNyz.framer-v-pi6wuy .framer-2ofiqx { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-pi6wuy .framer-2ofiqx { gap: 0px; } .framer-LqNyz.framer-v-pi6wuy .framer-2ofiqx > *, .framer-LqNyz.framer-v-pi6wuy .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-pi6wuy .framer-2ofiqx > :last-child { margin: 0px; } }\",\".framer-LqNyz.framer-v-1s2cfmh .framer-5zvvzq { flex-direction: column; gap: 18px; justify-content: center; padding: 24px 24px 48px 24px; }\",\".framer-LqNyz.framer-v-1s2cfmh .framer-p35buh, .framer-LqNyz.framer-v-1s2cfmh .framer-g84dit { flex-direction: column; gap: 18px; }\",\".framer-LqNyz.framer-v-1s2cfmh .framer-igwr18-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LqNyz.framer-v-1s2cfmh .framer-5zvvzq, .framer-LqNyz.framer-v-1s2cfmh .framer-2ofiqx, .framer-LqNyz.framer-v-1s2cfmh .framer-p35buh, .framer-LqNyz.framer-v-1s2cfmh .framer-g84dit { gap: 0px; } .framer-LqNyz.framer-v-1s2cfmh .framer-5zvvzq > *, .framer-LqNyz.framer-v-1s2cfmh .framer-p35buh > *, .framer-LqNyz.framer-v-1s2cfmh .framer-g84dit > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-LqNyz.framer-v-1s2cfmh .framer-5zvvzq > :first-child, .framer-LqNyz.framer-v-1s2cfmh .framer-p35buh > :first-child, .framer-LqNyz.framer-v-1s2cfmh .framer-g84dit > :first-child { margin-top: 0px; } .framer-LqNyz.framer-v-1s2cfmh .framer-5zvvzq > :last-child, .framer-LqNyz.framer-v-1s2cfmh .framer-p35buh > :last-child, .framer-LqNyz.framer-v-1s2cfmh .framer-g84dit > :last-child { margin-bottom: 0px; } .framer-LqNyz.framer-v-1s2cfmh .framer-2ofiqx > *, .framer-LqNyz.framer-v-1s2cfmh .framer-2ofiqx > :first-child, .framer-LqNyz.framer-v-1s2cfmh .framer-2ofiqx > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dJdHhhAFi\":{\"layout\":[\"fixed\",\"auto\"]},\"dBjPSjmbz\":{\"layout\":[\"fixed\",\"auto\"]},\"rTdYQ4M5A\":{\"layout\":[\"fixed\",\"auto\"]},\"o2rJLjwkI\":{\"layout\":[\"fixed\",\"auto\"]},\"vDJCODqzP\":{\"layout\":[\"fixed\",\"auto\"]},\"Neowa3Xxw\":{\"layout\":[\"fixed\",\"auto\"]},\"HhN2LTpf_\":{\"layout\":[\"fixed\",\"auto\"]},\"JDZlM7bpr\":{\"layout\":[\"fixed\",\"auto\"]},\"Hx4CkqXSj\":{\"layout\":[\"fixed\",\"auto\"]},\"vT53Gfa65\":{\"layout\":[\"fixed\",\"auto\"]},\"W18G7Xzz6\":{\"layout\":[\"fixed\",\"auto\"]},\"qoZUyBdQl\":{\"layout\":[\"fixed\",\"auto\"]},\"eZZWkmcue\":{\"layout\":[\"fixed\",\"auto\"]},\"OaSdsVTnt\":{\"layout\":[\"fixed\",\"auto\"]},\"y0C4W8oKx\":{\"layout\":[\"fixed\",\"auto\"]},\"SsRCPwpHC\":{\"layout\":[\"fixed\",\"auto\"]},\"k9tEgo3Hf\":{\"layout\":[\"fixed\",\"auto\"]},\"Bl7YeOvDX\":{\"layout\":[\"fixed\",\"auto\"]},\"eNHLYdbwl\":{\"layout\":[\"fixed\",\"auto\"]},\"DOe8fw3eH\":{\"layout\":[\"fixed\",\"auto\"]},\"qe1dAhXEJ\":{\"layout\":[\"fixed\",\"auto\"]},\"cJ3iYbiUK\":{\"layout\":[\"fixed\",\"auto\"]},\"Gj38WlCYS\":{\"layout\":[\"fixed\",\"auto\"]},\"V4U_4ItMm\":{\"layout\":[\"fixed\",\"auto\"]},\"SyX08y3M6\":{\"layout\":[\"fixed\",\"auto\"]},\"Qlw5m7SSk\":{\"layout\":[\"fixed\",\"auto\"]},\"Mm35WLbfG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXY1WACrc3=withCSS(Component,css,\"framer-LqNyz\");export default FramerXY1WACrc3;FramerXY1WACrc3.displayName=\"Top Nav\";FramerXY1WACrc3.defaultProps={height:84,width:1200};addPropertyControls(FramerXY1WACrc3,{variant:{options:[\"PBkoL4UZR\",\"dJdHhhAFi\",\"dBjPSjmbz\",\"rTdYQ4M5A\",\"o2rJLjwkI\",\"vDJCODqzP\",\"Neowa3Xxw\",\"HhN2LTpf_\",\"JDZlM7bpr\",\"Hx4CkqXSj\",\"vT53Gfa65\",\"W18G7Xzz6\",\"qoZUyBdQl\",\"eZZWkmcue\",\"OaSdsVTnt\",\"y0C4W8oKx\",\"SsRCPwpHC\",\"k9tEgo3Hf\",\"Bl7YeOvDX\",\"eNHLYdbwl\",\"DOe8fw3eH\",\"qe1dAhXEJ\",\"cJ3iYbiUK\",\"Gj38WlCYS\",\"V4U_4ItMm\",\"SyX08y3M6\",\"Qlw5m7SSk\",\"Mm35WLbfG\"],optionTitles:[\"Desktop - Home\",\"Desktop - About Us\",\"Desktop - Services\",\"Desktop - Pricing\",\"Desktop - Blog\",\"Desktop - Contact\",\"Desktop - Home - Transparent\",\"Tablet - Home\",\"Tablet - About Us\",\"Tablet - Services\",\"Tablet - Pricing\",\"Tablet - Blog\",\"Tablet - Contact\",\"Tablet - Home - Transparent\",\"Mobile - Home\",\"Mobile - Home - Open\",\"Mobile - About Us\",\"Mobile - About Us - Open\",\"Mobile - Services\",\"Mobile - Services - Opened\",\"Mobile - Pricing\",\"Mobile - Pricing - Opened\",\"Mobile - Blog\",\"Mobile - Blog - Opened\",\"Mobile - Contact\",\"Mobile - Contact - Opened\",\"Mobile - Home - Transparent\",\"Mobile - Home - Transparent - Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXY1WACrc3,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...LogoFonts,...MenuLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXY1WACrc3\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dJdHhhAFi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dBjPSjmbz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rTdYQ4M5A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o2rJLjwkI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vDJCODqzP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Neowa3Xxw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HhN2LTpf_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JDZlM7bpr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Hx4CkqXSj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vT53Gfa65\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W18G7Xzz6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qoZUyBdQl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eZZWkmcue\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OaSdsVTnt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y0C4W8oKx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SsRCPwpHC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k9tEgo3Hf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bl7YeOvDX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eNHLYdbwl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DOe8fw3eH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qe1dAhXEJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cJ3iYbiUK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gj38WlCYS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V4U_4ItMm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SyX08y3M6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qlw5m7SSk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mm35WLbfG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"84\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XY1WACrc3.map"],
  "mappings": "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",
  "names": ["Pattern", "props", "patternType", "front", "back", "radius", "scale", "shouldAnimate", "direction", "diagonal", "duration", "isCanvas", "RenderTarget", "pattern", "position", "size", "repeat", "blendMode", "filter", "addBackground", "backgroundPosAnimation", "frontHex", "Color", "backHex", "frontWithoutHex", "backWithoutHex", "factor", "xScale", "yScale", "p", "motion", "addPropertyControls", "ControlType", "PatternFonts", "getFonts", "Pattern", "PatternControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "color", "height", "id", "scale", "type", "width", "props", "_ref", "_ref1", "_humanReadableEnumMap_type", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UjKQOh_GD", "eBLrwE2iO", "RriglqH4v", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerdibiyK5ot", "withCSS", "dibiyK5ot_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStack", "formatTimeOrDate", "outputType", "showYear", "showMonth", "showWeekday", "showMinutes", "showSeconds", "timeFormat", "monthFormat", "localCode", "date", "onlyYearIsShown", "defaultProps", "Time", "props", "mergedProps", "color", "font", "tabularFont", "useLocaleCode", "getTextContent", "te", "timeoutRef", "pe", "updateCountdown", "node", "prev", "tick", "next", "textContent", "visible", "setIsVisible", "ye", "isCanvas", "RenderTarget", "ue", "Z", "p", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "u", "css", "FramerV5nGfGfGC", "withCSS", "V5nGfGfGC_default", "addPropertyControls", "ControlType", "addFonts", "GraphicPatternFonts", "getFonts", "dibiyK5ot_default", "LogoFonts", "V5nGfGfGC_default", "TimeDateFonts", "Time", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "RichText2", "Link", "css", "FramerIOJnH9t8g", "withCSS", "IOJnH9t8g_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PFHTFROiN", "pTSRtOIWT", "vUdE704SQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter17sbsja", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerMBWHXQP6D", "withCSS", "MBWHXQP6D_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "V5nGfGfGC_default", "MenuLinkFonts", "MBWHXQP6D_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapn3q3fq", "args", "onTap1s5ew50", "onTap6hzwiw", "onTap1kgtznu", "onTap1gr5o3u", "onTap1gp5tm7", "onTapyq304g", "onTap1q8wg4c", "onTapv72x9q", "onTapkzet67", "onTapvs8x6f", "onTap1dnsxzm", "onTap74d7qg", "onTap1x5n9f", "vUdE704SQizu9gt", "overlay", "paginationInfo", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "isDisplayed4", "isDisplayed5", "ref2", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "l", "resolvedLinks5", "AnimatePresence", "Floating", "RichText2", "Link", "resolvedLinks6", "resolvedLinks7", "css", "FramerXY1WACrc3", "withCSS", "XY1WACrc3_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
