{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/YLaa8d1qFbxTy5CePxwo/BMZ00CCXHugjgbPewfGw/Clock.js", "ssg:https://framerusercontent.com/modules/tosgxGkKuXiD0Qi3LWpr/IEVgI0VFHTfaefWA0Qj8/aqnmKOCsP.js", "ssg:https://framerusercontent.com/modules/1AgxRs4Aw7ifbwfHakqK/aGgufs9AfPEMJJGlXECY/Dk7DgiGxf.js", "ssg:https://framerusercontent.com/modules/q5YjdbzFZf5Det5pHS24/gVTmofOhuBaSzsNbQN7k/c9RqtAJJd.js", "ssg:https://framerusercontent.com/modules/zpaUjvdzKoDB0w6jcfoO/CjEyTKu3kzYredUiIcDa/xFwnbqqMb.js", "ssg:https://framerusercontent.com/modules/b7hMGwet5BgLYbLmG3Zm/WOjMxTv2GCVCD5qhwG5x/ZEeHWoa_j.js", "ssg:https://framerusercontent.com/modules/OaRefDsP19JrmjMctyeX/49yQpvVegsZ2L0t5BPFd/ZEeHWoa_j.js", "ssg:https://framerusercontent.com/modules/9EPfmtRk1H0ZMRMbZlXt/9YlgpXPXEeq6LWg5LYa5/rrvW7d7F0.js", "ssg:https://framerusercontent.com/modules/lmPwDNvjp19JAoCnk2Nd/qSUBfYR2VQAgNQY63ygD/OKNVnqycl.js", "ssg:https://framerusercontent.com/modules/cpwcnss1QflkVuLPFeEN/zoNieXzK3vgOpMnZ6sGi/LfWIoRRrU.js"],
  "sourcesContent": ["import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect}from\"react\";const timeZones=typeof Intl!=\"undefined\"?Intl.supportedValuesOf(\"timeZone\"):[];/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function Clock(props){const getCurrentTime=()=>{// let newTime\nif(props.customTimeZone===\"auto\"){return new Date;}else{return new Date(new Date().toLocaleString(\"en-US\",{timeZone:props.customTimeZone}));}};const[currentTime,setCurrentTime]=useState(getCurrentTime());useEffect(()=>{const timerID=setInterval(()=>setCurrentTime(getCurrentTime()),1e3);return()=>{clearInterval(timerID);};},[]);let text=\"\";const ampmText=props.ampmCase===\"uppercase\"?[\"AM\",\"PM\"]:[\"am\",\"pm\"];const hours=props.is12hour?currentTime.getHours()%12||12:currentTime.getHours();const minutes=currentTime.getMinutes().toString().padStart(2,\"0\");const ampm=props.is12hour?currentTime.getHours()>=12?\" \"+ampmText[1]:\" \"+ampmText[0]:\"\";if(props.seconds){const seconds=currentTime.getSeconds().toString().padStart(2,\"0\");text=`${hours}:${minutes}:${seconds}${ampm}`;}else{text=`${hours}:${minutes}${ampm}`;}// Optional: Display the time zone abbreviation\nlet timeZoneAbbreviation=\"\";if(props.timeZone){timeZoneAbbreviation=\" \"+new Intl.DateTimeFormat(\"en-US\",{timeZone:props.customTimeZone===\"auto\"?undefined:props.customTimeZone,timeZoneName:\"short\"}).formatToParts(currentTime).find(part=>part.type===\"timeZoneName\").value;}return /*#__PURE__*/_jsxs(\"p\",{style:{color:props.color,userSelect:props.textSelect?\"auto\":\"none\",margin:0,...props.font},children:[props.prefix,text,timeZoneAbbreviation,props.suffix]});}addPropertyControls(Clock,{customTimeZone:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",...timeZones],optionTitles:[\"Auto (Local)\",...timeZones],title:\"Time Zone\"},seconds:{type:ControlType.Boolean,defaultValue:false,enabledTitle:\"Show\",disabledTitle:\"Hide\"},timeZone:{type:ControlType.Boolean,defaultValue:false,enabledTitle:\"Show\",disabledTitle:\"Hide\",title:\"Time Zone Label\"},is12hour:{type:ControlType.Boolean,defaultValue:true,enabledTitle:\"12 Hour\",disabledTitle:\"24 Hour\",title:\"Mode\"},ampmCase:{type:ControlType.Enum,defaultValue:\"uppercase\",options:[\"uppercase\",\"lowercase\"],optionTitles:[\"AM / PM\",\"am / pm\"],title:\"Case\",hidden(props){return!props.is12hour;}},color:{type:ControlType.Color,defaultValue:\"#000\",title:\"Font Color\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},prefix:{type:ControlType.String},suffix:{type:ControlType.String},textSelect:{type:ControlType.Boolean,defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clock\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clock.map", "// Generated by Framer (1c1e241)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={BQCkZT8ni:{hover:true}};const cycleOrder=[\"BQCkZT8ni\"];const serializationHash=\"framer-q2Xk4\";const variantClassNames={BQCkZT8ni:\"framer-v-1q7gqkn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:2,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,icon,id,link,tap,width,...props})=>{var _ref;return{...props,pDmKj7iYL:link!==null&&link!==void 0?link:props.pDmKj7iYL,xnamlO4dm:(_ref=icon!==null&&icon!==void 0?icon:props.xnamlO4dm)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/ZUCiPDGM4tmRD4tTyrViIkfFS6A.png\"},YjsPeu1Mk:tap!==null&&tap!==void 0?tap:props.YjsPeu1Mk};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,pDmKj7iYL,YjsPeu1Mk,xnamlO4dm,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"BQCkZT8ni\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzonpqe=activeVariantCallback(async(...args)=>{if(YjsPeu1Mk){const res=await YjsPeu1Mk(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-q2Xk4\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:pDmKj7iYL,openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/ZUCiPDGM4tmRD4tTyrViIkfFS6A.png\"},className:`${cx(\"framer-1q7gqkn\",className)} framer-exxto7`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BQCkZT8ni\",onTap:onTapzonpqe,ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.5,...style},variants:{\"BQCkZT8ni-hover\":{opacity:1}},...addPropertyOverrides({\"BQCkZT8ni-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"min(20px, 100vw)\",...toResponsiveImage(xnamlO4dm)},className:\"framer-s0cmf9\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"CsxTDqcmn\"})})})})})});});const css=['.framer-q2Xk4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q2Xk4 .framer-exxto7 { display: block; }\",\".framer-q2Xk4 .framer-1q7gqkn { cursor: pointer; height: 20px; overflow: hidden; position: relative; text-decoration: none; width: 20px; }\",\".framer-q2Xk4 .framer-s0cmf9 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-q2Xk4.framer-v-1q7gqkn.hover .framer-1q7gqkn { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FZLHDiB61\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"pDmKj7iYL\":\"link\",\"YjsPeu1Mk\":\"tap\",\"xnamlO4dm\":\"icon\"}\n * @framerImmutableVariables true\n */const FrameraqnmKOCsP=withCSS(Component,css,\"framer-q2Xk4\");export default FrameraqnmKOCsP;FrameraqnmKOCsP.displayName=\"Icon\";FrameraqnmKOCsP.defaultProps={height:20,width:20};addPropertyControls(FrameraqnmKOCsP,{pDmKj7iYL:{title:\"Link\",type:ControlType.Link},YjsPeu1Mk:{title:\"Tap\",type:ControlType.EventHandler},xnamlO4dm:{__defaultAssetReference:\"data:framer/asset-reference,ZUCiPDGM4tmRD4tTyrViIkfFS6A.png?originalFilename=Insta+icon.png&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage}});addFonts(FrameraqnmKOCsP,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraqnmKOCsP\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"pDmKj7iYL\\\":\\\"link\\\",\\\"YjsPeu1Mk\\\":\\\"tap\\\",\\\"xnamlO4dm\\\":\\\"icon\\\"}\",\"framerIntrinsicHeight\":\"20\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FZLHDiB61\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"20\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aqnmKOCsP.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Icon from\"https://framerusercontent.com/modules/tosgxGkKuXiD0Qi3LWpr/IEVgI0VFHTfaefWA0Qj8/aqnmKOCsP.js\";const IconFonts=getFonts(Icon);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-3dM83\";const variantClassNames={ZBE0UU0qw:\"framer-v-bbxgmz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition2={damping:100,delay:.1,mass:3,stiffness:500,type:\"spring\"};const transition3={damping:100,delay:0,mass:3,stiffness:500,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const animation3={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition4};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition5={damping:100,delay:.3,mass:3,stiffness:500,type:\"spring\"};const transition6={damping:100,delay:.2,mass:3,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);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({defaultVariant:\"ZBE0UU0qw\",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!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bbxgmz\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZBE0UU0qw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-17b09q9-container\",\"data-framer-name\":\"Linkdin\",layoutDependency:layoutDependency,layoutId:\"rSK0bqu_f-container\",name:\"Linkdin\",style:{transformPerspective:1200},whileHover:animation2,whileTap:animation3,children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"rSK0bqu_f\",layoutId:\"rSK0bqu_f\",name:\"Linkdin\",pDmKj7iYL:\"https://www.linkedin.com/in/selimari/\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xnamlO4dm:addImageAlt({src:\"https://framerusercontent.com/images/rax8jtAfRagWkYiUdBVbBscsVQ.png\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1g6u7tp-container\",\"data-framer-name\":\"Behance\",layoutDependency:layoutDependency,layoutId:\"LIqcgx_Lf-container\",name:\"Behance\",style:{transformPerspective:1200},whileHover:animation2,whileTap:animation3,children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"LIqcgx_Lf\",layoutId:\"LIqcgx_Lf\",name:\"Behance\",pDmKj7iYL:\"https://www.behance.net/selimari\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xnamlO4dm:addImageAlt({src:\"https://framerusercontent.com/images/yErz2IAG1wMJn6zPqMTTOEM5shA.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/yErz2IAG1wMJn6zPqMTTOEM5shA.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/yErz2IAG1wMJn6zPqMTTOEM5shA.png?lossless=1 920w\"},\"\")})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-2i4t1f-container\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"YOze00m1E-container\",name:\"Instagram\",style:{transformPerspective:1200},whileHover:animation2,whileTap:animation3,children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"YOze00m1E\",layoutId:\"YOze00m1E\",name:\"Instagram\",pDmKj7iYL:\"https://www.instagram.com/sl3dmo/\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3dM83.framer-1akrfym, .framer-3dM83 .framer-1akrfym { display: block; }\",\".framer-3dM83.framer-bbxgmz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3dM83 .framer-17b09q9-container, .framer-3dM83 .framer-1g6u7tp-container, .framer-3dM83 .framer-2i4t1f-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3dM83.framer-bbxgmz { gap: 0px; } .framer-3dM83.framer-bbxgmz > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-3dM83.framer-bbxgmz > :first-child { margin-left: 0px; } .framer-3dM83.framer-bbxgmz > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDk7DgiGxf=withCSS(Component,css,\"framer-3dM83\");export default FramerDk7DgiGxf;FramerDk7DgiGxf.displayName=\"Social links\";FramerDk7DgiGxf.defaultProps={height:20,width:120};addFonts(FramerDk7DgiGxf,[{explicitInter:true,fonts:[]},...IconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDk7DgiGxf\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"120\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dk7DgiGxf.map", "// Generated by Framer (7f988a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,optimizeAppear,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clock from\"https://framerusercontent.com/modules/YLaa8d1qFbxTy5CePxwo/BMZ00CCXHugjgbPewfGw/Clock.js\";import SocialLinks from\"https://framerusercontent.com/modules/1AgxRs4Aw7ifbwfHakqK/aGgufs9AfPEMJJGlXECY/Dk7DgiGxf.js\";const RichTextWithFX=withFX(RichText);const ClockFonts=getFonts(Clock);const MotionDivWithFX=withFX(motion.div);const SocialLinksFonts=getFonts(SocialLinks);const cycleOrder=[\"YDERUTJP7\",\"ZB9j2YeN5\"];const serializationHash=\"framer-hAnG8\";const variantClassNames={YDERUTJP7:\"framer-v-1qfyj1t\",ZB9j2YeN5:\"framer-v-2t0lvi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:100,delay:0,mass:3,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={damping:100,delay:.1,mass:3,stiffness:300,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"YDERUTJP7\",Phone:\"ZB9j2YeN5\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"YDERUTJP7\"};};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,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YDERUTJP7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qfyj1t\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"YDERUTJP7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ZB9j2YeN5:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18qxws1\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"O6BLi0nvR\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1oab735\",animation,\"1qfyj1t\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6)))\"},children:\"SelimARI \\xa9 2024.\"})}),className:\"framer-1oab735\",\"data-framer-appear-id\":\"1oab735\",\"data-framer-name\":\"Portfolio \\xa9 2023. Designed by Aalay Rasool\",fonts:[\"Inter-Medium\"],initial:optimizeAppear(\"initial\",\"1oab735\",animation1,\"1qfyj1t\"),layoutDependency:layoutDependency,layoutId:\"RDLWw61xY\",style:{\"--extracted-r6o4lv\":\"var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6))\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZB9j2YeN5:{\"data-framer-appear-id\":\"3p6ru0\",animate:optimizeAppear(\"animate\",\"3p6ru0\",animation,\"2t0lvi\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6)))\"},children:\"SelimARI \\xa9 2024.\"})}),initial:optimizeAppear(\"initial\",\"3p6ru0\",animation1,\"2t0lvi\")}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"dptgte\",animation2,\"1qfyj1t\"),className:\"framer-dptgte-container\",\"data-framer-appear-id\":\"dptgte\",initial:optimizeAppear(\"initial\",\"dptgte\",animation1,\"1qfyj1t\"),layoutDependency:layoutDependency,layoutId:\"hwFTMN7ih-container\",style:{transformPerspective:1200},...addPropertyOverrides({ZB9j2YeN5:{\"data-framer-appear-id\":\"1by0zck\",animate:optimizeAppear(\"animate\",\"1by0zck\",animation2,\"2t0lvi\"),initial:optimizeAppear(\"initial\",\"1by0zck\",animation1,\"2t0lvi\")}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Clock,{ampmCase:\"lowercase\",color:\"var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6))\",customTimeZone:\"auto\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"18px\",textAlign:\"center\"},height:\"100%\",id:\"hwFTMN7ih\",is12hour:true,layoutId:\"hwFTMN7ih\",prefix:\"\",seconds:true,suffix:\"\",textSelect:true,timeZone:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"10420ay\",animation,\"1qfyj1t\"),className:\"framer-10420ay-container\",\"data-framer-appear-id\":\"10420ay\",initial:optimizeAppear(\"initial\",\"10420ay\",animation1,\"1qfyj1t\"),layoutDependency:layoutDependency,layoutId:\"oafLBjMGH-container\",style:{transformPerspective:1200},...addPropertyOverrides({ZB9j2YeN5:{\"data-framer-appear-id\":\"1e87mm7\",animate:optimizeAppear(\"animate\",\"1e87mm7\",animation,\"2t0lvi\"),initial:optimizeAppear(\"initial\",\"1e87mm7\",animation1,\"2t0lvi\")}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SocialLinks,{height:\"100%\",id:\"oafLBjMGH\",layoutId:\"oafLBjMGH\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hAnG8.framer-2zebgo, .framer-hAnG8 .framer-2zebgo { display: block; }\",\".framer-hAnG8.framer-1qfyj1t { 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: 1136px; }\",\".framer-hAnG8 .framer-18qxws1 { 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: 119px; }\",\".framer-hAnG8 .framer-1oab735 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-hAnG8 .framer-dptgte-container, .framer-hAnG8 .framer-10420ay-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hAnG8 .framer-18qxws1 { gap: 0px; } .framer-hAnG8 .framer-18qxws1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hAnG8 .framer-18qxws1 > :first-child { margin-left: 0px; } .framer-hAnG8 .framer-18qxws1 > :last-child { margin-right: 0px; } }\",\".framer-hAnG8.framer-v-2t0lvi.framer-1qfyj1t { flex-direction: column; gap: 20px; justify-content: flex-start; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hAnG8.framer-v-2t0lvi.framer-1qfyj1t { gap: 0px; } .framer-hAnG8.framer-v-2t0lvi.framer-1qfyj1t > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hAnG8.framer-v-2t0lvi.framer-1qfyj1t > :first-child { margin-top: 0px; } .framer-hAnG8.framer-v-2t0lvi.framer-1qfyj1t > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 1136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZB9j2YeN5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerc9RqtAJJd=withCSS(Component,css,\"framer-hAnG8\");export default Framerc9RqtAJJd;Framerc9RqtAJJd.displayName=\"Navigation/Footer\";Framerc9RqtAJJd.defaultProps={height:20,width:1136};addPropertyControls(Framerc9RqtAJJd,{variant:{options:[\"YDERUTJP7\",\"ZB9j2YeN5\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerc9RqtAJJd,[{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://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ClockFonts,...SocialLinksFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc9RqtAJJd\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1136\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZB9j2YeN5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-ufSY4 .framer-styles-preset-14pabm7:not(.rich-text-wrapper), .framer-ufSY4 .framer-styles-preset-14pabm7.rich-text-wrapper a { --framer-link-current-text-color: var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, #ffffff); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, #ffffff); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6)); --framer-link-text-decoration: none; transition: color 0.7s cubic-bezier(0, 0.95, 1, 1) 0s; }\"];export const className=\"framer-ufSY4\";\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{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[];export const css=['.framer-qrV1E .framer-styles-preset-10o0dh4:not(.rich-text-wrapper), .framer-qrV1E .framer-styles-preset-10o0dh4.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 26px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.5)); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-qrV1E .framer-styles-preset-10o0dh4:not(.rich-text-wrapper), .framer-qrV1E .framer-styles-preset-10o0dh4.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.5)); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-qrV1E .framer-styles-preset-10o0dh4:not(.rich-text-wrapper), .framer-qrV1E .framer-styles-preset-10o0dh4.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.5)); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-qrV1E\";\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{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[];export const css=['.framer-qrV1E .framer-styles-preset-10o0dh4:not(.rich-text-wrapper), .framer-qrV1E .framer-styles-preset-10o0dh4.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 26px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.5)); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-qrV1E .framer-styles-preset-10o0dh4:not(.rich-text-wrapper), .framer-qrV1E .framer-styles-preset-10o0dh4.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.5)); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-qrV1E .framer-styles-preset-10o0dh4:not(.rich-text-wrapper), .framer-qrV1E .framer-styles-preset-10o0dh4.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 24px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.5)); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-qrV1E\";\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\"}}}", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/OaRefDsP19JrmjMctyeX/49yQpvVegsZ2L0t5BPFd/ZEeHWoa_j.js\";const enabledGestures={aK0NDqI5c:{hover:true},fICPVHJRe:{hover:true},Knd5sHika:{hover:true},VoCeo5sik:{hover:true}};const cycleOrder=[\"Knd5sHika\",\"aK0NDqI5c\",\"fICPVHJRe\",\"VoCeo5sik\",\"jtV5g535r\",\"iRyRjeSAF\",\"xWAa8NN4L\",\"Ppe9AHt_M\",\"Yq3Ho3G3L\"];const serializationHash=\"framer-ih9qU\";const variantClassNames={aK0NDqI5c:\"framer-v-yv1jk5\",fICPVHJRe:\"framer-v-1h4sgbr\",iRyRjeSAF:\"framer-v-1mpchb9\",jtV5g535r:\"framer-v-innn5a\",Knd5sHika:\"framer-v-1owij1e\",Ppe9AHt_M:\"framer-v-1mqtse7\",VoCeo5sik:\"framer-v-86q97w\",xWAa8NN4L:\"framer-v-1cl5i6n\",Yq3Ho3G3L:\"framer-v-y4pc6t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Contact page\":\"jtV5g535r\",\"Phone-bottom\":\"Ppe9AHt_M\",\"Phone-left\":\"Yq3Ho3G3L\",\"Phone-right\":\"xWAa8NN4L\",\"Phone-top\":\"iRyRjeSAF\",Bottom:\"fICPVHJRe\",Left:\"VoCeo5sik\",Right:\"aK0NDqI5c\",Top:\"Knd5sHika\"};const getProps=({height,id,link,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,rgW19KOO0:link!==null&&link!==void 0?link:props.rgW19KOO0,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Knd5sHika\",vVkYWVsnA:(_ref1=title!==null&&title!==void 0?title:props.vVkYWVsnA)!==null&&_ref1!==void 0?_ref1:\"Button CTA\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vVkYWVsnA,rgW19KOO0,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Knd5sHika\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearx4yxc4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),700);});const onAppearjsxc6n=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Knd5sHika\"),700);});const onAppearubu042=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xWAa8NN4L\"),700);});const onAppear10xepy7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Ppe9AHt_M\"),700);});const onAppearcgn5l8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Yq3Ho3G3L\"),700);});const onAppear1rd5a72=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"iRyRjeSAF\"),700);});useOnVariantChange(baseVariant,{default:onAppearx4yxc4,iRyRjeSAF:onAppearubu042,jtV5g535r:undefined,Ppe9AHt_M:onAppearcgn5l8,VoCeo5sik:onAppearjsxc6n,xWAa8NN4L:onAppear10xepy7,Yq3Ho3G3L:onAppear1rd5a72});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"jtV5g535r\",\"iRyRjeSAF\",\"xWAa8NN4L\",\"Ppe9AHt_M\",\"Yq3Ho3G3L\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:rgW19KOO0,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1owij1e\",className,classNames)} framer-1hvslci`,\"data-framer-name\":\"Top\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Knd5sHika\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0.15)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"aK0NDqI5c-hover\":{backgroundColor:\"rgba(255, 255, 255, 0)\"},\"fICPVHJRe-hover\":{backgroundColor:\"rgba(255, 255, 255, 0)\"},\"Knd5sHika-hover\":{backgroundColor:\"rgba(255, 255, 255, 0)\"},\"VoCeo5sik-hover\":{backgroundColor:\"rgba(255, 255, 255, 0)\"},iRyRjeSAF:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},Ppe9AHt_M:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},xWAa8NN4L:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},Yq3Ho3G3L:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30}},...addPropertyOverrides({\"aK0NDqI5c-hover\":{\"data-framer-name\":undefined},\"fICPVHJRe-hover\":{\"data-framer-name\":undefined},\"Knd5sHika-hover\":{\"data-framer-name\":undefined},\"VoCeo5sik-hover\":{\"data-framer-name\":undefined},aK0NDqI5c:{\"data-framer-name\":\"Right\"},fICPVHJRe:{\"data-framer-name\":\"Bottom\"},iRyRjeSAF:{\"data-framer-name\":\"Phone-top\"},jtV5g535r:{\"data-framer-name\":\"Contact page\",\"data-highlight\":undefined},Ppe9AHt_M:{\"data-framer-name\":\"Phone-bottom\"},VoCeo5sik:{\"data-framer-name\":\"Left\"},xWAa8NN4L:{\"data-framer-name\":\"Phone-right\"},Yq3Ho3G3L:{\"data-framer-name\":\"Phone-left\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19uoyyq\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"IaJuJhNtA\",style:{background:\"radial-gradient(25% 50% at 50% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,filter:\"blur(15px)\",WebkitFilter:\"blur(15px)\"},variants:{\"aK0NDqI5c-hover\":{background:\"radial-gradient(100% 100% at 50% 50%, rgba(213, 179, 255, 0.4) 0%, rgba(255, 255, 255, 0.00578) 100%, rgba(255, 255, 255, 0) 100%)\"},\"fICPVHJRe-hover\":{background:\"radial-gradient(100% 100% at 50% 50%, rgba(213, 179, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%)\"},\"Knd5sHika-hover\":{background:\"radial-gradient(100% 100% at 50% 50%, rgba(213, 179, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},\"VoCeo5sik-hover\":{background:\"radial-gradient(100% 100% at 50% 50%, rgba(237, 224, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%)\"},aK0NDqI5c:{background:\"radial-gradient(25% 50% at 100% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},fICPVHJRe:{background:\"radial-gradient(25% 25% at 50% 100%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},VoCeo5sik:{background:\"radial-gradient(25% 50% at 0% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d3vavm\",\"data-framer-name\":\"Stroke\",layoutDependency:layoutDependency,layoutId:\"l8_SjxMII\",style:{background:\"radial-gradient(25% 50% at 50% 0%, rgb(255, 255, 255) 0%, rgba(114, 24, 229, 0) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{\"aK0NDqI5c-hover\":{background:\"radial-gradient(100% 100% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 100%)\"},\"fICPVHJRe-hover\":{background:\"radial-gradient(100% 100% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%)\"},\"Knd5sHika-hover\":{background:\"radial-gradient(100% 100% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%)\"},\"VoCeo5sik-hover\":{background:\"radial-gradient(100% 100% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%)\"},aK0NDqI5c:{background:\"radial-gradient(25% 50% at 100% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},fICPVHJRe:{background:\"radial-gradient(25% 25% at 50% 100%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},iRyRjeSAF:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},jtV5g535r:{background:\"radial-gradient(100% 100% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%)\"},Ppe9AHt_M:{background:\"radial-gradient(25% 50% at 50% 100%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},VoCeo5sik:{background:\"radial-gradient(25% 50% at 0% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\"},xWAa8NN4L:{background:\"radial-gradient(25% 50% at 100% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},Yq3Ho3G3L:{background:\"radial-gradient(25% 50% at 0% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i3vasf\",\"data-framer-name\":\"Fill\",layoutDependency:layoutDependency,layoutId:\"Xlp82cmI4\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{\"aK0NDqI5c-hover\":{backgroundColor:\"rgb(114, 24, 229)\"},\"fICPVHJRe-hover\":{backgroundColor:\"rgb(114, 24, 229)\"},\"Knd5sHika-hover\":{backgroundColor:\"var(--token-9a3ed524-a809-45bc-a00d-717f89253222, rgb(114, 24, 229))\"},\"VoCeo5sik-hover\":{backgroundColor:\"rgb(114, 24, 229)\"},iRyRjeSAF:{backgroundColor:\"var(--token-9a3ed524-a809-45bc-a00d-717f89253222, rgb(114, 24, 229))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},jtV5g535r:{backgroundColor:\"var(--token-9a3ed524-a809-45bc-a00d-717f89253222, rgb(114, 24, 229))\"},Ppe9AHt_M:{backgroundColor:\"var(--token-9a3ed524-a809-45bc-a00d-717f89253222, rgb(114, 24, 229))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},xWAa8NN4L:{backgroundColor:\"var(--token-9a3ed524-a809-45bc-a00d-717f89253222, rgb(114, 24, 229))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},Yq3Ho3G3L:{backgroundColor:\"var(--token-9a3ed524-a809-45bc-a00d-717f89253222, rgb(114, 24, 229))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",style:{\"--framer-text-alignment\":\"center\"},children:\"Button CTA\"})}),className:\"framer-12w9of1\",\"data-framer-name\":\"CTA\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sVHZ4TJNU\",text:vVkYWVsnA,variants:{\"aK0NDqI5c-hover\":{\"--extracted-r6o4lv\":\"var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255))\"},\"fICPVHJRe-hover\":{\"--extracted-r6o4lv\":\"var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255))\"},\"Knd5sHika-hover\":{\"--extracted-r6o4lv\":\"var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255))\"},\"VoCeo5sik-hover\":{\"--extracted-r6o4lv\":\"var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255))\"},iRyRjeSAF:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},jtV5g535r:{\"--extracted-r6o4lv\":\"var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255))\"},Ppe9AHt_M:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},xWAa8NN4L:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},Yq3Ho3G3L:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"aK0NDqI5c-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255)))\"},children:\"Button CTA\"})})},\"fICPVHJRe-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255)))\"},children:\"Button CTA\"})})},\"Knd5sHika-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255)))\"},children:\"Button CTA\"})})},\"VoCeo5sik-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255)))\"},children:\"Button CTA\"})})},iRyRjeSAF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Template\"})}),fonts:[\"Inter-Medium\"]},jtV5g535r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255)))\"},children:\"Button CTA\"})})},Ppe9AHt_M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Template\"})}),fonts:[\"Inter-Medium\"]},xWAa8NN4L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Template\"})}),fonts:[\"Inter-Medium\"]},Yq3Ho3G3L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy Template\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ih9qU.framer-1hvslci, .framer-ih9qU .framer-1hvslci { display: block; }\",\".framer-ih9qU.framer-1owij1e { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ih9qU .framer-19uoyyq, .framer-ih9qU .framer-1d3vavm { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-ih9qU .framer-i3vasf { bottom: 2px; flex: none; left: 2px; overflow: hidden; position: absolute; right: 2px; top: 2px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-ih9qU .framer-12w9of1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ih9qU.framer-1owij1e { gap: 0px; } .framer-ih9qU.framer-1owij1e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ih9qU.framer-1owij1e > :first-child { margin-top: 0px; } .framer-ih9qU.framer-1owij1e > :last-child { margin-bottom: 0px; } }\",\".framer-ih9qU.framer-v-innn5a.framer-1owij1e { cursor: unset; }\",\".framer-ih9qU.framer-v-1mpchb9.framer-1owij1e, .framer-ih9qU.framer-v-1cl5i6n.framer-1owij1e, .framer-ih9qU.framer-v-1mqtse7.framer-1owij1e, .framer-ih9qU.framer-v-y4pc6t.framer-1owij1e { cursor: unset; height: 39px; padding: 10px 20px 10px 20px; width: 144px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 106\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"aK0NDqI5c\":{\"layout\":[\"auto\",\"auto\"]},\"fICPVHJRe\":{\"layout\":[\"auto\",\"auto\"]},\"VoCeo5sik\":{\"layout\":[\"auto\",\"auto\"]},\"jtV5g535r\":{\"layout\":[\"auto\",\"auto\"]},\"iRyRjeSAF\":{\"layout\":[\"fixed\",\"fixed\"]},\"xWAa8NN4L\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ppe9AHt_M\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yq3Ho3G3L\":{\"layout\":[\"fixed\",\"fixed\"]},\"eA8dqG7Mb\":{\"layout\":[\"auto\",\"auto\"]},\"jLJoZ6lRb\":{\"layout\":[\"auto\",\"auto\"]},\"auBbQJ6IE\":{\"layout\":[\"auto\",\"auto\"]},\"IOdMrTlEu\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vVkYWVsnA\":\"title\",\"rgW19KOO0\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrrvW7d7F0=withCSS(Component,css,\"framer-ih9qU\");export default FramerrrvW7d7F0;FramerrrvW7d7F0.displayName=\"CTA-Nav bar\";FramerrrvW7d7F0.defaultProps={height:42,width:106};addPropertyControls(FramerrrvW7d7F0,{variant:{options:[\"Knd5sHika\",\"aK0NDqI5c\",\"fICPVHJRe\",\"VoCeo5sik\",\"jtV5g535r\",\"iRyRjeSAF\",\"xWAa8NN4L\",\"Ppe9AHt_M\",\"Yq3Ho3G3L\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\",\"Contact page\",\"Phone-top\",\"Phone-right\",\"Phone-bottom\",\"Phone-left\"],title:\"Variant\",type:ControlType.Enum},vVkYWVsnA:{defaultValue:\"Button CTA\",displayTextArea:false,title:\"Title\",type:ControlType.String},rgW19KOO0:{title:\"Link\",type:ControlType.Link}});addFonts(FramerrrvW7d7F0,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{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://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrrvW7d7F0\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aK0NDqI5c\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fICPVHJRe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VoCeo5sik\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jtV5g535r\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iRyRjeSAF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xWAa8NN4L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ppe9AHt_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yq3Ho3G3L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eA8dqG7Mb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jLJoZ6lRb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"auBbQJ6IE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IOdMrTlEu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"vVkYWVsnA\\\":\\\"title\\\",\\\"rgW19KOO0\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"42\",\"framerIntrinsicWidth\":\"106\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rrvW7d7F0.map", "// Generated by Framer (97d1eee)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,optimizeAppear,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zpaUjvdzKoDB0w6jcfoO/CjEyTKu3kzYredUiIcDa/xFwnbqqMb.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/b7hMGwet5BgLYbLmG3Zm/WOjMxTv2GCVCD5qhwG5x/ZEeHWoa_j.js\";import SocialLinks from\"https://framerusercontent.com/modules/1AgxRs4Aw7ifbwfHakqK/aGgufs9AfPEMJJGlXECY/Dk7DgiGxf.js\";import CTANavBar from\"https://framerusercontent.com/modules/9EPfmtRk1H0ZMRMbZlXt/9YlgpXPXEeq6LWg5LYa5/rrvW7d7F0.js\";const CTANavBarFonts=getFonts(CTANavBar);const MotionDivWithFX=withFX(motion.div);const SocialLinksFonts=getFonts(SocialLinks);const cycleOrder=[\"f97Q_p7kR\",\"yzO5V4Nia\",\"IoxvFo5LP\",\"Ry6SGgTFT\"];const serializationHash=\"framer-c7Hyf\";const variantClassNames={f97Q_p7kR:\"framer-v-15802jt\",IoxvFo5LP:\"framer-v-qagn2a\",Ry6SGgTFT:\"framer-v-zc4z2j\",yzO5V4Nia:\"framer-v-1n2xzjf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const animation2={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2};const transition3={damping:100,delay:.1,mass:3,stiffness:500,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition4={damping:100,delay:.3,mass:3,stiffness:500,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:100,delay:.2,mass:3,stiffness:500,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={damping:100,delay:.4,mass:3,stiffness:500,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={damping:100,delay:.5,mass:3,stiffness:500,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={damping:100,delay:.6,mass:3,stiffness:500,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={damping:100,delay:0,mass:3,stiffness:500,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Contact page\":\"Ry6SGgTFT\",\"Desktop/Tablet\":\"f97Q_p7kR\",\"Phone-Default\":\"yzO5V4Nia\",\"Phone-Expanded\":\"IoxvFo5LP\"};const getProps=({avatarLogo,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,RFfWz_TuM:(_ref=avatarLogo!==null&&avatarLogo!==void 0?avatarLogo:props.RFfWz_TuM)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/jVAM5HrQSIiMtNsVAoof4ybGI.png\",srcSet:\"https://framerusercontent.com/images/jVAM5HrQSIiMtNsVAoof4ybGI.png 487w\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"f97Q_p7kR\"};};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,RFfWz_TuM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"f97Q_p7kR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap5q6gw9=activeVariantCallback(async(...args)=>{setVariant(\"IoxvFo5LP\");});const onTapevrrcw=activeVariantCallback(async(...args)=>{setVariant(\"yzO5V4Nia\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"yzO5V4Nia\",\"IoxvFo5LP\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"yzO5V4Nia\",\"IoxvFo5LP\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"IoxvFo5LP\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15802jt\",className,classNames),\"data-framer-name\":\"Desktop/Tablet\",layoutDependency:layoutDependency,layoutId:\"f97Q_p7kR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{IoxvFo5LP:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({IoxvFo5LP:{\"data-framer-name\":\"Phone-Expanded\"},Ry6SGgTFT:{\"data-framer-name\":\"Contact page\"},yzO5V4Nia:{\"data-framer-name\":\"Phone-Default\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2zriv1\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Xqkc11sgf\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-22cf3d5b-05c3-4cf9-9506-44947f466e1e, rgba(255, 255, 255, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(0, 0, 0, 0.6)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.6021873017743928px 1.5656869846134214px 0px rgba(0, 0, 0, 0.01505), 0px 2.288533303243457px 5.950186588432988px 0px rgba(0, 0, 0, 0.05721), 0px 10px 26px 0px rgba(0, 0, 0, 0.25)\",WebkitBackdropFilter:\"blur(10px)\"},variants:{IoxvFo5LP:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36},yzO5V4Nia:{\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q4cisv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"bAal7p6xf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k5oohn\",layoutDependency:layoutDependency,layoutId:\"qgnroM6t8\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,pixelHeight:6e3,pixelWidth:4e3,sizes:\"40px\",...toResponsiveImage(RFfWz_TuM),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-snou2s framer-s046ch\",\"data-framer-name\":\"Avatar/Logo\",layoutDependency:layoutDependency,layoutId:\"PaW48Hj61\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{yzO5V4Nia:{borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7}},whileTap:animation,...addPropertyOverrides({yzO5V4Nia:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,pixelHeight:6e3,pixelWidth:4e3,sizes:\"30px\",...toResponsiveImage(RFfWz_TuM),...{positionX:\"left\",positionY:\"top\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b8g3g3\",layoutDependency:layoutDependency,layoutId:\"I80tiQ99z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255)))\"},children:\"Selim ARI\"})}),className:\"framer-gdx4t6\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"RpzhYzfJG\",style:{\"--extracted-r6o4lv\":\"var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IoxvFo5LP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255)))\"},children:\"Selim ARI\"})})},yzO5V4Nia:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3723e43b-5351-44f1-9d6f-f940902736b5, rgb(255, 255, 255)))\"},children:\"Selim ARI\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6)))\"},children:\"3D Motion Designer\"})}),className:\"framer-1w6edcd\",\"data-framer-name\":\" Text 2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F0BI6riiE\",style:{\"--extracted-r6o4lv\":\"var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IoxvFo5LP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6)))\"},children:\"3D Motion Designer\"})})},yzO5V4Nia:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c1f02333-555c-4436-8987-45f089b79401, rgba(255, 255, 255, 0.6)))\"},children:\"3D Motion Designer\"})})}},baseVariant,gestureVariant)})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jpw1gg\",\"data-framer-name\":\"Nav links\",layoutDependency:layoutDependency,layoutId:\"F6Iy8ZRrP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xquk0p\",\"data-framer-name\":\"Link 1\",layoutDependency:layoutDependency,layoutId:\"bgnyRchQT\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14pabm7\",\"data-styles-preset\":\"xFwnbqqMb\",children:\"Home\"})})})}),className:\"framer-sp4zmm\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q_34bmkhg\",verticalAlignment:\"top\",whileHover:animation1,whileTap:animation2,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1051f4m\",\"data-framer-name\":\"Link 3\",layoutDependency:layoutDependency,layoutId:\"fFIs6QtPa\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fxe4bYPEK\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14pabm7\",\"data-styles-preset\":\"xFwnbqqMb\",children:\"Projects\"})})})}),className:\"framer-1178ltl\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bPrnDY8QH\",verticalAlignment:\"top\",whileHover:animation1,whileTap:animation2,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q08qsm\",\"data-framer-name\":\"Link 2\",layoutDependency:layoutDependency,layoutId:\"iKQXNafcq\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XY9UUWTnD\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14pabm7\",\"data-styles-preset\":\"xFwnbqqMb\",children:\"About\"})})})}),className:\"framer-cbxgz\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pILSERBm6\",verticalAlignment:\"top\",whileHover:animation1,whileTap:animation2,withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ipjsLFJyO\"},implicitPathVariables:undefined},{href:{webPageId:\"ipjsLFJyO\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-byunr9-container\",\"data-framer-name\":\"CTA 1\",layoutDependency:layoutDependency,layoutId:\"WmZaSHjBe-container\",name:\"CTA 1\",whileTap:animation,children:/*#__PURE__*/_jsx(CTANavBar,{height:\"100%\",id:\"WmZaSHjBe\",layoutId:\"WmZaSHjBe\",name:\"CTA 1\",rgW19KOO0:resolvedLinks[0],style:{height:\"100%\"},variant:\"Knd5sHika\",vVkYWVsnA:\"Say Hello\",width:\"100%\",...addPropertyOverrides({Ry6SGgTFT:{rgW19KOO0:resolvedLinks[1],variant:\"jtV5g535r\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wntwal\",\"data-framer-name\":\"Menu Icon\",layoutDependency:layoutDependency,layoutId:\"W8IdF683y\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"none\"},variants:{IoxvFo5LP:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 0.6021873017743928px 1.3248120639036642px 0px rgba(0, 0, 0, 0.01505), 0px 2.288533303243457px 5.034773267135606px 0px rgba(0, 0, 0, 0.05721), 0px 10px 22px 0px rgba(0, 0, 0, 0.25)\"}},...addPropertyOverrides({IoxvFo5LP:{\"data-highlight\":true,onTap:onTapevrrcw,whileTap:animation},yzO5V4Nia:{\"data-highlight\":true,onTap:onTap5q6gw9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13mzpiz\",layoutDependency:layoutDependency,layoutId:\"mqKDWTwNI\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,rotate:0},variants:{IoxvFo5LP:{backgroundColor:\"rgb(16, 16, 16)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-agi7se\",layoutDependency:layoutDependency,layoutId:\"BcEksd06R\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,rotate:0},variants:{IoxvFo5LP:{backgroundColor:\"rgb(16, 16, 16)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,rotate:45}}})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wz3xbk\",\"data-framer-name\":\"Nav links-Phone\",layoutDependency:layoutDependency,layoutId:\"skD1NB4Zu\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},children:[isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1bbwjc2\",animation3,\"15802jt\"),className:\"framer-1bbwjc2\",\"data-framer-appear-id\":\"1bbwjc2\",\"data-framer-name\":\"Link 1\",initial:optimizeAppear(\"initial\",\"1bbwjc2\",animation4,\"15802jt\"),layoutDependency:layoutDependency,layoutId:\"l4V6S1SYG\",style:{transformPerspective:1200},...addPropertyOverrides({IoxvFo5LP:{\"data-framer-appear-id\":\"q5u2mi\",animate:optimizeAppear(\"animate\",\"q5u2mi\",animation3,\"qagn2a\"),initial:optimizeAppear(\"initial\",\"q5u2mi\",animation4,\"qagn2a\")}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14pabm7\",\"data-styles-preset\":\"xFwnbqqMb\",children:\"Home\"})})})}),className:\"framer-9b85wp\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W30yIK8SJ\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"tbwxqo\",animation5,\"15802jt\"),className:\"framer-tbwxqo\",\"data-framer-appear-id\":\"tbwxqo\",\"data-framer-name\":\"Link 2\",initial:optimizeAppear(\"initial\",\"tbwxqo\",animation4,\"15802jt\"),layoutDependency:layoutDependency,layoutId:\"O5nbTR6ls\",style:{transformPerspective:1200},...addPropertyOverrides({IoxvFo5LP:{\"data-framer-appear-id\":\"18ayvmz\",animate:optimizeAppear(\"animate\",\"18ayvmz\",animation5,\"qagn2a\"),initial:optimizeAppear(\"initial\",\"18ayvmz\",animation4,\"qagn2a\")}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XY9UUWTnD\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14pabm7\",\"data-styles-preset\":\"xFwnbqqMb\",children:\"About\"})})})}),className:\"framer-1gy8qqc\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"itC2DaTDe\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"ddqs1b\",animation6,\"15802jt\"),className:\"framer-ddqs1b\",\"data-framer-appear-id\":\"ddqs1b\",\"data-framer-name\":\"Link 3\",initial:optimizeAppear(\"initial\",\"ddqs1b\",animation4,\"15802jt\"),layoutDependency:layoutDependency,layoutId:\"nkG2XxA_6\",style:{transformPerspective:1200},...addPropertyOverrides({IoxvFo5LP:{\"data-framer-appear-id\":\"1dlxvxc\",animate:optimizeAppear(\"animate\",\"1dlxvxc\",animation6,\"qagn2a\"),initial:optimizeAppear(\"initial\",\"1dlxvxc\",animation4,\"qagn2a\")}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10o0dh4\",\"data-styles-preset\":\"ZEeHWoa_j\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fxe4bYPEK\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14pabm7\",\"data-styles-preset\":\"xFwnbqqMb\",children:\"Portfolio\"})})})}),className:\"framer-s5dhgm\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U1QI18HYw\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ipjsLFJyO\"},implicitPathVariables:undefined},{href:{webPageId:\"ipjsLFJyO\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({IoxvFo5LP:{width:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px, 400px) - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"174sa5u\",animation7,\"15802jt\"),className:\"framer-174sa5u-container\",\"data-framer-appear-id\":\"174sa5u\",\"data-framer-name\":\"CTA 2\",initial:optimizeAppear(\"initial\",\"174sa5u\",animation4,\"15802jt\"),layoutDependency:layoutDependency,layoutId:\"XacZjgWgM-container\",name:\"CTA 2\",style:{transformPerspective:1200},whileTap:animation,...addPropertyOverrides({IoxvFo5LP:{\"data-framer-appear-id\":\"1nxowd6\",animate:optimizeAppear(\"animate\",\"1nxowd6\",animation7,\"qagn2a\"),initial:optimizeAppear(\"initial\",\"1nxowd6\",animation4,\"qagn2a\")}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(CTANavBar,{height:\"100%\",id:\"XacZjgWgM\",layoutId:\"XacZjgWgM\",name:\"CTA 2\",rgW19KOO0:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},variant:\"iRyRjeSAF\",vVkYWVsnA:\"Say Hello\",width:\"100%\",...addPropertyOverrides({IoxvFo5LP:{rgW19KOO0:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"k4n28\",animation8,\"15802jt\"),className:\"framer-k4n28\",\"data-framer-appear-id\":\"k4n28\",\"data-framer-name\":\"Divider\",initial:optimizeAppear(\"initial\",\"k4n28\",animation4,\"15802jt\"),layoutDependency:layoutDependency,layoutId:\"k8nCdg_p1\",style:{backgroundColor:\"rgba(255, 255, 255, 0.15)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,transformPerspective:1200},...addPropertyOverrides({IoxvFo5LP:{\"data-framer-appear-id\":\"1u2tl6i\",animate:optimizeAppear(\"animate\",\"1u2tl6i\",animation8,\"qagn2a\"),initial:optimizeAppear(\"initial\",\"1u2tl6i\",animation4,\"qagn2a\")}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"asfm6m\",animation9,\"15802jt\"),className:\"framer-asfm6m-container\",\"data-framer-appear-id\":\"asfm6m\",initial:optimizeAppear(\"initial\",\"asfm6m\",animation4,\"15802jt\"),layoutDependency:layoutDependency,layoutId:\"YaTIJhAG7-container\",style:{transformPerspective:1200},...addPropertyOverrides({IoxvFo5LP:{\"data-framer-appear-id\":\"1qtz1w8\",animate:optimizeAppear(\"animate\",\"1qtz1w8\",animation9,\"qagn2a\"),initial:optimizeAppear(\"initial\",\"1qtz1w8\",animation4,\"qagn2a\")}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SocialLinks,{height:\"100%\",id:\"YaTIJhAG7\",layoutId:\"YaTIJhAG7\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"169c2gg\",animation10,\"15802jt\"),className:\"framer-169c2gg\",\"data-framer-appear-id\":\"169c2gg\",\"data-framer-name\":\"Divider\",initial:optimizeAppear(\"initial\",\"169c2gg\",animation4,\"15802jt\"),layoutDependency:layoutDependency,layoutId:\"mVBFHJdhq\",style:{backgroundColor:\"rgba(255, 255, 255, 0.15)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,transformPerspective:1200},...addPropertyOverrides({IoxvFo5LP:{\"data-framer-appear-id\":\"81va3s\",animate:optimizeAppear(\"animate\",\"81va3s\",animation10,\"qagn2a\"),initial:optimizeAppear(\"initial\",\"81va3s\",animation4,\"qagn2a\")}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c7Hyf.framer-s046ch, .framer-c7Hyf .framer-s046ch { display: block; }\",\".framer-c7Hyf.framer-15802jt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-c7Hyf .framer-2zriv1 { 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: 10px; position: relative; width: 1px; }\",\".framer-c7Hyf .framer-1q4cisv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c7Hyf .framer-k5oohn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c7Hyf .framer-snou2s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; text-decoration: none; width: 40px; }\",\".framer-c7Hyf .framer-1b8g3g3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 0px; position: relative; width: min-content; }\",\".framer-c7Hyf .framer-gdx4t6, .framer-c7Hyf .framer-sp4zmm, .framer-c7Hyf .framer-1178ltl, .framer-c7Hyf .framer-cbxgz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-c7Hyf .framer-1w6edcd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 145px; word-break: break-word; word-wrap: break-word; }\",\".framer-c7Hyf .framer-jpw1gg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-c7Hyf .framer-1xquk0p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: min-content; }\",\".framer-c7Hyf .framer-1051f4m, .framer-c7Hyf .framer-q08qsm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-c7Hyf .framer-byunr9-container { align-self: stretch; cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-c7Hyf .framer-1wntwal { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-c7Hyf .framer-13mzpiz, .framer-c7Hyf .framer-agi7se { flex: none; height: 2px; overflow: visible; position: relative; width: 20px; }\",\".framer-c7Hyf .framer-wz3xbk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 184px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c7Hyf .framer-1bbwjc2, .framer-c7Hyf .framer-tbwxqo, .framer-c7Hyf .framer-ddqs1b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 0px; position: relative; width: 100%; }\",\".framer-c7Hyf .framer-9b85wp, .framer-c7Hyf .framer-1gy8qqc, .framer-c7Hyf .framer-s5dhgm { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c7Hyf .framer-174sa5u-container { flex: none; height: 45px; position: relative; width: 100%; }\",\".framer-c7Hyf .framer-k4n28, .framer-c7Hyf .framer-169c2gg { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-c7Hyf .framer-asfm6m-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c7Hyf.framer-15802jt, .framer-c7Hyf .framer-k5oohn, .framer-c7Hyf .framer-1b8g3g3, .framer-c7Hyf .framer-jpw1gg, .framer-c7Hyf .framer-1xquk0p, .framer-c7Hyf .framer-1051f4m, .framer-c7Hyf .framer-q08qsm, .framer-c7Hyf .framer-1wntwal, .framer-c7Hyf .framer-wz3xbk, .framer-c7Hyf .framer-1bbwjc2, .framer-c7Hyf .framer-tbwxqo, .framer-c7Hyf .framer-ddqs1b { gap: 0px; } .framer-c7Hyf.framer-15802jt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-c7Hyf.framer-15802jt > :first-child, .framer-c7Hyf .framer-k5oohn > :first-child, .framer-c7Hyf .framer-jpw1gg > :first-child { margin-left: 0px; } .framer-c7Hyf.framer-15802jt > :last-child, .framer-c7Hyf .framer-k5oohn > :last-child, .framer-c7Hyf .framer-jpw1gg > :last-child { margin-right: 0px; } .framer-c7Hyf .framer-k5oohn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-c7Hyf .framer-1b8g3g3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c7Hyf .framer-1b8g3g3 > :first-child, .framer-c7Hyf .framer-1xquk0p > :first-child, .framer-c7Hyf .framer-1051f4m > :first-child, .framer-c7Hyf .framer-q08qsm > :first-child, .framer-c7Hyf .framer-1wntwal > :first-child, .framer-c7Hyf .framer-wz3xbk > :first-child, .framer-c7Hyf .framer-1bbwjc2 > :first-child, .framer-c7Hyf .framer-tbwxqo > :first-child, .framer-c7Hyf .framer-ddqs1b > :first-child { margin-top: 0px; } .framer-c7Hyf .framer-1b8g3g3 > :last-child, .framer-c7Hyf .framer-1xquk0p > :last-child, .framer-c7Hyf .framer-1051f4m > :last-child, .framer-c7Hyf .framer-q08qsm > :last-child, .framer-c7Hyf .framer-1wntwal > :last-child, .framer-c7Hyf .framer-wz3xbk > :last-child, .framer-c7Hyf .framer-1bbwjc2 > :last-child, .framer-c7Hyf .framer-tbwxqo > :last-child, .framer-c7Hyf .framer-ddqs1b > :last-child { margin-bottom: 0px; } .framer-c7Hyf .framer-jpw1gg > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-c7Hyf .framer-1xquk0p > *, .framer-c7Hyf .framer-1051f4m > *, .framer-c7Hyf .framer-q08qsm > *, .framer-c7Hyf .framer-1wntwal > *, .framer-c7Hyf .framer-1bbwjc2 > *, .framer-c7Hyf .framer-tbwxqo > *, .framer-c7Hyf .framer-ddqs1b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c7Hyf .framer-wz3xbk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-c7Hyf.framer-v-1n2xzjf.framer-15802jt { width: 390px; }\",\".framer-c7Hyf.framer-v-1n2xzjf .framer-2zriv1 { padding: 10px 20px 10px 20px; }\",\".framer-c7Hyf.framer-v-1n2xzjf .framer-k5oohn { height: min-content; }\",\".framer-c7Hyf.framer-v-1n2xzjf .framer-snou2s { height: var(--framer-aspect-ratio-supported, 30px); width: 30px; }\",\".framer-c7Hyf.framer-v-1n2xzjf .framer-1wntwal { cursor: pointer; gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c7Hyf.framer-v-1n2xzjf .framer-1wntwal { gap: 0px; } .framer-c7Hyf.framer-v-1n2xzjf .framer-1wntwal > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-c7Hyf.framer-v-1n2xzjf .framer-1wntwal > :first-child { margin-top: 0px; } .framer-c7Hyf.framer-v-1n2xzjf .framer-1wntwal > :last-child { margin-bottom: 0px; } }\",\".framer-c7Hyf.framer-v-qagn2a.framer-15802jt { align-content: flex-end; align-items: flex-end; flex-direction: column; justify-content: flex-start; padding: 10px; width: 390px; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-2zriv1 { flex: none; flex-direction: column; flex-wrap: wrap; gap: 30px; justify-content: flex-start; max-width: 400px; order: 0; padding: 30px; width: 100%; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-1q4cisv { flex: none; height: min-content; order: 0; width: 100%; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-1w6edcd { white-space: pre; width: auto; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-1wntwal { cursor: pointer; display: block; padding: unset; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-13mzpiz, .framer-c7Hyf.framer-v-qagn2a .framer-agi7se { left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 2px / 2); }\",\".framer-c7Hyf.framer-v-qagn2a .framer-wz3xbk { flex: none; min-height: unset; order: 2; width: 100%; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-1bbwjc2 { order: 0; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-tbwxqo { order: 2; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-ddqs1b { order: 1; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-174sa5u-container { order: 3; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-k4n28 { flex: none; order: 3; width: 100%; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-asfm6m-container { order: 4; }\",\".framer-c7Hyf.framer-v-qagn2a .framer-169c2gg { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c7Hyf.framer-v-qagn2a.framer-15802jt, .framer-c7Hyf.framer-v-qagn2a .framer-2zriv1, .framer-c7Hyf.framer-v-qagn2a .framer-1wntwal { gap: 0px; } .framer-c7Hyf.framer-v-qagn2a.framer-15802jt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c7Hyf.framer-v-qagn2a.framer-15802jt > :first-child, .framer-c7Hyf.framer-v-qagn2a .framer-2zriv1 > :first-child { margin-top: 0px; } .framer-c7Hyf.framer-v-qagn2a.framer-15802jt > :last-child, .framer-c7Hyf.framer-v-qagn2a .framer-2zriv1 > :last-child { margin-bottom: 0px; } .framer-c7Hyf.framer-v-qagn2a .framer-2zriv1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-c7Hyf.framer-v-qagn2a .framer-1wntwal > *, .framer-c7Hyf.framer-v-qagn2a .framer-1wntwal > :first-child, .framer-c7Hyf.framer-v-qagn2a .framer-1wntwal > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-c7Hyf[data-border=\"true\"]::after, .framer-c7Hyf [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 60\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yzO5V4Nia\":{\"layout\":[\"fixed\",\"auto\"]},\"IoxvFo5LP\":{\"layout\":[\"fixed\",\"auto\"]},\"Ry6SGgTFT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RFfWz_TuM\":\"avatarLogo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOKNVnqycl=withCSS(Component,css,\"framer-c7Hyf\");export default FramerOKNVnqycl;FramerOKNVnqycl.displayName=\"Nav bar\";FramerOKNVnqycl.defaultProps={height:60,width:1200};addPropertyControls(FramerOKNVnqycl,{variant:{options:[\"f97Q_p7kR\",\"yzO5V4Nia\",\"IoxvFo5LP\",\"Ry6SGgTFT\"],optionTitles:[\"Desktop/Tablet\",\"Phone-Default\",\"Phone-Expanded\",\"Contact page\"],title:\"Variant\",type:ControlType.Enum},RFfWz_TuM:{__defaultAssetReference:\"data:framer/asset-reference,jVAM5HrQSIiMtNsVAoof4ybGI.png?originalFilename=foto.png&preferredSize=auto\",title:\"Avatar/Logo\",type:ControlType.ResponsiveImage}});addFonts(FramerOKNVnqycl,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQ bJvbw7SY1pQ.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\"}]},...CTANavBarFonts,...SocialLinksFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOKNVnqycl\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"RFfWz_TuM\\\":\\\"avatarLogo\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yzO5V4Nia\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IoxvFo5LP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ry6SGgTFT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[];export const css=['.framer-RHEGz .framer-styles-preset-t5r8ti:not(.rich-text-wrapper), .framer-RHEGz .framer-styles-preset-t5r8ti.rich-text-wrapper h2 { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.03em; --framer-line-height: 74px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-RHEGz .framer-styles-preset-t5r8ti:not(.rich-text-wrapper), .framer-RHEGz .framer-styles-preset-t5r8ti.rich-text-wrapper h2 { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.03em; --framer-line-height: 48px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-RHEGz .framer-styles-preset-t5r8ti:not(.rich-text-wrapper), .framer-RHEGz .framer-styles-preset-t5r8ti.rich-text-wrapper h2 { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.03em; --framer-line-height: 32px; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-RHEGz\";\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\"}}}"],
  "mappings": "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",
  "names": ["timeZones", "Clock", "props", "getCurrentTime", "currentTime", "setCurrentTime", "ye", "ue", "timerID", "text", "ampmText", "hours", "minutes", "ampm", "seconds", "timeZoneAbbreviation", "part", "u", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "icon", "id", "link", "tap", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "pDmKj7iYL", "YjsPeu1Mk", "xnamlO4dm", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzonpqe", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "Image2", "css", "FrameraqnmKOCsP", "withCSS", "aqnmKOCsP_default", "addPropertyControls", "ControlType", "addFonts", "IconFonts", "getFonts", "aqnmKOCsP_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "transition3", "animation1", "transition4", "animation2", "animation3", "addImageAlt", "image", "alt", "transition5", "transition6", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "MotionDivWithFX", "aqnmKOCsP_default", "css", "FramerDk7DgiGxf", "withCSS", "Dk7DgiGxf_default", "addFonts", "IconFonts", "RichTextWithFX", "withFX", "RichText2", "ClockFonts", "getFonts", "Clock", "MotionDivWithFX", "motion", "SocialLinksFonts", "Dk7DgiGxf_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "optimizeAppear", "ComponentViewportProvider", "css", "Framerc9RqtAJJd", "withCSS", "c9RqtAJJd_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vVkYWVsnA", "rgW19KOO0", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearx4yxc4", "args", "CycleVariantState", "onAppearjsxc6n", "onAppearubu042", "onAppear10xepy7", "onAppearcgn5l8", "onAppear1rd5a72", "useOnVariantChange", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerrrvW7d7F0", "withCSS", "rrvW7d7F0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CTANavBarFonts", "getFonts", "rrvW7d7F0_default", "MotionDivWithFX", "withFX", "motion", "SocialLinksFonts", "Dk7DgiGxf_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "transition7", "animation8", "transition8", "animation9", "transition9", "animation10", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "avatarLogo", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RFfWz_TuM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap5q6gw9", "args", "onTapevrrcw", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "Image2", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "optimizeAppear", "resolvedLinks1", "css", "FramerOKNVnqycl", "withCSS", "OKNVnqycl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
