{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vc8x44zRSUu244WYDJQE/ZdPnVJnB8oVdl93xOhF6/TextTruncate.js", "ssg:https://framerusercontent.com/modules/LFe2j2T38vNJE1OrrY0U/1mvBPRLE3Y9UAfNLTdPz/Lz563Qqwm.js", "ssg:https://framerusercontent.com/modules/9wBIBbawIGgMUL2Ix1Tx/IAfEj183qBJI5tLqbH8F/CVyAOmmSa-0.js", "ssg:https://framerusercontent.com/modules/9wBIBbawIGgMUL2Ix1Tx/IAfEj183qBJI5tLqbH8F/CVyAOmmSa.js", "ssg:https://framerusercontent.com/modules/CgYB5Ux2FVuSZoC6ycH3/jMrqTIlokj1PoFp2o0Cs/sL58RmlP1.js", "ssg:https://framerusercontent.com/modules/etCPSmghPIU0WaXqgJUH/2zVYZApzRYSZ0oQkFGyX/CVyAOmmSa.js", "ssg:https://framerusercontent.com/modules/lCIJxKqxQSSEMKjcENG8/ErVjIJPWaG9aqbBVJE1h/componentPresets.js", "ssg:https://framerusercontent.com/modules/mO4IJnn754RvWPQPXWwW/eDNtpVug7FuTV3GYXIfN/s8U4PRwU7.js", "ssg:https://framerusercontent.com/modules/exRYr9RWE6xpFWJqmbC6/egOBMGJvGCChVTReHBrl/H3rdhSP5L-0.js", "ssg:https://framerusercontent.com/modules/exRYr9RWE6xpFWJqmbC6/egOBMGJvGCChVTReHBrl/H3rdhSP5L.js", "ssg:https://framerusercontent.com/modules/XuvqOrCVb8W6TExFaIKZ/bbKptWKqX63Ean6ryHLO/H3rdhSP5L.js", "ssg:https://framerusercontent.com/modules/Jz6H7HFQhTchUp6uXcdd/lLG55dzzmG6WaJFQOMN3/AutoYearCopyright.js", "ssg:https://framerusercontent.com/modules/fwDbVwzUIkmh6VHgvzOr/l4vhsGG3ZqbPKiiMPCUH/Aginu_h_p.js", "ssg:https://framerusercontent.com/modules/0JbLZy4cicPNL8ihEfRO/kqyQiIq8sWEVe99fFtlN/Scrollprogress.js", "ssg:https://framerusercontent.com/modules/N6PaLDx9ApSITupZaJ99/LGnLGeolQJb9QXPzIySu/r20LLhVTc.js", "ssg:https://framerusercontent.com/modules/zz4EXbLNMVVfsedqXBTW/OGss8jc5pJeHsoBkDC5o/U9_jvcW2Y-0.js", "ssg:https://framerusercontent.com/modules/zz4EXbLNMVVfsedqXBTW/OGss8jc5pJeHsoBkDC5o/U9_jvcW2Y.js", "ssg:https://framerusercontent.com/modules/GFGrC4IhM5CJa0i3UsJ0/WxsdjZ3wU8i1WEHVOQzp/KcKbQgnxZ.js", "ssg:https://framerusercontent.com/modules/QSEUXzPiB8hyDShRLMzj/YHncQHTj3XOe19dTCJyO/U9_jvcW2Y.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useRef,useEffect}from\"react\";import{addPropertyControls,ControlType,motion}from\"framer\";import styled from\"styled-components\";const TruncateTextContainer=styled(motion.div)`\n  overflow: hidden;\n  display: -webkit-box;\n  -webkit-line-clamp: ${({lines})=>lines};\n  -webkit-box-orient: vertical;\n  text-overflow: ellipsis;\n  word-wrap: break-word;\n  overflow-wrap: break-word;\n  white-space: pre-line;\n  ${({lines})=>lines===\"none\"?\"display: block;\":\"\"}\n`;const ExpandButtonContainer=styled.div`\n  display: flex;\n  justify-content: ${({align})=>align};\n`;const ExpandButton=styled.button`\n  background: none;\n  border: none;\n  color: ${({buttonColor})=>buttonColor};\n  cursor: pointer;\n  padding: 0;\n  margin-top: ${({marginTop})=>marginTop}px;\n  text-decoration: ${({underline})=>underline?\"underline\":\"none\"};\n`;/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight 100%\n */export default function TextTruncate({text,font,textColor,lines,fontSize,showButton,buttonSettings}){const[isExpanded,setIsExpanded]=useState(false);const[collapsedHeight,setCollapsedHeight]=useState(0);const[fullHeight,setFullHeight]=useState(\"auto\");const[hasMounted,setHasMounted]=useState(false);const containerRef=useRef(null);useEffect(()=>{if(containerRef.current){const lineHeight=parseInt(window.getComputedStyle(containerRef.current).lineHeight);const newCollapsedHeight=lineHeight*lines;setCollapsedHeight(newCollapsedHeight);// Temporarily set no line clamp to measure full height\ncontainerRef.current.style.webkitLineClamp=\"none\";setFullHeight(containerRef.current.scrollHeight);// Restore line clamp\ncontainerRef.current.style.webkitLineClamp=lines;}// Set the component as mounted\nsetHasMounted(true);},[lines,fontSize,text,isExpanded]);const dynamicStyle={fontSize:`${fontSize}px`,fontFamily:font.family,fontStyle:font.style,color:textColor,...font};const buttonDynamicStyle={fontSize:`${fontSize}px`,fontFamily:buttonSettings.buttonFont.family,fontStyle:buttonSettings.buttonFont.style,...buttonSettings.buttonFont};const height=isExpanded?fullHeight:collapsedHeight;return /*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(TruncateTextContainer,{ref:containerRef,style:dynamicStyle,lines:isExpanded?\"none\":lines,animate:hasMounted?{height}:undefined,transition:hasMounted?buttonSettings.transition:{duration:0},children:text}),showButton&&/*#__PURE__*/_jsx(ExpandButtonContainer,{align:buttonSettings.buttonAlignment,children:/*#__PURE__*/_jsx(ExpandButton,{buttonColor:buttonSettings.buttonColor,underline:buttonSettings.underline,marginTop:buttonSettings.marginTop,style:buttonDynamicStyle,onClick:()=>setIsExpanded(!isExpanded),children:isExpanded?buttonSettings.buttonLabelCollapse:buttonSettings.buttonLabelExpand})})]});}TextTruncate.defaultProps={text:\"With its dynamic truncation, smooth transitions, and extensive styling options, it provides an enhanced user experience for content display and interaction. The component ensures cross-browser compatibility and leverages the powerful capabilities of Framer Motion for animations.\",font:{family:\"Inter\",style:\"normal\"},textColor:\"#999999\",lines:2,fontSize:18,showButton:false,buttonSettings:{buttonFont:{family:\"Inter\",style:\"normal\"},buttonColor:\"#007BFF\",buttonLabelExpand:\"Show More\",buttonLabelCollapse:\"Show Less\",underline:true,marginTop:8,buttonAlignment:\"flex-start\",transition:{type:\"spring\",stiffness:400,damping:50}}};addPropertyControls(TextTruncate,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"This is a long text that will be truncated if it exceeds the container's width.\",displayTextArea:true},font:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},textColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#999999\"},lines:{type:ControlType.Number,title:\"Lines\",defaultValue:2,min:1,max:10,step:1,displayStepper:true},showButton:{type:ControlType.Boolean,title:\"Show More\",defaultValue:false},buttonSettings:{type:ControlType.Object,title:\"Button\",controls:{buttonFont:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},buttonColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#007BFF\"},buttonLabelExpand:{type:ControlType.String,title:\"More Label\",defaultValue:\"Show More\"},buttonLabelCollapse:{type:ControlType.String,title:\"Less Label\",defaultValue:\"Show Less\"},underline:{type:ControlType.Boolean,title:\"Underline\",defaultValue:true},marginTop:{type:ControlType.Number,title:\"Top Margin\",defaultValue:8,min:0,max:50,step:1,displayStepper:true},buttonAlignment:{type:ControlType.SegmentedEnum,title:\"Alignment\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"flex-start\"},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:50}}},hidden:({showButton})=>!showButton}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextTruncate\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"100%\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextTruncate.map", "// Generated by Framer (139b156)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;FK Grotesk Neue Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"FK Grotesk Neue Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/N2Pc9dIMewJ9QT6ivJefrkGZNfM.woff2\"}]}];export const css=[\".framer-ZbX6n .framer-styles-preset-1ayqxby:not(.rich-text-wrapper), .framer-ZbX6n .framer-styles-preset-1ayqxby.rich-text-wrapper p { --framer-font-family: \\\"FK Grotesk Neue Regular\\\", \\\"FK Grotesk Neue Regular Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss02' on, 'ss05' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9f6437d1-c9d6-43f3-abac-99cbac05a597, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 810px) { .framer-ZbX6n .framer-styles-preset-1ayqxby:not(.rich-text-wrapper), .framer-ZbX6n .framer-styles-preset-1ayqxby.rich-text-wrapper p { --framer-font-family: \\\"FK Grotesk Neue Regular\\\", \\\"FK Grotesk Neue Regular Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss02' on, 'ss05' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9f6437d1-c9d6-43f3-abac-99cbac05a597, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-ZbX6n .framer-styles-preset-1ayqxby:not(.rich-text-wrapper), .framer-ZbX6n .framer-styles-preset-1ayqxby.rich-text-wrapper p { --framer-font-family: \\\"FK Grotesk Neue Regular\\\", \\\"FK Grotesk Neue Regular Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss02' on, 'ss05' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9f6437d1-c9d6-43f3-abac-99cbac05a597, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-ZbX6n\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBSZWd1bGFy\",\"--framer-font-family\":'\"FK Grotesk Neue Regular\", \"FK Grotesk Neue Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ece3364-9c27-4841-8a00-f2e717e15e6d, rgb(255, 255, 255)))\"},children:\"Ouvrir la bo\\xeete mail\"})});export const v1=\"Copi\\xe9 dans le presse-papiers\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport*as localizedValues from\"./CVyAOmmSa-0.js\";const valuesByLocaleId={m6Hqh4YiX:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"u53vh2TYd\",\"d_mYIC8sD\",\"v1aitctKA\",\"JPOfkabXY\",\"egU1uwgai\"];const serializationHash=\"framer-XeLuX\";const variantClassNames={d_mYIC8sD:\"framer-v-g9cjsn\",egU1uwgai:\"framer-v-18hnhlz\",JPOfkabXY:\"framer-v-1firwgw\",u53vh2TYd:\"framer-v-8vak0j\",v1aitctKA:\"framer-v-ibyj13\"};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 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={Dribbble:\"v1aitctKA\",Instagram:\"egU1uwgai\",Linkedin:\"u53vh2TYd\",Malt:\"d_mYIC8sD\",Threads:\"JPOfkabXY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"u53vh2TYd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"u53vh2TYd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"d_mYIC8sD\",\"v1aitctKA\",\"JPOfkabXY\",\"egU1uwgai\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"d_mYIC8sD\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"egU1uwgai\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"v1aitctKA\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"JPOfkabXY\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-8vak0j\",className,classNames),\"data-framer-name\":\"Linkedin\",layoutDependency:layoutDependency,layoutId:\"u53vh2TYd\",ref:ref??ref1,style:{...style},...addPropertyOverrides({d_mYIC8sD:{\"data-framer-name\":\"Malt\"},egU1uwgai:{\"data-framer-name\":\"Instagram\"},JPOfkabXY:{\"data-framer-name\":\"Threads\"},v1aitctKA:{\"data-framer-name\":\"Dribbble\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mytbh0\",\"data-framer-name\":\"LinkedIn icon\",fill:\"black\",intrinsicHeight:72,intrinsicWidth:72,layoutDependency:layoutDependency,layoutId:\"gQXzBiqhc\",svg:'<svg height=\"72\" width=\"72\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M8 72h56a8 8 0 0 0 8-8V8a8 8 0 0 0-8-8H8a8 8 0 0 0-8 8v56a8 8 0 0 0 8 8Z\" fill=\"#007EBB\"/><path d=\"M62 62H51.316V43.802c0-4.99-1.896-7.777-5.845-7.777-4.296 0-6.54 2.901-6.54 7.777V62H28.632V27.333H38.93v4.67s3.096-5.729 10.453-5.729c7.353 0 12.617 4.49 12.617 13.777V62ZM16.35 22.794c-3.508 0-6.35-2.864-6.35-6.397C10 12.864 12.842 10 16.35 10c3.507 0 6.347 2.864 6.347 6.397 0 3.533-2.84 6.397-6.348 6.397ZM11.032 62h10.736V27.333H11.033V62Z\" fill=\"#FFF\"/></g></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tg35zs\",\"data-framer-name\":\"Malt logo_pink\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"A_UGFXiv_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 13.558 2.331 C 12.362 1.135 11.084 1.909 10.285 2.708 L 2.733 10.261 C 1.933 11.061 1.096 12.275 2.355 13.533 C 3.614 14.792 4.828 13.956 5.628 13.156 L 13.18 5.604 C 13.979 4.805 14.753 3.527 13.557 2.331 Z M 6.342 2.021 L 7.941 3.621 L 9.569 1.993 C 9.68 1.882 9.792 1.779 9.905 1.683 C 9.734 0.822 9.244 0.045 7.941 0.045 C 6.635 0.045 6.145 0.825 5.976 1.687 C 6.098 1.792 6.219 1.899 6.342 2.021 Z M 9.568 13.9 L 7.941 12.274 L 6.343 13.872 C 6.226 13.988 6.105 14.101 5.981 14.208 C 6.164 15.085 6.683 15.888 7.941 15.888 C 9.202 15.888 9.72 15.081 9.902 14.201 C 9.79 14.105 9.678 14.011 9.568 13.9 Z M 5.664 5.898 L 2.581 5.898 C 1.451 5.898 0 6.254 0 7.945 C 0 9.207 0.808 9.725 1.687 9.907 C 1.792 9.787 5.664 5.898 5.664 5.898 Z M 14.201 5.98 C 14.103 6.094 10.222 9.992 10.222 9.992 L 13.261 9.992 C 14.392 9.992 15.843 9.725 15.843 7.945 C 15.843 6.64 15.062 6.149 14.2 5.98 Z M 6.674 4.886 L 7.225 4.335 L 5.627 2.737 C 4.827 1.938 3.613 1.101 2.354 2.359 C 1.431 3.282 1.636 4.181 2.126 4.91 C 2.275 4.899 6.674 4.886 6.674 4.886 Z M 9.208 11.004 L 8.656 11.557 L 10.284 13.184 C 11.084 13.984 12.361 14.757 13.557 13.562 C 14.449 12.669 14.244 11.732 13.751 10.981 C 13.592 10.993 9.208 11.004 9.208 11.004 Z\" fill=\"rgb(252,86,86)\"></path></svg>',svgContentId:9118473149,withExternalLayout:true,...addPropertyOverrides({d_mYIC8sD:{svgContentId:10775034340}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xjk703\",\"data-framer-name\":\"1298747 instagram_brand_logo_social media_icon\",fill:\"black\",intrinsicHeight:128,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"kXgV7BZPi\",svg:'<svg viewBox=\"0 0 128 128\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" fill=\"none\" d=\"M0 0h128v128H0z\"/><radialGradient cx=\"19.111\" cy=\"128.444\" gradientUnits=\"userSpaceOnUse\" id=\"a\" r=\"163.552\"><stop offset=\"0\" style=\"stop-color:#ffb140\"/><stop offset=\".256\" style=\"stop-color:#ff5445\"/><stop offset=\".599\" style=\"stop-color:#fc2b82\"/><stop offset=\"1\" style=\"stop-color:#8e40b7\"/></radialGradient><path clip-rule=\"evenodd\" d=\"M105.843 29.837a7.68 7.68 0 1 1-15.36 0 7.68 7.68 0 0 1 15.36 0zM64 85.333c-11.782 0-21.333-9.551-21.333-21.333 0-11.782 9.551-21.333 21.333-21.333 11.782 0 21.333 9.551 21.333 21.333 0 11.782-9.551 21.333-21.333 21.333zm0-54.198c-18.151 0-32.865 14.714-32.865 32.865 0 18.151 14.714 32.865 32.865 32.865 18.151 0 32.865-14.714 32.865-32.865 0-18.151-14.714-32.865-32.865-32.865zm0-19.603c17.089 0 19.113.065 25.861.373 6.24.285 9.629 1.327 11.884 2.204 2.987 1.161 5.119 2.548 7.359 4.788 2.24 2.239 3.627 4.371 4.788 7.359.876 2.255 1.919 5.644 2.204 11.884.308 6.749.373 8.773.373 25.862s-.065 19.113-.373 25.861c-.285 6.24-1.327 9.629-2.204 11.884-1.161 2.987-2.548 5.119-4.788 7.359-2.239 2.24-4.371 3.627-7.359 4.788-2.255.876-5.644 1.919-11.884 2.204-6.748.308-8.772.373-25.861.373-17.09 0-19.114-.065-25.862-.373-6.24-.285-9.629-1.327-11.884-2.204-2.987-1.161-5.119-2.548-7.359-4.788-2.239-2.239-3.627-4.371-4.788-7.359-.876-2.255-1.919-5.644-2.204-11.884-.308-6.749-.373-8.773-.373-25.861 0-17.089.065-19.113.373-25.862.285-6.24 1.327-9.629 2.204-11.884 1.161-2.987 2.548-5.119 4.788-7.359 2.239-2.24 4.371-3.627 7.359-4.788 2.255-.876 5.644-1.919 11.884-2.204 6.749-.308 8.773-.373 25.862-.373zM64 0C46.619 0 44.439.074 37.613.385 30.801.696 26.148 1.778 22.078 3.36c-4.209 1.635-7.778 3.824-11.336 7.382C7.184 14.3 4.995 17.869 3.36 22.078 1.778 26.149.696 30.801.385 37.613.074 44.439 0 46.619 0 64s.074 19.561.385 26.387c.311 6.812 1.393 11.464 2.975 15.535 1.635 4.209 3.824 7.778 7.382 11.336 3.558 3.558 7.127 5.746 11.336 7.382 4.071 1.582 8.723 2.664 15.535 2.975 6.826.311 9.006.385 26.387.385s19.561-.074 26.387-.385c6.812-.311 11.464-1.393 15.535-2.975 4.209-1.636 7.778-3.824 11.336-7.382 3.558-3.558 5.746-7.127 7.382-11.336 1.582-4.071 2.664-8.723 2.975-15.535.311-6.826.385-9.006.385-26.387s-.074-19.561-.385-26.387c-.311-6.812-1.393-11.464-2.975-15.535-1.636-4.209-3.824-7.778-7.382-11.336-3.558-3.558-7.127-5.746-11.336-7.382C101.851 1.778 97.199.696 90.387.385 83.561.074 81.381 0 64 0z\" fill=\"url(#a)\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qm5nam\",\"data-framer-name\":\"Dribbble\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UCDI55wQR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 16 C 3.59 16 0 12.41 0 8 C 0 3.59 3.59 0 8 0 C 12.41 0 16 3.59 16 8 C 16 12.41 12.41 16 8 16 Z M 14.747 9.095 C 14.513 9.021 12.633 8.459 10.491 8.803 C 11.384 11.259 11.749 13.259 11.819 13.675 C 13.385 12.617 14.445 10.96 14.749 9.095 Z M 10.67 14.3 C 10.568 13.7 10.17 11.612 9.21 9.12 L 9.166 9.133 C 5.306 10.477 3.926 13.15 3.806 13.4 C 5.002 14.338 6.479 14.847 7.999 14.844 C 8.946 14.844 9.846 14.651 10.666 14.301 Z M 2.923 12.58 C 3.078 12.313 4.953 9.21 8.478 8.07 C 8.568 8.04 8.658 8.014 8.748 7.99 C 8.575 7.6 8.388 7.212 8.193 6.83 C 4.78 7.85 1.471 7.807 1.171 7.8 L 1.168 8.008 C 1.168 9.763 1.833 11.366 2.924 12.578 Z M 1.31 6.61 C 1.617 6.615 4.432 6.627 7.628 5.778 C 6.855 4.416 6.009 3.097 5.095 1.826 C 3.155 2.739 1.754 4.508 1.311 6.606 Z M 6.4 1.368 C 6.588 1.621 7.83 3.311 8.948 5.368 C 11.378 4.458 12.408 3.075 12.53 2.9 C 11.283 1.788 9.671 1.174 8 1.176 C 7.45 1.176 6.913 1.243 6.4 1.366 Z M 13.29 3.69 C 13.145 3.883 12 5.352 9.474 6.383 C 9.634 6.71 9.787 7.04 9.927 7.374 C 9.981 7.494 10.027 7.614 10.074 7.727 C 12.347 7.441 14.607 7.901 14.834 7.947 C 14.821 6.334 14.247 4.854 13.294 3.694 Z\" fill=\"rgb(207, 92, 160)\"></path></svg>',svgContentId:12511422222,withExternalLayout:true,...addPropertyOverrides({v1aitctKA:{svgContentId:11489934067}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-g3uw8q\",\"data-framer-name\":\"Threads\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Vw1fZe5UD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8.124 16 L 8.119 16 C 5.732 15.984 3.897 15.197 2.663 13.661 C 1.567 12.293 1 10.391 0.981 8.007 L 0.981 7.995 C 1.001 5.609 1.567 3.709 2.665 2.341 C 3.897 0.803 5.733 0.016 8.12 0 L 8.129 0 C 9.96 0.013 11.491 0.483 12.68 1.399 C 13.798 2.259 14.585 3.485 15.019 5.043 L 13.659 5.423 C 12.923 2.783 11.061 1.433 8.123 1.413 C 6.183 1.427 4.717 2.037 3.763 3.224 C 2.871 4.336 2.411 5.943 2.393 8 C 2.411 10.057 2.871 11.664 3.764 12.776 C 4.717 13.965 6.185 14.575 8.124 14.587 C 9.873 14.574 11.029 14.167 11.991 13.224 C 13.089 12.149 13.069 10.829 12.717 10.025 C 12.511 9.552 12.135 9.159 11.628 8.859 C 11.5 9.76 11.213 10.489 10.772 11.04 C 10.181 11.775 9.345 12.176 8.285 12.233 C 7.484 12.277 6.711 12.088 6.113 11.699 C 5.404 11.24 4.989 10.539 4.945 9.723 C 4.901 8.93 5.217 8.2 5.831 7.669 C 6.418 7.162 7.244 6.864 8.22 6.808 C 8.893 6.766 9.568 6.798 10.233 6.903 C 10.149 6.408 9.983 6.015 9.733 5.731 C 9.391 5.341 8.861 5.143 8.161 5.138 L 8.141 5.138 C 7.579 5.138 6.813 5.293 6.327 6.018 L 5.156 5.231 C 5.809 4.262 6.868 3.727 8.141 3.727 L 8.171 3.727 C 10.3 3.741 11.569 5.044 11.695 7.319 C 11.767 7.35 11.839 7.382 11.909 7.414 C 12.903 7.881 13.629 8.588 14.012 9.461 C 14.543 10.674 14.593 12.654 12.98 14.233 C 11.747 15.439 10.251 15.985 8.129 15.999 Z M 8.793 8.207 C 8.631 8.207 8.468 8.211 8.3 8.221 C 7.076 8.289 6.313 8.851 6.356 9.649 C 6.401 10.487 7.324 10.875 8.212 10.827 C 9.028 10.784 10.091 10.465 10.269 8.354 C 9.784 8.253 9.289 8.203 8.793 8.207 Z\" fill=\"var(--token-88dc0878-ad75-48ea-bd47-cb6e9db24c28, rgb(0, 0, 0))\"></path></svg>',svgContentId:11959040683,withExternalLayout:true,...addPropertyOverrides({JPOfkabXY:{svgContentId:8758640452}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XeLuX.framer-djdngz, .framer-XeLuX .framer-djdngz { display: block; }\",\".framer-XeLuX.framer-8vak0j { height: 16px; overflow: visible; position: relative; width: 16px; }\",\".framer-XeLuX .framer-1mytbh0 { flex: none; height: 16px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-XeLuX .framer-1tg35zs, .framer-XeLuX .framer-1qm5nam, .framer-XeLuX .framer-g3uw8q { flex: none; height: 16px; left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-XeLuX .framer-xjk703 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-XeLuX.framer-v-g9cjsn.framer-8vak0j, .framer-XeLuX.framer-v-ibyj13.framer-8vak0j, .framer-XeLuX.framer-v-1firwgw.framer-8vak0j, .framer-XeLuX.framer-v-18hnhlz.framer-8vak0j { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 16px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 16\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"d_mYIC8sD\":{\"layout\":[\"fixed\",\"fixed\"]},\"v1aitctKA\":{\"layout\":[\"fixed\",\"fixed\"]},\"JPOfkabXY\":{\"layout\":[\"fixed\",\"fixed\"]},\"egU1uwgai\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersL58RmlP1=withCSS(Component,css,\"framer-XeLuX\");export default FramersL58RmlP1;FramersL58RmlP1.displayName=\"Social icon\";FramersL58RmlP1.defaultProps={height:16,width:16};addPropertyControls(FramersL58RmlP1,{variant:{options:[\"u53vh2TYd\",\"d_mYIC8sD\",\"v1aitctKA\",\"JPOfkabXY\",\"egU1uwgai\"],optionTitles:[\"Linkedin\",\"Malt\",\"Dribbble\",\"Threads\",\"Instagram\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersL58RmlP1,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersL58RmlP1\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"16\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d_mYIC8sD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v1aitctKA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JPOfkabXY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"egU1uwgai\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"16\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sL58RmlP1.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import TextTruncate from\"https://framerusercontent.com/modules/vc8x44zRSUu244WYDJQE/ZdPnVJnB8oVdl93xOhF6/TextTruncate.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/LFe2j2T38vNJE1OrrY0U/1mvBPRLE3Y9UAfNLTdPz/Lz563Qqwm.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/9wBIBbawIGgMUL2Ix1Tx/IAfEj183qBJI5tLqbH8F/CVyAOmmSa.js\";import SocialIcon from\"https://framerusercontent.com/modules/CgYB5Ux2FVuSZoC6ycH3/jMrqTIlokj1PoFp2o0Cs/sL58RmlP1.js\";const SocialIconFonts=getFonts(SocialIcon);const TextTruncateFonts=getFonts(TextTruncate);const MotionDivWithFX=withFX(motion.div);const ClipboardFonts=getFonts(Clipboard);const enabledGestures={EmR7ul54w:{hover:true},HT14T06u6:{hover:true},nop_NYlMK:{hover:true},PPI51T5Rz:{hover:true},V8zhBobaY:{hover:true}};const cycleOrder=[\"V8zhBobaY\",\"HT14T06u6\",\"nop_NYlMK\",\"EmR7ul54w\",\"Upopgh4e7\",\"PPI51T5Rz\"];const serializationHash=\"framer-KBZ9Y\";const variantClassNames={EmR7ul54w:\"framer-v-15z9c9i\",HT14T06u6:\"framer-v-bjd5yh\",nop_NYlMK:\"framer-v-1s3cnqb\",PPI51T5Rz:\"framer-v-58lwm7\",Upopgh4e7:\"framer-v-v2d8nd\",V8zhBobaY:\"framer-v-1y3t647\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const 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 Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone disabled\":\"Upopgh4e7\",Default:\"V8zhBobaY\",Mailbox:\"HT14T06u6\",Phone:\"nop_NYlMK\",Socials:\"EmR7ul54w\",WhatsApp:\"PPI51T5Rz\"};const getProps=({data,height,id,newTab,width,...props})=>{return{...props,O04AfhusP:data??props.O04AfhusP??\"hello@julianmoss.io\",UVeVzUZ3K:newTab??props.UVeVzUZ3K,variant:humanReadableVariantMap[props.variant]??props.variant??\"V8zhBobaY\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,O04AfhusP,UVeVzUZ3K,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V8zhBobaY\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterupml6a=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"HT14T06u6-hover\",\"nop_NYlMK-hover\",\"PPI51T5Rz-hover\"].includes(gestureVariant))return false;if([\"HT14T06u6\",\"nop_NYlMK\",\"Upopgh4e7\",\"PPI51T5Rz\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"EmR7ul54w-hover\")return true;if(baseVariant===\"EmR7ul54w\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"EmR7ul54w-hover\")return false;if(baseVariant===\"EmR7ul54w\")return false;return true;};const isDisplayed3=()=>{if([\"HT14T06u6-hover\",\"nop_NYlMK-hover\",\"EmR7ul54w-hover\",\"PPI51T5Rz-hover\"].includes(gestureVariant))return false;if([\"HT14T06u6\",\"nop_NYlMK\",\"EmR7ul54w\",\"Upopgh4e7\",\"PPI51T5Rz\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(gestureVariant===\"HT14T06u6-hover\")return true;if(baseVariant===\"HT14T06u6\")return true;return false;};const isDisplayed5=()=>{if(gestureVariant===\"HT14T06u6-hover\")return true;if([\"HT14T06u6\",\"Upopgh4e7\"].includes(baseVariant))return true;return false;};const ref2=React.useRef(null);const isDisplayed6=()=>{if(gestureVariant===\"HT14T06u6-hover\")return false;if([\"HT14T06u6\",\"Upopgh4e7\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(gestureVariant===\"nop_NYlMK-hover\")return true;if([\"nop_NYlMK\",\"Upopgh4e7\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if(gestureVariant===\"PPI51T5Rz-hover\")return true;if(baseVariant===\"PPI51T5Rz\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed5(),children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"V8zhBobaY\",...addPropertyOverrides({HT14T06u6:{href:\"mailto:hello@julianmoss.io\",openInNewTab:UVeVzUZ3K},nop_NYlMK:{href:\"tel:+ 33 7 81 00 59 60\",openInNewTab:UVeVzUZ3K},PPI51T5Rz:{href:\"https://wa.me/33781005960\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1y3t647\",className,classNames)} framer-idapqq`,\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,id:`${layoutId}-1y3t647`,layoutDependency:layoutDependency,layoutId:\"V8zhBobaY\",onMouseEnter:onMouseEnterupml6a({overlay}),ref:ref??ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(235, 235, 235)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"var(--token-039e98da-023d-4b83-b740-11d4678885a7, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{\"EmR7ul54w-hover\":{backgroundColor:\"rgb(242, 242, 242)\"},\"HT14T06u6-hover\":{backgroundColor:\"rgb(242, 242, 242)\"},\"nop_NYlMK-hover\":{backgroundColor:\"rgb(242, 242, 242)\"},\"PPI51T5Rz-hover\":{backgroundColor:\"rgb(242, 242, 242)\"},\"V8zhBobaY-hover\":{backgroundColor:\"rgb(242, 242, 242)\"},Upopgh4e7:{backgroundColor:\"rgb(245, 245, 245)\"}},...addPropertyOverrides({\"EmR7ul54w-hover\":{\"data-framer-name\":undefined},\"HT14T06u6-hover\":{\"data-framer-name\":undefined},\"nop_NYlMK-hover\":{\"data-framer-name\":undefined},\"PPI51T5Rz-hover\":{\"data-framer-name\":undefined},\"V8zhBobaY-hover\":{\"data-framer-name\":undefined},EmR7ul54w:{\"data-framer-name\":\"Socials\"},HT14T06u6:{\"data-framer-name\":\"Mailbox\"},nop_NYlMK:{\"data-framer-name\":\"Phone\"},PPI51T5Rz:{\"data-framer-name\":\"WhatsApp\"},Upopgh4e7:{\"data-framer-name\":\"Phone disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2pidr1\",\"data-framer-name\":\"Lead container\",layoutDependency:layoutDependency,layoutId:\"OetWCuOLR\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({EmR7ul54w:{height:16,width:\"16px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||44)-24-200)/2)+92}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pvousm-container\",layoutDependency:layoutDependency,layoutId:\"ZhN5epuAJ-container\",nodeId:\"ZhN5epuAJ\",rendersWithMotion:true,scopeId:\"CVyAOmmSa\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"ZhN5epuAJ\",layoutId:\"ZhN5epuAJ\",style:{height:\"100%\",width:\"100%\"},variant:\"u53vh2TYd\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ayqxby\",\"data-styles-preset\":\"Lz563Qqwm\",children:\"hello@julianmoss.io\"})}),className:\"framer-1dnc17f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WMENVBeIc\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:O04AfhusP,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-86adnr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oSoJLlks7-container\",nodeId:\"oSoJLlks7\",rendersWithMotion:true,scopeId:\"CVyAOmmSa\",children:/*#__PURE__*/_jsx(TextTruncate,{buttonSettings:{buttonAlignment:\"flex-start\",buttonColor:\"rgb(0, 123, 255)\",buttonFont:{},buttonLabelCollapse:\"Show Less\",buttonLabelExpand:\"Show More\",marginTop:8,transition:{damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"},underline:true},font:{fontFamily:'\"FK Grotesk Neue Regular\", \"FK Grotesk Neue Regular Placeholder\", sans-serif',fontSize:\"14px\",letterSpacing:\"0px\",lineHeight:\"16px\"},height:\"100%\",id:\"oSoJLlks7\",layoutId:\"oSoJLlks7\",lines:1,showButton:false,style:{width:\"100%\"},text:\"julian-moss\",textColor:\"var(--token-239b6fa0-5cb3-4df1-b912-009d44164192, rgb(34, 38, 47))\",width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1jvv6ip\",\"data-framer-name\":\"Copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XXsERLOkW\",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 transform=\"translate(3.333 3.333)\" id=\"ss12286083407_1\"><path d=\"M 3.333 5 C 3.333 4.08 4.08 3.333 5 3.333 L 11.667 3.333 C 12.587 3.333 13.333 4.08 13.333 5 L 13.333 11.667 C 13.333 12.587 12.587 13.333 11.667 13.333 L 5 13.333 C 4.08 13.333 3.333 12.587 3.333 11.667 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 10 3.333 L 10 1.667 C 10 0.746 9.254 0 8.333 0 L 1.667 0 C 0.746 0 0 0.746 0 1.667 L 0 8.333 C 0 9.254 0.746 10 1.667 10 L 3.333 10\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:12286083407,withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tcsc3u\",\"data-framer-name\":\"open-inbox\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VQ9KiN3lX\",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 transform=\"translate(2.5 4.167)\" id=\"ss9514159008_1\"><path d=\"M 8.333 11.667 L 1.667 11.667 C 0.746 11.667 0 10.92 0 10 L 0 1.667 C 0 0.746 0.746 0 1.667 0 L 13.333 0 C 14.254 0 15 0.746 15 1.667 L 15 6.667\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 0 1.667 L 7.5 6.667 L 15 1.667 M 10.833 14.167 L 15 10 M 15 13.75 L 15 10 L 11.25 10\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:9514159008,withExternalLayout:true,...addPropertyOverrides({HT14T06u6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g transform=\"translate(2.5 4.167)\" id=\"ss9518498332_1\"><path d=\"M 8.333 11.667 L 1.667 11.667 C 0.746 11.667 0 10.92 0 10 L 0 1.667 C 0 0.746 0.746 0 1.667 0 L 13.333 0 C 14.254 0 15 0.746 15 1.667 L 15 6.667\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 0 1.667 L 7.5 6.667 L 15 1.667 M 10.833 14.167 L 15 10 M 15 13.75 L 15 10 L 11.25 10\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:9518498332}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref??ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1y3t647`,offsetX:0,offsetY:-16,onDismiss:overlay.hide,placement:\"top\",safeArea:true,zIndex:11,...addPropertyOverrides({HT14T06u6:{offsetY:-8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1qirz49\",\"data-framer-name\":\"Overlay - Hover\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"LLpE6lG7N\",ref:ref2,role:\"dialog\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(0, 0, 0, 0.8)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",WebkitBackdropFilter:\"blur(10px)\"},children:[isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-uzwmg0\",\"data-framer-name\":\"Copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dXHok5FBS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g transform=\"translate(2.667 2.667)\" id=\"ss9557786393_1\"><path d=\"M 2.667 4 C 2.667 3.264 3.264 2.667 4 2.667 L 9.333 2.667 C 10.07 2.667 10.667 3.264 10.667 4 L 10.667 9.333 C 10.667 10.07 10.07 10.667 9.333 10.667 L 4 10.667 C 3.264 10.667 2.667 10.07 2.667 9.333 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-49ba34ea-a04b-45c5-901a-6a70cb0f25fc, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 8 2.667 L 8 1.333 C 8 0.597 7.403 0 6.667 0 L 1.333 0 C 0.597 0 0 0.597 0 1.333 L 0 6.667 C 0 7.403 0.597 8 1.333 8 L 2.667 8\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-49ba34ea-a04b-45c5-901a-6a70cb0f25fc, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:9557786393,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBSZWd1bGFy\",\"--framer-font-family\":'\"FK Grotesk Neue Regular\", \"FK Grotesk Neue Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ece3364-9c27-4841-8a00-f2e717e15e6d, rgb(255, 255, 255)))\"},children:\"Copy to clipboard\"})}),className:\"framer-85sgfw\",fonts:[\"CUSTOM;FK Grotesk Neue Regular\"],layoutDependency:layoutDependency,layoutId:\"Bu_WPPxYl\",style:{\"--extracted-r6o4lv\":\"var(--token-5ece3364-9c27-4841-8a00-f2e717e15e6d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HT14T06u6:{children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBSZWd1bGFy\",\"--framer-font-family\":'\"FK Grotesk Neue Regular\", \"FK Grotesk Neue Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ece3364-9c27-4841-8a00-f2e717e15e6d, rgb(255, 255, 255)))\"},children:\"Open in mailbox\"})})},Upopgh4e7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBSZWd1bGFy\",\"--framer-font-family\":'\"FK Grotesk Neue Regular\", \"FK Grotesk Neue Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5ece3364-9c27-4841-8a00-f2e717e15e6d, rgb(255, 255, 255)))\"},children:\"Unavailable on desktop\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nzdicn\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VLEMDqBo5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 0 0 L 24 0 L 24 24 L 0 24 Z\" fill=\"transparent\"></path><path d=\"M 12 6 L 6 6 C 4.895 6 4 6.895 4 8 L 4 18 C 4 19.105 4.895 20 6 20 L 16 20 C 17.105 20 18 19.105 18 18 L 18 12 M 11 13 L 20 4 M 15 4 L 20 4 L 20 9\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11696926762,withExternalLayout:true,...addPropertyOverrides({HT14T06u6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 20 0 L 20 20 L 0 20 Z\" fill=\"transparent\"></path><path d=\"M 10 5.5 L 5.5 5.5 C 4.672 5.5 4 6.172 4 7 L 4 14.5 C 4 15.328 4.672 16 5.5 16 L 13 16 C 13.828 16 14.5 15.328 14.5 14.5 L 14.5 10 M 9.25 10.75 L 16 4 M 12.25 4 L 16 4 L 16 7.75\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-49ba34ea-a04b-45c5-901a-6a70cb0f25fc, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8633988431}},baseVariant,gestureVariant)})]})})}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1aqmtai\",\"data-framer-name\":\"open-phone\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lfCFmvEHp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 17.5 L 6.667 17.5 C 5.746 17.5 5 16.754 5 15.833 L 5 4.167 C 5 3.246 5.746 2.5 6.667 2.5 L 13.333 2.5 C 14.254 2.5 15 3.246 15 4.167 L 15 10.833 M 9.167 3.333 L 10.833 3.333 M 13.333 18.333 L 17.5 14.167 M 17.5 17.917 L 17.5 14.167 L 13.75 14.167 M 10 14.167 L 10 14.175\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12160520323,withExternalLayout:true,...addPropertyOverrides({nop_NYlMK:{svgContentId:11267441805},Upopgh4e7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 17.5 L 6.667 17.5 C 5.746 17.5 5 16.754 5 15.833 L 5 4.167 C 5 3.246 5.746 2.5 6.667 2.5 L 13.333 2.5 C 14.254 2.5 15 3.246 15 4.167 L 15 10.833 M 9.167 3.333 L 10.833 3.333 M 13.333 18.333 L 17.5 14.167 M 17.5 17.917 L 17.5 14.167 L 13.75 14.167 M 10 14.167 L 10 14.175\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-5507050e-068d-4499-bd0e-735aa90e2bd7, rgb(105, 118, 145))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9903042348}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1hcz99p\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"H3BVCaIOE\",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 transform=\"translate(2.5 2.5)\" id=\"ss10116181022_1\"><path d=\"M 14.95 8.371 C 15.311 5.28 13.726 2.287 10.966 0.849 C 8.206 -0.589 4.845 -0.174 2.519 1.894 C 0.192 3.961 -0.616 7.25 0.488 10.159 C 1.591 13.069 4.377 14.995 7.489 15 M 0.5 5 L 14.5 5 M 0.5 10 L 8.333 10\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 7.083 0 C 4.219 4.59 4.219 10.41 7.083 15 M 7.916 0 C 9.516 2.562 10.254 5.567 10.024 8.578 M 10.833 15.833 L 15 11.667 M 15 15.417 L 15 11.667 L 11.25 11.667\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:10116181022,withExternalLayout:true,...addPropertyOverrides({EmR7ul54w:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g transform=\"translate(2.5 2.5)\" id=\"ss9012363842_1\"><path d=\"M 14.95 8.371 C 15.311 5.28 13.726 2.287 10.966 0.849 C 8.206 -0.589 4.845 -0.174 2.519 1.894 C 0.192 3.961 -0.616 7.25 0.488 10.159 C 1.591 13.069 4.377 14.995 7.489 15 M 0.5 5 L 14.5 5 M 0.5 10 L 8.333 10\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 7.083 0 C 4.219 4.59 4.219 10.41 7.083 15 M 7.916 0 C 9.516 2.562 10.254 5.567 10.024 8.578 M 10.833 15.833 L 15 11.667 M 15 15.417 L 15 11.667 L 11.25 11.667\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:9012363842}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1rpd5w4\",\"data-framer-name\":\"Whatsapp\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UU_RcopBq\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 14.56 11.985 C 14.313 11.861 13.095 11.262 12.868 11.179 C 12.641 11.097 12.476 11.056 12.31 11.304 C 12.146 11.552 11.671 12.109 11.527 12.274 C 11.383 12.44 11.238 12.46 10.99 12.337 C 10.743 12.212 9.944 11.951 8.998 11.107 C 8.263 10.451 7.765 9.64 7.621 9.392 C 7.477 9.144 7.606 9.01 7.729 8.887 C 7.841 8.776 7.978 8.597 8.101 8.453 C 8.225 8.308 8.266 8.205 8.349 8.039 C 8.432 7.874 8.391 7.73 8.328 7.606 C 8.266 7.482 7.771 6.262 7.565 5.767 C 7.363 5.284 7.159 5.35 7.008 5.342 C 6.849 5.335 6.691 5.333 6.533 5.333 C 6.368 5.333 6.099 5.395 5.873 5.643 C 5.646 5.891 5.006 6.49 5.006 7.709 C 5.006 8.927 5.893 10.105 6.017 10.271 C 6.141 10.436 7.763 12.937 10.248 14.01 C 10.838 14.265 11.299 14.417 11.659 14.531 C 12.253 14.72 12.793 14.693 13.218 14.629 C 13.694 14.558 14.683 14.03 14.89 13.452 C 15.097 12.873 15.097 12.377 15.034 12.274 C 14.973 12.171 14.808 12.109 14.559 11.985 M 10.042 18.154 L 10.038 18.154 C 8.563 18.154 7.115 17.758 5.846 17.006 L 5.545 16.828 L 2.427 17.646 L 3.259 14.606 L 3.063 14.294 C 2.239 12.981 1.802 11.461 1.805 9.911 C 1.806 5.369 5.502 1.674 10.045 1.674 C 12.245 1.674 14.313 2.533 15.868 4.089 C 17.418 5.632 18.286 7.731 18.279 9.918 C 18.277 14.459 14.582 18.154 10.042 18.154 M 17.053 2.907 C 15.198 1.04 12.673 -0.007 10.042 0 C 4.579 0 0.133 4.446 0.131 9.91 C 0.131 11.657 0.587 13.362 1.454 14.864 L 0.048 20 L 5.302 18.622 C 6.755 19.413 8.383 19.828 10.037 19.828 L 10.042 19.828 C 15.503 19.828 19.95 15.383 19.953 9.918 C 19.961 7.287 18.916 4.763 17.053 2.907 Z\" fill=\"var(--token-88dc0878-ad75-48ea-bd47-cb6e9db24c28, rgb(0, 0, 0))\"></path></svg>',svgContentId:9283898611,withExternalLayout:true,...addPropertyOverrides({PPI51T5Rz:{svgContentId:8807575835}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pvq5a9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LDcYUWd2I-container\",nodeId:\"LDcYUWd2I\",rendersWithMotion:true,scopeId:\"CVyAOmmSa\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,color:\"rgba(255, 255, 255, 0)\",content:O04AfhusP,fill:\"rgba(0, 102, 255, 0)\",font:{fontFamily:'\"FK Grotesk Neue Regular\", \"FK Grotesk Neue Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"LDcYUWd2I\",isMixedBorderRadius:false,label:getLocalizedValue(\"v1\",activeLocale)??\"Copied to clipboard\",layoutId:\"LDcYUWd2I\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\"})})})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KBZ9Y.framer-idapqq, .framer-KBZ9Y .framer-idapqq { display: block; }\",\".framer-KBZ9Y.framer-1y3t647 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 12px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KBZ9Y .framer-2pidr1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KBZ9Y .framer-1pvousm-container, .framer-KBZ9Y .framer-uzwmg0 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-KBZ9Y .framer-1dnc17f, .framer-KBZ9Y .framer-85sgfw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KBZ9Y .framer-86adnr-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-KBZ9Y .framer-1jvv6ip, .framer-KBZ9Y .framer-tcsc3u, .framer-KBZ9Y .framer-1aqmtai, .framer-KBZ9Y .framer-1hcz99p, .framer-KBZ9Y .framer-1rpd5w4 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-KBZ9Y .framer-1qirz49 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-KBZ9Y .framer-1nzdicn { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-KBZ9Y .framer-pvq5a9-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KBZ9Y .framer-2pidr1, .framer-KBZ9Y .framer-1qirz49 { gap: 0px; } .framer-KBZ9Y .framer-2pidr1 > *, .framer-KBZ9Y .framer-1qirz49 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-KBZ9Y .framer-2pidr1 > :first-child, .framer-KBZ9Y .framer-1qirz49 > :first-child { margin-left: 0px; } .framer-KBZ9Y .framer-2pidr1 > :last-child, .framer-KBZ9Y .framer-1qirz49 > :last-child { margin-right: 0px; } }\",\".framer-KBZ9Y.framer-v-bjd5yh.framer-1y3t647, .framer-KBZ9Y.framer-v-1s3cnqb.framer-1y3t647 { gap: 24px; height: 48px; justify-content: center; text-decoration: none; width: 48px; }\",\".framer-KBZ9Y.framer-v-bjd5yh .framer-1nzdicn { height: 20px; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KBZ9Y.framer-v-bjd5yh.framer-1y3t647 { gap: 0px; } .framer-KBZ9Y.framer-v-bjd5yh.framer-1y3t647 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-KBZ9Y.framer-v-bjd5yh.framer-1y3t647 > :first-child { margin-left: 0px; } .framer-KBZ9Y.framer-v-bjd5yh.framer-1y3t647 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KBZ9Y.framer-v-1s3cnqb.framer-1y3t647 { gap: 0px; } .framer-KBZ9Y.framer-v-1s3cnqb.framer-1y3t647 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-KBZ9Y.framer-v-1s3cnqb.framer-1y3t647 > :first-child { margin-left: 0px; } .framer-KBZ9Y.framer-v-1s3cnqb.framer-1y3t647 > :last-child { margin-right: 0px; } }\",\".framer-KBZ9Y.framer-v-15z9c9i.framer-1y3t647 { gap: 24px; justify-content: flex-start; width: 256px; }\",\".framer-KBZ9Y.framer-v-15z9c9i .framer-2pidr1 { flex: 1 0 0px; width: 1px; }\",\".framer-KBZ9Y.framer-v-15z9c9i .framer-1pvousm-container { order: 0; }\",\".framer-KBZ9Y.framer-v-15z9c9i .framer-86adnr-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KBZ9Y.framer-v-15z9c9i.framer-1y3t647 { gap: 0px; } .framer-KBZ9Y.framer-v-15z9c9i.framer-1y3t647 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-KBZ9Y.framer-v-15z9c9i.framer-1y3t647 > :first-child { margin-left: 0px; } .framer-KBZ9Y.framer-v-15z9c9i.framer-1y3t647 > :last-child { margin-right: 0px; } }\",\".framer-KBZ9Y.framer-v-v2d8nd.framer-1y3t647 { cursor: unset; width: min-content; }\",\".framer-KBZ9Y.framer-v-58lwm7.framer-1y3t647 { text-decoration: none; width: min-content; }\",...sharedStyle.css,'.framer-KBZ9Y[data-border=\"true\"]::after, .framer-KBZ9Y [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 48\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HT14T06u6\":{\"layout\":[\"fixed\",\"fixed\"]},\"nop_NYlMK\":{\"layout\":[\"fixed\",\"fixed\"]},\"EmR7ul54w\":{\"layout\":[\"fixed\",\"auto\"]},\"Upopgh4e7\":{\"layout\":[\"auto\",\"auto\"]},\"PPI51T5Rz\":{\"layout\":[\"auto\",\"auto\"]},\"iTMpAFkCh\":{\"layout\":[\"fixed\",\"auto\"]},\"TM2WOuOzq\":{\"layout\":[\"fixed\",\"fixed\"]},\"JCZtOPcUj\":{\"layout\":[\"fixed\",\"fixed\"]},\"dD6DvlZuw\":{\"layout\":[\"fixed\",\"auto\"]},\"NyOZYB8cE\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"O04AfhusP\":\"data\",\"UVeVzUZ3K\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCVyAOmmSa=withCSS(Component,css,\"framer-KBZ9Y\");export default FramerCVyAOmmSa;FramerCVyAOmmSa.displayName=\"Copy paste\";FramerCVyAOmmSa.defaultProps={height:48,width:200};addPropertyControls(FramerCVyAOmmSa,{variant:{options:[\"V8zhBobaY\",\"HT14T06u6\",\"nop_NYlMK\",\"EmR7ul54w\",\"Upopgh4e7\",\"PPI51T5Rz\"],optionTitles:[\"Default\",\"Mailbox\",\"Phone\",\"Socials\",\"Phone disabled\",\"WhatsApp\"],title:\"Variant\",type:ControlType.Enum},O04AfhusP:{defaultValue:\"hello@julianmoss.io\",displayTextArea:false,title:\"Data\",type:ControlType.String},UVeVzUZ3K:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerCVyAOmmSa,[{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+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:\"FK Grotesk Neue Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/N2Pc9dIMewJ9QT6ivJefrkGZNfM.woff2\"}]},...SocialIconFonts,...TextTruncateFonts,...ClipboardFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCVyAOmmSa\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"O04AfhusP\\\":\\\"data\\\",\\\"UVeVzUZ3K\\\":\\\"newTab\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HT14T06u6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nop_NYlMK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EmR7ul54w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Upopgh4e7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PPI51T5Rz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iTMpAFkCh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TM2WOuOzq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JCZtOPcUj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dD6DvlZuw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NyOZYB8cE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nexport const props={p0I6p_e_m:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"amethyst\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Dynamic\",topLeftRadius:15,topRightRadius:15}};export const fonts={p0I6p_e_m:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-quw1C .framer-styles-preset-g2zrow { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; }\"];export const className=\"framer-quw1C\";\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{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Envoyer un message\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Merci !\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(194, 0, 29))\"},children:\"Une erreur s'est produite\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f6437d1-c9d6-43f3-abac-99cbac05a597, rgb(0, 0, 0)))\"},children:\"Envoyer un message\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport*as localizedValues from\"./H3rdhSP5L-0.js\";const valuesByLocaleId={m6Hqh4YiX:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/exRYr9RWE6xpFWJqmbC6/egOBMGJvGCChVTReHBrl/H3rdhSP5L.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={GhnKdy6_t:{hover:true,pressed:true}};const cycleOrder=[\"GhnKdy6_t\",\"ayNKLaS8k\",\"mLZaqUs5j\",\"P9l9p5bAx\",\"NKBnhosCV\",\"cn1iJYjnv\"];const serializationHash=\"framer-yamLP\";const variantClassNames={ayNKLaS8k:\"framer-v-17ra8sw\",cn1iJYjnv:\"framer-v-ntew5v\",GhnKdy6_t:\"framer-v-1d050hc\",mLZaqUs5j:\"framer-v-1k9nq9l\",NKBnhosCV:\"framer-v-1959mr8\",P9l9p5bAx:\"framer-v-cpcbcu\"};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:\"GhnKdy6_t\",Disabled:\"mLZaqUs5j\",Error:\"NKBnhosCV\",Inverse:\"cn1iJYjnv\",Loading:\"ayNKLaS8k\",Success:\"P9l9p5bAx\"};const getProps=({height,id,sendBtn,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GhnKdy6_t\",WBPUgnJ_x:sendBtn??props.WBPUgnJ_x};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WBPUgnJ_x,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GhnKdy6_t\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ayNKLaS8k\",\"P9l9p5bAx\",\"NKBnhosCV\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"ayNKLaS8k\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"ayNKLaS8k\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1d050hc\",className,classNames),\"data-framer-cursor\":WBPUgnJ_x,\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"GhnKdy6_t\",ref:ref??ref1,style:{backgroundColor:\"var(--token-c9e4649d-c521-4815-a55e-66a2245d9570, rgb(17, 19, 24))\",borderBottomLeftRadius:90,borderBottomRightRadius:90,borderTopLeftRadius:90,borderTopRightRadius:90,opacity:1,...style},variants:{\"GhnKdy6_t-hover\":{backgroundColor:\"var(--token-8d2671cd-3f17-4f48-9ed5-0dc3b7600c43, rgb(49, 53, 73))\",opacity:1},\"GhnKdy6_t-pressed\":{backgroundColor:\"rgb(51, 51, 51)\",opacity:1},cn1iJYjnv:{backgroundColor:\"var(--token-9dcef513-4f59-4c02-adeb-4cea1de19c84, rgb(255, 255, 255))\",opacity:1},mLZaqUs5j:{opacity:.5},NKBnhosCV:{backgroundColor:\"rgba(255, 36, 69, 0.06)\",opacity:1},P9l9p5bAx:{opacity:1}},...addPropertyOverrides({\"GhnKdy6_t-hover\":{\"data-framer-name\":undefined},\"GhnKdy6_t-pressed\":{\"data-framer-name\":undefined},ayNKLaS8k:{\"data-framer-name\":\"Loading\"},cn1iJYjnv:{\"data-framer-name\":\"Inverse\"},mLZaqUs5j:{\"data-framer-name\":\"Disabled\"},NKBnhosCV:{\"data-framer-name\":\"Error\"},P9l9p5bAx:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1v136ym\",\"data-framer-name\":\"Graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DTrsELulH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 0 0 L 16 0 L 16 16 L 0 16 Z\" fill=\"transparent\"></path><path d=\"M 2.523 2.026 L 14.751 8 L 2.523 13.975 C 2.381 14.03 2.219 13.994 2.114 13.882 C 2.006 13.769 1.971 13.604 2.024 13.456 L 3.875 8 L 2.024 2.545 C 1.971 2.397 2.006 2.232 2.114 2.119 C 2.219 2.007 2.381 1.971 2.523 2.026 Z M 3.875 8 L 14.751 8\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-49ba34ea-a04b-45c5-901a-6a70cb0f25fc, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11443658964,withExternalLayout:true,...addPropertyOverrides({cn1iJYjnv:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 0 0 L 16 0 L 16 16 L 0 16 Z\" fill=\"transparent\"></path><path d=\"M 2.523 2.026 L 14.751 8 L 2.523 13.975 C 2.381 14.03 2.219 13.994 2.114 13.882 C 2.006 13.769 1.971 13.604 2.024 13.456 L 3.875 8 L 2.024 2.545 C 1.971 2.397 2.006 2.232 2.114 2.119 C 2.219 2.007 2.381 1.971 2.523 2.026 Z M 3.875 8 L 14.751 8\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-88dc0878-ad75-48ea-bd47-cb6e9db24c28, rgb(0, 0, 0))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12872038601}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send a message\"})}),className:\"framer-10xfscd\",fonts:[\"CUSTOM;FK Grotesk Neue Medium\"],layoutDependency:layoutDependency,layoutId:\"iRKXTEzej\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{cn1iJYjnv:{\"--extracted-r6o4lv\":\"var(--token-9f6437d1-c9d6-43f3-abac-99cbac05a597, rgb(0, 0, 0))\"},NKBnhosCV:{\"--extracted-r6o4lv\":\"rgb(194, 0, 29)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cn1iJYjnv:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f6437d1-c9d6-43f3-abac-99cbac05a597, rgb(0, 0, 0)))\"},children:\"Send a message\"})})},NKBnhosCV:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(194, 0, 29))\"},children:\"Something went wrong\"})})},P9l9p5bAx:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14gjy4a\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"YIM4nkFY6\",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-23rfp2\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"ZK5CqeiGg\",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:{ayNKLaS8k:{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-1xamt93\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"yAcE4tizp\",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-yamLP.framer-16j1b5g, .framer-yamLP .framer-16j1b5g { display: block; }\",\".framer-yamLP.framer-1d050hc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 16px 32px 16px 32px; position: relative; width: min-content; }\",\".framer-yamLP .framer-1v136ym { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-yamLP .framer-10xfscd { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-yamLP .framer-14gjy4a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-yamLP .framer-23rfp2 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-yamLP .framer-1xamt93 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yamLP.framer-1d050hc { gap: 0px; } .framer-yamLP.framer-1d050hc > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-yamLP.framer-1d050hc > :first-child { margin-left: 0px; } .framer-yamLP.framer-1d050hc > :last-child { margin-right: 0px; } }\",\".framer-yamLP.framer-v-17ra8sw.framer-1d050hc, .framer-yamLP.framer-v-1k9nq9l.framer-1d050hc, .framer-yamLP.framer-v-cpcbcu.framer-1d050hc, .framer-yamLP.framer-v-1959mr8.framer-1d050hc, .framer-yamLP.framer-v-ntew5v.framer-1d050hc { cursor: unset; }\",\".framer-yamLP.framer-v-17ra8sw .framer-23rfp2 { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 203\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ayNKLaS8k\":{\"layout\":[\"auto\",\"auto\"]},\"mLZaqUs5j\":{\"layout\":[\"auto\",\"auto\"]},\"P9l9p5bAx\":{\"layout\":[\"auto\",\"auto\"]},\"NKBnhosCV\":{\"layout\":[\"auto\",\"auto\"]},\"cn1iJYjnv\":{\"layout\":[\"auto\",\"auto\"]},\"VEB3msFBW\":{\"layout\":[\"auto\",\"auto\"]},\"AnrB7AYoh\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"WBPUgnJ_x\":\"sendBtn\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH3rdhSP5L=withCSS(Component,css,\"framer-yamLP\");export default FramerH3rdhSP5L;FramerH3rdhSP5L.displayName=\"Form button\";FramerH3rdhSP5L.defaultProps={height:48,width:203};addPropertyControls(FramerH3rdhSP5L,{variant:{options:[\"GhnKdy6_t\",\"ayNKLaS8k\",\"mLZaqUs5j\",\"P9l9p5bAx\",\"NKBnhosCV\",\"cn1iJYjnv\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\",\"Inverse\"],title:\"Variant\",type:ControlType.Enum},WBPUgnJ_x:{title:\"Send Btn\",type:ControlType.CustomCursor}});addFonts(FramerH3rdhSP5L,[{explicitInter:true,fonts:[{family:\"FK Grotesk Neue Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5avlWNgDkshqy6zQtvGGmSZ43Bw.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH3rdhSP5L\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"203\",\"framerIntrinsicHeight\":\"48\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"WBPUgnJ_x\\\":\\\"sendBtn\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ayNKLaS8k\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mLZaqUs5j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"P9l9p5bAx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NKBnhosCV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cn1iJYjnv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VEB3msFBW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AnrB7AYoh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth 100%\n * @framerSupportedLayoutHeight 100%\n */export default function AutoYearCopyright(props){const{companyName,rightsText,showSymbol,showTrademark,trademarkType,yearPlacement,font,color,fontSize}=props;const currentYear=new Date().getFullYear();const symbol=showSymbol===\"yes\"?\"\\xa9\":\"\";const trademarkOptionActive=showTrademark===\"yes\";const trademarkSymbol=trademarkOptionActive?trademarkType===\"trademark\"?\"\u2122\":\"\\xae\":\"\";let finalCompanyName=companyName.trim();let finalRightsText=rightsText.trim();let dotAfterCompanyName=\"\";if(yearPlacement===\"beforeCompanyName\"){finalCompanyName=`${currentYear} ${finalCompanyName}`;}else if(yearPlacement===\"afterCompanyName\"&&finalCompanyName){finalCompanyName+=` ${currentYear}`;}else if(yearPlacement===\"beforeRightsText\"&&finalRightsText){finalRightsText=`${currentYear}. ${finalRightsText}`;}else if(yearPlacement===\"afterRightsText\"&&finalRightsText){finalRightsText+=` ${currentYear}`;dotAfterCompanyName=!trademarkOptionActive&&finalCompanyName&&finalRightsText?\".\":\"\";}else if(!finalCompanyName&&!finalRightsText){finalCompanyName=`${currentYear}`;}finalCompanyName+=trademarkSymbol?`${trademarkSymbol}`:\"\";let displayText=symbol?`${symbol} `:\"\";displayText+=finalCompanyName?`${finalCompanyName}${dotAfterCompanyName}`:\"\";if(finalCompanyName&&finalRightsText)displayText+=\" \";displayText+=finalRightsText;const textStyle={fontSize:`${fontSize}px`,color:color,...font};return /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:displayText.trim()});}AutoYearCopyright.defaultProps={companyName:\"Company Name\",rightsText:\"All rights reserved\",showSymbol:\"yes\",showTrademark:\"no\",trademarkType:\"trademark\",yearPlacement:\"afterRightsText\",color:\"#999999\",fontSize:18,font:{family:\"Inter\"}};addPropertyControls(AutoYearCopyright,{font:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},color:{type:ControlType.Color,title:\"Font Color\",defaultValue:\"#999999\"},companyName:{type:ControlType.String,title:\"Company Name\",defaultValue:\"Company Name\"},rightsText:{type:ControlType.String,title:\"Rights Text\",defaultValue:\"All rights reserved\"},showSymbol:{type:ControlType.SegmentedEnum,title:\"Symbol\",options:[\"yes\",\"no\"],optionTitles:[\"Yes\",\"No\"],defaultValue:\"yes\"},showTrademark:{type:ControlType.SegmentedEnum,title:\"Trademark\",options:[\"yes\",\"no\"],optionTitles:[\"Yes\",\"No\"],defaultValue:\"no\"},trademarkType:{type:ControlType.Enum,options:[\"trademark\",\"registered\"],optionTitles:[\"Trademark\",\"Registered\"],defaultValue:\"trademark\",hidden:({showTrademark})=>showTrademark!==\"yes\"},yearPlacement:{type:ControlType.Enum,options:[\"beforeCompanyName\",\"afterCompanyName\",\"beforeRightsText\",\"afterRightsText\"],optionTitles:[\"Before Company\",\"After Company\",\"Before Rights\",\"After Rights\"],defaultValue:\"afterRightsText\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AutoYearCopyright\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"100%\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"100%\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AutoYearCopyright.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;FK Grotesk Neue Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"FK Grotesk Neue Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/N2Pc9dIMewJ9QT6ivJefrkGZNfM.woff2\"}]}];export const css=[\".framer-aAan7 .framer-styles-preset-scv97n:not(.rich-text-wrapper), .framer-aAan7 .framer-styles-preset-scv97n.rich-text-wrapper p { --framer-font-family: \\\"FK Grotesk Neue Regular\\\", \\\"FK Grotesk Neue Regular Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.2px; --framer-line-height: 24px; --framer-paragraph-spacing: 8px; --framer-text-alignment: left; --framer-text-color: var(--token-239b6fa0-5cb3-4df1-b912-009d44164192, #2b2f3b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 810px) { .framer-aAan7 .framer-styles-preset-scv97n:not(.rich-text-wrapper), .framer-aAan7 .framer-styles-preset-scv97n.rich-text-wrapper p { --framer-font-family: \\\"FK Grotesk Neue Regular\\\", \\\"FK Grotesk Neue Regular Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.2px; --framer-line-height: 24px; --framer-paragraph-spacing: 8px; --framer-text-alignment: left; --framer-text-color: var(--token-239b6fa0-5cb3-4df1-b912-009d44164192, #2b2f3b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-aAan7 .framer-styles-preset-scv97n:not(.rich-text-wrapper), .framer-aAan7 .framer-styles-preset-scv97n.rich-text-wrapper p { --framer-font-family: \\\"FK Grotesk Neue Regular\\\", \\\"FK Grotesk Neue Regular Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.2px; --framer-line-height: 24px; --framer-paragraph-spacing: 4px; --framer-text-alignment: left; --framer-text-color: var(--token-239b6fa0-5cb3-4df1-b912-009d44164192, #2b2f3b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-aAan7\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";//Code component provided by Eleveight Supply\u2122. All rights reserved 2024.\n/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 1200\n * @framerIntrinsicHeight 300\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight 100%\n */export default function ScrollProgress(props){const[scrollProgress,setScrollProgress]=useState(0);const progressBarRef=useRef(null);const updateScrollProgress=()=>{const totalPageHeight=document.documentElement.scrollHeight-window.innerHeight;const scrollPosition=window.scrollY;const scrollPercentage=Math.min(scrollPosition/totalPageHeight*100,100);setScrollProgress(scrollPercentage);};useEffect(()=>{window.addEventListener(\"scroll\",updateScrollProgress);return()=>{window.removeEventListener(\"scroll\",updateScrollProgress);};},[]);const controlledGlowSpread=spread=>{return Math.log(spread+1)*10;};const getBackgroundStyle=()=>{if(props.fillType===\"gradient\"){return`linear-gradient(90deg, ${props.gradientStartColor}, ${props.gradientEndColor})`;}return props.fillColor;};const getGlowStyle=()=>{if(props.fillType===\"gradient\"||!props.glowEnabled)return{};const glowColor=props.glowColor||props.fillColor;return{boxShadow:`0 0 ${controlledGlowSpread(props.glowSpread)}px ${controlledGlowSpread(props.glowSpread)}px ${glowColor}`,opacity:props.glowIntensity/100};};return /*#__PURE__*/_jsxs(\"div\",{ref:progressBarRef,style:{width:\"100%\",height:`${props.barHeight}px`,background:getBackgroundStyle(),position:\"relative\",overflow:\"visible\"},role:\"progressbar\",\"aria-valuenow\":Math.round(scrollProgress),\"aria-valuemin\":0,\"aria-valuemax\":100,children:[/*#__PURE__*/_jsx(motion.div,{initial:{width:\"100%\"},animate:{width:`${100-scrollProgress}%`},transition:props.transition,style:{height:\"100%\",backgroundColor:props.backgroundColor,position:\"absolute\",top:0,right:0}}),props.fillType===\"solid\"&&props.glowEnabled&&/*#__PURE__*/_jsx(motion.div,{initial:{width:\"100%\"},animate:{width:`${scrollProgress}%`},transition:props.transition,style:{height:\"100%\",position:\"absolute\",top:0,left:0,background:props.fillColor,...getGlowStyle(),zIndex:1}})]});}addPropertyControls(ScrollProgress,{barHeight:{type:ControlType.Number,defaultValue:2,min:1,max:50,step:1,displayStepper:true,unit:\"px\",title:\"Bar Height\"},backgroundColor:{type:ControlType.Color,defaultValue:\"#757575\",title:\"Background\"},fillType:{type:ControlType.SegmentedEnum,title:\"Fill Type\",defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],onChange:(value,props)=>{if(value===\"gradient\"){props.glowEnabled=false;}}},fillColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Fill\",hidden(props){return props.fillType===\"gradient\";}},gradientStartColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Start\",hidden(props){return props.fillType===\"solid\";}},gradientEndColor:{type:ControlType.Color,defaultValue:\"#FF00AA\",title:\"End\",hidden(props){return props.fillType===\"solid\";}},glowEnabled:{type:ControlType.Boolean,title:\"Glow\",defaultValue:false,hidden(props){return props.fillType===\"gradient\";}},glowColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Color\",hidden(props){return props.fillType===\"gradient\"||!props.glowEnabled;}},glowIntensity:{type:ControlType.Number,defaultValue:12,min:0,max:100,step:1,displayStepper:true,unit:\"%\",title:\"Intensity\",hidden(props){return!props.glowEnabled;}},glowSpread:{type:ControlType.Number,defaultValue:3,min:1,max:100,step:1,displayStepper:true,unit:\"%\",title:\"Spread\",hidden(props){return!props.glowEnabled;}},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"tween\",duration:0}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrollProgress\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"300\",\"framerIntrinsicWidth\":\"1200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"100%\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scrollprogress.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ScrollProgress from\"https://framerusercontent.com/modules/0JbLZy4cicPNL8ihEfRO/kqyQiIq8sWEVe99fFtlN/Scrollprogress.js\";import PrimaryButton from\"https://framerusercontent.com/modules/03hu9mNoy90YQPAHp8aE/D7EWxBpeQRPFAS48x5lA/Rw0OXZ17T.js\";const ScrollProgressFonts=getFonts(ScrollProgress);const PrimaryButtonFonts=getFonts(PrimaryButton);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"rRSo0pB2N\",\"XUMR2IqzI\",\"iyzt5HgV8\"];const serializationHash=\"framer-qkKMv\";const variantClassNames={iyzt5HgV8:\"framer-v-159e7bq\",rRSo0pB2N:\"framer-v-118zweq\",XUMR2IqzI:\"framer-v-98z07e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition2={bounce:.2,delay:0,duration:.4,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/Default\":\"rRSo0pB2N\",\"Mobile/Default/Close\":\"iyzt5HgV8\",\"Tablet/Default/Close\":\"XUMR2IqzI\"};const getProps=({btnPrimaryCursor,click,height,id,scrollProgress,width,...props})=>{return{...props,BXy_R0AMz:click??props.BXy_R0AMz,s4PpyD5Om:scrollProgress??props.s4PpyD5Om,variant:humanReadableVariantMap[props.variant]??props.variant??\"rRSo0pB2N\",VczTgxWMl:btnPrimaryCursor??props.VczTgxWMl};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BXy_R0AMz,VczTgxWMl,s4PpyD5Om,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rRSo0pB2N\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Q1G9UYy1yepjetb=activeVariantCallback(async(...args)=>{if(BXy_R0AMz){const res=await BXy_R0AMz(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"iyzt5HgV8\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-118zweq\",className,classNames),\"data-framer-appear-id\":\"118zweq\",\"data-framer-name\":\"Desktop/Default\",layoutDependency:layoutDependency,layoutId:\"rRSo0pB2N\",optimized:true,ref:ref??ref1,style:{backdropFilter:\"blur(10px)\",WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({iyzt5HgV8:{\"data-framer-name\":\"Mobile/Default/Close\"},XUMR2IqzI:{\"data-framer-name\":\"Tablet/Default/Close\"}},baseVariant,gestureVariant),children:[s4PpyD5Om&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fqodrz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zmyiaWqV0-container\",nodeId:\"zmyiaWqV0\",rendersWithMotion:true,scopeId:\"r20LLhVTc\",children:/*#__PURE__*/_jsx(ScrollProgress,{backgroundColor:\"rgb(230, 230, 230)\",barHeight:2,fillColor:\"var(--token-2b9b2863-d37d-4543-b044-7d3b69c06ec4, rgb(255, 97, 27))\",fillType:\"solid\",glowColor:\"var(--token-2b9b2863-d37d-4543-b044-7d3b69c06ec4, rgb(255, 97, 27))\",glowEnabled:true,glowIntensity:4,glowSpread:1,gradientEndColor:\"rgb(255, 0, 170)\",gradientStartColor:\"rgb(98, 0, 238)\",height:\"100%\",id:\"zmyiaWqV0\",layoutId:\"zmyiaWqV0\",style:{width:\"100%\"},transition:{delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4ftzn6\",\"data-framer-name\":\"Main Container\",layoutDependency:layoutDependency,layoutId:\"scAeaLdhg\",style:{backgroundColor:\"rgba(250, 250, 250, 0.8)\"},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"vg6yVAKnf\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-imhna9 framer-31kd0v\",\"data-framer-name\":\"MOSS\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"vg6yVAKnf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ji1mq\",\"data-framer-name\":\"Icon contianer\",layoutDependency:layoutDependency,layoutId:\"k8SOnhRfC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15izul2\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vkSiP6GsO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 24 4.8 C 24 3.12 24 2.28 23.673 1.638 C 23.385 1.074 22.926 0.615 22.362 0.327 C 21.72 0 20.88 0 19.2 0 L 16.854 0 C 15.717 0 14.679 0.642 14.171 1.659 L 12 6 L 4.8 6 C 3.12 6 2.28 6 1.638 6.327 C 1.074 6.615 0.615 7.074 0.327 7.638 C 0 8.28 0 9.12 0 10.8 L 0 19.2 C 0 20.88 0 21.72 0.327 22.362 C 0.615 22.926 1.074 23.385 1.638 23.673 C 2.28 24 3.12 24 4.8 24 L 7.146 24 C 8.283 24 9.321 23.358 9.829 22.341 L 12 18 L 19.2 18 C 20.88 18 21.72 18 22.362 17.673 C 22.926 17.385 23.385 16.926 23.673 16.362 C 24 15.72 24 14.88 24 13.2 Z M 18 12 L 16.854 12 C 15.717 12 14.679 12.642 14.171 13.659 L 12 18 L 6 18 L 6 12 L 7.146 12 C 8.283 12 9.321 11.358 9.829 10.341 L 12 6 L 18 6 Z\" fill=\"var(--token-0b4faffb-6e90-42e2-bc40-d0b305aa957d, rgb(0, 0, 0))\"></path></svg>',svgContentId:12008545232,withExternalLayout:true,...addPropertyOverrides({iyzt5HgV8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 33 33\"><path d=\"M 32.307 6.707 C 32.307 4.467 32.307 3.347 31.871 2.491 C 31.488 1.739 30.876 1.127 30.123 0.743 C 29.267 0.307 28.147 0.307 25.907 0.307 L 22.779 0.307 C 21.264 0.307 19.879 1.164 19.201 2.519 L 16.307 8.307 L 6.707 8.307 C 4.467 8.307 3.347 8.307 2.491 8.743 C 1.739 9.127 1.127 9.739 0.743 10.491 C 0.307 11.347 0.307 12.467 0.307 14.707 L 0.307 25.907 C 0.307 28.147 0.307 29.267 0.743 30.123 C 1.127 30.876 1.739 31.488 2.491 31.871 C 3.347 32.307 4.467 32.307 6.707 32.307 L 9.835 32.307 C 11.351 32.307 12.736 31.451 13.413 30.095 L 16.307 24.307 L 25.907 24.307 C 28.147 24.307 29.267 24.307 30.123 23.871 C 30.876 23.488 31.488 22.876 31.871 22.123 C 32.307 21.267 32.307 20.147 32.307 17.907 Z M 24.307 16.307 L 22.779 16.307 C 21.264 16.307 19.879 17.164 19.201 18.519 L 16.307 24.307 L 8.307 24.307 L 8.307 16.307 L 9.835 16.307 C 11.351 16.307 12.736 15.451 13.413 14.095 L 16.307 8.307 L 24.307 8.307 Z\" fill=\"var(--token-0b4faffb-6e90-42e2-bc40-d0b305aa957d, rgb(0, 0, 0))\"></path></svg>',svgContentId:9562610256}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2gjr09\",\"data-framer-name\":\"MOSS container\",layoutDependency:layoutDependency,layoutId:\"yAVi4oezp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lrov3b\",\"data-framer-name\":\"MOSS\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AFAEviotZ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 54 12\"><path d=\"M 0.018 0.333 L 3.071 0.333 L 3.071 1.616 L 3.29 1.616 C 3.524 1.268 3.892 0.931 4.396 0.605 C 4.906 0.279 5.632 0.116 6.574 0.116 C 7.508 0.116 8.223 0.297 8.719 0.66 C 9.222 1.015 9.561 1.388 9.737 1.779 L 9.956 1.779 C 10.138 1.525 10.379 1.272 10.678 1.018 C 10.984 0.757 11.371 0.544 11.838 0.377 C 12.305 0.203 12.874 0.116 13.545 0.116 C 14.282 0.116 14.95 0.257 15.548 0.54 C 16.146 0.815 16.621 1.239 16.971 1.812 C 17.328 2.377 17.507 3.09 17.507 3.953 L 17.507 11.713 L 14.322 11.713 L 14.322 4.203 C 14.322 3.659 14.165 3.235 13.852 2.931 C 13.545 2.627 13.115 2.475 12.56 2.475 C 11.926 2.475 11.4 2.67 10.984 3.061 C 10.568 3.445 10.36 4.072 10.36 4.942 L 10.36 11.713 L 7.165 11.713 L 7.165 4.203 C 7.165 3.659 7.012 3.235 6.705 2.931 C 6.399 2.627 5.972 2.475 5.425 2.475 C 4.782 2.475 4.25 2.67 3.827 3.061 C 3.411 3.445 3.203 4.072 3.203 4.942 L 3.203 11.713 L 0.018 11.713 Z M 18.692 6.028 C 18.692 4.717 18.958 3.623 19.491 2.746 C 20.023 1.862 20.753 1.196 21.679 0.746 C 22.606 0.297 23.66 0.073 24.842 0.073 C 26.024 0.073 27.079 0.297 28.005 0.746 C 28.932 1.196 29.662 1.862 30.194 2.746 C 30.734 3.623 31.004 4.717 31.004 6.028 C 31.004 7.333 30.734 8.427 30.194 9.311 C 29.662 10.195 28.932 10.861 28.005 11.311 C 27.079 11.753 26.024 11.974 24.842 11.974 C 23.66 11.974 22.606 11.753 21.679 11.311 C 20.753 10.861 20.023 10.195 19.491 9.311 C 18.958 8.427 18.692 7.333 18.692 6.029 Z M 21.953 6.029 C 21.953 7.21 22.216 8.108 22.741 8.724 C 23.266 9.34 23.967 9.648 24.842 9.648 C 25.725 9.648 26.429 9.34 26.955 8.724 C 27.48 8.108 27.743 7.21 27.743 6.029 C 27.743 4.84 27.48 3.942 26.955 3.333 C 26.429 2.717 25.725 2.409 24.842 2.409 C 23.967 2.409 23.266 2.717 22.741 3.333 C 22.216 3.942 21.953 4.84 21.953 6.029 Z M 31.889 3.55 C 31.889 2.514 32.319 1.685 33.18 1.062 C 34.048 0.431 35.259 0.116 36.814 0.116 C 38.375 0.116 39.597 0.428 40.48 1.051 C 41.37 1.667 41.884 2.46 42.023 3.431 L 42.023 3.757 L 39.112 3.757 C 39.061 3.214 38.835 2.826 38.433 2.594 C 38.039 2.355 37.529 2.235 36.901 2.235 C 36.288 2.235 35.803 2.344 35.445 2.561 C 35.088 2.772 34.909 3.065 34.909 3.442 C 34.909 3.826 35.051 4.101 35.336 4.268 C 35.621 4.434 35.971 4.554 36.387 4.626 L 38.532 4.974 C 39.305 5.097 39.984 5.286 40.567 5.539 C 41.151 5.786 41.607 6.134 41.936 6.583 C 42.264 7.025 42.428 7.601 42.428 8.311 C 42.428 9.412 41.994 10.3 41.126 10.974 C 40.265 11.64 38.977 11.974 37.262 11.974 C 35.548 11.974 34.22 11.644 33.278 10.984 C 32.337 10.325 31.797 9.496 31.659 8.496 L 31.659 8.17 L 34.647 8.17 C 34.705 8.756 34.978 9.184 35.467 9.452 C 35.964 9.713 36.562 9.843 37.262 9.843 C 37.97 9.843 38.506 9.731 38.871 9.506 C 39.236 9.274 39.418 8.952 39.418 8.539 C 39.418 8.155 39.265 7.883 38.959 7.724 C 38.659 7.557 38.258 7.431 37.755 7.344 L 35.599 6.996 C 34.504 6.822 33.61 6.456 32.917 5.898 C 32.231 5.34 31.889 4.558 31.889 3.55 Z M 43.179 3.55 C 43.179 2.514 43.61 1.685 44.471 1.062 C 45.339 0.431 46.55 0.116 48.104 0.116 C 49.666 0.116 50.888 0.428 51.771 1.051 C 52.661 1.667 53.175 2.46 53.314 3.431 L 53.314 3.757 L 50.403 3.757 C 50.352 3.214 50.125 2.826 49.724 2.594 C 49.33 2.355 48.819 2.235 48.192 2.235 C 47.579 2.235 47.094 2.344 46.736 2.561 C 46.379 2.772 46.2 3.065 46.2 3.442 C 46.2 3.826 46.342 4.101 46.627 4.268 C 46.911 4.434 47.262 4.554 47.678 4.626 L 49.823 4.974 C 50.596 5.097 51.275 5.286 51.858 5.539 C 52.442 5.786 52.898 6.134 53.226 6.583 C 53.555 7.025 53.719 7.601 53.719 8.311 C 53.719 9.412 53.285 10.3 52.417 10.974 C 51.556 11.64 50.268 11.974 48.553 11.974 C 46.838 11.974 45.511 11.644 44.569 10.984 C 43.628 10.325 43.088 9.496 42.95 8.496 L 42.95 8.17 L 45.937 8.17 C 45.996 8.756 46.269 9.184 46.758 9.452 C 47.254 9.713 47.853 9.843 48.553 9.843 C 49.261 9.843 49.797 9.731 50.162 9.506 C 50.527 9.274 50.709 8.952 50.709 8.539 C 50.709 8.155 50.556 7.883 50.25 7.724 C 49.95 7.557 49.549 7.431 49.046 7.344 L 46.89 6.996 C 45.795 6.822 44.901 6.456 44.208 5.898 C 43.522 5.34 43.179 4.558 43.179 3.55 Z\" fill=\"var(--token-af841671-ee0b-4a5a-b018-4aa86f183ab5, rgb(0, 0, 0))\"></path></svg>',svgContentId:8764564635,withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mlfsu0\",\"data-framer-name\":\"Trail container\",layoutDependency:layoutDependency,layoutId:\"si3yWYsLR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-80)/2)+20+-4,...addPropertyOverrides({iyzt5HgV8:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-72)/2)+16+-4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16c6w7q-container\",layoutDependency:layoutDependency,layoutId:\"T4nN2xnA8-container\",nodeId:\"T4nN2xnA8\",rendersWithMotion:true,scopeId:\"r20LLhVTc\",children:/*#__PURE__*/_jsx(PrimaryButton,{ebD4bM9aA:true,FsGjjxaif:\"auto\",HeH8nqrtx:\"hello@julianmoss.io\",height:\"100%\",hjSBvqNpq:false,id:\"T4nN2xnA8\",k5NrQ_JKS:VczTgxWMl,Kl0u4bfSY:\"hello@julianmoss.io\",layoutId:\"T4nN2xnA8\",Q1G9UYy1y:Q1G9UYy1yepjetb,QJ7bpx5sX:true,sfDqD5WRI:\"me2jDW4Jm\",T9sxaRMHD:\"Email Button Copy\",variant:\"KVZ7Hfrto\",width:\"100%\",WyhbVN7jQ:true,...addPropertyOverrides({iyzt5HgV8:{ebD4bM9aA:false},XUMR2IqzI:{ebD4bM9aA:false}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qkKMv.framer-31kd0v, .framer-qkKMv .framer-31kd0v { display: block; }\",\".framer-qkKMv.framer-118zweq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-qkKMv .framer-fqodrz-container { bottom: -2px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-qkKMv .framer-4ftzn6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px 48px 20px 48px; position: relative; width: 1px; }\",\".framer-qkKMv .framer-imhna9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 40px; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-qkKMv .framer-7ji1mq { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; padding: 0px; position: relative; width: 40px; }\",\".framer-qkKMv .framer-15izul2 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-qkKMv .framer-2gjr09 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qkKMv .framer-1lrov3b { flex: none; height: 12px; position: relative; width: 54px; }\",\".framer-qkKMv .framer-mlfsu0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 40px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qkKMv .framer-16c6w7q-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qkKMv .framer-imhna9, .framer-qkKMv .framer-7ji1mq, .framer-qkKMv .framer-2gjr09, .framer-qkKMv .framer-mlfsu0 { gap: 0px; } .framer-qkKMv .framer-imhna9 > *, .framer-qkKMv .framer-2gjr09 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-qkKMv .framer-imhna9 > :first-child, .framer-qkKMv .framer-7ji1mq > :first-child, .framer-qkKMv .framer-2gjr09 > :first-child, .framer-qkKMv .framer-mlfsu0 > :first-child { margin-left: 0px; } .framer-qkKMv .framer-imhna9 > :last-child, .framer-qkKMv .framer-7ji1mq > :last-child, .framer-qkKMv .framer-2gjr09 > :last-child, .framer-qkKMv .framer-mlfsu0 > :last-child { margin-right: 0px; } .framer-qkKMv .framer-7ji1mq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qkKMv .framer-mlfsu0 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-qkKMv.framer-v-98z07e.framer-118zweq { width: 810px; }\",\".framer-qkKMv.framer-v-98z07e .framer-fqodrz-container, .framer-qkKMv.framer-v-159e7bq .framer-fqodrz-container { order: 0; }\",\".framer-qkKMv.framer-v-98z07e .framer-4ftzn6 { order: 1; }\",\".framer-qkKMv.framer-v-159e7bq.framer-118zweq { width: 390px; }\",\".framer-qkKMv.framer-v-159e7bq .framer-4ftzn6 { order: 1; padding: 16px; }\",\".framer-qkKMv.framer-v-159e7bq .framer-15izul2 { height: 33px; width: 33px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XUMR2IqzI\":{\"layout\":[\"fixed\",\"auto\"]},\"iyzt5HgV8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BXy_R0AMz\":\"click\",\"VczTgxWMl\":\"btnPrimaryCursor\",\"s4PpyD5Om\":\"scrollProgress\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerr20LLhVTc=withCSS(Component,css,\"framer-qkKMv\");export default Framerr20LLhVTc;Framerr20LLhVTc.displayName=\"Navigation bar\";Framerr20LLhVTc.defaultProps={height:80,width:1200};addPropertyControls(Framerr20LLhVTc,{variant:{options:[\"rRSo0pB2N\",\"XUMR2IqzI\",\"iyzt5HgV8\"],optionTitles:[\"Desktop/Default\",\"Tablet/Default/Close\",\"Mobile/Default/Close\"],title:\"Variant\",type:ControlType.Enum},BXy_R0AMz:{title:\"Click\",type:ControlType.EventHandler},VczTgxWMl:{title:\"Btn primary - Cursor\",type:ControlType.CustomCursor},s4PpyD5Om:{defaultValue:false,title:\"Scroll Progress\",type:ControlType.Boolean}});addFonts(Framerr20LLhVTc,[{explicitInter:true,fonts:[]},...ScrollProgressFonts,...PrimaryButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr20LLhVTc\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"80\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XUMR2IqzI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iyzt5HgV8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"BXy_R0AMz\\\":\\\"click\\\",\\\"VczTgxWMl\\\":\\\"btnPrimaryCursor\\\",\\\"s4PpyD5Om\\\":\\\"scrollProgress\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBSZWd1bGFy\",\"--framer-font-family\":'\"FK Grotesk Neue Regular\", \"FK Grotesk Neue Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9606e279-6a5f-4380-a3f1-ac71af49e4d9, rgb(69, 76, 95)))\"},children:\"(facultatif)\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (bd0055f)\nimport*as localizedValues from\"./U9_jvcW2Y-0.js\";const valuesByLocaleId={m6Hqh4YiX:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,FormPlainTextInput,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={H6YXyo90Z:{hover:true}};const cycleOrder=[\"H6YXyo90Z\",\"hP9Cr_d_e\"];const serializationHash=\"framer-WqBo1\";const variantClassNames={H6YXyo90Z:\"framer-v-ehob8j\",hP9Cr_d_e:\"framer-v-344vya\"};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 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 humanReadableEnumMap={\"Phone Number\":\"tel\",\"Text Area\":\"textarea\",Date:\"date\",Email:\"email\",Number:\"number\",Text:\"text\",Time:\"time\",URL:\"url\"};const humanReadableVariantMap={Large:\"hP9Cr_d_e\",Medium:\"H6YXyo90Z\"};const getProps=({height,id,name1,placeholder,required,type,width,...props})=>{return{...props,lCEJga0Bx:name1??props.lCEJga0Bx??\"Full name\",rljOngPsT:humanReadableEnumMap[type]??type??props.rljOngPsT??\"text\",UoXdJNVCh:required??props.UoXdJNVCh??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"H6YXyo90Z\",xiXRvq9L8:placeholder??props.xiXRvq9L8??\"Pam Beesly\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,rljOngPsT,lCEJga0Bx,xiXRvq9L8,UoXdJNVCh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"H6YXyo90Z\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ehob8j\",className,classNames),\"data-framer-name\":\"Medium\",layoutDependency:layoutDependency,layoutId:\"H6YXyo90Z\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"H6YXyo90Z-hover\":{\"data-framer-name\":undefined},hP9Cr_d_e:{\"data-framer-name\":\"Large\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-3h5d4a\",inputName:lCEJga0Bx,layoutDependency:layoutDependency,layoutId:\"O0VbkOMgB\",placeholder:xiXRvq9L8,required:UoXdJNVCh,style:{\"--framer-input-background\":\"var(--token-039e98da-023d-4b83-b740-11d4678885a7, rgb(255, 255, 255))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.2)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"6px\",\"--framer-input-border-radius-bottom-right\":\"6px\",\"--framer-input-border-radius-top-left\":\"6px\",\"--framer-input-border-radius-top-right\":\"6px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.48290122862090357px 0.48290122862090357px -2px rgba(0, 0, 0, 0.18189), 0px 4px 4px -4px rgba(0, 0, 0, 0.05)\",\"--framer-input-font-color\":\"var(--token-9f6437d1-c9d6-43f3-abac-99cbac05a597, rgb(0, 0, 0))\",\"--framer-input-icon-color\":\"var(--token-f5893db5-c390-4735-83b5-001ce6fadac9, rgb(47, 52, 65))\",\"--framer-input-placeholder-color\":\"var(--token-2eddb9e4-48d7-49e7-8ab3-6527be0fce65, rgb(166, 173, 191))\"},type:rljOngPsT,variants:{\"H6YXyo90Z-hover\":{\"--framer-input-background\":\"rgb(245, 245, 245)\"}}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WqBo1.framer-1glrg8h, .framer-WqBo1 .framer-1glrg8h { display: block; }\",\".framer-WqBo1.framer-ehob8j { cursor: pointer; height: 48px; overflow: visible; position: relative; width: 336px; }\",'.framer-WqBo1 .framer-3h5d4a { --framer-input-focused-background: var(--token-039e98da-023d-4b83-b740-11d4678885a7, #ffffff); --framer-input-focused-border-color: var(--token-2b9b2863-d37d-4543-b044-7d3b69c06ec4, #ff611b); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1.5px; --framer-input-focused-box-shadow: 0px 0px 0px 3px rgba(10, 92, 255, 0.2); --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-family: \"FK Grotesk Neue Regular\"; --framer-input-font-letter-spacing: 0px; --framer-input-font-line-height: 20px; --framer-input-font-size: 14px; --framer-input-font-text-alignment: left; --framer-input-padding: 12px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(48.78048780487807% - 100% / 2); width: 100%; }',\".framer-WqBo1.framer-v-344vya.framer-ehob8j { cursor: unset; height: 52px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 336\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hP9Cr_d_e\":{\"layout\":[\"fixed\",\"fixed\"]},\"IMTPNxdxb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"rljOngPsT\":\"type\",\"lCEJga0Bx\":\"name1\",\"xiXRvq9L8\":\"placeholder\",\"UoXdJNVCh\":\"required\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKcKbQgnxZ=withCSS(Component,css,\"framer-WqBo1\");export default FramerKcKbQgnxZ;FramerKcKbQgnxZ.displayName=\"Input field\";FramerKcKbQgnxZ.defaultProps={height:48,width:336};addPropertyControls(FramerKcKbQgnxZ,{variant:{options:[\"H6YXyo90Z\",\"hP9Cr_d_e\"],optionTitles:[\"Medium\",\"Large\"],title:\"Variant\",type:ControlType.Enum},rljOngPsT:{defaultValue:\"text\",options:[\"text\",\"textarea\",\"email\",\"number\",\"tel\",\"url\",\"date\",\"time\"],optionTitles:[\"Text\",\"Text Area\",\"Email\",\"Number\",\"Phone Number\",\"URL\",\"Date\",\"Time\"],title:\"Type\",type:ControlType.Enum},lCEJga0Bx:{defaultValue:\"Full name\",title:\"Name\",type:ControlType.String},xiXRvq9L8:{defaultValue:\"Pam Beesly\",title:\"Placeholder\",type:ControlType.String},UoXdJNVCh:{defaultValue:true,title:\"Required\",type:ControlType.Boolean}});addFonts(FramerKcKbQgnxZ,[{explicitInter:true,fonts:[{family:\"FK Grotesk Neue Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/N2Pc9dIMewJ9QT6ivJefrkGZNfM.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKcKbQgnxZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"rljOngPsT\\\":\\\"type\\\",\\\"lCEJga0Bx\\\":\\\"name1\\\",\\\"xiXRvq9L8\\\":\\\"placeholder\\\",\\\"UoXdJNVCh\\\":\\\"required\\\"}\",\"framerIntrinsicWidth\":\"336\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hP9Cr_d_e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IMTPNxdxb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KcKbQgnxZ.map", "// Generated by Framer (bd0055f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/zz4EXbLNMVVfsedqXBTW/OGss8jc5pJeHsoBkDC5o/U9_jvcW2Y.js\";import InputField from\"https://framerusercontent.com/modules/GFGrC4IhM5CJa0i3UsJ0/WxsdjZ3wU8i1WEHVOQzp/KcKbQgnxZ.js\";const InputFieldFonts=getFonts(InputField);const InputFieldControls=getPropertyControls(InputField);const serializationHash=\"framer-SIwgc\";const variantClassNames={dOXYbmoGa:\"framer-v-1nom9r7\"};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 negate=value=>{return!value;};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 humanReadableEnumMap={\"Phone Number\":\"tel\",\"Text Area\":\"textarea\",Date:\"date\",Email:\"email\",Number:\"number\",Text:\"text\",Time:\"time\",URL:\"url\"};const getProps=({cursor,height,id,label,name1,optionnal,placeholder,type,width,...props})=>{return{...props,C05fwlHL8:name1??props.C05fwlHL8??\"Full name\",ER3Zu6uIq:cursor??props.ER3Zu6uIq,hjEG7kSdL:placeholder??props.hjEG7kSdL??\"Pam Beesly\",HqNlOw1E5:humanReadableEnumMap[type]??type??props.HqNlOw1E5??\"text\",KvSTnsBnB:label??props.KvSTnsBnB??\"Full name\",RCwIh4hNi:optionnal??props.RCwIh4hNi};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,HqNlOw1E5,C05fwlHL8,KvSTnsBnB,hjEG7kSdL,RCwIh4hNi,ER3Zu6uIq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"dOXYbmoGa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.label,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nom9r7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dOXYbmoGa\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jriaep\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"gnkVYORZJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBNZWRpdW0=\",\"--framer-font-family\":'\"FK Grotesk Neue Medium\", \"FK Grotesk Neue Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9606e279-6a5f-4380-a3f1-ac71af49e4d9, rgb(69, 76, 95)))\"},children:\"Full name\"})}),className:\"framer-wzvxwe\",fonts:[\"CUSTOM;FK Grotesk Neue Medium\"],layoutDependency:layoutDependency,layoutId:\"sXHUymYcp\",style:{\"--extracted-r6o4lv\":\"var(--token-9606e279-6a5f-4380-a3f1-ac71af49e4d9, rgb(69, 76, 95))\"},text:KvSTnsBnB,verticalAlignment:\"top\",withExternalLayout:true}),RCwIh4hNi&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ZLIEdyb3Rlc2sgTmV1ZSBSZWd1bGFy\",\"--framer-font-family\":'\"FK Grotesk Neue Regular\", \"FK Grotesk Neue Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9606e279-6a5f-4380-a3f1-ac71af49e4d9, rgb(69, 76, 95)))\"},children:\"(optionnal)\"})}),className:\"framer-3f5zwt\",fonts:[\"CUSTOM;FK Grotesk Neue Regular\"],layoutDependency:layoutDependency,layoutId:\"OUTh0cXQw\",style:{\"--extracted-r6o4lv\":\"var(--token-9606e279-6a5f-4380-a3f1-ac71af49e4d9, rgb(69, 76, 95))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:Math.max(0,((componentViewport?.height||76)-0-28)/1)*1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+28,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-587c2z-container\",\"data-framer-cursor\":ER3Zu6uIq,layoutDependency:layoutDependency,layoutId:\"NoeLwUHhc-container\",children:/*#__PURE__*/_jsx(InputField,{height:\"100%\",id:\"NoeLwUHhc\",layoutId:\"NoeLwUHhc\",lCEJga0Bx:C05fwlHL8,rljOngPsT:HqNlOw1E5,style:{height:\"100%\",width:\"100%\"},UoXdJNVCh:negate(RCwIh4hNi),variant:\"H6YXyo90Z\",width:\"100%\",xiXRvq9L8:hjEG7kSdL})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SIwgc.framer-1c2gxtb, .framer-SIwgc .framer-1c2gxtb { display: block; }\",\".framer-SIwgc.framer-1nom9r7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 76px; justify-content: flex-start; padding: 0px; position: relative; width: 336px; }\",\".framer-SIwgc .framer-1jriaep { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SIwgc .framer-wzvxwe, .framer-SIwgc .framer-3f5zwt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SIwgc .framer-587c2z-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SIwgc.framer-1nom9r7, .framer-SIwgc .framer-1jriaep { gap: 0px; } .framer-SIwgc.framer-1nom9r7 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-SIwgc.framer-1nom9r7 > :first-child { margin-top: 0px; } .framer-SIwgc.framer-1nom9r7 > :last-child { margin-bottom: 0px; } .framer-SIwgc .framer-1jriaep > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SIwgc .framer-1jriaep > :first-child { margin-left: 0px; } .framer-SIwgc .framer-1jriaep > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 336\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"HqNlOw1E5\":\"type\",\"C05fwlHL8\":\"name1\",\"KvSTnsBnB\":\"label\",\"hjEG7kSdL\":\"placeholder\",\"RCwIh4hNi\":\"optionnal\",\"ER3Zu6uIq\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerU9_jvcW2Y=withCSS(Component,css,\"framer-SIwgc\");export default FramerU9_jvcW2Y;FramerU9_jvcW2Y.displayName=\"Field\";FramerU9_jvcW2Y.defaultProps={height:76,width:336};addPropertyControls(FramerU9_jvcW2Y,{HqNlOw1E5:InputFieldControls?.[\"rljOngPsT\"]&&{...InputFieldControls[\"rljOngPsT\"],defaultValue:\"text\",description:undefined,hidden:undefined,title:\"Type\"},C05fwlHL8:{defaultValue:\"Full name\",title:\"Name\",type:ControlType.String},KvSTnsBnB:{defaultValue:\"Full name\",displayTextArea:false,title:\"Label\",type:ControlType.String},hjEG7kSdL:{defaultValue:\"Pam Beesly\",title:\"Placeholder\",type:ControlType.String},RCwIh4hNi:{defaultValue:false,title:\"Optionnal\",type:ControlType.Boolean},ER3Zu6uIq:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerU9_jvcW2Y,[{explicitInter:true,fonts:[{family:\"FK Grotesk Neue Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/5avlWNgDkshqy6zQtvGGmSZ43Bw.woff2\"},{family:\"FK Grotesk Neue Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/N2Pc9dIMewJ9QT6ivJefrkGZNfM.woff2\"}]},...InputFieldFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerU9_jvcW2Y\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"HqNlOw1E5\\\":\\\"type\\\",\\\"C05fwlHL8\\\":\\\"name1\\\",\\\"KvSTnsBnB\\\":\\\"label\\\",\\\"hjEG7kSdL\\\":\\\"placeholder\\\",\\\"RCwIh4hNi\\\":\\\"optionnal\\\",\\\"ER3Zu6uIq\\\":\\\"cursor\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"336\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"76\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map"],
  "mappings": "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",
  "names": ["TruncateTextContainer", "He", "motion", "lines", "ExpandButtonContainer", "align", "ExpandButton", "buttonColor", "marginTop", "underline", "TextTruncate", "text", "font", "textColor", "fontSize", "showButton", "buttonSettings", "isExpanded", "setIsExpanded", "ye", "collapsedHeight", "setCollapsedHeight", "fullHeight", "setFullHeight", "hasMounted", "setHasMounted", "containerRef", "pe", "ue", "newCollapsedHeight", "window", "dynamicStyle", "buttonDynamicStyle", "u", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "CVyAOmmSa_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "valuesByLocaleId", "CVyAOmmSa_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "css", "FramersL58RmlP1", "withCSS", "sL58RmlP1_default", "addPropertyControls", "ControlType", "addFonts", "SocialIconFonts", "getFonts", "sL58RmlP1_default", "TextTruncateFonts", "TextTruncate", "MotionDivWithFX", "withFX", "motion", "ClipboardFonts", "Clipboard", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "data", "height", "id", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "O04AfhusP", "UVeVzUZ3K", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterupml6a", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "ref2", "isDisplayed6", "isDisplayed7", "isDisplayed8", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "l", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "SVG", "AnimatePresence", "Floating", "getLocalizedValue", "css", "FramerCVyAOmmSa", "withCSS", "CVyAOmmSa_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "props", "fonts", "fontStore", "fonts", "css", "className", "H3rdhSP5L_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v0", "p", "x", "motion", "v1", "v2", "v3", "__FramerMetadata__", "valuesByLocaleId", "H3rdhSP5L_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "sendBtn", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WBPUgnJ_x", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "RichText2", "getLocalizedValue", "css", "FramerH3rdhSP5L", "withCSS", "H3rdhSP5L_default", "addPropertyControls", "ControlType", "addFonts", "AutoYearCopyright", "props", "companyName", "rightsText", "showSymbol", "showTrademark", "trademarkType", "yearPlacement", "font", "color", "fontSize", "currentYear", "symbol", "trademarkOptionActive", "trademarkSymbol", "finalCompanyName", "finalRightsText", "dotAfterCompanyName", "displayText", "textStyle", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "ScrollProgress", "props", "scrollProgress", "setScrollProgress", "ye", "progressBarRef", "pe", "updateScrollProgress", "totalPageHeight", "window", "scrollPosition", "scrollPercentage", "ue", "controlledGlowSpread", "spread", "getBackgroundStyle", "getGlowStyle", "glowColor", "u", "p", "motion", "addPropertyControls", "ControlType", "value", "ScrollProgressFonts", "getFonts", "ScrollProgress", "PrimaryButtonFonts", "Rw0OXZ17T_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "btnPrimaryCursor", "click", "height", "id", "scrollProgress", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BXy_R0AMz", "VczTgxWMl", "s4PpyD5Om", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Q1G9UYy1yepjetb", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "SVG", "css", "Framerr20LLhVTc", "withCSS", "r20LLhVTc_default", "addPropertyControls", "ControlType", "addFonts", "U9_jvcW2Y_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "p", "x", "motion", "__FramerMetadata__", "valuesByLocaleId", "U9_jvcW2Y_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "name1", "placeholder", "required", "type", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rljOngPsT", "lCEJga0Bx", "xiXRvq9L8", "UoXdJNVCh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "FormPlainTextInput2", "css", "FramerKcKbQgnxZ", "withCSS", "KcKbQgnxZ_default", "addPropertyControls", "ControlType", "addFonts", "InputFieldFonts", "getFonts", "KcKbQgnxZ_default", "InputFieldControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "negate", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "cursor", "height", "id", "label", "name1", "optionnal", "placeholder", "type", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "HqNlOw1E5", "C05fwlHL8", "KvSTnsBnB", "hjEG7kSdL", "RCwIh4hNi", "ER3Zu6uIq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "getLocalizedValue", "ComponentViewportProvider", "KcKbQgnxZ_default", "css", "FramerU9_jvcW2Y", "withCSS", "U9_jvcW2Y_default", "addPropertyControls", "InputFieldControls", "ControlType", "addFonts", "InputFieldFonts", "clamp", "t", "e", "n", "isNumber", "t", "isEasingList", "wrap", "e", "n", "o", "getEasingForSegment", "mix", "noopReturn", "t", "progress", "e", "n", "fillOffset", "o", "s", "mix", "defaultOffset", "interpolate", "f", "r", "clamp", "getEasingForSegment", "isString", "t", "e", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "velocityPerSecond", "calcDampingRatio", "hasReachedTarget", "spring", "o", "c", "i", "h", "e", "d", "glide", "r", "a", "u", "f", "isOutOfBounds", "nearestBoundary", "l", "g", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "C", "$", "R", "resolveElements", "n", "createGeneratorEasing", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "e", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "Z", "createAxisInfo", "createScrollInfo", "X", "updateAxisInfo", "progress", "velocityPerSecond", "updateScrollInfo", "calcInset", "Y", "J", "resolveEdge", "isString", "isNumber", "Q", "resolveOffset", "ee", "resolveOffsets", "interpolate", "defaultOffset", "measure", "createOnScrollHandler", "scrubAnimation", "noopReturn", "te", "ne", "oe", "getEventTarget", "scroll", "__rest", "listener", "dispatchPointerEvent", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le"]
}
