{"version":3,"file":"m7dP0Rj1M.txfCfcRq.mjs","names":["useRef","useState","useMemo","animation","text","fonts","css","className","css","SVG","useState","addPropertyOverrides","SVG","MotionDivWithFX","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","transition2","animation","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","useRef","React.useId","className","SVG1","addPropertyOverrides","MotionDivWithFX","cycleOrder","serializationHash","variantClassNames","transition1","transition2","animation","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","useRef","React.useId","className","addPropertyOverrides","BulletPoint","Button2","WhiteXSpaceLogoFonts","WhiteXSpaceLogo","cycleOrder","serializationHash","variantClassNames","transition1","animation","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","React.useId","sharedStyle.className","sharedStyle1.className","sharedStyle2.className","sharedStyle3.className","className","_Fragment","FormPlainTextInput","css","sharedStyle.css","sharedStyle1.css","sharedStyle2.css","sharedStyle3.css","sharedStyle.fonts","sharedStyle1.fonts","sharedStyle2.fonts","sharedStyle3.fonts","e","u","w","y","x.useContext","c","x.useMemo","b","v","k","I","l","g","P","B","L","d","x.useRef","x.useId","s","p","n","i","x.Fragment","m","f","a","o","t","e","u","h.useContext","c","h.useMemo","l","x","y","L","k","I","C","m","h.useRef","h.useId","s","p","o","n","h.Fragment","f","d","a","i","t","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","useRef","React.useId","className","WhiteXSpaceLogo","ButtonMain","LinksProduct","LinksResources","LinksCommunity","React.useContext","React.useMemo","React.Fragment","useRef","React.useId","sharedStyle.className","sharedStyle1.className","className","sharedStyle.css","sharedStyle1.css","sharedStyle.fonts","sharedStyle1.fonts"],"sources":["https:/framerusercontent.com/modules/x9N74fQKlr6QLCpcJIqg/ItbrXvATfgkGTI2S7SIM/ScrambleAppear_Prod.js","https:/framerusercontent.com/modules/BaKdm2IigPg7n0Z3smpA/dDaSsFQM8MzE22Gy9DM6/cujOTRiYI.js","https:/framerusercontent.com/modules/UbKcCD1x6GRJyxEDKLQX/2wryWNOyouaT1ft3YQdf/ZQEeEW95r.js","https:/framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js","https:/framerusercontent.com/modules/hqMKyy6nB5uNJASAsRxK/jM91eCxFQD0NafP26L9w/bn47y1D_Z.js","https:/framerusercontent.com/modules/HIBI8WT8ON98KA4rAoVP/LLu8LCJWo1DPPK06YhMX/ri9rKyP3l.js","https:/framerusercontent.com/modules/5mwqWehVsKEO1ubhNgJs/e8tz0QPLCFN8WNtfBwoc/JrZXf30Vm.js","https:/framerusercontent.com/modules/hP7GepOZhiRUVDuSMzGA/KSmZYjJTpixl4bS9QqHk/pPmogNY6m.js","https:/framerusercontent.com/modules/JQRKwZv6rgdZ4OfkcuSU/45PpCkD31n6caHb3DNDn/dQcuWx460.js","https:/framerusercontent.com/modules/vM0V69onE26pARKsng6m/7gayXoKgSo0Skxb5TeSP/PHcq3EM68.js","https:/framerusercontent.com/modules/zZppLLpxprd2pWldXd36/5dXA2s9eZmv7V2kVGQwM/m7dP0Rj1M.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef,useMemo}from\"react\";import{useInView,animate}from\"framer-motion\";const HIDDEN=0;const SCRAMBLED=1;const REVEALED=2;/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function ScrambleAppear(props){var _props_style;const{from,scrambledLetters,text,scrambledColor,animation,speed}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const Tag=props.tag;const ref=useRef(null);const encryptedText=useRef(randomString(props));const[progress,setProgress]=useState(0);const[currentAnimation,setCurrentAnimation]=useState(null);const intervalRef=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const characterDelay=mapRange(speed,1,100,.2,.002)// seconds per character\n;const shuffledIndices=useMemo(()=>{if(from===\"random\"){const indices=Array.from({length:text.length},(_,i)=>i);return indices.sort(()=>Math.random()-.5);}return[];},[text,from]);const runAnimation=()=>{if(!isCanvas){if(currentAnimation){currentAnimation.stop();}if(intervalRef.current){clearInterval(intervalRef.current);}// Add timeout for delay\nsetTimeout(()=>{intervalRef.current=setInterval(()=>{encryptedText.current=randomString(props);},characterDelay*1e3);setCurrentAnimation(animate(0,1,{type:\"ease\",ease:\"linear\",duration:characterDelay*(text.length+scrambledLetters),onUpdate:setProgress,onComplete:()=>{if(intervalRef.current){clearInterval(intervalRef.current);}}}));},animation.delay*1e3);}};useEffect(()=>{if(animation.trigger==\"appear\"){runAnimation();}return()=>{if(intervalRef.current){clearInterval(intervalRef.current);}};},[]);useEffect(()=>{if(animation.trigger==\"layerInView\"){if(isInView){runAnimation();}else{if(currentAnimation){currentAnimation.stop();setProgress(0);if(intervalRef.current){clearInterval(intervalRef.current);}}}}},[isInView]);let segments=[];switch(from){case\"left\":{const leftCutoff=mapRange(progress,0,1,-scrambledLetters,text.length);const rightCutoff=mapRange(progress,0,1,0,text.length+scrambledLetters);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),REVEALED],[encryptedText.current.substring(clamp(leftCutoff,0,text.length),clamp(rightCutoff,0,text.length)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,text.length)),HIDDEN]);break;}case\"center\":{const center=Math.ceil(text.length/2);const letters=Math.max(Math.floor(scrambledLetters/2),1);const leftCutoff=mapRange(progress,0,1,center,-letters);const rightCutoff=mapRange(progress,0,1,center+letters,0);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),HIDDEN],[encryptedText.current.substring(clamp(leftCutoff,0,center),clamp(rightCutoff,0,center)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,center),clamp(text.length-rightCutoff,center,text.length)),REVEALED],[encryptedText.current.substring(clamp(text.length-leftCutoff,center,text.length),clamp(text.length-rightCutoff,center,text.length)),SCRAMBLED],[text.substring(clamp(text.length-leftCutoff,0,text.length),text.length),HIDDEN]);break;}case\"right\":{const leftCutoff=mapRange(progress,0,1,text.length,-scrambledLetters);const rightCutoff=mapRange(progress,0,1,text.length+scrambledLetters,0);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),HIDDEN],[encryptedText.current.substring(clamp(leftCutoff,0,text.length),clamp(rightCutoff,0,text.length)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,text.length),text.length),REVEALED]);break;}case\"random\":{// Show all hidden characters if progress is 0 (during delay)\nif(progress===0){segments.push([text,HIDDEN]);}else if(progress>=1){segments.push([text,REVEALED]);}else{// Calculate two thresholds for each character based on its position in shuffledIndices\nfor(let i=0;i<text.length;i++){const indexInSequence=shuffledIndices.indexOf(i);// Adjust the windows to maintain consistent number of scrambled letters\nconst scrambleWindow=scrambledLetters/text.length// Size of the \"window\" of scrambled letters\n;const startScrambleAt=indexInSequence/text.length*(1-scrambleWindow)// When this character starts scrambling\n;const startRevealAt=startScrambleAt+scrambleWindow// When this character starts revealing\n;if(progress>=startRevealAt){// Past reveal threshold - show actual character\nsegments.push([text[i],REVEALED]);}else if(progress>=startScrambleAt){// Between scramble and reveal threshold - show scrambled\nsegments.push([encryptedText.current[i],SCRAMBLED]);}else{// Before scramble threshold - show hidden\nsegments.push([text[i],HIDDEN]);}}}break;}}return /*#__PURE__*/_jsx(Tag,{ref:ref,style:{color:props.color,userSelect:\"none\",pointerEvents:\"none\",margin:0,whiteSpace:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)?undefined:\"nowrap\",...props.font,...props.style},children:isCanvas?text:consolidateSegments(segments).map(([text,state],index)=>{switch(state){case HIDDEN:return /*#__PURE__*/_jsx(\"span\",{style:{opacity:0},children:text},index);case SCRAMBLED:return scrambledColor?/*#__PURE__*/_jsx(\"span\",{style:{color:scrambledColor},children:text},index):text;case REVEALED:return text;}})});}ScrambleAppear.displayName=\"Scramble Appear\";addPropertyControls(ScrambleAppear,{text:{type:ControlType.String,defaultValue:\"Learn Framer With Framer University\",displayTextArea:true},characters:{type:ControlType.String,defaultValue:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?~\",displayTextArea:true},from:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"center\",\"right\",\"random\"],optionTitles:[\"Left\",\"Center\",\"Right\",\"Random\"]},font:{type:\"font\",controls:\"extended\",defaultFontType:\"monospace\",defaultValue:{fontSize:24,lineHeight:1.4}},color:{type:ControlType.Color,defaultValue:\"#000\"},scrambledColor:{type:ControlType.Color,optional:true,title:\"Scrambled\"},speed:{type:ControlType.Number,defaultValue:75,min:1,max:100,step:1,unit:\"%\"},scrambledLetters:{type:ControlType.Number,defaultValue:10,min:1,step:1,displayStepper:true,title:\"Letters\"},animation:{type:ControlType.Object,icon:\"effect\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.trigger!==\"layerInView\"},delay:{type:ControlType.Number,defaultValue:0,min:0,step:.01}}},options:{type:ControlType.Object,buttonTitle:\"Options\",controls:{matchCase:{type:ControlType.Boolean,defaultValue:true},keepSpaces:{type:ControlType.Boolean,defaultValue:false,title:\"Spaces\",enabledTitle:\"Keep\",disabledTitle:\"Replace\",description:\"\"}}},userSelect:{type:ControlType.Boolean,defaultValue:true},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});const randomString=props=>{const length=props.text.length;const characters=props.characters;const originalText=props.text;const matchCase=props.options.matchCase;const keepSpaces=props.options.keepSpaces;if(length<=0){return\"\";}let result=\"\";let lastChar=\"\";for(let i=0;i<length;i++){const originalChar=originalText[i];// Preserve spaces and tabs if keepSpaces is true\nif(keepSpaces&&(originalChar===\" \"||originalChar===\"\t\")){result+=originalChar;continue;}let newChar;do{newChar=characters[Math.floor(Math.random()*characters.length)];// Match case if matchCase is true\nif(matchCase&&originalChar){newChar=originalChar===originalChar.toUpperCase()?newChar.toUpperCase():newChar.toLowerCase();}}while(newChar===lastChar&&characters.length>=8)result+=newChar;lastChar=newChar;}return result;};function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}function clamp(value,min,max){return Math.max(min,Math.min(value,max));}function consolidateSegments(segments){return segments.filter(([text])=>text.length>0).reduce((acc,curr)=>{// If array is empty or last segment has different state, add new segment\nif(acc.length===0||acc[acc.length-1][1]!==curr[1]){acc.push(curr);}else{// Combine text with the last segment that has the same state\nacc[acc.length-1][0]+=curr[0];}return acc;},[]);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrambleAppear\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrambleAppear_Prod.map","// Generated by Framer (29d106d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Futura PT Book\",\"CUSTOM;Futura PT Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Futura PT Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/wYx1lIvoIUbozu05fOTqyY40m0.woff2\"},{family:\"Futura PT Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/OqUG1yUMjiocYtyny6sEwSrmsLE.woff2\"}]}];export const css=['.framer-ydY95 .framer-styles-preset-1gpz8k4:not(.rich-text-wrapper), .framer-ydY95 .framer-styles-preset-1gpz8k4.rich-text-wrapper p { --framer-font-family: \"Futura PT Book\", \"Futura PT Book Placeholder\", sans-serif; --framer-font-family-bold: \"Futura PT Bold\", \"Futura PT Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-95cc9f32-1915-42a0-9a93-a137086562b6, #08090a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-ydY95\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (7d01136)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-62uNe .framer-styles-preset-1y4qggu:not(.rich-text-wrapper), .framer-62uNe .framer-styles-preset-1y4qggu.rich-text-wrapper a { --framer-link-current-text-background-color: rgba(30, 227, 187, 0.1); --framer-link-current-text-background-padding: 4px 8px 4px 8px; --framer-link-current-text-background-radius: 16px; --framer-link-current-text-color: var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, #5cf8d3); --framer-link-hover-text-background-color: rgba(92, 247, 211, 0.07); --framer-link-hover-text-background-padding: 2px 4px 2px 4px; --framer-link-hover-text-background-radius: 8px; --framer-link-hover-text-color: var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, #5cf8d3); --framer-link-hover-text-decoration: none; --framer-link-text-background-padding: 2px 4px 2px 4px; --framer-link-text-background-radius: 4px; --framer-link-text-decoration: none; transition-delay: 0s; transition-duration: 0.4s; transition-property: color; transition-timing-function: cubic-bezier(0.44, 0, 0.56, 1); }\"];export const className=\"framer-62uNe\";\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{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map","// Generated by Framer (7d01136)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,SVG as SVG1,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const MotionDivWithFX=withFX(motion.div);const enabledGestures={vGXcGA2vk:{hover:true}};const cycleOrder=[\"vGXcGA2vk\",\"eAsO9liED\",\"y_OlWlKGO\",\"Ufylewone\"];const serializationHash=\"framer-D9Trg\";const variantClassNames={eAsO9liED:\"framer-v-15v8p8o\",Ufylewone:\"framer-v-1h1g9w8\",vGXcGA2vk:\"framer-v-wir4rs\",y_OlWlKGO:\"framer-v-wle137\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:90,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"icon only\":\"y_OlWlKGO\",\"new-logo\":\"Ufylewone\",\"Variant 1\":\"vGXcGA2vk\",text:\"eAsO9liED\"};const getProps=({color,height,id,width,...props})=>{return{...props,BxfCTw1OY:color??props.BxfCTw1OY??\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vGXcGA2vk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,BxfCTw1OY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vGXcGA2vk\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"eAsO9liED\",\"Ufylewone\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"y_OlWlKGO\",\"Ufylewone\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"Ufylewone\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wir4rs\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vGXcGA2vk\",ref:refBinding,style:{...style},...addPropertyOverrides({\"vGXcGA2vk-hover\":{\"data-framer-name\":undefined},eAsO9liED:{\"data-framer-name\":\"text\"},Ufylewone:{\"data-framer-name\":\"new-logo\"},y_OlWlKGO:{\"data-framer-name\":\"icon only\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-173w8je-container\",\"data-framer-name\":\"WhitexSpace Icon only Logo\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"c8Zq7P7BY-container\",name:\"WhitexSpace Icon only Logo\",nodeId:\"c8Zq7P7BY\",rendersWithMotion:true,scopeId:\"bn47y1D_Z\",children:/*#__PURE__*/_jsx(SVG,{customColor:BxfCTw1OY,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"112\" height=\"128\" viewBox=\"0 0 112 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M70.5026 38.6249L70.3452 38.6206H70.3367\" fill=\"#1B2022\"/> <path d=\"M59.4878 38.29L59.4368 38.3666L59.4878 38.29Z\" fill=\"#1B2022\"/> <path d=\"M78.3734 89.6822L111.5 38.4671H99.3593L72.3072 80.2996L61.8142 64.0746L78.3775 38.4671H66.2327C64.4251 41.2573 57.4039 52.1108 55.7398 54.6879L53.7764 51.6519L53.5961 51.3733H53.6248L45.1853 38.3196C22.232 11.024 73.5245 -5.67625 71.6513 30.0473L80.3121 18.3211C68.4502 -17.6114 15.3501 4.79621 33.1307 38.463H33.1061C33.266 38.7088 48.907 62.8864 49.6694 64.0705L39.1805 80.2914L12.1284 38.463H0L33.1266 89.6781H45.2509L55.7439 73.4613L66.2368 89.6822C89.1902 116.986 37.8976 133.67 39.7708 97.9544L31.11 109.681C42.9064 145.511 95.9122 123.353 78.3734 89.6822Z\" fill=\"#1B2022\"/> </svg>',description:\"Decorative logo for the brand\",height:\"100%\",id:\"c8Zq7P7BY\",layoutId:\"c8Zq7P7BY\",lineCap:\"butt\",lineJoin:\"miter\",name:\"WhitexSpace Icon only Logo\",style:{height:\"100%\",width:\"100%\"},title:\"White x Space Icon logo\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-148935n\",\"data-framer-name\":\"white x space logo text\",layoutDependency:layoutDependency,layoutId:\"uvp56KInZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-BxfCTw1OY-bn47y1D_Z))\"},children:\"WHITE\"})}),className:\"framer-10t4nu5\",fonts:[\"CUSTOM;Futura PT Medium\"],layoutDependency:layoutDependency,layoutId:\"dWoMf0G_N\",style:{\"--extracted-a0htzi\":\"var(--variable-reference-BxfCTw1OY-bn47y1D_Z)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-BxfCTw1OY-bn47y1D_Z\":BxfCTw1OY},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-kjhths\",layoutDependency:layoutDependency,layoutId:\"TczDM6O8L\",children:/*#__PURE__*/_jsx(SVG1,{className:\"framer-ic75kz\",\"data-framer-name\":\"x\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BDrhA3wVb\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 18\"><path d=\"M 14.116 12.549 L 10.153 8.586 L 14.115 4.623 L 12.079 2.585 L 8.115 6.548 L 4.153 2.585 L 2.116 4.623 L 6.077 8.586 L 2.116 12.548 L 4.154 14.585 L 8.115 10.622 L 12.076 14.585 Z\" fill=\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\"></path></svg>',svgContentId:12286554273,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-BxfCTw1OY-bn47y1D_Z))\"},children:\"SPACE\"})}),className:\"framer-k15sdc\",fonts:[\"CUSTOM;Futura PT Medium\"],layoutDependency:layoutDependency,layoutId:\"h5bk5TiZq\",style:{\"--extracted-a0htzi\":\"var(--variable-reference-BxfCTw1OY-bn47y1D_Z)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-BxfCTw1OY-bn47y1D_Z\":BxfCTw1OY},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(SVG1,{className:\"framer-ymg96d\",layoutDependency:layoutDependency,layoutId:\"UhRnDBWEd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142.436 32\" overflow=\"visible\"></svg>',withExternalLayout:true,...addPropertyOverrides({Ufylewone:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142.436 32\" overflow=\"visible\"><g><path d=\"M 57.037 12.702 L 54.451 12.702 L 54.451 24.128 L 51.071 24.128 L 51.071 12.702 L 49.657 12.702 L 49.657 9.596 L 51.071 9.596 L 51.071 4.28 L 54.451 4.28 L 54.451 9.596 L 57.037 9.596 Z M 45.603 9.596 L 48.983 9.596 L 48.983 24.128 L 45.603 24.128 Z M 45.12 3.59 C 45.12 2.347 46.051 1.415 47.293 1.415 C 48.534 1.415 49.465 2.347 49.465 3.59 C 49.465 4.833 48.534 5.765 47.293 5.765 C 46.051 5.765 45.12 4.833 45.12 3.59 Z M 31.649 24.128 L 31.649 8.309 L 35.029 0.936 L 35.029 10.839 C 36.478 9.354 38.064 9.216 38.926 9.216 C 41.582 9.216 42.789 10.597 43.203 11.184 C 44.1 12.495 44.134 14.187 44.134 15.222 L 44.134 24.128 L 40.754 24.128 L 40.754 15.533 C 40.754 14.67 40.754 13.738 40.099 13.013 C 39.72 12.599 39.064 12.254 38.202 12.254 C 37.064 12.254 36.167 12.806 35.719 13.462 C 35.236 14.152 35.029 15.257 35.029 17.121 L 35.029 24.128 Z M 0 1.104 L 3.794 1.104 L 9.864 16.5 L 16.072 0 L 22.073 16.5 L 28.35 1.105 L 32.144 1.105 L 21.866 25.613 L 15.865 9.285 L 9.795 25.613 L 0 1.105 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 63.862 12.155 C 63.711 12.138 63.558 12.13 63.406 12.13 C 62.233 12.13 61.475 12.613 61.026 13.062 C 60.544 13.511 60.164 14.201 59.992 14.926 L 66.63 14.926 L 68.019 16.317 L 66.65 17.687 L 59.75 17.687 C 59.819 18.723 60.268 19.897 60.992 20.621 C 61.556 21.186 62.208 21.419 62.835 21.506 L 60.315 24.03 C 59.646 23.736 59.024 23.312 58.44 22.727 C 57.06 21.346 56.301 19.344 56.301 17.169 C 56.301 14.926 57.095 12.751 58.612 11.198 C 59.349 10.461 60.226 9.891 61.268 9.558 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 68.286 18.905 L 70.883 16.306 L 68.287 13.706 L 69.621 12.369 L 72.219 14.969 L 74.816 12.369 L 76.15 13.706 L 73.554 16.306 L 76.15 18.905 L 74.815 20.241 L 72.219 17.642 L 69.622 20.241 Z\" fill=\"rgb(92,248,211)\"></path><path d=\"M 139.504 19.194 L 142.332 20.782 C 141.712 21.886 140.814 22.853 139.883 23.439 C 138.711 24.199 137.159 24.544 135.608 24.544 C 133.675 24.544 132.09 24.061 130.71 22.68 C 129.329 21.299 128.572 19.297 128.572 17.123 C 128.572 14.879 129.364 12.704 130.882 11.151 C 132.09 9.943 133.675 9.183 135.745 9.183 C 138.056 9.183 139.539 10.184 140.401 11.082 C 142.264 13.015 142.436 15.707 142.436 17.226 L 142.436 17.64 L 132.02 17.64 C 132.09 18.676 132.538 19.85 133.262 20.574 C 134.055 21.368 135.021 21.506 135.848 21.506 C 136.78 21.506 137.469 21.299 138.159 20.782 C 138.746 20.333 139.194 19.746 139.504 19.194 Z M 132.262 14.879 L 138.987 14.879 C 138.85 14.085 138.47 13.395 137.952 12.911 C 137.504 12.497 136.78 12.083 135.676 12.083 C 134.504 12.083 133.745 12.566 133.297 13.015 C 132.814 13.464 132.434 14.154 132.262 14.879 Z M 128.523 10.219 L 128.523 14.016 C 126.97 12.497 125.453 12.221 124.419 12.221 C 122.832 12.221 121.832 12.877 121.211 13.498 C 120.59 14.119 119.969 15.224 119.969 16.846 C 119.969 18.538 120.625 19.677 121.28 20.333 C 122.039 21.058 123.108 21.506 124.35 21.506 C 125.729 21.506 127.35 20.954 128.523 19.642 L 128.523 23.405 C 127.695 23.923 126.35 24.544 124.108 24.544 C 121.694 24.544 119.969 23.854 118.59 22.404 C 117.555 21.334 116.52 19.608 116.52 16.95 C 116.52 14.223 117.659 12.394 118.728 11.323 C 119.866 10.184 121.694 9.183 124.556 9.183 C 125.661 9.183 126.97 9.356 128.523 10.219 Z M 112.045 11.254 L 112.045 9.563 L 115.425 9.563 L 115.425 24.095 L 112.045 24.095 L 112.045 22.577 C 110.562 24.302 108.734 24.544 107.699 24.544 C 103.216 24.544 100.663 20.816 100.663 16.812 C 100.663 12.083 103.905 9.183 107.733 9.183 C 108.803 9.183 110.665 9.46 112.045 11.255 Z M 108.147 12.221 C 105.699 12.221 104.112 14.292 104.112 16.881 C 104.112 19.401 105.699 21.506 108.147 21.506 C 110.286 21.506 112.252 19.953 112.252 16.915 C 112.252 13.74 110.286 12.221 108.147 12.221 Z M 88.945 22.404 L 88.945 32 L 85.565 32 L 85.565 9.563 L 88.945 9.563 L 88.945 11.151 C 90.186 9.667 91.807 9.183 93.256 9.183 C 97.084 9.183 100.326 12.117 100.326 16.743 C 100.326 21.644 96.739 24.544 93.29 24.544 C 92.497 24.544 90.462 24.268 88.945 22.404 Z M 92.842 12.221 C 90.704 12.221 88.738 13.74 88.738 16.915 C 88.738 19.953 90.704 21.506 92.842 21.506 C 95.291 21.506 96.877 19.401 96.877 16.881 C 96.877 14.292 95.291 12.221 92.842 12.221 Z M 78.64 13.793 C 78.721 13.917 78.836 14.022 78.982 14.119 C 79.189 14.258 79.396 14.327 80.12 14.706 L 81.845 15.569 C 82.604 15.949 83.328 16.329 83.88 16.915 C 84.673 17.709 84.949 18.607 84.949 19.608 C 84.949 20.92 84.466 22.059 83.673 22.922 C 83.521 23.088 83.357 23.245 83.184 23.39 L 80.951 21.154 C 80.974 21.134 80.996 21.113 81.017 21.092 C 81.293 20.816 81.5 20.367 81.5 19.953 C 81.5 19.539 81.362 19.194 81.052 18.848 C 80.638 18.434 80.155 18.193 79.603 17.951 L 78.362 17.364 C 77.706 17.054 76.913 16.674 76.361 16.122 L 76.338 16.098 Z M 82.598 9.83 C 82.658 9.866 82.717 9.903 82.776 9.943 C 83.259 10.253 83.914 10.806 84.432 11.738 L 81.914 13.395 C 81.614 12.915 81.081 12.331 80.245 12.186 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(SVG1,{className:\"framer-42h2he\",layoutDependency:layoutDependency,layoutId:\"zaa9HNoE7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57.037 25.613\" overflow=\"visible\"><path d=\"M 57.037 12.702 L 54.451 12.702 L 54.451 24.128 L 51.071 24.128 L 51.071 12.702 L 49.657 12.702 L 49.657 9.596 L 51.071 9.596 L 51.071 4.28 L 54.451 4.28 L 54.451 9.596 L 57.037 9.596 Z M 45.603 9.596 L 48.983 9.596 L 48.983 24.128 L 45.603 24.128 Z M 45.12 3.59 C 45.12 2.347 46.051 1.415 47.293 1.415 C 48.534 1.415 49.465 2.347 49.465 3.59 C 49.465 4.833 48.534 5.765 47.293 5.765 C 46.051 5.765 45.12 4.833 45.12 3.59 Z M 31.649 24.128 L 31.649 8.309 L 35.029 0.936 L 35.029 10.839 C 36.478 9.354 38.064 9.216 38.926 9.216 C 41.582 9.216 42.789 10.597 43.203 11.184 C 44.1 12.495 44.134 14.187 44.134 15.222 L 44.134 24.128 L 40.754 24.128 L 40.754 15.533 C 40.754 14.67 40.754 13.738 40.099 13.013 C 39.72 12.599 39.064 12.254 38.202 12.254 C 37.064 12.254 36.167 12.806 35.719 13.462 C 35.236 14.152 35.029 15.257 35.029 17.121 L 35.029 24.128 Z M 0 1.104 L 3.794 1.104 L 9.864 16.5 L 16.072 0 L 22.073 16.5 L 28.35 1.105 L 32.144 1.105 L 21.866 25.613 L 15.865 9.285 L 9.795 25.613 L 0 1.105 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG1,{className:\"framer-jklprn\",layoutDependency:layoutDependency,layoutId:\"LAGC0m0jx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.381 19.848\" overflow=\"visible\"><path d=\"M 7.381 8.422 L 4.794 8.422 L 4.794 19.848 L 1.414 19.848 L 1.414 8.422 L 0 8.422 L 0 5.316 L 1.414 5.316 L 1.414 0 L 4.794 0 L 4.794 5.316 L 7.381 5.316 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-ifgvth\",layoutDependency:layoutDependency,layoutId:\"O2XjnRlGN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.38 14.532\" overflow=\"visible\"><path d=\"M 0 0 L 3.38 0 L 3.38 14.532 L 0 14.532 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-1a3bz53\",layoutDependency:layoutDependency,layoutId:\"JCzxZOFRd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.346 4.349\" overflow=\"visible\"><path d=\"M 0 2.175 C 0 0.932 0.931 0 2.173 0 C 3.414 0 4.346 0.932 4.346 2.175 C 4.346 3.417 3.414 4.349 2.173 4.349 C 0.931 4.349 0 3.417 0 2.175 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-7y0d6g\",layoutDependency:layoutDependency,layoutId:\"mXUy9umgE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.485 23.192\" overflow=\"visible\"><path d=\"M 0 23.192 L 0 7.373 L 3.38 0 L 3.38 9.903 C 4.828 8.418 6.415 8.28 7.277 8.28 C 9.933 8.28 11.14 9.661 11.554 10.248 C 12.45 11.559 12.485 13.251 12.485 14.286 L 12.485 23.192 L 9.105 23.192 L 9.105 14.597 C 9.105 13.734 9.105 12.802 8.45 12.077 C 8.07 11.663 7.415 11.318 6.553 11.318 C 5.415 11.318 4.518 11.87 4.07 12.526 C 3.587 13.216 3.38 14.321 3.38 16.185 L 3.38 23.192 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-16dql17\",layoutDependency:layoutDependency,layoutId:\"KIy8Ysbx4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32.144 25.613\" overflow=\"visible\"><path d=\"M 0 1.104 L 3.794 1.104 L 9.864 16.5 L 16.072 0 L 22.073 16.5 L 28.35 1.105 L 32.144 1.105 L 21.866 25.613 L 15.865 9.285 L 9.795 25.613 L 0 1.105 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-w0koc5\",layoutDependency:layoutDependency,layoutId:\"WsCKeDrwm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.717 14.472\" overflow=\"visible\"><path d=\"M 7.561 2.597 C 7.409 2.58 7.257 2.572 7.105 2.572 C 5.932 2.572 5.173 3.055 4.725 3.504 C 4.242 3.952 3.863 4.643 3.69 5.368 L 10.328 5.368 L 11.717 6.758 L 10.348 8.129 L 3.449 8.129 C 3.518 9.165 3.966 10.338 4.69 11.063 C 5.255 11.628 5.907 11.861 6.534 11.948 L 4.013 14.472 C 3.344 14.177 2.723 13.754 2.138 13.169 C 0.759 11.788 0 9.786 0 7.611 C 0 5.368 0.793 3.193 2.311 1.64 C 3.047 0.903 3.925 0.332 4.967 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-1f9bqv8\",layoutDependency:layoutDependency,layoutId:\"ayTWBPhvw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.865 7.871\" overflow=\"visible\"><path d=\"M 0 6.536 L 2.597 3.936 L 0.001 1.337 L 1.335 0 L 3.933 2.599 L 6.53 0 L 7.865 1.337 L 5.269 3.936 L 7.865 6.535 L 6.529 7.871 L 3.933 5.272 L 1.337 7.871 Z\" fill=\"rgb(92,248,211)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG1,{className:\"framer-kg7vpo\",layoutDependency:layoutDependency,layoutId:\"Fq_YCVmO2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66.098 22.817\" overflow=\"visible\"><path d=\"M 63.166 10.01 L 65.995 11.598 C 65.374 12.703 64.477 13.669 63.546 14.256 C 62.373 15.015 60.822 15.361 59.27 15.361 C 57.337 15.361 55.752 14.877 54.373 13.497 C 52.992 12.116 52.234 10.114 52.234 7.939 C 52.234 5.696 53.027 3.521 54.545 1.968 C 55.752 0.759 57.337 0 59.407 0 C 61.718 0 63.201 1.001 64.064 1.899 C 65.926 3.832 66.098 6.524 66.098 8.043 L 66.098 8.457 L 55.682 8.457 C 55.752 9.493 56.2 10.666 56.924 11.391 C 57.717 12.185 58.683 12.323 59.511 12.323 C 60.442 12.323 61.131 12.116 61.822 11.598 C 62.408 11.149 62.856 10.563 63.166 10.01 Z M 55.924 5.696 L 62.649 5.696 C 62.512 4.902 62.132 4.211 61.614 3.728 C 61.166 3.314 60.442 2.9 59.339 2.9 C 58.166 2.9 57.407 3.383 56.959 3.832 C 56.476 4.28 56.097 4.971 55.924 5.696 Z M 52.185 1.036 L 52.185 4.833 C 50.632 3.314 49.116 3.038 48.081 3.038 C 46.494 3.038 45.494 3.693 44.873 4.315 C 44.253 4.936 43.632 6.041 43.632 7.663 C 43.632 9.355 44.287 10.494 44.942 11.149 C 45.701 11.874 46.77 12.323 48.012 12.323 C 49.392 12.323 51.012 11.771 52.185 10.459 L 52.185 14.222 C 51.358 14.739 50.012 15.361 47.77 15.361 C 45.356 15.361 43.632 14.67 42.252 13.221 C 41.218 12.15 40.183 10.425 40.183 7.767 C 40.183 5.04 41.321 3.21 42.39 2.14 C 43.528 1.001 45.356 0 48.219 0 C 49.323 0 50.632 0.173 52.185 1.036 Z M 35.707 2.071 L 35.707 0.38 L 39.087 0.38 L 39.087 14.912 L 35.707 14.912 L 35.707 13.393 C 34.224 15.119 32.396 15.361 31.361 15.361 C 26.878 15.361 24.326 11.633 24.326 7.629 C 24.326 2.9 27.568 0 31.396 0 C 32.465 0 34.327 0.276 35.707 2.071 Z M 31.81 3.038 C 29.361 3.038 27.775 5.109 27.775 7.698 C 27.775 10.217 29.361 12.323 31.81 12.323 C 33.948 12.323 35.914 10.77 35.914 7.732 C 35.914 4.556 33.948 3.038 31.81 3.038 Z M 12.607 13.221 L 12.607 22.817 L 9.227 22.817 L 9.227 0.38 L 12.607 0.38 L 12.607 1.968 C 13.849 0.483 15.47 0 16.918 0 C 20.746 0 23.988 2.934 23.988 7.56 C 23.988 12.461 20.402 15.361 16.953 15.361 C 16.159 15.361 14.125 15.085 12.607 13.221 Z M 16.504 3.038 C 14.366 3.038 12.4 4.556 12.4 7.732 C 12.4 10.77 14.366 12.323 16.504 12.323 C 18.953 12.323 20.54 10.217 20.54 7.698 C 20.54 5.109 18.953 3.038 16.504 3.038 Z M 2.302 4.61 C 2.383 4.734 2.499 4.839 2.645 4.936 C 2.852 5.074 3.059 5.143 3.783 5.523 L 5.507 6.386 C 6.266 6.766 6.99 7.145 7.542 7.732 C 8.335 8.526 8.611 9.423 8.611 10.425 C 8.611 11.736 8.128 12.875 7.335 13.738 C 7.183 13.905 7.02 14.061 6.847 14.206 L 4.613 11.97 C 4.636 11.95 4.659 11.93 4.68 11.909 C 4.956 11.633 5.162 11.184 5.162 10.77 C 5.162 10.355 5.025 10.01 4.714 9.665 C 4.3 9.251 3.817 9.009 3.266 8.768 L 2.024 8.181 C 1.369 7.87 0.575 7.49 0.024 6.938 L 0 6.915 Z M 6.261 0.646 C 6.32 0.682 6.379 0.72 6.439 0.759 C 6.921 1.07 7.577 1.622 8.094 2.554 L 5.576 4.211 C 5.277 3.732 4.743 3.148 3.907 3.003 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG1,{className:\"framer-1oa8743\",layoutDependency:layoutDependency,layoutId:\"BVM5ck9Y2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.864 15.361\" overflow=\"visible\"><path d=\"M 10.932 10.01 L 13.761 11.598 C 13.14 12.703 12.243 13.669 11.311 14.256 C 10.139 15.015 8.588 15.361 7.036 15.361 C 5.103 15.361 3.518 14.877 2.138 13.497 C 0.758 12.116 0 10.114 0 7.939 C 0 5.696 0.793 3.521 2.311 1.968 C 3.518 0.759 5.103 0 7.173 0 C 9.484 0 10.967 1.001 11.83 1.899 C 13.692 3.832 13.864 6.524 13.864 8.043 L 13.864 8.457 L 3.448 8.457 C 3.518 9.493 3.966 10.666 4.69 11.391 C 5.483 12.185 6.449 12.323 7.277 12.323 C 8.208 12.323 8.897 12.116 9.587 11.598 C 10.174 11.149 10.622 10.563 10.932 10.01 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-puhit2\",layoutDependency:layoutDependency,layoutId:\"aQnYuNkQP\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.725 2.796\" overflow=\"visible\"><path d=\"M 0 2.796 L 6.725 2.796 C 6.588 2.002 6.208 1.312 5.69 0.828 C 5.242 0.414 4.518 0 3.414 0 C 2.242 0 1.483 0.483 1.035 0.932 C 0.552 1.381 0.172 2.071 0 2.796 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-q4j0gp\",layoutDependency:layoutDependency,layoutId:\"oeBA44wJE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.003 15.361\" overflow=\"visible\"><path d=\"M 12.003 1.036 L 12.003 4.833 C 10.45 3.314 8.933 3.038 7.898 3.038 C 6.311 3.038 5.311 3.693 4.69 4.315 C 4.07 4.936 3.449 6.041 3.449 7.663 C 3.449 9.355 4.104 10.494 4.76 11.149 C 5.518 11.874 6.587 12.323 7.829 12.323 C 9.209 12.323 10.829 11.771 12.003 10.459 L 12.003 14.222 C 11.175 14.739 9.829 15.361 7.588 15.361 C 5.173 15.361 3.449 14.67 2.069 13.221 C 1.035 12.15 0 10.425 0 7.767 C 0 5.04 1.138 3.21 2.207 2.14 C 3.345 1.001 5.173 0 8.036 0 C 9.14 0 10.45 0.173 12.003 1.036 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-12gu8j8\",layoutDependency:layoutDependency,layoutId:\"SIIzM0bME\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.761 15.361\" overflow=\"visible\"><path d=\"M 11.381 2.071 L 11.381 0.38 L 14.761 0.38 L 14.761 14.912 L 11.381 14.912 L 11.381 13.393 C 9.898 15.119 8.07 15.361 7.036 15.361 C 2.552 15.361 0 11.633 0 7.629 C 0 2.9 3.242 0 7.07 0 C 8.139 0 10.002 0.276 11.381 2.071 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-uad721\",layoutDependency:layoutDependency,layoutId:\"i0hSzLyEA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.139 9.285\" overflow=\"visible\"><path d=\"M 4.035 0 C 1.586 0 0 2.071 0 4.66 C 0 7.18 1.586 9.285 4.035 9.285 C 6.173 9.285 8.139 7.732 8.139 4.694 C 8.139 1.519 6.173 0 4.035 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-1y9zf4j\",layoutDependency:layoutDependency,layoutId:\"V0vltwu3K\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.761 22.817\" overflow=\"visible\"><path d=\"M 3.38 13.221 L 3.38 22.817 L 0 22.817 L 0 0.38 L 3.38 0.38 L 3.38 1.968 C 4.622 0.483 6.243 0 7.691 0 C 11.519 0 14.761 2.934 14.761 7.56 C 14.761 12.461 11.174 15.361 7.726 15.361 C 6.932 15.361 4.897 15.085 3.38 13.221 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-3i4ll\",layoutDependency:layoutDependency,layoutId:\"PRH_L9dto\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.139 9.285\" overflow=\"visible\"><path d=\"M 4.104 0 C 1.966 0 0 1.519 0 4.694 C 0 7.732 1.966 9.285 4.104 9.285 C 6.553 9.285 8.139 7.18 8.139 4.66 C 8.139 2.071 6.553 0 4.104 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-cey69o\",layoutDependency:layoutDependency,layoutId:\"aY2leeiO1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.611 9.596\" overflow=\"visible\"><path d=\"M 2.302 0 C 2.383 0.124 2.499 0.229 2.645 0.326 C 2.852 0.464 3.059 0.533 3.783 0.913 L 5.507 1.776 C 6.266 2.156 6.99 2.535 7.542 3.122 C 8.335 3.916 8.611 4.813 8.611 5.814 C 8.611 7.126 8.128 8.265 7.335 9.128 C 7.183 9.295 7.02 9.451 6.847 9.596 L 4.613 7.36 C 4.636 7.34 4.659 7.32 4.68 7.299 C 4.956 7.023 5.162 6.574 5.162 6.16 C 5.162 5.745 5.025 5.4 4.714 5.055 C 4.3 4.641 3.817 4.399 3.266 4.158 L 2.024 3.571 C 1.369 3.26 0.575 2.88 0.024 2.328 L 0 2.305 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-1jqlcgk\",layoutDependency:layoutDependency,layoutId:\"QmegM04OX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.187 3.565\" overflow=\"visible\"><path d=\"M 2.353 0 C 2.413 0.036 2.472 0.074 2.531 0.113 C 3.014 0.424 3.669 0.976 4.187 1.908 L 1.669 3.565 C 1.369 3.085 0.836 2.502 0 2.356 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D9Trg.framer-1fgwofq, .framer-D9Trg .framer-1fgwofq { display: block; }\",\".framer-D9Trg.framer-wir4rs { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-D9Trg .framer-173w8je-container { aspect-ratio: 0.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 28px; }\",\".framer-D9Trg .framer-148935n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-D9Trg .framer-10t4nu5, .framer-D9Trg .framer-k15sdc { -webkit-user-select: none; flex: none; height: auto; overflow: visible; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-D9Trg .framer-kjhths { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-D9Trg .framer-ic75kz { flex: none; height: 18px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 17px; }\",\".framer-D9Trg .framer-ymg96d { height: 32px; position: relative; width: 143px; }\",\".framer-D9Trg .framer-42h2he { height: 26px; left: 0px; position: absolute; top: 0px; width: 57px; }\",\".framer-D9Trg .framer-jklprn { height: 20px; left: 50px; position: absolute; top: 5px; width: 8px; }\",\".framer-D9Trg .framer-ifgvth { height: 15px; left: 46px; position: absolute; top: 10px; width: 4px; }\",\".framer-D9Trg .framer-1a3bz53 { height: 5px; left: 45px; position: absolute; top: 2px; width: 5px; }\",\".framer-D9Trg .framer-7y0d6g { height: 23px; left: 32px; position: absolute; top: 1px; width: 13px; }\",\".framer-D9Trg .framer-16dql17 { height: 26px; left: 0px; position: absolute; top: 0px; width: 32px; }\",\".framer-D9Trg .framer-w0koc5 { height: 15px; left: 57px; position: absolute; top: 10px; width: 12px; }\",\".framer-D9Trg .framer-1f9bqv8 { height: 8px; left: 69px; position: absolute; top: 13px; width: 8px; }\",\".framer-D9Trg .framer-kg7vpo { height: 23px; left: 77px; position: absolute; top: 9px; width: 66px; }\",\".framer-D9Trg .framer-1oa8743 { height: 16px; left: 52px; position: absolute; top: 0px; width: 14px; }\",\".framer-D9Trg .framer-puhit2 { height: 3px; left: 56px; position: absolute; top: 3px; width: 7px; }\",\".framer-D9Trg .framer-q4j0gp { height: 16px; left: 40px; position: absolute; top: 0px; width: 12px; }\",\".framer-D9Trg .framer-12gu8j8 { height: 16px; left: 25px; position: absolute; top: 0px; width: 15px; }\",\".framer-D9Trg .framer-uad721 { height: 10px; left: 28px; position: absolute; top: 3px; width: 8px; }\",\".framer-D9Trg .framer-1y9zf4j { height: 23px; left: 9px; position: absolute; top: 0px; width: 15px; }\",\".framer-D9Trg .framer-3i4ll { height: 10px; left: 13px; position: absolute; top: 3px; width: 8px; }\",\".framer-D9Trg .framer-cey69o { height: 10px; left: 0px; position: absolute; top: 5px; width: 9px; }\",\".framer-D9Trg .framer-1jqlcgk { height: 4px; left: 4px; position: absolute; top: 1px; width: 4px; }\",\".framer-D9Trg.framer-v-15v8p8o.framer-wir4rs, .framer-D9Trg.framer-v-wle137.framer-wir4rs, .framer-D9Trg.framer-v-1h1g9w8.framer-wir4rs { cursor: unset; }\",\".framer-D9Trg.framer-v-wir4rs.hover .framer-148935n { gap: 3px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"eAsO9liED\":{\"layout\":[\"auto\",\"auto\"]},\"y_OlWlKGO\":{\"layout\":[\"auto\",\"auto\"]},\"Ufylewone\":{\"layout\":[\"auto\",\"auto\"]},\"K_qPDFsHk\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"BxfCTw1OY\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerTrackingIds [{\"id\":\"home-via-logo\",\"nodeId\":\"vGXcGA2vk\",\"type\":\"click\"}]\n */const Framerbn47y1D_Z=withCSS(Component,css,\"framer-D9Trg\");export default Framerbn47y1D_Z;Framerbn47y1D_Z.displayName=\"White x Space logo\";Framerbn47y1D_Z.defaultProps={height:32,width:180};addPropertyControls(Framerbn47y1D_Z,{variant:{options:[\"vGXcGA2vk\",\"eAsO9liED\",\"y_OlWlKGO\",\"Ufylewone\"],optionTitles:[\"Variant 1\",\"text\",\"icon only\",\"new-logo\"],title:\"Variant\",type:ControlType.Enum},BxfCTw1OY:{defaultValue:'var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)) /* {\"name\":\"Pure White\"} */',title:\"Color\",type:ControlType.Color}});addFonts(Framerbn47y1D_Z,[{explicitInter:true,fonts:[{family:\"Futura PT Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/cnB7elCjJUflMpjiDVgI0XPy44U.woff2\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbn47y1D_Z\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"180\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eAsO9liED\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"y_OlWlKGO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ufylewone\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K_qPDFsHk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"BxfCTw1OY\\\":\\\"color\\\"}\",\"framerIntrinsicHeight\":\"32\",\"framerTrackingIds\":\"[{\\\"id\\\":\\\"home-via-logo\\\",\\\"nodeId\\\":\\\"vGXcGA2vk\\\",\\\"type\\\":\\\"click\\\"}]\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bn47y1D_Z.map","// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={MI_z74YaW:{hover:true,pressed:true}};const cycleOrder=[\"MI_z74YaW\",\"D55QSXdyU\",\"gAUrSHI4F\",\"mQcWlQ49z\",\"nMdTqiRrx\"];const serializationHash=\"framer-PzV93\";const variantClassNames={D55QSXdyU:\"framer-v-6v3h3x\",gAUrSHI4F:\"framer-v-ttb4m5\",MI_z74YaW:\"framer-v-1i2lebg\",mQcWlQ49z:\"framer-v-5c98op\",nMdTqiRrx:\"framer-v-linfqg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"MI_z74YaW\",Disabled:\"gAUrSHI4F\",Error:\"nMdTqiRrx\",Loading:\"D55QSXdyU\",Success:\"mQcWlQ49z\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MI_z74YaW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MI_z74YaW\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"D55QSXdyU\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"D55QSXdyU\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1i2lebg\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"MI_z74YaW\",ref:refBinding,style:{backgroundColor:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"none\",opacity:1,...style},variants:{\"MI_z74YaW-hover\":{backgroundColor:\"rgb(0, 255, 195)\",boxShadow:\"0px 0px 32px -4px rgba(92, 247, 211, 0.7)\",opacity:1},\"MI_z74YaW-pressed\":{boxShadow:\"0px 0px 16px 0px rgba(92, 247, 211, 0.7)\",opacity:1},D55QSXdyU:{backgroundColor:\"var(--token-5e863279-4375-4656-93ad-6a916f9a08bf, rgb(0, 59, 44))\"},gAUrSHI4F:{opacity:.5},mQcWlQ49z:{opacity:1},nMdTqiRrx:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1}},...addPropertyOverrides({\"MI_z74YaW-hover\":{\"data-framer-name\":undefined},\"MI_z74YaW-pressed\":{\"data-framer-name\":undefined},D55QSXdyU:{\"data-framer-name\":\"Loading\"},gAUrSHI4F:{\"data-framer-name\":\"Disabled\"},mQcWlQ49z:{\"data-framer-name\":\"Success\"},nMdTqiRrx:{\"data-framer-name\":\"Error\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34)))\"},children:\"Send the Form Submission\"})}),className:\"framer-1bdgbyc\",fonts:[\"CUSTOM;Futura PT Medium\"],layoutDependency:layoutDependency,layoutId:\"SWufZbuFV\",style:{\"--extracted-r6o4lv\":\"var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"MI_z74YaW-hover\":{\"--extracted-r6o4lv\":\"var(--token-95cc9f32-1915-42a0-9a93-a137086562b6, rgb(1, 14, 18))\"},\"MI_z74YaW-pressed\":{\"--extracted-r6o4lv\":\"var(--token-95cc9f32-1915-42a0-9a93-a137086562b6, rgb(1, 14, 18))\"},mQcWlQ49z:{\"--extracted-r6o4lv\":\"var(--token-5e863279-4375-4656-93ad-6a916f9a08bf, rgb(0, 59, 44))\"},nMdTqiRrx:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"MI_z74YaW-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95cc9f32-1915-42a0-9a93-a137086562b6, rgb(1, 14, 18)))\"},children:\"Send the Form Submission\"})})},\"MI_z74YaW-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95cc9f32-1915-42a0-9a93-a137086562b6, rgb(1, 14, 18)))\"},children:\"Send the Form Submission\"})})},mQcWlQ49z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e863279-4375-4656-93ad-6a916f9a08bf, rgb(0, 59, 44)))\"},children:\"Thank you\"})})},nMdTqiRrx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-c2d5ue\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"bTEfdCIHa\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-u0lzkr\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"tRFuiQHXj\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{D55QSXdyU:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1412jqc\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"iYEBPy7kS\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PzV93.framer-1s0jzf3, .framer-PzV93 .framer-1s0jzf3 { display: block; }\",\".framer-PzV93.framer-1i2lebg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-PzV93 .framer-1bdgbyc { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-PzV93 .framer-c2d5ue { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-PzV93 .framer-u0lzkr { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-PzV93 .framer-1412jqc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-PzV93.framer-v-6v3h3x.framer-1i2lebg, .framer-PzV93.framer-v-ttb4m5.framer-1i2lebg, .framer-PzV93.framer-v-5c98op.framer-1i2lebg, .framer-PzV93.framer-v-linfqg.framer-1i2lebg { cursor: unset; }\",\".framer-PzV93.framer-v-6v3h3x .framer-u0lzkr { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 238\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"D55QSXdyU\":{\"layout\":[\"auto\",\"auto\"]},\"gAUrSHI4F\":{\"layout\":[\"auto\",\"auto\"]},\"mQcWlQ49z\":{\"layout\":[\"auto\",\"auto\"]},\"nMdTqiRrx\":{\"layout\":[\"auto\",\"auto\"]},\"h7ADvXSWD\":{\"layout\":[\"auto\",\"auto\"]},\"E9ntmnNlB\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerri9rKyP3l=withCSS(Component,css,\"framer-PzV93\");export default Framerri9rKyP3l;Framerri9rKyP3l.displayName=\"Button 2\";Framerri9rKyP3l.defaultProps={height:56,width:238};addPropertyControls(Framerri9rKyP3l,{variant:{options:[\"MI_z74YaW\",\"D55QSXdyU\",\"gAUrSHI4F\",\"mQcWlQ49z\",\"nMdTqiRrx\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerri9rKyP3l,[{explicitInter:true,fonts:[{family:\"Futura PT Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/cnB7elCjJUflMpjiDVgI0XPy44U.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerri9rKyP3l\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"238\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"D55QSXdyU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gAUrSHI4F\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mQcWlQ49z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nMdTqiRrx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h7ADvXSWD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E9ntmnNlB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"56\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ri9rKyP3l.map","// Generated by Framer (29d106d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormBooleanInput,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import RollingText from\"https://framerusercontent.com/modules/FiiQ0BKlVUNzxXjo8hFs/BDeIULpeB9kBv3zq3U1w/RollingTextHover_Prod.js\";import ScrambleAppear from\"https://framerusercontent.com/modules/x9N74fQKlr6QLCpcJIqg/ItbrXvATfgkGTI2S7SIM/ScrambleAppear_Prod.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/BaKdm2IigPg7n0Z3smpA/dDaSsFQM8MzE22Gy9DM6/cujOTRiYI.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/wtDr8PA2t5vCDctvYaBa/HdhoNzqSK9oAFtdzGfkN/fKYmnFFOC.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nf64CFANjwnQgRrPKyKL/rhbCtMHCDNuUUTAgUU74/vRrJRQCrh.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/UbKcCD1x6GRJyxEDKLQX/2wryWNOyouaT1ft3YQdf/ZQEeEW95r.js\";import BulletPoint from\"https://framerusercontent.com/modules/T1bx9Z7rl8PsIaF8hNhx/3hrKoE2mUdR2hOeYHfKL/aHDQ2acf_.js\";import WhiteXSpaceLogo from\"https://framerusercontent.com/modules/hqMKyy6nB5uNJASAsRxK/jM91eCxFQD0NafP26L9w/bn47y1D_Z.js\";import Button2 from\"https://framerusercontent.com/modules/HIBI8WT8ON98KA4rAoVP/LLu8LCJWo1DPPK06YhMX/ri9rKyP3l.js\";const BulletPointFonts=getFonts(BulletPoint);const Button2Fonts=getFonts(Button2);const WhiteXSpaceLogoFonts=getFonts(WhiteXSpaceLogo);const RollingTextFonts=getFonts(RollingText);const MotionDivWithFX=withFX(motion.div);const ScrambleAppearFonts=getFonts(ScrambleAppear);const cycleOrder=[\"R83LNbFe6\",\"lb0JUnHL0\"];const serializationHash=\"framer-bm7Im\";const variantClassNames={lb0JUnHL0:\"framer-v-1eodf2z\",R83LNbFe6:\"framer-v-acoimw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transition2={damping:90,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"R83LNbFe6\",Phone:\"lb0JUnHL0\"};const getProps=({height,id,showBigText,width,...props})=>{return{...props,bcrUgewQG:showBigText??props.bcrUgewQG??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"R83LNbFe6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,bcrUgewQG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R83LNbFe6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-acoimw\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"R83LNbFe6\",ref:refBinding,style:{backgroundColor:\"var(--token-95cc9f32-1915-42a0-9a93-a137086562b6, rgb(8, 9, 10))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{lb0JUnHL0:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({lb0JUnHL0:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hqqwxk\",\"data-framer-name\":\"contact section\",layoutDependency:layoutDependency,layoutId:\"a6bG2r_hu\",style:{backgroundColor:\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{lb0JUnHL0:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-175kvj4\",layoutDependency:layoutDependency,layoutId:\"HnenFwgPM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g79q73\",layoutDependency:layoutDependency,layoutId:\"aGZX40hI1\",children:[bcrUgewQG&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-font-size\":\"150px\",\"--framer-letter-spacing\":\"-10px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34)))\"},children:\"Let's Talk\"})}),className:\"framer-nmb946\",fonts:[\"CUSTOM;Futura PT Medium\"],layoutDependency:layoutDependency,layoutId:\"opw7Q37wd\",style:{\"--extracted-1of0zx5\":\"var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34))\"},verticalAlignment:\"top\",viewBox:\"0 0 435 150\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1ve802a\",\"data-styles-preset\":\"vRrJRQCrh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34)))\"},children:[\"Whether you need a bold new identity, a sleek website, or creative strategy — \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-c6d3c630-9939-460b-a9b4-238a17707665, rgb(74, 90, 86)))\"},children:\"White x Space is here to bring your vision to life.\"})]})}),className:\"framer-3hf4lz\",\"data-selection\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FydPsk3Di\",style:{\"--extracted-1w3ko1f\":\"var(--token-c6d3c630-9939-460b-a9b4-238a17707665, rgb(74, 90, 86))\",\"--extracted-r6o4lv\":\"var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mhh0jy\",\"data-framer-name\":\"Points\",layoutDependency:layoutDependency,layoutId:\"Ri2Dugafd\",style:{backgroundColor:\"var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12ifpxg-container\",layoutDependency:layoutDependency,layoutId:\"X6nQXoUxm-container\",nodeId:\"X6nQXoUxm\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(BulletPoint,{a4GwngYzZ:\"Quick Response\",height:\"100%\",id:\"X6nQXoUxm\",layoutId:\"X6nQXoUxm\",Tx7rB89DR:\"FastForward\",variant:\"YaFZ32MWR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qvg4gg-container\",layoutDependency:layoutDependency,layoutId:\"Hm02eXU96-container\",nodeId:\"Hm02eXU96\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(BulletPoint,{a4GwngYzZ:\"Clear Next Steps\",height:\"100%\",id:\"Hm02eXU96\",layoutId:\"Hm02eXU96\",Tx7rB89DR:\"Steps\",variant:\"YaFZ32MWR\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/07a0c7b2-c180-4613-9d14-856efd1f58bb/submit\",className:\"framer-wjgho3\",layoutDependency:layoutDependency,layoutId:\"adEjqg69B\",nodeId:\"adEjqg69B\",style:{backgroundColor:\"var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},submitTrackingId:\"contact-form-submission\",variants:{lb0JUnHL0:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:12,borderTopRightRadius:12}},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1wikh9l\",layoutDependency:layoutDependency,layoutId:\"Jx9eCKUX6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211)))\"},children:\"Full Name\"})}),className:\"framer-di93ub\",fonts:[\"GF;Geist-300\"],layoutDependency:layoutDependency,layoutId:\"xuRF8ysho\",style:{\"--extracted-r6o4lv\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-1nyf8s4\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"yNHbKUJ4r\",placeholder:\"Jane Smith\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.5)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(249, 250, 245, 0.5)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-2877a0\",layoutDependency:layoutDependency,layoutId:\"c5tDz7dPI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211)))\"},children:\"Email That you use the most\"})}),className:\"framer-w6gqi5\",fonts:[\"GF;Geist-300\"],layoutDependency:layoutDependency,layoutId:\"RnSRQBdOE\",style:{\"--extracted-r6o4lv\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-e2nuom\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"zdToMI8fM\",placeholder:\"jane@gmail.com\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.5)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(249, 250, 245, 0.5)\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1t7ye9r\",layoutDependency:layoutDependency,layoutId:\"HTB_1M2wO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211)))\"},children:\"Phone Number to Reach you at\"})}),className:\"framer-ynxihu\",fonts:[\"GF;Geist-300\"],layoutDependency:layoutDependency,layoutId:\"cv6i8tUhC\",style:{\"--extracted-r6o4lv\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-13sns5\",inputName:\"Phone\",layoutDependency:layoutDependency,layoutId:\"Sq97KRcXB\",placeholder:\"(212) 000 0000\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.5)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(249, 250, 245, 0.5)\"},type:\"tel\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1fpr3kq\",layoutDependency:layoutDependency,layoutId:\"S1uzGP5ah\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211)))\"},children:\"Your Website URL\"})}),className:\"framer-d8eseq\",fonts:[\"GF;Geist-300\"],layoutDependency:layoutDependency,layoutId:\"mRgRnqEMY\",style:{\"--extracted-r6o4lv\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-1bai2pq\",inputName:\"website\",layoutDependency:layoutDependency,layoutId:\"XA1E7pbs8\",placeholder:\"https://website.com\",required:false,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.5)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(249, 250, 245, 0.5)\"},type:\"url\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1mrwiyq\",layoutDependency:layoutDependency,layoutId:\"vh2VosYBA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211)))\"},children:\"A Message/Question for us\"})}),className:\"framer-n97q0g\",fonts:[\"GF;Geist-300\"],layoutDependency:layoutDependency,layoutId:\"lT3cytcCL\",style:{\"--extracted-r6o4lv\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-noejlb\",inputName:\"Message\",layoutDependency:layoutDependency,layoutId:\"r5hPt965L\",placeholder:\"What type of service are you interested?\",required:false,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.5)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(249, 250, 245, 0.5)\"},type:\"textarea\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1rpibsy\",layoutDependency:layoutDependency,layoutId:\"Mt4pAd7Ot\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-8dt77c\",defaultChecked:false,inputName:\"Newsletter\",layoutDependency:layoutDependency,layoutId:\"VD4IzloiQ\",required:false,style:{\"--framer-input-background\":\"var(--token-5e863279-4375-4656-93ad-6a916f9a08bf, rgb(0, 59, 44))\",\"--framer-input-boolean-checked-background\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",\"--framer-input-boolean-checked-box-shadow\":\"0px 0px 16px 0px var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"4px\",\"--framer-input-border-radius-bottom-right\":\"4px\",\"--framer-input-border-radius-top-left\":\"4px\",\"--framer-input-border-radius-top-right\":\"4px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-icon-color\":\"var(--token-5e863279-4375-4656-93ad-6a916f9a08bf, rgb(0, 59, 44))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:\"You Agree to receive Important Notifications via text for Appointments, Reminders, and Responses from White x Space about your questions and concerns. We might Promote things but won't spam, trust! We hate it too.\"})}),className:\"framer-as3rxq\",fonts:[\"GF;Geist-regular\"],layoutDependency:layoutDependency,layoutId:\"DPWkG3pe6\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`calc(max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px) - 32px)`,...addPropertyOverrides({lb0JUnHL0:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i79n1j-container\",layoutDependency:layoutDependency,layoutId:\"TFBQURbY3-container\",nodeId:\"TFBQURbY3\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"TFBQURbY3\",layoutId:\"TFBQURbY3\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"D55QSXdyU\",success:\"mQcWlQ49z\"},\"MI_z74YaW\"),width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jc103w\",layoutDependency:layoutDependency,layoutId:\"Tx0wqkwew\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y8c978\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"S006pdLwd\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c6d3c630-9939-460b-a9b4-238a17707665, rgb(74, 90, 86))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w152rq\",layoutDependency:layoutDependency,layoutId:\"g1CiaBZ2E\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3tcs1l\",layoutDependency:layoutDependency,layoutId:\"EfiZkhlFD\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cjgyaz-container\",layoutDependency:layoutDependency,layoutId:\"p6RfMQNKw-container\",nodeId:\"p6RfMQNKw\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(WhiteXSpaceLogo,{BxfCTw1OY:\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\",height:\"100%\",id:\"p6RfMQNKw\",layoutId:\"p6RfMQNKw\",variant:\"Ufylewone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:\"LOS ANGELES / NEW YORK\"})}),className:\"framer-sfvss5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NYqFXgseL\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7mkiea\",layoutDependency:layoutDependency,layoutId:\"O8RLqYM1I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gtpm2n\",\"data-styles-preset\":\"fKYmnFFOC\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:\"Contact the White x Space Design Studios via email or just call us.\"})}),className:\"framer-c5h8oy\",\"data-selection\":true,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EaM8QPbL5\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lb0JUnHL0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gtpm2n\",\"data-styles-preset\":\"fKYmnFFOC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:\"Contact the White x Space Design Studios via email or just call us.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{clickTrackingId:\"email-whitexspace\",href:\"mailto:info@whitexspace.com\",motionChild:true,nodeId:\"XwrdZCXbo\",scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3vcxgx framer-1sw2ra\",layoutDependency:layoutDependency,layoutId:\"XwrdZCXbo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zbrac-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XMAb92ewH-container\",nodeId:\"XMAb92ewH\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(RollingText,{color:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",font:{fontFamily:'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',fontSize:\"48px\",letterSpacing:\"-0.5px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"XMAb92ewH\",layoutId:\"XMAb92ewH\",padding:\"0px\",reverse:false,stagger:35,tag:\"p\",text:\"info@whitexspace.com\",textTransform:\"none\",transition:{bounce:0,delay:0,duration:.4,type:\"spring\"},width:\"100%\",...addPropertyOverrides({lb0JUnHL0:{font:{fontFamily:'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"-0.5px\",lineHeight:\"1.2em\"}}},baseVariant,gestureVariant)})})})})}),/*#__PURE__*/_jsx(Link,{clickTrackingId:\"call-whitexspace\",href:\"tel:+16466197382\",motionChild:true,nodeId:\"WWofRHSqK\",openInNewTab:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wykxgr framer-1sw2ra\",layoutDependency:layoutDependency,layoutId:\"WWofRHSqK\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bot1qs-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Qv1Uj5sTq-container\",nodeId:\"Qv1Uj5sTq\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(RollingText,{color:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",font:{fontFamily:'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"-0.5px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"Qv1Uj5sTq\",layoutId:\"Qv1Uj5sTq\",padding:\"0px\",reverse:false,stagger:35,tag:\"p\",text:\"+1(646) 619 7382\",textTransform:\"none\",transition:{bounce:0,delay:0,duration:.4,type:\"spring\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fjw7ki\",layoutDependency:layoutDependency,layoutId:\"mnRBkFoJJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vmixar\",layoutDependency:layoutDependency,layoutId:\"GhhmBRqqv\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/whitexspacedesign/\",motionChild:true,nodeId:\"VRtR0K2A_\",scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rkhylc framer-1sw2ra\",layoutDependency:layoutDependency,layoutId:\"VRtR0K2A_\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hffy49-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"k9UzSS6fB-container\",nodeId:\"k9UzSS6fB\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(RollingText,{color:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",font:{fontFamily:'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"-0.5px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"k9UzSS6fB\",layoutId:\"k9UzSS6fB\",padding:\"0px\",reverse:false,stagger:35,tag:\"p\",text:\"Instagram\",textTransform:\"none\",transition:{bounce:0,delay:0,duration:.4,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@WhitexSpace\",motionChild:true,nodeId:\"Kl6lc9sfK\",scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1owgqmw framer-1sw2ra\",layoutDependency:layoutDependency,layoutId:\"Kl6lc9sfK\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1heczpv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"x4XFBIIHy-container\",nodeId:\"x4XFBIIHy\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(RollingText,{color:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",font:{fontFamily:'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"-0.5px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"x4XFBIIHy\",layoutId:\"x4XFBIIHy\",padding:\"0px\",reverse:false,stagger:35,tag:\"p\",text:\"YouTube\",textTransform:\"none\",transition:{bounce:0,delay:0,duration:.4,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/whitexspace/\",motionChild:true,nodeId:\"e2SiHdPUE\",openInNewTab:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-y1syuu framer-1sw2ra\",layoutDependency:layoutDependency,layoutId:\"e2SiHdPUE\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hf2jme-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jCS_HIuOX-container\",nodeId:\"jCS_HIuOX\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(RollingText,{color:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",font:{fontFamily:'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"-0.5px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"jCS_HIuOX\",layoutId:\"jCS_HIuOX\",padding:\"0px\",reverse:false,stagger:35,tag:\"p\",text:\"LinkedIn\",textTransform:\"none\",transition:{bounce:0,delay:0,duration:.4,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/whitexspacenyc\",motionChild:true,nodeId:\"zVrAUnx7y\",scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1st6ms framer-1sw2ra\",layoutDependency:layoutDependency,layoutId:\"zVrAUnx7y\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16evdbk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LJvySTdWK-container\",nodeId:\"LJvySTdWK\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(RollingText,{color:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",font:{fontFamily:'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"-0.5px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"LJvySTdWK\",layoutId:\"LJvySTdWK\",padding:\"0px\",reverse:false,stagger:35,tag:\"p\",text:\"Twitter X\",textTransform:\"none\",transition:{bounce:0,delay:0,duration:.4,type:\"spring\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gtpm2n\",\"data-styles-preset\":\"fKYmnFFOC\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:\"White x Space Studios works with and for passionate individuals dedicated to solve problems all the while making sure we look really good while we are at it.\"})}),className:\"framer-g6nhl3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eWZt_yA1N\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x3925s\",layoutDependency:layoutDependency,layoutId:\"PMLW2iy8H\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9nxaa\",layoutDependency:layoutDependency,layoutId:\"iRjaGcSvV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Rm1MY3Vb5\"},motionChild:true,nodeId:\"jS0OlH92N\",openInNewTab:false,relValues:[],scopeId:\"JrZXf30Vm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Home\"})})})}),className:\"framer-1jlrkcp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jS0OlH92N\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Zw34DqM4J\",webPageId:\"Rm1MY3Vb5\"},motionChild:true,nodeId:\"OGW17P42T\",openInNewTab:false,relValues:[],scopeId:\"JrZXf30Vm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Projects\"})})})}),className:\"framer-1exjczx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OGW17P42T\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":yxy966QST\",webPageId:\"Rm1MY3Vb5\"},motionChild:true,nodeId:\"cStMrKkml\",openInNewTab:false,relValues:[],scopeId:\"JrZXf30Vm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Services\"})})})}),className:\"framer-1dpwl4j\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cStMrKkml\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aj9YHpq1P\"},motionChild:true,nodeId:\"L8EtOdfV1\",openInNewTab:false,relValues:[],scopeId:\"JrZXf30Vm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Blogs\"})})})}),className:\"framer-8n8jnf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L8EtOdfV1\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:/*#__PURE__*/_jsx(Link,{clickTrackingId:\"listen-podcast\",href:\"https://open.spotify.com/show/3tW9HRdTmbkegr1gTAHeO4\",motionChild:true,nodeId:\"n_hnVtad1\",openInNewTab:true,relValues:[],scopeId:\"JrZXf30Vm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Podcasts\"})})})}),className:\"framer-1glh9q0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n_hnVtad1\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ML0NiMBcD\"},motionChild:true,nodeId:\"br611BOHY\",openInNewTab:false,relValues:[],scopeId:\"JrZXf30Vm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Contact Us\"})})})}),className:\"framer-atvq4o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"br611BOHY\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nnu469\",layoutDependency:layoutDependency,layoutId:\"UYt2AE1Mt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"q7Qia_gDl\"},motionChild:true,nodeId:\"ZLpIfDBZ_\",openInNewTab:false,relValues:[],scopeId:\"JrZXf30Vm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Privacy Policy\"})})})}),className:\"framer-k6ebv8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZLpIfDBZ_\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NKPbrRZZe\"},motionChild:true,nodeId:\"A7WZQDPvT\",openInNewTab:false,relValues:[],scopeId:\"JrZXf30Vm\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Terms & Conditions\"})})})}),className:\"framer-1an9y7g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"A7WZQDPvT\",style:{\"--extracted-r6o4lv\":\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f9uqfn\",\"data-framer-name\":\"text\",layoutDependency:layoutDependency,layoutId:\"MB0aKE1M9\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gmusk\",\"data-framer-name\":\"white x space logo text\",layoutDependency:layoutDependency,layoutId:\"MB0aKE1M9uvp56KInZ\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 20%, rgba(0,0,0,1) 81%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 20%, rgba(0,0,0,1) 81%) add\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)))\"},children:\"WHITE\"})}),className:\"framer-c8y8ad\",fonts:[\"CUSTOM;Futura PT Medium\"],layoutDependency:layoutDependency,layoutId:\"MB0aKE1M9dWoMf0G_N\",style:{\"--extracted-a0htzi\":\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",viewBox:\"0 0 62.2 24\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-16o8w8c\",layoutDependency:layoutDependency,layoutId:\"MB0aKE1M9TczDM6O8L\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ol273u\",\"data-framer-name\":\"x\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MB0aKE1M9BDrhA3wVb\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><path d=\"M 44.116 39.513 L 36.191 31.586 L 44.113 23.661 L 40.041 19.585 L 32.115 27.51 L 24.189 19.585 L 20.116 23.661 L 28.038 31.586 L 20.116 39.512 L 24.192 43.585 L 32.115 35.66 L 40.037 43.585 Z\" fill=\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\"></path></svg>',svgContentId:9462202160,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBQVCBNZWRpdW0=\",\"--framer-font-family\":'\"Futura PT Medium\", \"Futura PT Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)))\"},children:\"SPACE\"})}),className:\"framer-1en8lvt\",fonts:[\"CUSTOM;Futura PT Medium\"],layoutDependency:layoutDependency,layoutId:\"MB0aKE1M9h5bk5TiZq\",style:{\"--extracted-a0htzi\":\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",viewBox:\"0 0 60.2 24\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-24ky1q-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"n1mZAZZ3r-container\",nodeId:\"n1mZAZZ3r\",rendersWithMotion:true,scopeId:\"JrZXf30Vm\",children:/*#__PURE__*/_jsx(ScrambleAppear,{animation:{delay:0,replay:true,trigger:\"layerInView\"},characters:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?~\",color:\"var(--token-68480e44-63b2-488a-aafd-fd8e100f2b9c, rgb(242, 255, 147))\",font:{fontFamily:'\"Futura PT Book\", \"Futura PT Book Placeholder\", sans-serif',fontSize:\"12px\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},from:\"left\",height:\"100%\",id:\"n1mZAZZ3r\",layoutId:\"n1mZAZZ3r\",options:{keepSpaces:false,matchCase:true},scrambledColor:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",scrambledLetters:10,speed:75,tag:\"p\",text:\"\\xa9 2025 All Rights Reserved.\",userSelect:false,width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bm7Im.framer-1sw2ra, .framer-bm7Im .framer-1sw2ra { display: block; }\",\".framer-bm7Im.framer-acoimw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 1424px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bm7Im .framer-hqqwxk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 16px 16px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bm7Im .framer-175kvj4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bm7Im .framer-g79q73 { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bm7Im .framer-nmb946 { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",'.framer-bm7Im .framer-3hf4lz, .framer-bm7Im .framer-c5h8oy { --selection-background-color: var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, #1b2022) /* {\"name\":\"Surface Dark\"} */; --selection-color: var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, #5cf8d3) /* {\"name\":\"Accent Teal\"} */; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }',\".framer-bm7Im .framer-mhh0jy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 8px; position: relative; width: min-content; z-index: 1; }\",\".framer-bm7Im .framer-12ifpxg-container, .framer-bm7Im .framer-1qvg4gg-container, .framer-bm7Im .framer-1cjgyaz-container, .framer-bm7Im .framer-zbrac-container, .framer-bm7Im .framer-bot1qs-container, .framer-bm7Im .framer-1hffy49-container, .framer-bm7Im .framer-1heczpv-container, .framer-bm7Im .framer-hf2jme-container, .framer-bm7Im .framer-16evdbk-container, .framer-bm7Im .framer-24ky1q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-bm7Im .framer-wjgho3 { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 16px 16px 16px; position: relative; user-select: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bm7Im .framer-1wikh9l, .framer-bm7Im .framer-2877a0, .framer-bm7Im .framer-1t7ye9r, .framer-bm7Im .framer-1fpr3kq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-bm7Im .framer-di93ub, .framer-bm7Im .framer-w6gqi5, .framer-bm7Im .framer-ynxihu, .framer-bm7Im .framer-d8eseq, .framer-bm7Im .framer-n97q0g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-bm7Im .framer-1nyf8s4, .framer-bm7Im .framer-e2nuom, .framer-bm7Im .framer-13sns5, .framer-bm7Im .framer-1bai2pq { --framer-input-focused-border-color: var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, #5cf8d3); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Geist\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 16px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-bm7Im .framer-1mrwiyq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",'.framer-bm7Im .framer-noejlb { --framer-input-focused-border-color: var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, #5cf8d3); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Geist\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 16px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-bm7Im .framer-1rpibsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-bm7Im .framer-8dt77c { --framer-input-boolean-checked-transition: all 0.5s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-bm7Im .framer-as3rxq { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bm7Im .framer-i79n1j-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bm7Im .framer-1jc103w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bm7Im .framer-y8c978 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-bm7Im .framer-1w152rq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bm7Im .framer-3tcs1l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bm7Im .framer-sfvss5, .framer-bm7Im .framer-1jlrkcp, .framer-bm7Im .framer-1exjczx, .framer-bm7Im .framer-1dpwl4j, .framer-bm7Im .framer-8n8jnf, .framer-bm7Im .framer-1glh9q0, .framer-bm7Im .framer-atvq4o, .framer-bm7Im .framer-k6ebv8, .framer-bm7Im .framer-1an9y7g { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-bm7Im .framer-7mkiea { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bm7Im .framer-3vcxgx, .framer-bm7Im .framer-1wykxgr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-bm7Im .framer-1fjw7ki { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bm7Im .framer-vmixar { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-bm7Im .framer-rkhylc, .framer-bm7Im .framer-1owgqmw, .framer-bm7Im .framer-y1syuu, .framer-bm7Im .framer-1st6ms { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-bm7Im .framer-g6nhl3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-bm7Im .framer-x3925s { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-bm7Im .framer-1o9nxaa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bm7Im .framer-nnu469 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bm7Im .framer-f9uqfn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bm7Im .framer-1gmusk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bm7Im .framer-c8y8ad, .framer-bm7Im .framer-1en8lvt { -webkit-user-select: none; flex: 1 0 0px; height: auto; overflow: visible; position: relative; user-select: none; white-space: pre; width: 1px; }\",\".framer-bm7Im .framer-16o8w8c { aspect-ratio: 1 / 1; flex: 0.5 0 0px; height: var(--framer-aspect-ratio-supported, 276px); overflow: visible; position: relative; width: 1px; }\",\".framer-bm7Im .framer-1ol273u { flex: none; height: 64px; left: calc(49.891067538126386% - 64px / 2); position: absolute; top: calc(49.727371864776465% - 64px / 2); width: 64px; }\",\".framer-bm7Im.framer-v-1eodf2z.framer-acoimw { width: 374px; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-hqqwxk { padding: 64px 8px 8px 8px; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-175kvj4 { flex-direction: column; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-g79q73 { align-self: unset; flex: none; gap: 32px; height: min-content; justify-content: flex-start; width: 100%; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-wjgho3, .framer-bm7Im.framer-v-1eodf2z .framer-1fjw7ki, .framer-bm7Im.framer-v-1eodf2z .framer-rkhylc, .framer-bm7Im.framer-v-1eodf2z .framer-1owgqmw, .framer-bm7Im.framer-v-1eodf2z .framer-y1syuu, .framer-bm7Im.framer-v-1eodf2z .framer-1st6ms, .framer-bm7Im.framer-v-1eodf2z .framer-1o9nxaa, .framer-bm7Im.framer-v-1eodf2z .framer-nnu469 { flex: none; width: 100%; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-1jc103w { gap: 32px; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-y8c978 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: flex-start; padding: 0px 0px 32px 0px; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-1w152rq { align-content: center; align-items: center; flex: none; width: 100%; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-3vcxgx, .framer-bm7Im.framer-v-1eodf2z .framer-1wykxgr { align-content: center; align-items: center; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-vmixar { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-x3925s { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 64px; justify-content: flex-start; }\",\".framer-bm7Im.framer-v-1eodf2z .framer-16o8w8c { height: var(--framer-aspect-ratio-supported, 65px); }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-bm7Im[data-selection=\"true\"] * ::selection, .framer-bm7Im [data-selection=\"true\"] * ::selection { color: var(--selection-color, none); background-color: var(--selection-background-color, none); }','.framer-bm7Im[data-border=\"true\"]::after, .framer-bm7Im [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1697.5\n * @framerIntrinsicWidth 1424\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lb0JUnHL0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bcrUgewQG\":\"showBigText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerTrackingIds [{\"id\":\"contact-form-submission\",\"nodeId\":\"adEjqg69B\",\"type\":\"form_submit\"},{\"id\":\"email-whitexspace\",\"nodeId\":\"XwrdZCXbo\",\"type\":\"click\"},{\"id\":\"call-whitexspace\",\"nodeId\":\"WWofRHSqK\",\"type\":\"click\"},{\"id\":\"listen-podcast\",\"nodeId\":\"n_hnVtad1\",\"type\":\"click\"},{\"id\":\"home-via-logo\",\"nodeId\":\"MB0aKE1M9\",\"type\":\"click\"}]\n */const FramerJrZXf30Vm=withCSS(Component,css,\"framer-bm7Im\");export default FramerJrZXf30Vm;FramerJrZXf30Vm.displayName=\"Contact + Footer\";FramerJrZXf30Vm.defaultProps={height:1697.5,width:1424};addPropertyControls(FramerJrZXf30Vm,{variant:{options:[\"R83LNbFe6\",\"lb0JUnHL0\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},bcrUgewQG:{defaultValue:true,title:\"show big text\",type:ControlType.Boolean}});addFonts(FramerJrZXf30Vm,[{explicitInter:true,fonts:[{family:\"Futura PT Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/cnB7elCjJUflMpjiDVgI0XPy44U.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RwuM4mJPby1QNtA.woff2\",weight:\"300\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"},{family:\"Futura PT Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/wYx1lIvoIUbozu05fOTqyY40m0.woff2\"}]},...BulletPointFonts,...Button2Fonts,...WhiteXSpaceLogoFonts,...RollingTextFonts,...ScrambleAppearFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJrZXf30Vm\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1424\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"bcrUgewQG\\\":\\\"showBigText\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lb0JUnHL0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1697.5\",\"framerTrackingIds\":\"[{\\\"id\\\":\\\"contact-form-submission\\\",\\\"nodeId\\\":\\\"adEjqg69B\\\",\\\"type\\\":\\\"form_submit\\\"},{\\\"id\\\":\\\"email-whitexspace\\\",\\\"nodeId\\\":\\\"XwrdZCXbo\\\",\\\"type\\\":\\\"click\\\"},{\\\"id\\\":\\\"call-whitexspace\\\",\\\"nodeId\\\":\\\"WWofRHSqK\\\",\\\"type\\\":\\\"click\\\"},{\\\"id\\\":\\\"listen-podcast\\\",\\\"nodeId\\\":\\\"n_hnVtad1\\\",\\\"type\\\":\\\"click\\\"},{\\\"id\\\":\\\"home-via-logo\\\",\\\"nodeId\\\":\\\"MB0aKE1M9\\\",\\\"type\\\":\\\"click\\\"}]\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (e66a223)\nimport{jsx as r,jsxs as e}from\"react/jsx-runtime\";import{addFonts as t,addPropertyControls as a,ControlType as o,cx as n,RichText as i,SVG as m,useLocaleInfo as l,useVariantState as d,withCSS as f}from\"framer\";import{LayoutGroup as s,motion as p,MotionConfigContext as c}from\"framer-motion\";import*as x from\"react\";let h=[\"cunCUFy7w\",\"IxOUtnrRD\"],g=\"framer-PCCmB\",u={cunCUFy7w:\"framer-v-le8ktu\",IxOUtnrRD:\"framer-v-wfxc0e\"};function C(r,...e){let t={};return null==e||e.forEach(e=>e&&Object.assign(t,r[e])),t;}let w={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},y=({value:e,children:t})=>{let a=x.useContext(c),o=null!=e?e:a.transition,n=x.useMemo(()=>({...a,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/r(c.Provider,{value:n,children:t});},b={Desktop:\"cunCUFy7w\",Phone:\"IxOUtnrRD\"},v=({height:r,id:e,width:t,...a})=>{var o,n;return{...a,variant:null!==(n=null!==(o=b[a.variant])&&void 0!==o?o:a.variant)&&void 0!==n?n:\"cunCUFy7w\"};},k=(r,e)=>e.join(\"-\")+r.layoutDependency,I=/*#__PURE__*/x.forwardRef(function(t,a){let{activeLocale:o}=l(),{style:f,className:c,layoutId:g,variant:b,...I}=v(t),{baseVariant:P,classNames:B,gestureVariant:R,setGestureState:D,setVariant:z,transition:U,variants:L}=d({cycleOrder:h,defaultVariant:\"cunCUFy7w\",transitions:w,variant:b,variantClassNames:u}),O=k(t,L),N=x.useRef(null),M=x.useId();return /*#__PURE__*/r(s,{id:null!=g?g:M,children:/*#__PURE__*/r(p.div,{initial:b,animate:L,onHoverStart:()=>D({isHovered:!0}),onHoverEnd:()=>D({isHovered:!1}),onTapStart:()=>D({isPressed:!0}),onTap:()=>D({isPressed:!1}),onTapCancel:()=>D({isPressed:!1}),className:n(\"framer-PCCmB\",...[],B),style:{display:\"contents\"},children:/*#__PURE__*/r(y,{value:U,children:/*#__PURE__*/e(p.div,{...I,className:n(\"framer-le8ktu\",c),\"data-framer-name\":\"Desktop\",layoutDependency:O,layoutId:\"cunCUFy7w\",ref:null!=a?a:N,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...f},variants:{IxOUtnrRD:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...C({IxOUtnrRD:{\"data-framer-name\":\"Phone\"}},P,R),children:[\"IxOUtnrRD\"===P&&/*#__PURE__*/r(i,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(x.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"RESOURCES\"})}),className:\"framer-5sky4z\",fonts:[\"Inter-Medium\"],layoutDependency:O,layoutId:\"Au64Q7mWN\",style:{\"--extracted-r6o4lv\":\" rgba(0, 0, 0, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/e(p.div,{className:\"framer-nd339s\",\"data-framer-name\":\"Item\",layoutDependency:O,layoutId:\"Egk6jMivN\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{IxOUtnrRD:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...C({IxOUtnrRD:{\"data-border\":!0}},P,R),children:[\"IxOUtnrRD\"!==P&&/*#__PURE__*/r(m,{className:\"framer-p4kas6\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:O,layoutId:\"t2533aB4G\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 2 4 C 2 2.895 2.895 2 4 2 L 16 2 C 17.105 2 18 2.895 18 4 L 18 16 C 18 17.105 17.105 18 16 18 L 4 18 C 2.895 18 2 17.105 2 16 Z\" id=\"a1008z\"></path><clipPath id=\"a1009z\"><use xlink:href=\"#a1008z\"></use></clipPath></defs><use xlink:href=\"#a1008z\" fill=\"#eee\" clip-path=\"url(#a1009z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:654800981,withExternalLayout:!0}),/*#__PURE__*/r(i,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(x.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", 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(68, 68, 68))\"},children:\"Blog\"})}),className:\"framer-ovdd64\",fonts:[\"Inter-Medium\"],layoutDependency:O,layoutId:\"MB49xI3wR\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/e(p.div,{className:\"framer-1n2jgkk\",\"data-framer-name\":\"Item\",layoutDependency:O,layoutId:\"flSEiMqwZ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{IxOUtnrRD:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...C({IxOUtnrRD:{\"data-border\":!0}},P,R),children:[\"IxOUtnrRD\"!==P&&/*#__PURE__*/r(m,{className:\"framer-1u8hs7b\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:O,layoutId:\"zv8tYaPKO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 1 9.975 C 1 5.004 5.029 0.975 10 0.975 L 10 0.975 C 14.971 0.975 19 5.004 19 9.975 L 19 10.025 C 19 14.996 14.971 19.025 10 19.025 L 10 19.025 C 5.029 19.025 1 14.996 1 10.025 Z\" id=\"a1010z\"></path><clipPath id=\"a1011z\"><use xlink:href=\"#a1010z\"></use></clipPath></defs><use xlink:href=\"#a1010z\" fill=\"#eee\" clip-path=\"url(#a1011z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:4220967846,withExternalLayout:!0}),/*#__PURE__*/r(i,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(x.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", 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(68, 68, 68))\"},children:\"Careers\"})}),className:\"framer-1kdtm5o\",fonts:[\"Inter-Medium\"],layoutDependency:O,layoutId:\"in6XOUe7N\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/e(p.div,{className:\"framer-1cc1oxf\",\"data-framer-name\":\"Item\",layoutDependency:O,layoutId:\"eR_1DftMx\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{IxOUtnrRD:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...C({IxOUtnrRD:{\"data-border\":!0}},P,R),children:[\"IxOUtnrRD\"!==P&&/*#__PURE__*/r(m,{className:\"framer-1hzxmq1\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:O,layoutId:\"eUdkIodfE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 8.293 2.293 C 9.073 1.016 10.927 1.016 11.707 2.293 L 19.14 14.457 C 19.955 15.79 18.996 17.5 17.434 17.5 L 2.566 17.5 C 1.004 17.5 0.045 15.79 0.86 14.457 Z\" id=\"a1012z\"></path><clipPath id=\"a1013z\"><use xlink:href=\"#a1012z\"></use></clipPath></defs><use xlink:href=\"#a1012z\" fill=\"#eee\" clip-path=\"url(#a1013z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:896216945,withExternalLayout:!0}),/*#__PURE__*/r(i,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(x.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", 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(68, 68, 68))\"},children:\"Docs\"})}),className:\"framer-lxs6k3\",fonts:[\"Inter-Medium\"],layoutDependency:O,layoutId:\"qW6t5bF_r\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/e(p.div,{className:\"framer-bdy45h\",\"data-framer-name\":\"Item\",layoutDependency:O,layoutId:\"GhlMJbR4K\",children:[\"IxOUtnrRD\"!==P&&/*#__PURE__*/r(m,{className:\"framer-58hs3y\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:O,layoutId:\"yV5oTrNiz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 2 4 C 2 2.895 2.895 2 4 2 L 16 2 C 17.105 2 18 2.895 18 4 L 18 16 C 18 17.105 17.105 18 16 18 L 4 18 C 2.895 18 2 17.105 2 16 Z\" id=\"a1008z\"></path><clipPath id=\"a1009z\"><use xlink:href=\"#a1008z\"></use></clipPath></defs><use xlink:href=\"#a1008z\" fill=\"#eee\" clip-path=\"url(#a1009z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:654800981,withExternalLayout:!0}),/*#__PURE__*/r(i,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(x.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", 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(68, 68, 68))\"},children:\"About\"})}),className:\"framer-12xd3ff\",fonts:[\"Inter-Medium\"],layoutDependency:O,layoutId:\"BR4oQUmcm\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]})]})})})});}),P=['.framer-PCCmB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PCCmB .framer-6gargj { display: block; }\",\".framer-PCCmB .framer-le8ktu { 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; padding: 15px 15px 15px 15px; position: relative; width: 150px; }\",\".framer-PCCmB .framer-5sky4z { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PCCmB .framer-nd339s, .framer-PCCmB .framer-1n2jgkk, .framer-PCCmB .framer-1cc1oxf, .framer-PCCmB .framer-bdy45h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-PCCmB .framer-p4kas6, .framer-PCCmB .framer-1u8hs7b, .framer-PCCmB .framer-1hzxmq1, .framer-PCCmB .framer-58hs3y { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-PCCmB .framer-ovdd64, .framer-PCCmB .framer-1kdtm5o, .framer-PCCmB .framer-lxs6k3, .framer-PCCmB .framer-12xd3ff { -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-PCCmB .framer-le8ktu, .framer-PCCmB .framer-nd339s, .framer-PCCmB .framer-1n2jgkk, .framer-PCCmB .framer-1cc1oxf, .framer-PCCmB .framer-bdy45h { gap: 0px; } .framer-PCCmB .framer-le8ktu > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-PCCmB .framer-le8ktu > :first-child { margin-top: 0px; } .framer-PCCmB .framer-le8ktu > :last-child { margin-bottom: 0px; } .framer-PCCmB .framer-nd339s > *, .framer-PCCmB .framer-1n2jgkk > *, .framer-PCCmB .framer-1cc1oxf > *, .framer-PCCmB .framer-bdy45h > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-PCCmB .framer-nd339s > :first-child, .framer-PCCmB .framer-1n2jgkk > :first-child, .framer-PCCmB .framer-1cc1oxf > :first-child, .framer-PCCmB .framer-bdy45h > :first-child { margin-left: 0px; } .framer-PCCmB .framer-nd339s > :last-child, .framer-PCCmB .framer-1n2jgkk > :last-child, .framer-PCCmB .framer-1cc1oxf > :last-child, .framer-PCCmB .framer-bdy45h > :last-child { margin-right: 0px; } }\",\".framer-PCCmB.framer-v-wfxc0e .framer-le8ktu { gap: 0px; padding: 32px 0px 0px 0px; }\",\".framer-PCCmB.framer-v-wfxc0e .framer-nd339s, .framer-PCCmB.framer-v-wfxc0e .framer-1n2jgkk, .framer-PCCmB.framer-v-wfxc0e .framer-1cc1oxf, .framer-PCCmB.framer-v-wfxc0e .framer-bdy45h { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PCCmB.framer-v-wfxc0e .framer-le8ktu { gap: 0px; } .framer-PCCmB.framer-v-wfxc0e .framer-le8ktu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PCCmB.framer-v-wfxc0e .framer-le8ktu > :first-child { margin-top: 0px; } .framer-PCCmB.framer-v-wfxc0e .framer-le8ktu > :last-child { margin-bottom: 0px; } }\"],B=f(I,P,\"framer-PCCmB\");export default B;B.displayName=\"Links: Resources\",B.defaultProps={height:135,width:150},a(B,{variant:{options:[\"cunCUFy7w\",\"IxOUtnrRD\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:o.Enum}}),t(B,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpPmogNY6m\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"135\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"150\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IxOUtnrRD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pPmogNY6m.map","// Generated by Framer (e66a223)\nimport{jsx as r,jsxs as e}from\"react/jsx-runtime\";import{addFonts as t,addPropertyControls as a,ControlType as i,cx as o,RichText as n,SVG as f,useLocaleInfo as l,useVariantState as m,withCSS as d}from\"framer\";import{LayoutGroup as s,motion as p,MotionConfigContext as c}from\"framer-motion\";import*as h from\"react\";let g=[\"Q3MjAIjCQ\",\"Y2WpHXJS3\"],x=\"framer-f2jLX\",u={Q3MjAIjCQ:\"framer-v-19utmf1\",Y2WpHXJS3:\"framer-v-g9ipt1\"};function v(r,...e){let t={};return null==e||e.forEach(e=>e&&Object.assign(t,r[e])),t;}let w={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},b=({value:e,children:t})=>{let a=h.useContext(c),i=null!=e?e:a.transition,o=h.useMemo(()=>({...a,transition:i}),[JSON.stringify(i)]);return /*#__PURE__*/r(c.Provider,{value:o,children:t});},y={Desktop:\"Q3MjAIjCQ\",Phone:\"Y2WpHXJS3\"},j=({height:r,id:e,width:t,...a})=>{var i,o;return{...a,variant:null!==(o=null!==(i=y[a.variant])&&void 0!==i?i:a.variant)&&void 0!==o?o:\"Q3MjAIjCQ\"};},X=(r,e)=>e.join(\"-\")+r.layoutDependency,L=/*#__PURE__*/h.forwardRef(function(t,a){let{activeLocale:i}=l(),{style:d,className:c,layoutId:x,variant:y,...L}=j(t),{baseVariant:k,classNames:I,gestureVariant:C,setGestureState:S,setVariant:W,transition:z,variants:M}=m({cycleOrder:g,defaultVariant:\"Q3MjAIjCQ\",transitions:w,variant:y,variantClassNames:u}),H=X(t,M),N=h.useRef(null),D=h.useId();return /*#__PURE__*/r(s,{id:null!=x?x:D,children:/*#__PURE__*/r(p.div,{initial:y,animate:M,onHoverStart:()=>S({isHovered:!0}),onHoverEnd:()=>S({isHovered:!1}),onTapStart:()=>S({isPressed:!0}),onTap:()=>S({isPressed:!1}),onTapCancel:()=>S({isPressed:!1}),className:o(\"framer-f2jLX\",...[],I),style:{display:\"contents\"},children:/*#__PURE__*/r(b,{value:z,children:/*#__PURE__*/e(p.div,{...L,className:o(\"framer-19utmf1\",c),\"data-framer-name\":\"Desktop\",layoutDependency:H,layoutId:\"Q3MjAIjCQ\",ref:null!=a?a:N,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...d},variants:{Y2WpHXJS3:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...v({Y2WpHXJS3:{\"data-framer-name\":\"Phone\"}},k,C),children:[\"Y2WpHXJS3\"===k&&/*#__PURE__*/r(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"COMMUNITY\"})}),className:\"framer-1lgw8u\",fonts:[\"Inter-Medium\"],layoutDependency:H,layoutId:\"Eogqh0qIK\",style:{\"--extracted-r6o4lv\":\" rgba(0, 0, 0, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/e(p.div,{className:\"framer-164ig7f\",\"data-framer-name\":\"Item\",layoutDependency:H,layoutId:\"aWUs5ruMr\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{Y2WpHXJS3:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...v({Y2WpHXJS3:{\"data-border\":!0}},k,C),children:[\"Y2WpHXJS3\"!==k&&/*#__PURE__*/r(f,{className:\"framer-1tqbsh7\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:H,layoutId:\"AQNa0SNao\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 2 4 C 2 2.895 2.895 2 4 2 L 16 2 C 17.105 2 18 2.895 18 4 L 18 16 C 18 17.105 17.105 18 16 18 L 4 18 C 2.895 18 2 17.105 2 16 Z\" id=\"a1008z\"></path><clipPath id=\"a1009z\"><use xlink:href=\"#a1008z\"></use></clipPath></defs><use xlink:href=\"#a1008z\" fill=\"#eee\" clip-path=\"url(#a1009z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:654800981,withExternalLayout:!0}),/*#__PURE__*/r(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", 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(68, 68, 68))\"},children:\"Join\"})}),className:\"framer-1xtasqv\",fonts:[\"Inter-Medium\"],layoutDependency:H,layoutId:\"WLGNsECg7\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/e(p.div,{className:\"framer-125x0lh\",\"data-framer-name\":\"Item\",layoutDependency:H,layoutId:\"dy4X8iLm3\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{Y2WpHXJS3:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...v({Y2WpHXJS3:{\"data-border\":!0}},k,C),children:[\"Y2WpHXJS3\"!==k&&/*#__PURE__*/r(f,{className:\"framer-2a6x60\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:H,layoutId:\"uWlHDNs96\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 1 9.975 C 1 5.004 5.029 0.975 10 0.975 L 10 0.975 C 14.971 0.975 19 5.004 19 9.975 L 19 10.025 C 19 14.996 14.971 19.025 10 19.025 L 10 19.025 C 5.029 19.025 1 14.996 1 10.025 Z\" id=\"a1010z\"></path><clipPath id=\"a1011z\"><use xlink:href=\"#a1010z\"></use></clipPath></defs><use xlink:href=\"#a1010z\" fill=\"#eee\" clip-path=\"url(#a1011z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:4220967846,withExternalLayout:!0}),/*#__PURE__*/r(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", 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(68, 68, 68))\"},children:\"Events\"})}),className:\"framer-s9zcxv\",fonts:[\"Inter-Medium\"],layoutDependency:H,layoutId:\"vbSOk1cgp\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/e(p.div,{className:\"framer-kcl4i2\",\"data-framer-name\":\"Item\",layoutDependency:H,layoutId:\"B8BD2khMc\",children:[\"Y2WpHXJS3\"!==k&&/*#__PURE__*/r(f,{className:\"framer-y3qvp6\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:H,layoutId:\"exO5YZjKv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 8.293 2.293 C 9.073 1.016 10.927 1.016 11.707 2.293 L 19.14 14.457 C 19.955 15.79 18.996 17.5 17.434 17.5 L 2.566 17.5 C 1.004 17.5 0.045 15.79 0.86 14.457 Z\" id=\"a1012z\"></path><clipPath id=\"a1013z\"><use xlink:href=\"#a1012z\"></use></clipPath></defs><use xlink:href=\"#a1012z\" fill=\"#eee\" clip-path=\"url(#a1013z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:896216945,withExternalLayout:!0}),/*#__PURE__*/r(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", 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(68, 68, 68))\"},children:\"Experts\"})}),className:\"framer-1ig4z3x\",fonts:[\"Inter-Medium\"],layoutDependency:H,layoutId:\"CqjtBaOrJ\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]})]})})})});}),k=['.framer-f2jLX [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f2jLX .framer-fe5c7g { display: block; }\",\".framer-f2jLX .framer-19utmf1 { 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; padding: 15px 15px 15px 15px; position: relative; width: 150px; }\",\".framer-f2jLX .framer-1lgw8u { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-f2jLX .framer-164ig7f, .framer-f2jLX .framer-125x0lh, .framer-f2jLX .framer-kcl4i2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-f2jLX .framer-1tqbsh7, .framer-f2jLX .framer-2a6x60, .framer-f2jLX .framer-y3qvp6 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-f2jLX .framer-1xtasqv, .framer-f2jLX .framer-s9zcxv, .framer-f2jLX .framer-1ig4z3x { -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-f2jLX .framer-19utmf1, .framer-f2jLX .framer-164ig7f, .framer-f2jLX .framer-125x0lh, .framer-f2jLX .framer-kcl4i2 { gap: 0px; } .framer-f2jLX .framer-19utmf1 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-f2jLX .framer-19utmf1 > :first-child { margin-top: 0px; } .framer-f2jLX .framer-19utmf1 > :last-child { margin-bottom: 0px; } .framer-f2jLX .framer-164ig7f > *, .framer-f2jLX .framer-125x0lh > *, .framer-f2jLX .framer-kcl4i2 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-f2jLX .framer-164ig7f > :first-child, .framer-f2jLX .framer-125x0lh > :first-child, .framer-f2jLX .framer-kcl4i2 > :first-child { margin-left: 0px; } .framer-f2jLX .framer-164ig7f > :last-child, .framer-f2jLX .framer-125x0lh > :last-child, .framer-f2jLX .framer-kcl4i2 > :last-child { margin-right: 0px; } }\",\".framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 { gap: 0px; padding: 32px 0px 0px 0px; }\",\".framer-f2jLX.framer-v-g9ipt1 .framer-164ig7f, .framer-f2jLX.framer-v-g9ipt1 .framer-125x0lh, .framer-f2jLX.framer-v-g9ipt1 .framer-kcl4i2 { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 { gap: 0px; } .framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 > :first-child { margin-top: 0px; } .framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 > :last-child { margin-bottom: 0px; } }\"],I=d(L,k,\"framer-f2jLX\");export default I;I.displayName=\"Links: Community\",I.defaultProps={height:107.5,width:150},a(I,{variant:{options:[\"Q3MjAIjCQ\",\"Y2WpHXJS3\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:i.Enum}}),t(I,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdQcuWx460\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"107.5\",\"framerIntrinsicWidth\":\"150\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y2WpHXJS3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dQcuWx460.map","// Generated by Framer (29d106d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"wSAtcgkbv\",\"jODbIJcLs\"];const serializationHash=\"framer-Omjy4\";const variantClassNames={jODbIJcLs:\"framer-v-1v1hzjc\",wSAtcgkbv:\"framer-v-3wpt04\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"wSAtcgkbv\",Phone:\"jODbIJcLs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wSAtcgkbv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wSAtcgkbv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"jODbIJcLs\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"jODbIJcLs\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-3wpt04\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"wSAtcgkbv\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...style},variants:{jODbIJcLs:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({jODbIJcLs:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__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\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"PRODUCT\"})}),className:\"framer-nvj0vr\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"bBZeo3RYV\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wvnnqp\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"HlHyz0GEz\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{jODbIJcLs:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({jODbIJcLs:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ieczfl\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"iiUHatCLn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 2 4 C 2 2.895 2.895 2 4 2 L 16 2 C 17.105 2 18 2.895 18 4 L 18 16 C 18 17.105 17.105 18 16 18 L 4 18 C 2.895 18 2 17.105 2 16 Z\" id=\"a1022z\"></path><clipPath id=\"a1023z\"><use xlink:href=\"#a1022z\"></use></clipPath></defs><use xlink:href=\"#a1022z\" fill=\"#eee\" clip-path=\"url(#a1023z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:9244735573,withExternalLayout:true}),/*#__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(68, 68, 68))\"},children:\"Design\"})}),className:\"framer-105vcfy\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"LY5IxtqJ2\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-orr1cv\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"FJKC4WS8M\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{jODbIJcLs:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({jODbIJcLs:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1kj8kqe\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GMoyNxL7C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 1 9.975 C 1 5.004 5.029 0.975 10 0.975 L 10 0.975 C 14.971 0.975 19 5.004 19 9.975 L 19 10.025 C 19 14.996 14.971 19.025 10 19.025 L 10 19.025 C 5.029 19.025 1 14.996 1 10.025 Z\" id=\"a1024z\"></path><clipPath id=\"a1025z\"><use xlink:href=\"#a1024z\"></use></clipPath></defs><use xlink:href=\"#a1024z\" fill=\"#eee\" clip-path=\"url(#a1025z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:12810902438,withExternalLayout:true}),/*#__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(68, 68, 68))\"},children:\"Content\"})}),className:\"framer-fvhk7m\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"aJyUGcCa3\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m5ljw6\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"SRgnNGf2Q\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{jODbIJcLs:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({jODbIJcLs:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1p3bhsa\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Sv5eUjXC7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 8.293 2.293 C 9.073 1.016 10.927 1.016 11.707 2.293 L 19.14 14.457 C 19.955 15.79 18.996 17.5 17.434 17.5 L 2.566 17.5 C 1.004 17.5 0.045 15.79 0.86 14.457 Z\" id=\"a1026z\"></path><clipPath id=\"a1027z\"><use xlink:href=\"#a1026z\"></use></clipPath></defs><use xlink:href=\"#a1026z\" fill=\"#eee\" clip-path=\"url(#a1027z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:9486151537,withExternalLayout:true}),/*#__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(68, 68, 68))\"},children:\"Publish\"})}),className:\"framer-ve6242\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"KSFBu9el5\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Omjy4.framer-1ax0mmb, .framer-Omjy4 .framer-1ax0mmb { display: block; }\",\".framer-Omjy4.framer-3wpt04 { 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; padding: 15px; position: relative; width: 150px; }\",\".framer-Omjy4 .framer-nvj0vr { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Omjy4 .framer-wvnnqp, .framer-Omjy4 .framer-orr1cv, .framer-Omjy4 .framer-1m5ljw6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Omjy4 .framer-ieczfl, .framer-Omjy4 .framer-1kj8kqe, .framer-Omjy4 .framer-1p3bhsa { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-Omjy4 .framer-105vcfy, .framer-Omjy4 .framer-fvhk7m, .framer-Omjy4 .framer-ve6242 { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Omjy4.framer-v-1v1hzjc.framer-3wpt04 { gap: 0px; padding: 32px 0px 0px 0px; }\",\".framer-Omjy4.framer-v-1v1hzjc .framer-nvj0vr { order: 0; }\",\".framer-Omjy4.framer-v-1v1hzjc .framer-wvnnqp { height: 56px; order: 1; }\",\".framer-Omjy4.framer-v-1v1hzjc .framer-orr1cv { height: 56px; order: 2; }\",\".framer-Omjy4.framer-v-1v1hzjc .framer-1m5ljw6 { height: 56px; order: 3; }\",'.framer-Omjy4[data-border=\"true\"]::after, .framer-Omjy4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 107\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jODbIJcLs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerPHcq3EM68=withCSS(Component,css,\"framer-Omjy4\");export default FramerPHcq3EM68;FramerPHcq3EM68.displayName=\"Links: Product\";FramerPHcq3EM68.defaultProps={height:107,width:150};addPropertyControls(FramerPHcq3EM68,{variant:{options:[\"wSAtcgkbv\",\"jODbIJcLs\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPHcq3EM68,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPHcq3EM68\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"107\",\"framerIntrinsicWidth\":\"150\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jODbIJcLs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PHcq3EM68.map","// Generated by Framer (7d01136)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LinksResources from\"https://framerusercontent.com/modules/hP7GepOZhiRUVDuSMzGA/KSmZYjJTpixl4bS9QqHk/pPmogNY6m.js\";import LinksCommunity from\"https://framerusercontent.com/modules/JQRKwZv6rgdZ4OfkcuSU/45PpCkD31n6caHb3DNDn/dQcuWx460.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/BaKdm2IigPg7n0Z3smpA/dDaSsFQM8MzE22Gy9DM6/cujOTRiYI.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/UbKcCD1x6GRJyxEDKLQX/2wryWNOyouaT1ft3YQdf/ZQEeEW95r.js\";import WhiteXSpaceLogo from\"https://framerusercontent.com/modules/hqMKyy6nB5uNJASAsRxK/jM91eCxFQD0NafP26L9w/bn47y1D_Z.js\";import ButtonMain from\"https://framerusercontent.com/modules/VgplWfo3w6DWWKDKAU22/DmIABkGba4smDPnP56mg/KZvlm4kmj.js\";import LinksProduct from\"https://framerusercontent.com/modules/vM0V69onE26pARKsng6m/7gayXoKgSo0Skxb5TeSP/PHcq3EM68.js\";const WhiteXSpaceLogoFonts=getFonts(WhiteXSpaceLogo);const ButtonMainFonts=getFonts(ButtonMain);const LinksProductFonts=getFonts(LinksProduct);const LinksResourcesFonts=getFonts(LinksResources);const LinksCommunityFonts=getFonts(LinksCommunity);const cycleOrder=[\"VH0yeAwRD\",\"cD2y9j88i\",\"fBbBrCywa\",\"jS7A5PfpK\",\"LCvt_jak_\"];const serializationHash=\"framer-ZVflF\";const variantClassNames={cD2y9j88i:\"framer-v-1my1s9b\",fBbBrCywa:\"framer-v-y2zd16\",jS7A5PfpK:\"framer-v-1t1xnw3\",LCvt_jak_:\"framer-v-1rwbc6j\",VH0yeAwRD:\"framer-v-1msua4n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:1.15,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const transition3={damping:40,delay:0,mass:1,stiffness:600,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Scroll\":\"LCvt_jak_\",\"Phone Open\":\"fBbBrCywa\",\"Phone Scroll\":\"jS7A5PfpK\",Desktop:\"VH0yeAwRD\",Phone:\"cD2y9j88i\"};const getProps=({height,id,logoColor,navItemColor,showNavItems,width,...props})=>{return{...props,qwa_nLO0J:navItemColor??props.qwa_nLO0J??\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\",UbRlZmXxp:logoColor??props.UbRlZmXxp??\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"VH0yeAwRD\",wkfTt6d8V:showNavItems??props.wkfTt6d8V??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,UbRlZmXxp,qwa_nLO0J,wkfTt6d8V,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VH0yeAwRD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap5gzpxt=activeVariantCallback(async(...args)=>{setVariant(\"fBbBrCywa\");});const onTap14fbz33=activeVariantCallback(async(...args)=>{setVariant(\"jS7A5PfpK\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"cD2y9j88i\",\"fBbBrCywa\",\"jS7A5PfpK\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"cD2y9j88i\")return false;return true;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"jS7A5PfpK\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1msua4n\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"VH0yeAwRD\",ref:refBinding,style:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,WebkitBackdropFilter:\"none\",...style},variants:{cD2y9j88i:{backgroundColor:\"rgba(13, 17, 18, 0)\"},fBbBrCywa:{backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(8, 9, 10, 0.75)\",WebkitBackdropFilter:\"blur(8px)\"},jS7A5PfpK:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(1, 14, 18, 0.7)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,WebkitBackdropFilter:\"blur(5px)\"},LCvt_jak_:{backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(1, 14, 18, 0.7)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,WebkitBackdropFilter:\"blur(8px)\"}},...addPropertyOverrides({cD2y9j88i:{\"data-framer-name\":\"Phone\"},fBbBrCywa:{\"data-framer-name\":\"Phone Open\"},jS7A5PfpK:{\"data-framer-name\":\"Phone Scroll\"},LCvt_jak_:{\"data-framer-name\":\"Desktop Scroll\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{\"aria-label\":\"White x Space Logo\",className:\"framer-oqzbpt\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"mF4yX1wI6\",...addPropertyOverrides({jS7A5PfpK:{\"data-highlight\":true,onTap:onTap5gzpxt}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Rm1MY3Vb5\"},motionChild:true,nodeId:\"aTR6fT50U\",openInNewTab:false,scopeId:\"m7dP0Rj1M\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"White x Space Logo\",className:\"framer-468ry0 framer-z0p8by\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"aTR6fT50U\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(16+((componentViewport?.height||75)-32-32)/2)+0+0,...addPropertyOverrides({cD2y9j88i:{y:(componentViewport?.y||0)+0+0+16+0},fBbBrCywa:{y:(componentViewport?.y||0)+0+0+16+0},jS7A5PfpK:{y:(componentViewport?.y||0)+0+0+16+0},LCvt_jak_:{y:(componentViewport?.y||0)+(4+((componentViewport?.height||51)-8-32)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l8xe2k-container\",layoutDependency:layoutDependency,layoutId:\"Xyh87_vds-container\",nodeId:\"Xyh87_vds\",rendersWithMotion:true,scopeId:\"m7dP0Rj1M\",whileHover:animation,children:/*#__PURE__*/_jsx(WhiteXSpaceLogo,{BxfCTw1OY:UbRlZmXxp,height:\"100%\",id:\"Xyh87_vds\",layoutId:\"Xyh87_vds\",variant:\"Ufylewone\",width:\"100%\",...addPropertyOverrides({fBbBrCywa:{BxfCTw1OY:\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\"}},baseVariant,gestureVariant)})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i7lyjl\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"X7mK1_Kby\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{cD2y9j88i:{backgroundColor:\"rgba(92, 247, 211, 0)\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22},fBbBrCywa:{backgroundColor:\"var(--token-5e863279-4375-4656-93ad-6a916f9a08bf, rgb(0, 59, 44))\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22},jS7A5PfpK:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({cD2y9j88i:{\"data-highlight\":true,onTap:onTap5gzpxt},fBbBrCywa:{\"data-highlight\":true,onTap:onTap14fbz33},jS7A5PfpK:{\"data-highlight\":true,onTap:onTap5gzpxt}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zsclrk\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"eiaAh3xjD\",style:{backgroundColor:\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{cD2y9j88i:{backgroundColor:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},fBbBrCywa:{backgroundColor:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,rotate:-45},jS7A5PfpK:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,rotate:0}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2r73fl\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"eTXovN5U4\",style:{backgroundColor:\"var(--token-78c26d68-6f90-437b-9f91-e86f50bc18c4, rgb(249, 250, 245))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{cD2y9j88i:{backgroundColor:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},fBbBrCywa:{backgroundColor:\"var(--token-8382110f-0ca3-47d1-ad23-48a036d9556e, rgb(92, 248, 211))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,rotate:45},jS7A5PfpK:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,rotate:0}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({fBbBrCywa:{value:transition3},jS7A5PfpK:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ssw41g\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"RI80l4U_t\",style:{opacity:1},variants:{jS7A5PfpK:{opacity:0},LCvt_jak_:{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b7bmzc\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"E69EXD7ta\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{fBbBrCywa:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c6d3c630-9939-460b-a9b4-238a17707665, rgb(74, 90, 86))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},jS7A5PfpK:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},LCvt_jak_:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({fBbBrCywa:{\"data-border\":true},jS7A5PfpK:{\"data-border\":true}},baseVariant,gestureVariant),children:wkfTt6d8V&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-qwa_nLO0J-m7dP0Rj1M))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FZTTNc2t9\"},motionChild:true,nodeId:\"zOQ9kv7Sa\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Services\"})})})}),className:\"framer-1nmwatq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zOQ9kv7Sa\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-qwa_nLO0J-m7dP0Rj1M)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-qwa_nLO0J-m7dP0Rj1M\":qwa_nLO0J},variants:{fBbBrCywa:{\"--extracted-r6o4lv\":\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\"},LCvt_jak_:{\"--extracted-r6o4lv\":\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fBbBrCywa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FZTTNc2t9\"},motionChild:true,nodeId:\"zOQ9kv7Sa\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Services\"})})})}),verticalAlignment:\"center\"},jS7A5PfpK:{verticalAlignment:\"center\"},LCvt_jak_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FZTTNc2t9\"},motionChild:true,nodeId:\"zOQ9kv7Sa\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Services\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mavu7u\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"qLNbIOm_c\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{fBbBrCywa:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c6d3c630-9939-460b-a9b4-238a17707665, rgb(74, 90, 86))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},jS7A5PfpK:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},LCvt_jak_:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({fBbBrCywa:{\"data-border\":true}},baseVariant,gestureVariant),children:wkfTt6d8V&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-qwa_nLO0J-m7dP0Rj1M))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eZCjJJIp3\"},motionChild:true,nodeId:\"wjWXqzTWu\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Our Work\"})})})}),className:\"framer-bymmo0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wjWXqzTWu\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-qwa_nLO0J-m7dP0Rj1M)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-qwa_nLO0J-m7dP0Rj1M\":qwa_nLO0J},variants:{fBbBrCywa:{\"--extracted-r6o4lv\":\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\"},LCvt_jak_:{\"--extracted-r6o4lv\":\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fBbBrCywa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eZCjJJIp3\"},motionChild:true,nodeId:\"wjWXqzTWu\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Our Work\"})})})}),verticalAlignment:\"center\"},jS7A5PfpK:{verticalAlignment:\"center\"},LCvt_jak_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eZCjJJIp3\"},motionChild:true,nodeId:\"wjWXqzTWu\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Our Work\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dy6trn\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"Fq0GC7L0p\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{fBbBrCywa:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c6d3c630-9939-460b-a9b4-238a17707665, rgb(74, 90, 86))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},jS7A5PfpK:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},LCvt_jak_:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({fBbBrCywa:{\"data-border\":true}},baseVariant,gestureVariant),children:wkfTt6d8V&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-qwa_nLO0J-m7dP0Rj1M))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ML0NiMBcD\"},motionChild:true,nodeId:\"VgKqQXD4q\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Contact Us\"})})})}),className:\"framer-1e69bd3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VgKqQXD4q\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-qwa_nLO0J-m7dP0Rj1M)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-qwa_nLO0J-m7dP0Rj1M\":qwa_nLO0J},variants:{fBbBrCywa:{\"--extracted-r6o4lv\":\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\"},LCvt_jak_:{\"--extracted-r6o4lv\":\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fBbBrCywa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ML0NiMBcD\"},motionChild:true,nodeId:\"VgKqQXD4q\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Contact Us\"})})})}),verticalAlignment:\"center\"},jS7A5PfpK:{verticalAlignment:\"center\"},LCvt_jak_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gpz8k4\",\"data-styles-preset\":\"cujOTRiYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ML0NiMBcD\"},motionChild:true,nodeId:\"VgKqQXD4q\",openInNewTab:false,relValues:[],scopeId:\"m7dP0Rj1M\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1y4qggu\",\"data-styles-preset\":\"ZQEeEW95r\",children:\"Contact Us\"})})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5l943o\",\"data-framer-name\":\"Right CTAs\",layoutDependency:layoutDependency,layoutId:\"Pcwuf9qiJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+(16+((componentViewport?.height||75)-32-43)/2)+0+0,...addPropertyOverrides({fBbBrCywa:{y:(componentViewport?.y||0)+0+96+0+288+0+129},jS7A5PfpK:{y:(componentViewport?.y||0)+0+64+0+517+0},LCvt_jak_:{y:(componentViewport?.y||0)+(4+((componentViewport?.height||51)-8-43)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yroff6-container\",layoutDependency:layoutDependency,layoutId:\"IYtVDF6LV-container\",nodeId:\"IYtVDF6LV\",rendersWithMotion:true,scopeId:\"m7dP0Rj1M\",children:/*#__PURE__*/_jsx(ButtonMain,{BK0weAkEH:\"Call Us\",height:\"100%\",id:\"IYtVDF6LV\",Kh6h1peoE:\"click-contact-nav\",layoutId:\"IYtVDF6LV\",lYDOLBSf4:{borderColor:\"var(--token-5c7c489f-9c8a-4403-968a-0e3999086524, rgb(29, 228, 187))\",borderStyle:\"solid\",borderWidth:1},mlDcunOHY:qwa_nLO0J,nB8az95L2:\"tel:+16466197382\",variant:\"vJnbKBYUB\",width:\"100%\",...addPropertyOverrides({fBbBrCywa:{mlDcunOHY:\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\"},LCvt_jak_:{mlDcunOHY:\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":LJqLQLbR_\",webPageId:\"ML0NiMBcD\"},implicitPathVariables:undefined},{href:{hash:\":LJqLQLbR_\",webPageId:\"ML0NiMBcD\"},implicitPathVariables:undefined},{href:{hash:\":LJqLQLbR_\",webPageId:\"ML0NiMBcD\"},implicitPathVariables:undefined},{href:{hash:\":LJqLQLbR_\",webPageId:\"ML0NiMBcD\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+(16+((componentViewport?.height||75)-32-43)/2)+0+0,...addPropertyOverrides({fBbBrCywa:{y:(componentViewport?.y||0)+0+96+0+288+0+129},jS7A5PfpK:{y:(componentViewport?.y||0)+0+64+0+517+0},LCvt_jak_:{y:(componentViewport?.y||0)+(4+((componentViewport?.height||51)-8-43)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c51umh-container\",layoutDependency:layoutDependency,layoutId:\"dqsXmkPJF-container\",nodeId:\"dqsXmkPJF\",rendersWithMotion:true,scopeId:\"m7dP0Rj1M\",children:/*#__PURE__*/_jsx(ButtonMain,{BK0weAkEH:\"Book An Appointment\",height:\"100%\",id:\"dqsXmkPJF\",Kh6h1peoE:\"click-contact-nav\",layoutId:\"dqsXmkPJF\",lYDOLBSf4:{borderColor:\"var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34))\",borderStyle:\"solid\",borderWidth:1},mlDcunOHY:\"var(--token-9fb49fb1-3e80-4dbb-8feb-7342c361ffdf, rgb(27, 32, 34))\",nB8az95L2:resolvedLinks[0],variant:\"KPhLqJRK6\",width:\"100%\",...addPropertyOverrides({fBbBrCywa:{nB8az95L2:resolvedLinks[1]},jS7A5PfpK:{nB8az95L2:resolvedLinks[2]},LCvt_jak_:{nB8az95L2:resolvedLinks[3]}},baseVariant,gestureVariant)})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({jS7A5PfpK:{height:107,width:`calc(${componentViewport?.width||\"100vw\"} - 56px)`,y:(componentViewport?.y||0)+0+64+0+303}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1saztqw-container\",layoutDependency:layoutDependency,layoutId:\"W3BLmzKVI-container\",nodeId:\"W3BLmzKVI\",rendersWithMotion:true,scopeId:\"m7dP0Rj1M\",children:/*#__PURE__*/_jsx(LinksProduct,{height:\"100%\",id:\"W3BLmzKVI\",layoutId:\"W3BLmzKVI\",style:{width:\"100%\"},variant:\"wSAtcgkbv\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jqmtbh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"gVIAIkgVW-container\",nodeId:\"gVIAIkgVW\",rendersWithMotion:true,scopeId:\"m7dP0Rj1M\",children:/*#__PURE__*/_jsx(LinksResources,{height:\"100%\",id:\"gVIAIkgVW\",layoutId:\"gVIAIkgVW\",style:{width:\"100%\"},variant:\"cunCUFy7w\",width:\"100%\",...addPropertyOverrides({jS7A5PfpK:{variant:\"IxOUtnrRD\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yyk5fw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"G8kqs7ixe-container\",nodeId:\"G8kqs7ixe\",rendersWithMotion:true,scopeId:\"m7dP0Rj1M\",children:/*#__PURE__*/_jsx(LinksCommunity,{height:\"100%\",id:\"G8kqs7ixe\",layoutId:\"G8kqs7ixe\",style:{width:\"100%\"},variant:\"Q3MjAIjCQ\",width:\"100%\",...addPropertyOverrides({jS7A5PfpK:{variant:\"Y2WpHXJS3\"}},baseVariant,gestureVariant)})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZVflF.framer-z0p8by, .framer-ZVflF .framer-z0p8by { display: block; }\",\".framer-ZVflF.framer-1msua4n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 1200px; }\",\".framer-ZVflF .framer-oqzbpt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZVflF .framer-468ry0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ZVflF .framer-1l8xe2k-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ZVflF .framer-1i7lyjl { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-ZVflF .framer-zsclrk { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZVflF .framer-2r73fl { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZVflF .framer-ssw41g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZVflF .framer-b7bmzc, .framer-ZVflF .framer-1mavu7u, .framer-ZVflF .framer-dy6trn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZVflF .framer-1nmwatq, .framer-ZVflF .framer-bymmo0, .framer-ZVflF .framer-1e69bd3 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-ZVflF .framer-5l943o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZVflF .framer-yroff6-container, .framer-ZVflF .framer-c51umh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZVflF .framer-1saztqw-container, .framer-ZVflF .framer-1jqmtbh-container, .framer-ZVflF .framer-1yyk5fw-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ZVflF.framer-v-1my1s9b.framer-1msua4n { flex-direction: column; gap: 0px; overflow: hidden; padding: 0px; width: 390px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZVflF.framer-v-1my1s9b .framer-oqzbpt { gap: unset; height: 64px; justify-content: space-between; order: 0; padding: 0px 8px 0px 8px; width: 100%; z-index: 2; }\",\".framer-ZVflF.framer-v-1my1s9b .framer-468ry0, .framer-ZVflF.framer-v-y2zd16 .framer-468ry0, .framer-ZVflF.framer-v-1t1xnw3 .framer-468ry0 { order: 0; }\",\".framer-ZVflF.framer-v-1my1s9b .framer-1i7lyjl, .framer-ZVflF.framer-v-y2zd16 .framer-1i7lyjl { cursor: pointer; height: 44px; order: 1; width: 44px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZVflF.framer-v-1my1s9b .framer-zsclrk, .framer-ZVflF.framer-v-1t1xnw3 .framer-zsclrk { height: 3px; top: calc(62.50000000000002% - 3px / 2); will-change: unset; }\",\".framer-ZVflF.framer-v-1my1s9b .framer-2r73fl, .framer-ZVflF.framer-v-1t1xnw3 .framer-2r73fl { height: 3px; top: calc(37.50000000000002% - 3px / 2); will-change: unset; }\",\".framer-ZVflF.framer-v-y2zd16.framer-1msua4n { flex-direction: column; gap: 32px; max-height: calc(var(--framer-viewport-height, 100vh) * 0.9); overflow: auto; overscroll-behavior: contain; padding: 0px 0px 64px 0px; width: 390px; }\",\".framer-ZVflF.framer-v-y2zd16 .framer-oqzbpt { gap: unset; height: 64px; justify-content: space-between; order: 0; padding: 0px 8px 0px 16px; width: 100%; z-index: 2; }\",\".framer-ZVflF.framer-v-y2zd16 .framer-zsclrk, .framer-ZVflF.framer-v-y2zd16 .framer-2r73fl { height: 4px; top: calc(50.00000000000002% - 4px / 2); will-change: unset; }\",\".framer-ZVflF.framer-v-y2zd16 .framer-ssw41g { flex: none; flex-direction: column; gap: 32px; height: 460px; justify-content: flex-start; order: 1; padding: 0px 32px 0px 32px; width: 100%; z-index: 2; }\",\".framer-ZVflF.framer-v-y2zd16 .framer-b7bmzc { gap: 15px; height: 64px; order: 0; overflow: hidden; width: 100%; }\",\".framer-ZVflF.framer-v-y2zd16 .framer-1mavu7u { gap: 15px; height: 64px; order: 1; overflow: hidden; width: 100%; }\",\".framer-ZVflF.framer-v-y2zd16 .framer-dy6trn { gap: 15px; height: 64px; order: 2; overflow: hidden; width: 100%; }\",\".framer-ZVflF.framer-v-y2zd16 .framer-5l943o { align-content: flex-end; align-items: flex-end; flex: 1 0 0px; height: 1px; order: 6; }\",\".framer-ZVflF.framer-v-1t1xnw3.framer-1msua4n { flex-direction: column; gap: 0px; overflow: hidden; padding: 0px 8px 0px 8px; width: 390px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-oqzbpt { cursor: pointer; gap: unset; height: 64px; justify-content: space-between; order: 0; padding: 0px 8px 0px 8px; width: 100%; z-index: 2; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-1i7lyjl { cursor: pointer; height: 44px; order: 1; width: 44px; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-ssw41g { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 0px; height: 1px; justify-content: flex-start; order: 1; padding: 0px 20px 0px 20px; width: 100%; z-index: 2; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-b7bmzc { gap: 15px; height: 56px; justify-content: flex-start; order: 0; overflow: hidden; width: 100%; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-1mavu7u { gap: 15px; height: 56px; justify-content: flex-start; order: 1; overflow: hidden; width: 100%; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-dy6trn { gap: 15px; height: 56px; justify-content: flex-start; order: 2; overflow: hidden; width: 100%; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-5l943o { order: 6; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-1saztqw-container { flex: none; order: 4; width: 100%; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-1jqmtbh-container { flex: none; order: 3; width: 100%; }\",\".framer-ZVflF.framer-v-1t1xnw3 .framer-1yyk5fw-container { flex: none; order: 5; width: 100%; }\",\".framer-ZVflF.framer-v-1rwbc6j.framer-1msua4n { padding: 4px 4px 4px 16px; }\",\".framer-ZVflF.framer-v-1rwbc6j .framer-ssw41g { gap: 16px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ZVflF[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-ZVflF [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-ZVflF[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-ZVflF [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-ZVflF[data-hide-scrollbars=\"true\"], .framer-ZVflF [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-ZVflF[data-border=\"true\"]::after, .framer-ZVflF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 75\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cD2y9j88i\":{\"layout\":[\"fixed\",\"auto\"]},\"fBbBrCywa\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"90vh\"]},\"jS7A5PfpK\":{\"layout\":[\"fixed\",\"auto\"]},\"LCvt_jak_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UbRlZmXxp\":\"logoColor\",\"qwa_nLO0J\":\"navItemColor\",\"wkfTt6d8V\":\"showNavItems\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerTrackingIds [{\"id\":\"click-contact-nav\"}]\n */const Framerm7dP0Rj1M=withCSS(Component,css,\"framer-ZVflF\");export default Framerm7dP0Rj1M;Framerm7dP0Rj1M.displayName=\"Header\";Framerm7dP0Rj1M.defaultProps={height:75,width:1200};addPropertyControls(Framerm7dP0Rj1M,{variant:{options:[\"VH0yeAwRD\",\"cD2y9j88i\",\"fBbBrCywa\",\"jS7A5PfpK\",\"LCvt_jak_\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"Phone Scroll\",\"Desktop Scroll\"],title:\"Variant\",type:ControlType.Enum},UbRlZmXxp:{defaultValue:'var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255)) /* {\"name\":\"Pure White\"} */',title:\"Logo Color\",type:ControlType.Color},qwa_nLO0J:{defaultValue:\"var(--token-1f6c88ac-fce6-473b-8056-6cb8d573a688, rgb(255, 255, 255))\",title:\"Nav Item color\",type:ControlType.Color},wkfTt6d8V:{defaultValue:true,title:\"Show Nav Items\",type:ControlType.Boolean}});addFonts(Framerm7dP0Rj1M,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"}]},...WhiteXSpaceLogoFonts,...ButtonMainFonts,...LinksProductFonts,...LinksResourcesFonts,...LinksCommunityFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm7dP0Rj1M\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"75\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerTrackingIds\":\"[{\\\"id\\\":\\\"click-contact-nav\\\"}]\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"UbRlZmXxp\\\":\\\"logoColor\\\",\\\"qwa_nLO0J\\\":\\\"navItemColor\\\",\\\"wkfTt6d8V\\\":\\\"showNavItems\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cD2y9j88i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fBbBrCywa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"90vh\\\"]},\\\"jS7A5PfpK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LCvt_jak_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./m7dP0Rj1M.map"],"mappings":"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"}