{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/7Or7gtj187crY2OZBW42/PvTH1wZoAoFc2DWpgOrn/ddP1ZGjCC.js", "ssg:https://framerusercontent.com/modules/dPrpxPJfgIUuuGU75BxN/6bJKl4ljU6TBPRcWyFXt/F5FsYrOp_.js", "ssg:https://framerusercontent.com/modules/7wng9D9MggJcSd2Q3v4y/7R97MPpVjrz9mHJX0X21/Jy__ZHX01.js", "ssg:https://framerusercontent.com/modules/b76L6Ploqt3G7c3wwwUe/SpDVm3qYMe9E0v6mYFOX/Kj7_uzx2q.js", "ssg:https://framerusercontent.com/modules/a2Z2dNtRyIOKDah2eHbO/WZxZJghXimry7OrkfGh7/mLLDk_sM1.js", "ssg:https://framerusercontent.com/modules/mVXzvZm1iAhxb3Tq7VOl/W8qImkaSgj0zPH6CzSDV/nl1FFRjX8.js", "ssg:https://framerusercontent.com/modules/bOkvQ9ViKvHVN0frW7kx/F5Ss7iY5RIYMRbzvrlpt/S0FWhyfg9.js", "ssg:https://framerusercontent.com/modules/i0C7I0jsZNAdGbKdrhqw/6YstGAapLvCvQQ09daiq/sohND2NNd.js", "ssg:https://framerusercontent.com/modules/pCcOqdDzcM0En22Tvxkc/HjQHWYO7kTg54sLOCA3L/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={ryii0bH2n:{hover:true}};const serializationHash=\"framer-jUVE0\";const variantClassNames={ryii0bH2n:\"framer-v-1f922yn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ryii0bH2n\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1f922yn\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"ryii0bH2n\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"ryii0bH2n-hover\":{opacity:1}},...addPropertyOverrides({\"ryii0bH2n-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yq5h91\",\"data-framer-name\":\"Booking\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:165,layoutDependency:layoutDependency,layoutId:\"TXWe_BBtN\",svg:'<svg width=\"165\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M64.456 14.85a2.498 2.498 0 1 1 4.995 0 2.5 2.5 0 0 1-4.995 0ZM23.465 30.424c-2.15 0-3.645-1.707-3.645-4.15 0-2.44 1.495-4.146 3.647-4.146 2.162 0 3.673 1.706 3.673 4.146 0 2.48-1.478 4.15-3.675 4.15Zm0-11.943c-4.55 0-7.853 3.278-7.853 7.793 0 4.517 3.305 7.794 7.853 7.794 4.57 0 7.884-3.276 7.884-7.792 0-4.517-3.315-7.795-7.882-7.795h-.002Zm36.153 8.185a3.712 3.712 0 0 0-.594-.84l-.14-.145.147-.139c.208-.22.422-.482.627-.784l4.018-5.97H58.8l-3.017 4.67c-.171.251-.515.376-1.032.376h-.687v-8.829c0-1.765-1.1-2.005-2.289-2.005H49.74l.005 20.839h4.32v-6.251h.406c.492 0 .826.057.981.325l2.383 4.498c.666 1.22 1.329 1.428 2.577 1.428h3.31l-2.466-4.077-1.635-3.096h-.002Zm20.973-8.22c-2.198 0-3.6.977-4.386 1.803l-.261.265-.094-.36c-.23-.886-1.009-1.37-2.18-1.37h-1.936l.013 15.05h4.29v-6.937c0-.678.087-1.266.268-1.803.477-1.627 1.81-2.637 3.474-2.637 1.34 0 1.863.708 1.863 2.534v6.555c0 1.559.721 2.288 2.282 2.288h2.042l-.007-9.574c0-3.802-1.856-5.812-5.368-5.812v-.002Zm-13.586.342h-2.033l.014 11.638v3.413h2.169l.076.003 1.013-.003h1.005v-.005h.007l.009-12.758c0-1.54-.736-2.286-2.258-2.286l-.002-.002ZM40.317 30.424c-2.15 0-3.647-1.707-3.647-4.15 0-2.44 1.497-4.146 3.65-4.146 2.156 0 3.672 1.706 3.672 4.146 0 2.48-1.478 4.15-3.673 4.15h-.002Zm0-11.943c-4.553 0-7.858 3.278-7.858 7.793 0 4.517 3.305 7.794 7.86 7.794 4.562 0 7.884-3.276 7.884-7.792 0-4.517-3.322-7.795-7.884-7.795m54.686 11.281c-2.346 0-3.181-2.046-3.181-3.964 0-.845.213-3.599 2.956-3.599 1.362 0 3.176.39 3.176 3.74 0 3.16-1.605 3.823-2.951 3.823Zm5.179-11.014c-.814 0-1.44.326-1.754.919l-.119.23-.198-.175c-.692-.598-1.934-1.31-3.95-1.31-4.013 0-6.714 3.015-6.714 7.497 0 4.48 2.795 7.611 6.794 7.611 1.365 0 2.445-.32 3.301-.967l.33-.248v.417c0 2.01-1.299 3.12-3.655 3.12-1.147 0-2.188-.278-2.888-.532-.908-.275-1.443-.047-1.81.866l-.341.842-.482 1.232.297.158c1.51.8 3.474 1.278 5.248 1.278 3.653 0 7.921-1.87 7.921-7.133l.015-13.805h-1.995ZM7.488 30.252l-3.493-.003v-4.175c0-.894.346-1.356 1.11-1.464h2.383c1.699 0 2.798 1.071 2.8 2.805-.002 1.782-1.073 2.835-2.8 2.835v.002ZM3.995 17.89c0-.962.407-1.42 1.3-1.478h1.788c1.532 0 2.45.916 2.45 2.452 0 1.169-.63 2.534-2.395 2.534H3.995V17.89Zm7.952 5.267-.631-.355.551-.471c.642-.552 1.715-1.792 1.715-3.931 0-3.277-2.54-5.392-6.472-5.392H2.112A2.192 2.192 0 0 0 0 15.17v18.593h7.199c4.37 0 7.192-2.38 7.192-6.065 0-1.985-.911-3.68-2.444-4.543Zm91.916 8.351a2.499 2.499 0 0 1 2.493-2.506 2.506 2.506 0 0 1 0 5.009 2.5 2.5 0 0 1-2.493-2.505m28.421-1.082c-2.15 0-3.649-1.708-3.649-4.15 0-2.44 1.499-4.146 3.649-4.146 2.16 0 3.675 1.706 3.675 4.146 0 2.48-1.479 4.15-3.675 4.15Zm0-11.944c-4.554 0-7.857 3.28-7.857 7.794 0 4.517 3.303 7.794 7.857 7.794 4.564 0 7.884-3.277 7.884-7.792 0-4.517-3.322-7.796-7.884-7.796Zm27.05.016a5.912 5.912 0 0 0-4.606 2.232l-.31.393-.243-.44c-.797-1.45-2.164-2.185-4.065-2.185-1.995 0-3.333 1.113-3.953 1.774l-.407.44-.157-.579c-.226-.835-.969-1.292-2.092-1.292h-1.804l-.018 14.993h4.097v-6.618c0-.581.073-1.154.217-1.754.391-1.6 1.466-3.32 3.273-3.148 1.114.108 1.66.969 1.66 2.632v8.888h4.125v-6.618c0-.726.068-1.268.232-1.811.33-1.527 1.454-3.092 3.197-3.092 1.262 0 1.728.713 1.728 2.633v6.696c0 1.513.675 2.192 2.19 2.192h1.927l.004-9.572c0-3.825-1.684-5.764-4.995-5.764Zm-37.281 10.13c-.012.016-1.774 1.873-4.096 1.873-2.115 0-4.251-1.297-4.251-4.193 0-2.501 1.656-4.25 4.028-4.25.769 0 1.646.275 1.783.74l.019.078a1.51 1.51 0 0 0 1.461 1.108l2.244.003v-1.962c0-2.588-3.293-3.527-5.507-3.527-4.738 0-8.174 3.298-8.174 7.841 0 4.54 3.398 7.834 8.087 7.834 4.067 0 6.279-2.674 6.3-2.7l.118-.146-1.777-2.948-.235.249Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jUVE0.framer-mbg6sj, .framer-jUVE0 .framer-mbg6sj { display: block; }\",\".framer-jUVE0.framer-1f922yn { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 165px; }\",\".framer-jUVE0 .framer-yq5h91 { aspect-ratio: 3.4375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 165\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gBJaCEt7d\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerddP1ZGjCC=withCSS(Component,css,\"framer-jUVE0\");export default FramerddP1ZGjCC;FramerddP1ZGjCC.displayName=\"Booking\";FramerddP1ZGjCC.defaultProps={height:48,width:165};addFonts(FramerddP1ZGjCC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerddP1ZGjCC\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"165\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gBJaCEt7d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ddP1ZGjCC.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={uitcFbFaj:{hover:true}};const serializationHash=\"framer-rbcZr\";const variantClassNames={uitcFbFaj:\"framer-v-9oagvu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uitcFbFaj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9oagvu\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"uitcFbFaj\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"uitcFbFaj-hover\":{opacity:1}},...addPropertyOverrides({\"uitcFbFaj-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19laiva\",\"data-framer-name\":\"Notion\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:130,layoutDependency:layoutDependency,layoutId:\"du1vCggsQ\",svg:'<svg width=\"130\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M45.436 34.775V20.22h.259L56.29 34.775h3.334V13.4h-3.705v14.518h-.26L45.066 13.401h-3.334v21.374h3.705Zm24.671.33c4.89 0 7.89-3.153 7.89-8.432 0-5.243-3-8.433-7.89-8.433-4.853 0-7.89 3.19-7.89 8.433.037 5.279 3 8.432 7.89 8.432Zm0-3.08c-2.593 0-4.075-1.943-4.075-5.352 0-3.373 1.482-5.353 4.075-5.353s4.075 1.98 4.075 5.352c0 3.41-1.482 5.353-4.075 5.353ZM81.37 14.611v4.069h-2.594v2.933h2.594v8.836c0 3.153 1.481 4.4 5.26 4.4.704 0 1.408-.074 1.963-.184v-2.86c-.444.037-.74.074-1.26.074-1.555 0-2.259-.697-2.259-2.31v-7.956h3.52V18.68h-3.52v-4.07H81.37Zm9.446 20.164h3.704V18.57h-3.704v16.205Zm1.852-18.881c1.223 0 2.223-.99 2.223-2.2 0-1.247-1-2.237-2.223-2.237-1.222 0-2.223.99-2.223 2.237 0 1.21 1 2.2 2.223 2.2Zm12.002 19.21c4.89 0 7.891-3.152 7.891-8.431 0-5.243-3.001-8.433-7.891-8.433-4.852 0-7.89 3.19-7.89 8.433 0 5.279 2.964 8.432 7.89 8.432Zm0-3.079c-2.593 0-4.074-1.943-4.074-5.352 0-3.373 1.481-5.353 4.074-5.353 2.557 0 4.075 1.98 4.075 5.352-.037 3.41-1.518 5.353-4.075 5.353Zm10.076 2.75h3.705v-9.422c0-2.383 1.408-3.887 3.593-3.887 2.26 0 3.297 1.247 3.297 3.703v9.606h3.705V24.289c0-3.886-2.001-6.049-5.631-6.049-2.445 0-4.075 1.1-4.853 2.933h-.259V18.57h-3.594c.037 0 .037 16.205.037 16.205Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.212 12.033c1.078.87 1.468.8 3.487.663l19.017-1.144c.413 0 .069-.412-.069-.458l-3.165-2.266c-.597-.458-1.423-1.007-2.96-.87L4.125 9.308c-.666.07-.803.413-.528.665l2.615 2.06ZM7.36 16.45v19.96c0 1.076.528 1.465 1.743 1.396l20.899-1.213c1.216-.069 1.353-.801 1.353-1.671V15.1c0-.87-.344-1.35-1.078-1.282L8.437 15.1c-.803.068-1.078.48-1.078 1.35Zm20.623 1.076c.138.595 0 1.213-.596 1.282l-1.01.206v14.74c-.871.459-1.674.733-2.363.733-1.078 0-1.353-.343-2.156-1.35l-6.584-10.323v9.98l2.088.457s0 1.213-1.675 1.213l-4.634.275c-.137-.275 0-.938.46-1.076l1.215-.343V20.136l-1.675-.138c-.137-.595.207-1.465 1.147-1.534l4.978-.343 6.86 10.438v-9.225l-1.744-.206c-.138-.732.413-1.282 1.078-1.35l4.611-.252ZM2.588 7.478 21.742 6.08c2.34-.206 2.96-.068 4.428 1.007l6.102 4.28c1.01.733 1.353.94 1.353 1.74v23.508c0 1.465-.527 2.335-2.408 2.472l-22.23 1.35c-1.421.07-2.087-.137-2.82-1.075l-4.52-5.837C.844 32.45.5 31.649.5 30.71V9.812c0-1.213.55-2.197 2.088-2.334Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h129v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rbcZr.framer-ebvot6, .framer-rbcZr .framer-ebvot6 { display: block; }\",\".framer-rbcZr.framer-9oagvu { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 130px; }\",\".framer-rbcZr .framer-19laiva { aspect-ratio: 2.7083333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 130\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NHq11cBMP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerF5FsYrOp_=withCSS(Component,css,\"framer-rbcZr\");export default FramerF5FsYrOp_;FramerF5FsYrOp_.displayName=\"Notion\";FramerF5FsYrOp_.defaultProps={height:48,width:130};addFonts(FramerF5FsYrOp_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF5FsYrOp_\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NHq11cBMP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"130\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F5FsYrOp_.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={nxtF2lBhc:{hover:true}};const serializationHash=\"framer-lzhuk\";const variantClassNames={nxtF2lBhc:\"framer-v-4es85b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"nxtF2lBhc\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4es85b\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"nxtF2lBhc\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"nxtF2lBhc-hover\":{opacity:1}},...addPropertyOverrides({\"nxtF2lBhc-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kmjuc0\",\"data-framer-name\":\"Dribbble\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:113,layoutDependency:layoutDependency,layoutId:\"NCXjbVCuk\",svg:'<svg width=\"113\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M111.794 30.563c-4.658 7.898-12.035 5.606-14.25 3.812-.944.64-2.597 2.042-4.801 1.88-4.696-.345-6.377-7.054-6.377-7.054.034.026-1.399.494-2.173.486-.01 1.967-1.71 6.668-6.301 6.607-5.151-.067-6.198-7.74-6.198-7.74s-.513.71-2.462 1.42c.098-1.512.026 6.09-6.147 6.202-4.881.089-6.199-7.741-6.199-7.741s-.846.88-2.487 1.184c.104-1.536-.066 6.583-6.24 6.557-4.173-.017-5.599-4.823-5.488-5.49.142-.85-1.41 5.61-5.463 5.509-1.673-.05-2.92-1.26-3.702-2.875-1.048 1.199-2.568 2.875-4.274 2.875-3.063 0-4.413-2.561-4.184-9.877.02-.868-.043-1.209-.906-1.339-.518-.086-1.048-.25-1.609-.336-.18.6-1.705 11.357-6.949 11.561-1.76.069-2.721-1.456-3.511-2.587-1.211 1.602-2.81 2.638-5.087 2.638C3.128 36.255.5 33.136.5 29.289s2.628-6.965 6.486-6.965c.682 0 .874.098 1.497.28C7.2 10.937 10.227 9.113 12.875 9.113c2.541 0 6.884 5.899.774 20.862 1.356 4.463 4.28 4.21 5.686-4.977.286-1.867-.479-4.388.71-4.74 2.175-.642 2.406 1.287 3.425 1.608 1.078.34 1.707.306 2.742.523 1.768.345 2.459 1.295 2.243 3.41-.259 2.678-.711 6.574.669 7.05.995.344 2.812-1.72 3.13-2.849.32-1.129.386-1.515.414-2.344.043-1.77.098-3.067.4-4.406.129-.518.276-.861.862-.885.482-.012 1.364-.157 1.752.145.518.389.453.783.394 1.822-.602 14.803 4.03 7.413 5.41 1.496-.491-6.691-.154-16.592 4.04-16.759 2.18-.086 3.144 1.661 3.25 2.965.3 3.683-1.38 9.783-3.59 13.886-1.262 8.37 5.522 10.026 6.607 3.344-1.775-.844-3.694-4.26-2.133-5.924.876-.934 4.522.408 4.582 3.335 1.788-.479 2.027-1.488 2.052-1.321-.492-6.691-.036-16.118 4.158-16.284 2.18-.087 3.144 1.66 3.25 2.964.3 3.683-1.38 9.783-3.59 13.886-1.263 8.37 5.522 10.026 6.606 3.344-1.314-.253-4.088-3.886-2.487-5.924.855-1.09 4.488 1.175 4.894 3.432 1.718-.486 1.952-1.464 1.976-1.3-.491-6.69-.035-16.118 4.158-16.284 2.18-.086 3.144 1.66 3.25 2.965.3 3.682-1.38 9.783-3.59 13.885-1.262 8.372 5.522 10.026 6.607 3.345-1.806-.301-4.373-4.137-2.307-6.1.825-.784 3.979 1.252 4.717 3.574 1.025-.04 1.664-.393 1.8-.43C84.1 18.574 85.319 9.149 89.83 9.07c2.438-.043 4.822 1.318 3.775 8.79-.998 7.13-4.588 10.123-4.58 10.169.21.854 2.051 8.002 6.69 4.23-.24-.543-.48-1.099-.615-1.772-.769-3.92.741-8.347 4.846-9.062 2.351-.41 4.567.735 4.917 3.316.576 4.224-3.238 7.282-4.688 7.946-.65-.37 5.888 3.824 9.768-4.579.225-.48.496-.44.848-.192.248.175 1.661 1.514 1.004 2.647ZM9.792 28.252a51.17 51.17 0 0 1-.746-2.454C8.257 25.11 7.694 25 6.681 25c-2.25 0-3.575 2.08-3.575 4.325 0 2.243 1.443 4.325 3.694 4.325 1.95 0 3.435-1.326 3.888-3.204-.317-.732-.632-1.404-.896-2.194Zm3.028-16.05c-1.582 0-2.118 3.772-2.014 6.99.092 2.846.887 5.35 1.3 6.473.104.14.085.05.178.199 2.746-6.017 1.607-13.663.536-13.663Zm32.931.118c-2.044-.235-2.03 8.28-1.777 10.19 1.062-1.698 2.906-9.733 1.777-10.19Zm14.926 0c-2.044-.235-2.03 8.28-1.777 10.19 1.062-1.698 2.906-9.733 1.777-10.19Zm14.807.118c-2.044-.234-2.03 8.28-1.777 10.19 1.062-1.698 2.906-9.732 1.777-10.19Zm14.57-.617c-3.184.64-2.442 11.258-1.959 13.12 3.752-5.152 3.829-13.313 1.96-13.12Zm11.936 13.27c-.162-.678-.972-1.04-1.531-.95-1.599.218-3.15 2.21-2.55 5.241a4.94 4.94 0 0 0 .463 1.276c3.579-2.4 3.883-4.292 3.618-5.568Zm-67.433-5.07a2.31 2.31 0 1 1-.001-4.62 2.31 2.31 0 0 1 0 4.62Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h112v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lzhuk.framer-1qxtgie, .framer-lzhuk .framer-1qxtgie { display: block; }\",\".framer-lzhuk.framer-4es85b { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 113px; }\",\".framer-lzhuk .framer-kmjuc0 { aspect-ratio: 2.3541666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 113\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"q_gKty8BM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJy__ZHX01=withCSS(Component,css,\"framer-lzhuk\");export default FramerJy__ZHX01;FramerJy__ZHX01.displayName=\"Dribbble\";FramerJy__ZHX01.defaultProps={height:48,width:113};addFonts(FramerJy__ZHX01,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJy__ZHX01\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"113\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q_gKty8BM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Jy__ZHX01.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={bLHN95p03:{hover:true}};const serializationHash=\"framer-s5gyZ\";const variantClassNames={bLHN95p03:\"framer-v-idfzxn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"bLHN95p03\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-idfzxn\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"bLHN95p03\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"bLHN95p03-hover\":{opacity:1}},...addPropertyOverrides({\"bLHN95p03-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l3ak2\",\"data-framer-name\":\"Spotify\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:140,layoutDependency:layoutDependency,layoutId:\"Yg1eql4jV\",svg:'<svg width=\"140\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M21.073 3.08c-11.598 0-21 9.401-21 21 0 11.598 9.402 21 21 21 11.599 0 21-9.402 21-21s-9.401-21-21-21Zm9.63 30.287a1.308 1.308 0 0 1-1.8.434c-4.93-3.012-11.138-3.694-18.448-2.024a1.31 1.31 0 0 1-.583-2.552c8-1.828 14.862-1.041 20.398 2.342.616.378.812 1.183.433 1.8Zm2.57-5.718a1.637 1.637 0 0 1-2.251.54c-5.645-3.47-14.25-4.475-20.927-2.448a1.64 1.64 0 0 1-2.043-1.09 1.64 1.64 0 0 1 1.092-2.043c7.627-2.314 17.108-1.193 23.59 2.79a1.637 1.637 0 0 1 .54 2.252Zm.221-5.954c-6.768-4.02-17.935-4.39-24.397-2.429a1.964 1.964 0 1 1-1.14-3.759c7.418-2.252 19.75-1.816 27.542 2.81a1.962 1.962 0 0 1 .687 2.691 1.963 1.963 0 0 1-2.69.687h-.002Zm23.713.77c-3.626-.864-4.27-1.471-4.27-2.746 0-1.205 1.133-2.016 2.82-2.016 1.636 0 3.256.616 4.956 1.883a.23.23 0 0 0 .178.044.234.234 0 0 0 .158-.097l1.77-2.496a.238.238 0 0 0-.044-.323c-2.024-1.623-4.301-2.412-6.964-2.412-3.915 0-6.65 2.35-6.65 5.711 0 3.605 2.359 4.881 6.436 5.866 3.469.8 4.055 1.47 4.055 2.666 0 1.327-1.183 2.152-3.09 2.152-2.116 0-3.843-.715-5.774-2.385a.235.235 0 0 0-.336.025l-1.987 2.362a.239.239 0 0 0 .023.331c2.247 2.006 5.01 3.064 7.995 3.064 4.218 0 6.944-2.304 6.944-5.873.007-3.01-1.796-4.678-6.212-5.753l-.008-.003Zm15.764-3.576c-1.828 0-3.328.72-4.567 2.196v-1.66a.237.237 0 0 0-.235-.239H64.92a.237.237 0 0 0-.236.238v18.457c0 .13.106.238.236.238h3.248c.13 0 .235-.107.235-.238v-5.825c1.24 1.387 2.739 2.066 4.567 2.066 3.398 0 6.838-2.615 6.838-7.616.005-5-3.435-7.617-6.836-7.617h-.002Zm3.062 7.617c0 2.546-1.567 4.323-3.814 4.323-2.22 0-3.895-1.858-3.895-4.323 0-2.465 1.675-4.322 3.895-4.322 2.209 0 3.814 1.817 3.814 4.322Zm12.591-7.617c-4.376 0-7.804 3.37-7.804 7.672 0 4.256 3.406 7.589 7.751 7.589 4.391 0 7.83-3.358 7.83-7.644 0-4.27-3.416-7.616-7.777-7.616Zm0 11.966c-2.327 0-4.082-1.871-4.082-4.35 0-2.49 1.695-4.296 4.03-4.296 2.342 0 4.107 1.87 4.107 4.35 0 2.49-1.705 4.296-4.055 4.296Zm17.12-11.669h-3.573v-3.653a.237.237 0 0 0-.236-.237h-3.248a.239.239 0 0 0-.238.237v3.653h-1.56a.237.237 0 0 0-.235.238v2.79c0 .131.105.239.236.239h1.56v7.22c0 2.917 1.451 4.396 4.318 4.396 1.163 0 2.129-.24 3.039-.757.075-.04.12-.12.12-.206v-2.658a.235.235 0 0 0-.113-.2.23.23 0 0 0-.23-.01 4.102 4.102 0 0 1-1.906.459c-1.041 0-1.507-.474-1.507-1.533v-6.71h3.573a.237.237 0 0 0 .236-.238v-2.79a.23.23 0 0 0-.233-.238l-.003-.002Zm12.449.015v-.45c0-1.319.506-1.908 1.64-1.908.677 0 1.221.135 1.83.338a.234.234 0 0 0 .213-.033.235.235 0 0 0 .098-.193v-2.736a.235.235 0 0 0-.168-.228 8.893 8.893 0 0 0-2.698-.388c-2.997 0-4.584 1.689-4.584 4.882v.687h-1.56a.24.24 0 0 0-.238.238v2.805c0 .13.108.238.238.238h1.56v11.135c0 .133.108.238.238.238h3.245a.236.236 0 0 0 .238-.238V22.453h3.032l4.644 11.135c-.526 1.169-1.045 1.402-1.753 1.402-.571 0-1.176-.17-1.79-.51a.258.258 0 0 0-.188-.017.239.239 0 0 0-.141.128l-1.1 2.415a.237.237 0 0 0 .102.309c1.149.621 2.185.887 3.466.887 2.397 0 3.724-1.118 4.89-4.122l5.632-14.554a.23.23 0 0 0-.025-.221.23.23 0 0 0-.193-.104h-3.38a.238.238 0 0 0-.226.16l-3.463 9.889-3.792-9.896a.237.237 0 0 0-.22-.153h-5.547Zm-7.218-.015h-3.247a.238.238 0 0 0-.238.238v14.164c0 .133.107.238.238.238h3.247a.238.238 0 0 0 .239-.238V19.425a.238.238 0 0 0-.239-.238Zm-1.605-6.45a2.328 2.328 0 1 0-.002 4.656 2.328 2.328 0 0 0 .002-4.655Zm28.443 11.004a2.277 2.277 0 0 1-2.285-2.285 2.298 2.298 0 0 1 2.298-2.296 2.276 2.276 0 0 1 2.284 2.283 2.298 2.298 0 0 1-2.297 2.298Zm.013-4.354c-1.172 0-2.057.93-2.057 2.07 0 1.138.88 2.056 2.044 2.056 1.171 0 2.056-.93 2.056-2.07 0-1.138-.88-2.056-2.043-2.056Zm.506 2.291.647.905h-.547l-.581-.83h-.499v.83h-.457v-2.398h1.068c.56 0 .926.285.926.765.002.393-.226.633-.554.728h-.003Zm-.386-1.082h-.594v.759h.594c.296 0 .474-.145.474-.38 0-.247-.178-.379-.474-.379Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h140v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s5gyZ.framer-1c1huua, .framer-s5gyZ .framer-1c1huua { display: block; }\",\".framer-s5gyZ.framer-idfzxn { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 140px; }\",\".framer-s5gyZ .framer-1l3ak2 { aspect-ratio: 2.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 140\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BJ_XkLrzi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKj7_uzx2q=withCSS(Component,css,\"framer-s5gyZ\");export default FramerKj7_uzx2q;FramerKj7_uzx2q.displayName=\"Spotify\";FramerKj7_uzx2q.defaultProps={height:48,width:140};addFonts(FramerKj7_uzx2q,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKj7_uzx2q\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BJ_XkLrzi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"140\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kj7_uzx2q.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={aJQRA70c5:{hover:true}};const serializationHash=\"framer-JAax0\";const variantClassNames={aJQRA70c5:\"framer-v-1y3au7g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"aJQRA70c5\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1y3au7g\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"aJQRA70c5\",ref:ref??ref1,style:{opacity:.5,...style},variants:{\"aJQRA70c5-hover\":{opacity:1}},...addPropertyOverrides({\"aJQRA70c5-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1onz4i7\",\"data-framer-name\":\"Mailchimp\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:168,layoutDependency:layoutDependency,layoutId:\"BN4LMMn5f\",svg:'<svg width=\"168\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.53 30.438c-1.169.27-1.773-.09-1.773-.864 0-1.06 1.096-1.485 2.662-1.485.69 0 1.34.06 1.34.06 0 .454-.987 2.003-2.23 2.29Zm1.189-10.617c-3.741 0-6.426 1.375-6.426 1.375v4.044s2.964-1.705 5.37-1.705c1.919 0 2.155 1.036 2.068 1.895 0 0-.554-.147-2.243-.147-3.981 0-5.99 1.81-5.99 4.71 0 2.753 2.257 3.903 4.16 3.903 2.776 0 3.998-1.866 4.372-2.751.26-.614.308-1.028.541-1.028.268 0 .178.297.165.908-.023 1.07.028 1.88.198 2.561h3.681v-6.622c0-4.134-1.462-7.143-5.896-7.143Zm24.23 7.044c0-1.21 1.124-2.31 3.188-2.31 2.249 0 4.058 1.082 4.464 1.328v-4.68s-1.429-1.377-4.942-1.377c-3.702 0-6.786 2.167-6.786 6.83s2.799 7.249 6.776 7.249c3.108 0 4.96-1.707 4.96-1.707v-4.446c-.586.328-2.219 1.461-4.449 1.461-2.362 0-3.211-1.087-3.211-2.348Zm-49.205-6.732c0 .003.235 1.009-.074 2.324-.157.67-.447 1.238-.098 1.238.241 0 .242-.2.555-.917.459-1.048 1.425-2.955 3.684-2.955 2.147 0 3.158 1.304 3.493 2.526.255.928.032 1.346.343 1.346.221 0 .298-.481.57-1.09.489-1.091 1.551-2.782 3.7-2.782 3.242 0 4.48 2.341 4.48 5.854v7.914H64.58v-7.296c0-1.217-.196-2.397-1.305-2.397-1.027 0-1.506 1.821-1.506 2.997v6.7h-4.906v-7.3c0-1.556-.22-2.396-1.313-2.396-.947 0-1.5 1.675-1.5 2.996v6.697h-4.886v-13.46h3.58Zm32.475.018c.002.001.833.48 2.447.48 1.617 0 2.438-.48 2.438-.48v13.443H85.22V20.151Zm40.334 0c.002.001.834.48 2.448.48 1.617 0 2.438-.48 2.438-.48v13.443h-4.886V20.151Zm-28.982-4.093v17.536h-4.886V16.058h4.886Zm18.836 0c.001.002.203.506.203 2.005 0 2.213-.482 4.015-.709 4.701-.121.364-.336.925-.027.935.178.005.285-.263.503-.728.217-.465 1.293-3.145 4.121-3.145 3.895 0 4.468 3.19 4.468 6.644v7.124h-4.886v-7.416c0-1.521-.319-2.277-1.338-2.277-1.231 0-1.666 1.906-1.666 2.997v6.696h-4.886V16.058h4.217Zm20.263 4.075c0 .003.235 1.009-.074 2.324-.158.67-.447 1.238-.098 1.238.241 0 .242-.2.555-.917.458-1.048 1.425-2.955 3.684-2.955 2.245 0 3.135 1.31 3.493 2.526.24.814.032 1.346.343 1.346.221 0 .298-.481.57-1.09.487-1.091 1.551-2.782 3.7-2.782 3.242 0 4.48 2.341 4.48 5.854v7.914h-4.817v-7.296c0-1.217-.196-2.397-1.305-2.397-1.028 0-1.507 1.821-1.507 2.997v6.7h-4.906v-7.3c0-1.556-.218-2.396-1.313-2.396-.947 0-1.499 1.675-1.499 2.996v6.697h-4.886v-13.46h3.58Zm-48.023-4.21c-1.651 0-2.99.873-2.99 1.951s1.338 1.952 2.99 1.952c1.652 0 2.99-.874 2.99-1.952 0-1.078-1.338-1.952-2.99-1.952Zm40.335 0c-1.652 0-2.991.873-2.991 1.951s1.339 1.952 2.991 1.952c1.651 0 2.991-.874 2.991-1.952 0-1.078-1.339-1.952-2.991-1.952Zm32.664 14.771c-1.12 0-1.944-1.42-1.944-3.4 0-1.922.846-3.399 1.905-3.399 1.359 0 1.939 1.247 1.939 3.4 0 2.239-.535 3.4-1.9 3.4Zm1.34-10.876c-2.51 0-3.662 1.882-4.162 2.955-.33.708-.313.917-.555.917-.348 0-.059-.57.098-1.238.31-1.318.075-2.324.075-2.324h-3.578v17.171h4.884v-5.444c.577.98 1.648 2.028 3.298 2.028 3.533 0 5.31-2.988 5.31-7.026 0-4.576-2.127-7.04-5.369-7.04M31.892 23.881c.329-.039.643-.041.933 0 .167-.384.196-1.046.045-1.766-.223-1.071-.526-1.719-1.152-1.618-.626.101-.65.877-.425 1.948.126.602.35 1.117.6 1.436Zm-5.37.848c.447.196.723.326.83.213.07-.072.049-.207-.058-.381-.221-.361-.676-.727-1.158-.933-.986-.424-2.163-.283-3.07.369-.3.22-.584.523-.543.708.013.06.058.105.163.12.247.027 1.11-.409 2.104-.47.702-.043 1.284.177 1.732.373Zm-.899.514c-.584.092-.905.284-1.111.463-.176.154-.285.324-.285.444.001.057.026.09.045.106a.14.14 0 0 0 .096.037c.132 0 .427-.119.427-.119.811-.29 1.347-.255 1.877-.195.293.033.433.051.497-.05.018-.028.041-.09-.017-.186-.137-.221-.726-.596-1.529-.5Zm4.457 1.886c.396.194.832.118.974-.17.142-.29-.064-.681-.46-.876-.396-.194-.832-.118-.974.17-.142.29.064.681.46.876Zm2.546-2.225c-.321-.005-.588.348-.596.79-.007.44.248.802.57.808.32.005.588-.348.595-.79.008-.44-.247-.802-.569-.808Zm-21.609 7.955c-.08-.1-.212-.07-.34-.04a1.18 1.18 0 0 1-.3.042c-.236-.004-.436-.105-.549-.278-.146-.225-.138-.56.024-.944l.075-.172c.258-.58.69-1.548.205-2.47-.365-.696-.96-1.128-1.675-1.22a2.153 2.153 0 0 0-1.845.666c-.712.785-.823 1.853-.686 2.23.05.139.13.177.187.185.12.016.3-.072.412-.373l.032-.098c.05-.16.143-.457.295-.695a1.29 1.29 0 0 1 1.791-.373c.499.326.69.937.478 1.52-.11.301-.29.878-.25 1.351.08.959.67 1.343 1.2 1.385.514.019.874-.27.965-.482.054-.125.009-.2-.02-.233\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.915 15.254c1.68-1.94 3.747-3.628 5.6-4.576.064-.033.132.037.097.1-.147.266-.43.837-.52 1.27a.076.076 0 0 0 .117.079c1.152-.786 3.157-1.628 4.915-1.736a.078.078 0 0 1 .052.139 4.18 4.18 0 0 0-.773.776.075.075 0 0 0 .059.12c1.234.008 2.975.44 4.11 1.077.076.043.021.191-.065.172-1.716-.394-4.526-.692-7.445.02-2.605.635-4.594 1.617-6.045 2.672-.073.053-.162-.044-.102-.113ZM24.28 34.06v.001l.001.002-.001-.003Zm6.927.818a.134.134 0 0 0 .078-.134.126.126 0 0 0-.138-.113s-3.585.53-6.971-.71c.369-1.198 1.35-.765 2.832-.646 2.672.16 5.067-.23 6.837-.739 1.533-.44 3.548-1.308 5.112-2.543.528 1.16.714 2.435.714 2.435s.409-.073.75.137c.323.199.56.611.398 1.678-.33 1.993-1.176 3.611-2.6 5.1a10.721 10.721 0 0 1-3.123 2.334c-.64.336-1.32.626-2.04.86-5.368 1.754-10.863-.173-12.634-4.312a6.598 6.598 0 0 1-.355-.978c-.754-2.727-.114-6 1.89-8.06.123-.13.249-.286.249-.48 0-.163-.104-.335-.193-.457-.701-1.016-3.129-2.748-2.641-6.1.35-2.408 2.456-4.104 4.42-4.004l.497.029c.85.05 1.593.16 2.293.189 1.173.05 2.227-.12 3.476-1.16.42-.351.759-.656 1.33-.752.06-.01.21-.064.508-.05.305.016.595.1.856.273 1 .666 1.143 2.28 1.195 3.46.03.673.11 2.303.139 2.771.063 1.07.345 1.22.914 1.408.32.106.617.184 1.055.307 1.325.372 2.11.75 2.606 1.235.295.303.433.625.475.932.156 1.14-.885 2.548-3.641 3.827-3.013 1.399-6.669 1.753-9.194 1.471l-.885-.1c-2.02-.272-3.173 2.339-1.96 4.128.781 1.153 2.91 1.903 5.04 1.903 4.882 0 8.635-2.084 10.03-3.885l.112-.159c.07-.103.012-.16-.073-.102-1.14.78-6.207 3.88-11.626 2.947 0 0-.658-.109-1.26-.342-.477-.186-1.477-.646-1.598-1.672 4.373 1.353 7.126.074 7.126.074ZM7.188 24.485c-1.52.296-2.861 1.158-3.68 2.349-.49-.409-1.403-1.2-1.565-1.508C.635 22.84 3.371 18.01 5.283 15.28c4.725-6.742 12.125-11.846 15.55-10.92.558.158 2.402 2.296 2.402 2.296s-3.424 1.9-6.6 4.549c-4.279 3.294-7.51 8.083-9.447 13.28Zm2.556 11.403c-.23.04-.465.055-.702.049-2.289-.062-4.76-2.122-5.006-4.565-.271-2.7 1.109-4.778 3.552-5.271a4.142 4.142 0 0 1 1.025-.073c1.37.075 3.386 1.126 3.847 4.108.408 2.64-.24 5.33-2.716 5.752Zm30.998-4.782c-.02-.07-.148-.536-.323-1.099-.176-.563-.357-.958-.357-.958.704-1.054.716-1.996.622-2.53-.1-.661-.375-1.225-.93-1.808-.555-.582-1.69-1.18-3.286-1.627l-.837-.233c-.004-.034-.044-1.973-.08-2.806-.027-.602-.078-1.541-.37-2.466-.347-1.253-.952-2.349-1.708-3.05 2.085-2.16 3.387-4.542 3.383-6.584-.006-3.927-4.83-5.116-10.774-2.654l-1.26.534a1427.31 1427.31 0 0 0-2.31-2.264C15.734-2.35-5.455 21.203 1.319 26.924l1.48 1.254c-.384.995-.535 2.135-.411 3.36.158 1.575.97 3.084 2.286 4.25 1.25 1.107 2.893 1.808 4.487 1.807 2.636 6.075 8.66 9.802 15.723 10.012 7.577.225 13.937-3.33 16.602-9.716.174-.448.914-2.467.914-4.25 0-1.792-1.013-2.535-1.658-2.535Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JAax0.framer-1t0p0aj, .framer-JAax0 .framer-1t0p0aj { display: block; }\",\".framer-JAax0.framer-1y3au7g { cursor: pointer; height: 48px; overflow: hidden; position: relative; width: 168px; }\",\".framer-JAax0 .framer-1onz4i7 { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rdSWLqazt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermLLDk_sM1=withCSS(Component,css,\"framer-JAax0\");export default FramermLLDk_sM1;FramermLLDk_sM1.displayName=\"Mailchimp\";FramermLLDk_sM1.defaultProps={height:48,width:168};addFonts(FramermLLDk_sM1,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermLLDk_sM1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"168\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rdSWLqazt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mLLDk_sM1.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/t5ywJdZTFBhMMDeObSTv/57cOOgvucjtRSkeiHoAH/oMzAN8GuQ.js\";const serializationHash=\"framer-TWGHb\";const variantClassNames={Qkkvno9Bv:\"framer-v-l4qdpt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,text,width,...props})=>{return{...props,DQPLNF5gS:text??props.DQPLNF5gS??\"One-time investment, with no ongoing payments\"};};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,DQPLNF5gS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Qkkvno9Bv\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-l4qdpt\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Qkkvno9Bv\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12oj6t3\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"mBufin7Pd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xp5cz5\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"a4AhAi6zT\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"m382-354 339-339q12-12 28-12t28 12q12 12 12 28.5T777-636L410-268q-12 12-28 12t-28-12L182-440q-12-12-11.5-28.5T183-497q12-12 28.5-12t28.5 12l142 143Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:\"One-time investment, with no ongoing payments\"})}),className:\"framer-16rd9x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wJdHuYrBn\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DQPLNF5gS,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TWGHb.framer-y36ruw, .framer-TWGHb .framer-y36ruw { display: block; }\",\".framer-TWGHb.framer-l4qdpt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-TWGHb .framer-12oj6t3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-TWGHb .framer-1xp5cz5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-TWGHb .framer-16rd9x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TWGHb.framer-l4qdpt, .framer-TWGHb .framer-12oj6t3 { gap: 0px; } .framer-TWGHb.framer-l4qdpt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-TWGHb.framer-l4qdpt > :first-child, .framer-TWGHb .framer-12oj6t3 > :first-child { margin-left: 0px; } .framer-TWGHb.framer-l4qdpt > :last-child, .framer-TWGHb .framer-12oj6t3 > :last-child { margin-right: 0px; } .framer-TWGHb .framer-12oj6t3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DQPLNF5gS\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framernl1FFRjX8=withCSS(Component,css,\"framer-TWGHb\");export default Framernl1FFRjX8;Framernl1FFRjX8.displayName=\"Feature\";Framernl1FFRjX8.defaultProps={height:24,width:400};addPropertyControls(Framernl1FFRjX8,{DQPLNF5gS:{defaultValue:\"One-time investment, with no ongoing payments\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(Framernl1FFRjX8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernl1FFRjX8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"DQPLNF5gS\\\":\\\"text\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nl1FFRjX8.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wkblqhHq2Yf5AsWip1uy/FSQRM7chel6W3aXfVAf3/KtyUEnTXi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/t5ywJdZTFBhMMDeObSTv/57cOOgvucjtRSkeiHoAH/oMzAN8GuQ.js\";const enabledGestures={uz572CxfG:{hover:true}};const serializationHash=\"framer-0UiSv\";const variantClassNames={uz572CxfG:\"framer-v-1xsndry\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({function1,height,id,link,name1,photo,testimonialText,width,...props})=>{return{...props,jbEdan8Mc:link??props.jbEdan8Mc,jhbzeUGWy:testimonialText??props.jhbzeUGWy??'\"John is a true professional in every sense of the word. He brought a fresh perspective to our web design project, and the results were outstanding.\"',r0tUIN2cH:photo??props.r0tUIN2cH,sbXn9nBiI:name1??props.sbXn9nBiI??\"Ralph Edwards\",zNTrZkuSB:function1??props.zNTrZkuSB??\"Owner\"};};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,jhbzeUGWy,sbXn9nBiI,zNTrZkuSB,r0tUIN2cH,jbEdan8Mc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uz572CxfG\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:jbEdan8Mc,nodeId:\"uz572CxfG\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1xsndry\",className,classNames)} framer-1xd5e9w`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"uz572CxfG\",ref:ref??ref1,style:{backgroundColor:\"var(--token-0f07f556-9e14-491d-9aef-f342061eaaa0, rgb(20, 20, 20))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"uz572CxfG-hover\":{backgroundColor:\"var(--token-46103156-4e43-4976-89f4-cd011844ca33, rgb(28, 28, 28))\"}},...addPropertyOverrides({\"uz572CxfG-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jnyaa4\",\"data-framer-name\":\"Stars\",layoutDependency:layoutDependency,layoutId:\"Wad7VDEGx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l5hzy2\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IGgmxPGJT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15rsroc\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wIkeNaDAP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bgb85w\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NeBmGsO92\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c5kooo\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gXC_Uw29D\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vkwa2p\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WYpft3oJ7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 14.063 L 6.583 16.104 C 6.431 16.188 6.281 16.222 6.135 16.208 C 5.99 16.194 5.861 16.146 5.75 16.063 C 5.639 15.979 5.556 15.865 5.5 15.719 C 5.444 15.573 5.438 15.424 5.479 15.271 L 6.375 11.458 L 3.354 8.896 C 3.229 8.785 3.153 8.656 3.125 8.51 C 3.097 8.365 3.104 8.222 3.146 8.083 C 3.188 7.944 3.264 7.83 3.375 7.74 C 3.486 7.649 3.625 7.597 3.792 7.583 L 7.75 7.229 L 9.313 3.604 C 9.382 3.451 9.479 3.337 9.604 3.26 C 9.729 3.184 9.861 3.146 10 3.146 C 10.139 3.146 10.271 3.184 10.396 3.26 C 10.521 3.337 10.618 3.451 10.688 3.604 L 12.25 7.25 L 16.208 7.583 C 16.375 7.597 16.514 7.653 16.625 7.75 C 16.736 7.847 16.813 7.965 16.854 8.104 C 16.896 8.243 16.899 8.382 16.865 8.521 C 16.83 8.66 16.75 8.785 16.625 8.896 L 13.625 11.458 L 14.521 15.271 C 14.563 15.424 14.556 15.573 14.5 15.719 C 14.444 15.865 14.361 15.979 14.25 16.063 C 14.139 16.146 14.01 16.194 13.865 16.208 C 13.719 16.222 13.569 16.188 13.417 16.104 Z\" fill=\"var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(59, 130, 246))\"></path></svg>',svgContentId:10842428683,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:'\"John is a true professional in every sense of the word. He brought a fresh perspective to our web design project, and the results were outstanding.\"'})}),className:\"framer-1ymkj9i\",\"data-framer-name\":\"Testimonial\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FapXK_5kr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jhbzeUGWy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j54opt\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"MzglbmHQk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+172+96),sizes:\"48px\",...toResponsiveImage(r0tUIN2cH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1oy30gm\",layoutDependency:layoutDependency,layoutId:\"OiIGMso2_\",style:{borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gs69g3\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"H9vSLNiFp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255)))\"},children:\"Ralph Edwards\"})}),className:\"framer-1vtd1ol\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kIiE0EA5g\",style:{\"--extracted-r6o4lv\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sbXn9nBiI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:\"Owner\"})}),className:\"framer-1re3anh\",\"data-framer-name\":\"Function\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LqpoBIRgl\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:zNTrZkuSB,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0UiSv.framer-1xd5e9w, .framer-0UiSv .framer-1xd5e9w { display: block; }\",\".framer-0UiSv.framer-1xsndry { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0UiSv .framer-jnyaa4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0UiSv .framer-1l5hzy2, .framer-0UiSv .framer-15rsroc, .framer-0UiSv .framer-bgb85w, .framer-0UiSv .framer-1c5kooo, .framer-0UiSv .framer-vkwa2p { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-0UiSv .framer-1ymkj9i, .framer-0UiSv .framer-1vtd1ol, .framer-0UiSv .framer-1re3anh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0UiSv .framer-j54opt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0UiSv .framer-1oy30gm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-0UiSv .framer-gs69g3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0UiSv.framer-1xsndry, .framer-0UiSv .framer-jnyaa4, .framer-0UiSv .framer-j54opt, .framer-0UiSv .framer-gs69g3 { gap: 0px; } .framer-0UiSv.framer-1xsndry > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-0UiSv.framer-1xsndry > :first-child, .framer-0UiSv .framer-gs69g3 > :first-child { margin-top: 0px; } .framer-0UiSv.framer-1xsndry > :last-child, .framer-0UiSv .framer-gs69g3 > :last-child { margin-bottom: 0px; } .framer-0UiSv .framer-jnyaa4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0UiSv .framer-jnyaa4 > :first-child, .framer-0UiSv .framer-j54opt > :first-child { margin-left: 0px; } .framer-0UiSv .framer-jnyaa4 > :last-child, .framer-0UiSv .framer-j54opt > :last-child { margin-right: 0px; } .framer-0UiSv .framer-j54opt > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-0UiSv .framer-gs69g3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 276\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OYSEEcbOC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jhbzeUGWy\":\"testimonialText\",\"sbXn9nBiI\":\"name1\",\"zNTrZkuSB\":\"function1\",\"r0tUIN2cH\":\"photo\",\"jbEdan8Mc\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerS0FWhyfg9=withCSS(Component,css,\"framer-0UiSv\");export default FramerS0FWhyfg9;FramerS0FWhyfg9.displayName=\"Testimonial\";FramerS0FWhyfg9.defaultProps={height:276,width:400};addPropertyControls(FramerS0FWhyfg9,{jhbzeUGWy:{defaultValue:'\"John is a true professional in every sense of the word. He brought a fresh perspective to our web design project, and the results were outstanding.\"',displayTextArea:false,title:\"Testimonial text\",type:ControlType.String},sbXn9nBiI:{defaultValue:\"Ralph Edwards\",displayTextArea:false,title:\"Name\",type:ControlType.String},zNTrZkuSB:{defaultValue:\"Owner\",displayTextArea:false,title:\"Function\",type:ControlType.String},r0tUIN2cH:{title:\"Photo\",type:ControlType.ResponsiveImage},jbEdan8Mc:{title:\"Link\",type:ControlType.Link}});addFonts(FramerS0FWhyfg9,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerS0FWhyfg9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"276\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OYSEEcbOC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"jhbzeUGWy\\\":\\\"testimonialText\\\",\\\"sbXn9nBiI\\\":\\\"name1\\\",\\\"zNTrZkuSB\\\":\\\"function1\\\",\\\"r0tUIN2cH\\\":\\\"photo\\\",\\\"jbEdan8Mc\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./S0FWhyfg9.map", "// Generated by Framer (3bc9980)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-500\",\"GF;Geist-500\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"}]}];export const css=['.framer-d9CNP .framer-styles-preset-1xmfg8u:not(.rich-text-wrapper), .framer-d9CNP .framer-styles-preset-1xmfg8u.rich-text-wrapper p { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 500; --framer-letter-spacing: 0em; --framer-line-height: 28px; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-6a4aeca2-2020-4447-a3b8-da9cf8c08379, #858588); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-d9CNP\";\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\"}}}", "// Generated by Framer (f4ba5e0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import ProductItem from\"#framer/local/canvasComponent/bXxL_ulUc/bXxL_ulUc.js\";import Booking from\"#framer/local/canvasComponent/ddP1ZGjCC/ddP1ZGjCC.js\";import Notion from\"#framer/local/canvasComponent/F5FsYrOp_/F5FsYrOp_.js\";import FAQItem from\"#framer/local/canvasComponent/gzC090QB_/gzC090QB_.js\";import Dribbble from\"#framer/local/canvasComponent/Jy__ZHX01/Jy__ZHX01.js\";import Button from\"#framer/local/canvasComponent/kIge2YdBH/kIge2YdBH.js\";import Spotify from\"#framer/local/canvasComponent/Kj7_uzx2q/Kj7_uzx2q.js\";import Mailchimp from\"#framer/local/canvasComponent/mLLDk_sM1/mLLDk_sM1.js\";import WorkItem from\"#framer/local/canvasComponent/n_KCRw5fi/n_KCRw5fi.js\";import Feature from\"#framer/local/canvasComponent/nl1FFRjX8/nl1FFRjX8.js\";import BlogItem from\"#framer/local/canvasComponent/pXrxHY97w/pXrxHY97w.js\";import Testimonial from\"#framer/local/canvasComponent/S0FWhyfg9/S0FWhyfg9.js\";import Work from\"#framer/local/collection/eDHm1sab3/eDHm1sab3.js\";import Shop from\"#framer/local/collection/mlonwwwCp/mlonwwwCp.js\";import Blog from\"#framer/local/collection/UYgssMU2c/UYgssMU2c.js\";import*as sharedStyle2 from\"#framer/local/css/CFvrzJmr4/CFvrzJmr4.js\";import*as sharedStyle8 from\"#framer/local/css/EbwL93Yud/EbwL93Yud.js\";import*as sharedStyle from\"#framer/local/css/jm6KlDoPH/jm6KlDoPH.js\";import*as sharedStyle3 from\"#framer/local/css/KtyUEnTXi/KtyUEnTXi.js\";import*as sharedStyle6 from\"#framer/local/css/oMzAN8GuQ/oMzAN8GuQ.js\";import*as sharedStyle5 from\"#framer/local/css/pNktkXffu/pNktkXffu.js\";import*as sharedStyle7 from\"#framer/local/css/sohND2NNd/sohND2NNd.js\";import*as sharedStyle1 from\"#framer/local/css/VnCRagK4k/VnCRagK4k.js\";import*as sharedStyle4 from\"#framer/local/css/XfEDhSkY7/XfEDhSkY7.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const ProductItemFonts=getFonts(ProductItem);const MotionDivWithFX=withFX(motion.div);const WorkItemFonts=getFonts(WorkItem);const BookingFonts=getFonts(Booking);const SpotifyFonts=getFonts(Spotify);const NotionFonts=getFonts(Notion);const MailchimpFonts=getFonts(Mailchimp);const DribbbleFonts=getFonts(Dribbble);const TickerFonts=getFonts(Ticker);const BlogItemFonts=getFonts(BlogItem);const TestimonialFonts=getFonts(Testimonial);const FeatureFonts=getFonts(Feature);const FAQItemFonts=getFonts(FAQItem);const ImageWithFX=withFX(Image);const breakpoints={G3ZrQu2Nb:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\",xawIChTct:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BVRXZ\";const variantClassNames={G3ZrQu2Nb:\"framer-v-1tfzniy\",WQLkyLRf1:\"framer-v-72rtr7\",xawIChTct:\"framer-v-iwkrjh\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={bounce:0,delay:.05,duration:1.2,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const textEffect1={effect:animation,startDelay:.2,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:10};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition4={delay:.05,duration:.85,ease:[.44,0,.56,1],type:\"tween\"};const textEffect2={effect:animation,threshold:.5,tokenization:\"word\",transition:transition4,trigger:\"onInView\",type:\"appear\"};const transition5={delay:0,duration:10,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:110,y:270};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"G3ZrQu2Nb\",Tablet:\"xawIChTct\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,s9B_hbmyCDx8pLQxS6,y62fq8pIpDx8pLQxS6,TbvNyHeAYDx8pLQxS6,tKSWt1rfBDx8pLQxS6,Wlio9sg6mDx8pLQxS6,idDx8pLQxS6,Vw8sETrE7bplvpDPwX,YWhGaTO19bplvpDPwX,ZjwaZoOB8bplvpDPwX,PTI3Fw1rgbplvpDPwX,idbplvpDPwX,SsFcRNaX1JunkpIXKz,VAF3x_YTkJunkpIXKz,qTQhUgahpJunkpIXKz,ZXlUncUWpJunkpIXKz,idJunkpIXKz,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const activeLocaleCode=useLocaleCode();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"G3ZrQu2Nb\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-m4k8qw\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15vdu7p\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rhhnn8\",\"data-framer-name\":\"Titles\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-twza63\",\"data-styles-preset\":\"jm6KlDoPH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-6a4aeca2-2020-4447-a3b8-da9cf8c08379, rgb(133, 133, 136))\"},children:\"I'm Alex.\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Designer and creator.\"]})}),className:\"framer-1l4yl75\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cqsz5f\",\"data-styles-preset\":\"VnCRagK4k\",style:{\"--framer-text-alignment\":\"center\"},children:\"With a minimalistic touch.\"})}),className:\"framer-j1ypg7\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dkpdj2\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+0+160+0+0+283.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+240+0+0+283.2+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nlmvol-container\",nodeId:\"FzYZQnTNe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{avSMDE5Ve:\"https://shop.marckuiper.com/buy/c690a374-e4ec-4923-bc0f-18a141efb66e\",height:\"100%\",hwfLEpAJz:\"Get template\",id:\"FzYZQnTNe\",kkkcdH9pG:false,layoutId:\"FzYZQnTNe\",variant:\"EK09oMfl9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GxSZFGgWF\"},implicitPathVariables:undefined},{href:{webPageId:\"GxSZFGgWF\"},implicitPathVariables:undefined},{href:{webPageId:\"GxSZFGgWF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+0+160+0+0+283.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+240+0+0+283.2+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1is791x-container\",nodeId:\"FKtxQxygO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{avSMDE5Ve:resolvedLinks[2]},xawIChTct:{avSMDE5Ve:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{avSMDE5Ve:resolvedLinks[0],height:\"100%\",hwfLEpAJz:\"About me\",id:\"FKtxQxygO\",kkkcdH9pG:false,layoutId:\"FKtxQxygO\",variant:\"JF8EO8uFy\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ba4wyt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nVMwv66GF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nVMwv66GF\",isMixedBorderRadius:false,layoutId:\"nVMwv66GF\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/vNKSfSULyrsWX22Qqoyavgpv7M0.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/ygGmrm1ampGTfvacV0UuQKh7PM.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-4slwv7\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c8e8vx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tn5m7t\",\"data-framer-name\":\"Products\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yuid5k\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"Digital goods\"})}),className:\"framer-11hylqy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s5krou\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B1k3hwCyl\"},motionChild:true,nodeId:\"NUqt2vo9J\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-13fjzrd\",\"data-styles-preset\":\"XfEDhSkY7\",children:\"See all\"})})})}),className:\"framer-175d4cq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nxtky\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Dx8pLQxS6\",data:Shop,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"Dx8pLQxS6\",name:\"s9B_hbmyC\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"y62fq8pIp\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"TbvNyHeAY\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"tKSWt1rfB\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"Wlio9sg6m\",type:\"Identifier\"},{collection:\"Dx8pLQxS6\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idDx8pLQxS6,s9B_hbmyC:s9B_hbmyCDx8pLQxS6,TbvNyHeAY:TbvNyHeAYDx8pLQxS6,tKSWt1rfB:tKSWt1rfBDx8pLQxS6,Wlio9sg6m:Wlio9sg6mDx8pLQxS6,y62fq8pIp:y62fq8pIpDx8pLQxS6},index)=>{s9B_hbmyCDx8pLQxS6??=\"\";TbvNyHeAYDx8pLQxS6??=\"\";tKSWt1rfBDx8pLQxS6??=\"\";Wlio9sg6mDx8pLQxS6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Dx8pLQxS6-${idDx8pLQxS6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{s9B_hbmyC:s9B_hbmyCDx8pLQxS6},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{s9B_hbmyC:s9B_hbmyCDx8pLQxS6},webPageId:\"m0RFsLyTv\"},implicitPathVariables:undefined},{href:{pathVariables:{s9B_hbmyC:s9B_hbmyCDx8pLQxS6},webPageId:\"m0RFsLyTv\"},implicitPathVariables:undefined},{href:{pathVariables:{s9B_hbmyC:s9B_hbmyCDx8pLQxS6},webPageId:\"m0RFsLyTv\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+0+0+62.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+0+0+78.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1edl2w5-container\",nodeId:\"n4KHHB6Oa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{CaMryZpcW:resolvedLinks1[2],variant:\"k8XgmrePN\"},xawIChTct:{CaMryZpcW:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ProductItem,{CaMryZpcW:resolvedLinks1[0],FORxya4fk:TbvNyHeAYDx8pLQxS6,height:\"100%\",id:\"n4KHHB6Oa\",KfrUxc7eV:toResponsiveImage(y62fq8pIpDx8pLQxS6),layoutId:\"n4KHHB6Oa\",mjjU_ruhN:Wlio9sg6mDx8pLQxS6,pKv4MZCPK:tKSWt1rfBDx8pLQxS6,style:{width:\"100%\"},variant:\"mNyyTQpQt\",width:\"100%\"})})})})})})})},idDx8pLQxS6);})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7005s6\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8a6ef4\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"What I do\"})}),className:\"framer-1gjn23l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pvwojd\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tb0ldm\",\"data-framer-name\":\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t8trbj\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgjgo0\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3v3sz3\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ndchdm\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2bl6ow\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"M400-200v-80H160q-33 0-56.5-23.5T80-360v-400q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v400q0 33-23.5 56.5T800-280H560v80h40q17 0 28.5 11.5T640-160q0 17-11.5 28.5T600-120H360q-17 0-28.5-11.5T320-160q0-17 11.5-28.5T360-200h40Z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eqg73c\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Complete websites\"})}),className:\"framer-1rl8djm\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Strategic, beautiful websites that achieve your business goals.\"})}),className:\"framer-gh5vtp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ku4nxt\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mjp8ow\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wl3idi\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-w4t224\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"M480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 32.5-156t88-127Q256-817 330-848.5T488-880q80 0 151 27.5t124.5 76q53.5 48.5 85 115T880-518q0 115-70 176.5T640-280h-74q-9 0-12.5 5t-3.5 11q0 12 15 34.5t15 51.5q0 50-27.5 74T480-80ZM260-440q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm120-160q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm200 0q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm120 160q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4wzsg\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Design systems\"})}),className:\"framer-13lsoyr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Building scalable design foundations that keep your product consistent and efficient.\"})}),className:\"framer-9xi0by\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rsp6ce\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qnz33\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qmp0xq\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qj0d22\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s90hwe\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"M186-80q-54 0-80-22t-26-66q0-58 49-74t116-16h21v-56q0-34-1-55.5t-6-35.5q-5-14-11.5-19.5T230-430q-9 0-16.5 3t-12.5 8q-4 5-5 10.5t1 11.5q6 11 14 21.5t8 24.5q0 25-17.5 42.5T159-291q-25 0-42.5-17.5T99-351q0-27 12-44t32.5-27q20.5-10 47.5-14t58-4q85 0 118 30.5T400-302v147q0 19 4.5 28t15.5 9q12 0 19.5-18t9.5-56h11q-3 62-23.5 87T368-80q-43 0-67.5-13.5T269-134q-10 29-29.5 41.5T186-80Zm373 0q-20 0-32.5-16.5T522-132l102-269q7-17 22-28t34-11q19 0 34 11t22 28l102 269q8 19-4.5 35.5T801-80q-12 0-22-7t-15-19l-20-58H616l-20 58q-4 11-14 18.5T559-80Zm-324-29q13 0 22-20.5t9-49.5v-67q-26 0-38 15.5T216-180v11q0 36 4 48t15 12Zm407-125h77l-39-114-38 114Zm-37-285q-48 0-76.5-33.5T500-643q0-104 66-170.5T735-880q42 0 68 9.5t26 24.5q0 6-2 12t-7 11q-5 7-12.5 10t-15.5 1q-14-4-32-7t-33-3q-71 0-114 48t-43 127q0 22 8 46t36 24q11 0 21.5-5t18.5-14q17-18 31.5-60T712-758q2-13 10.5-18.5T746-782q18 0 27.5 9.5T779-749q-12 43-17.5 75t-5.5 58q0 20 5.5 29t16.5 9q11 0 21.5-8t29.5-30q2-3 15-7 8 0 12 6t4 17q0 28-32 54t-67 26q-26 0-44.5-14T691-574q-15 26-37 40.5T605-519Zm-485-1v-220q0-58 41-99t99-41q58 0 99 41t41 99v220h-80v-80H200v80h-80Zm80-160h120v-60q0-25-17.5-42.5T260-800q-25 0-42.5 17.5T200-740v60Z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x5egoi\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Branding\"})}),className:\"framer-ir6lxy\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Creating distinctive visual identities that make your brand memorable.\"})}),className:\"framer-1n524bi\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nvm0wg\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sjgswb\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lds7ge\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-182f0ev\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"m352-522 86-87-56-57-16 16q-11 11-27.5 11.5T310-650q-12-12-12-28.5t12-28.5l15-15-45-45-87 87 159 158Zm328 329 87-87-45-45-16 15q-12 12-28 12t-28-12q-12-12-12-28t12-28l15-16-57-56-86 86 158 159Zm-31-510 56 56 56-56-57-57-55 57ZM160-120q-17 0-28.5-11.5T120-160v-113q0-8 3-15.5t9-13.5l163-163-173-173q-17-17-17-42t17-42l116-116q17-17 42-16.5t42 17.5l174 173 151-152q12-12 27-18t31-6q16 0 31 6t27 18l53 54q12 12 18 27t6 31q0 16-6 30.5T816-647L665-495l173 173q17 17 17 42t-17 42L722-122q-17 17-42 17t-42-17L465-295 302-132q-6 6-13.5 9t-15.5 3H160Z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sj89e9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-alignment\":\"center\"},children:\"Product Design\"})}),className:\"framer-1t5xyfz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Turning complex ideas into intuitive digital products people love.\"})}),className:\"framer-1t7q57r\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-168lux9\",\"data-framer-name\":\"Work\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3nd9q\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"Latest work\"})}),className:\"framer-rpvdbv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k9jp86\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"haGUcgN3o\"},motionChild:true,nodeId:\"i9mSOAfxB\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-13fjzrd\",\"data-styles-preset\":\"XfEDhSkY7\",children:\"See all\"})})})}),className:\"framer-1680q7y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16jadjd\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bplvpDPwX\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"bplvpDPwX\",name:\"Vw8sETrE7\",type:\"Identifier\"},{collection:\"bplvpDPwX\",name:\"YWhGaTO19\",type:\"Identifier\"},{collection:\"bplvpDPwX\",name:\"ZjwaZoOB8\",type:\"Identifier\"},{collection:\"bplvpDPwX\",name:\"PTI3Fw1rg\",type:\"Identifier\"},{collection:\"bplvpDPwX\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idbplvpDPwX,PTI3Fw1rg:PTI3Fw1rgbplvpDPwX,Vw8sETrE7:Vw8sETrE7bplvpDPwX,YWhGaTO19:YWhGaTO19bplvpDPwX,ZjwaZoOB8:ZjwaZoOB8bplvpDPwX},index1)=>{Vw8sETrE7bplvpDPwX??=\"\";ZjwaZoOB8bplvpDPwX??=\"\";PTI3Fw1rgbplvpDPwX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bplvpDPwX-${idbplvpDPwX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Vw8sETrE7:Vw8sETrE7bplvpDPwX},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Vw8sETrE7:Vw8sETrE7bplvpDPwX},webPageId:\"CYIyW4BZg\"},implicitPathVariables:undefined},{href:{pathVariables:{Vw8sETrE7:Vw8sETrE7bplvpDPwX},webPageId:\"CYIyW4BZg\"},implicitPathVariables:undefined},{href:{pathVariables:{Vw8sETrE7:Vw8sETrE7bplvpDPwX},webPageId:\"CYIyW4BZg\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+2432.8+0+62.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:378,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px), 50px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+1872.8+0+78.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yxgj-container\",nodeId:\"fQp_C_eYa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{BuewtrqjG:resolvedLinks2[2],variant:\"gNlheUFUM\"},xawIChTct:{BuewtrqjG:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(WorkItem,{BuewtrqjG:resolvedLinks2[0],height:\"100%\",id:\"fQp_C_eYa\",j52Hn3ptk:toResponsiveImage(YWhGaTO19bplvpDPwX),layoutId:\"fQp_C_eYa\",style:{width:\"100%\"},TvytUzwax:ZjwaZoOB8bplvpDPwX,U3sztV1s0:PTI3Fw1rgbplvpDPwX,variant:\"XfFq3FYFZ\",width:\"100%\"})})})})})})})},idbplvpDPwX);})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uhe6fj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"w0ywd07y_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"w0ywd07y_\",layoutId:\"w0ywd07y_\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"165px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-a8dryg-container\",inComponentSlot:true,nodeId:\"lSTx49yUe\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Booking,{height:\"100%\",id:\"lSTx49yUe\",layoutId:\"lSTx49yUe\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"140px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xykld-container\",inComponentSlot:true,nodeId:\"TU8VFRYcV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"TU8VFRYcV\",layoutId:\"TU8VFRYcV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"130px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rij9co-container\",inComponentSlot:true,nodeId:\"uvJ2mOiDV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Notion,{height:\"100%\",id:\"uvJ2mOiDV\",layoutId:\"uvJ2mOiDV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"168px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-iaf7j-container\",inComponentSlot:true,nodeId:\"EiDBDG5_4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Mailchimp,{height:\"100%\",id:\"EiDBDG5_4\",layoutId:\"EiDBDG5_4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"113px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ozmejo-container\",inComponentSlot:true,nodeId:\"b1MoxlXLT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Dribbble,{height:\"100%\",id:\"b1MoxlXLT\",layoutId:\"b1MoxlXLT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-h29b56\",\"data-framer-name\":\"Journal\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zi3fax\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"From the blog\"})}),className:\"framer-1ki6ddm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j96ha7\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cU2JyY13P\"},motionChild:true,nodeId:\"a8KUCCK7h\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-13fjzrd\",\"data-styles-preset\":\"XfEDhSkY7\",children:\"See all\"})})})}),className:\"framer-tjer9u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-1s9vtir\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JunkpIXKz\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},select:[{collection:\"JunkpIXKz\",name:\"SsFcRNaX1\",type:\"Identifier\"},{collection:\"JunkpIXKz\",name:\"VAF3x_YTk\",type:\"Identifier\"},{collection:\"JunkpIXKz\",name:\"qTQhUgahp\",type:\"Identifier\"},{collection:\"JunkpIXKz\",name:\"ZXlUncUWp\",type:\"Identifier\"},{collection:\"JunkpIXKz\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idJunkpIXKz,qTQhUgahp:qTQhUgahpJunkpIXKz,SsFcRNaX1:SsFcRNaX1JunkpIXKz,VAF3x_YTk:VAF3x_YTkJunkpIXKz,ZXlUncUWp:ZXlUncUWpJunkpIXKz},index2)=>{SsFcRNaX1JunkpIXKz??=\"\";VAF3x_YTkJunkpIXKz??=\"\";ZXlUncUWpJunkpIXKz??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JunkpIXKz-${idJunkpIXKz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SsFcRNaX1:SsFcRNaX1JunkpIXKz},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{SsFcRNaX1:SsFcRNaX1JunkpIXKz},webPageId:\"mAaXf5BPx\"},implicitPathVariables:undefined},{href:{pathVariables:{SsFcRNaX1:SsFcRNaX1JunkpIXKz},webPageId:\"mAaXf5BPx\"},implicitPathVariables:undefined},{href:{pathVariables:{SsFcRNaX1:SsFcRNaX1JunkpIXKz},webPageId:\"mAaXf5BPx\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+3483.2+0+46.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+3019.2+0+62.4+0+0,children:/*#__PURE__*/_jsx(Container,{as:\"li\",className:\"framer-19eo0cd-container\",nodeId:\"q_MMy0Pfj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{myEBywSoM:resolvedLinks3[2],variant:\"EDhl2Yyxx\"},xawIChTct:{myEBywSoM:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(BlogItem,{height:\"100%\",id:\"q_MMy0Pfj\",layoutId:\"q_MMy0Pfj\",mBuj3vPvX:toDateString(qTQhUgahpJunkpIXKz,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),myEBywSoM:resolvedLinks3[0],style:{width:\"100%\"},TLqUSDTdG:VAF3x_YTkJunkpIXKz,variant:\"bevVQZcln\",width:\"100%\",Y_hmjNl2a:ZXlUncUWpJunkpIXKz})})})})})})})},idJunkpIXKz);})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-470q6r\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7d6sjt\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"What others say\"})}),className:\"framer-1tdnitx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b8zp7\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ch21qj\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jp8bbt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"m2XkPLpqD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"m2XkPLpqD\",layoutId:\"m2XkPLpqD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tsg5cc-container\",inComponentSlot:true,nodeId:\"hhDevm3m8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"hhDevm3m8\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CAlex\u2019s work exceeded all expectations. They brought fresh ideas to the table, and the final designs were nothing short of exceptional.\u201D\",layoutId:\"hhDevm3m8\",r0tUIN2cH:addImageAlt({src:\"https://framerusercontent.com/images/V0VjlWbaMqKLaAfzXo1ZVzabGEA.png\"},\"\"),sbXn9nBiI:\"Jordan P.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Startup Founder\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-axrzvc-container\",inComponentSlot:true,nodeId:\"k9tdsEVA1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"k9tdsEVA1\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CAlex made the design process smooth and exciting. Their unique approach and dedication resulted in a polished and cohesive brand aesthetic.\u201D\",layoutId:\"k9tdsEVA1\",r0tUIN2cH:addImageAlt({src:\"https://framerusercontent.com/images/V0JIqgy7BSEhYZO2u8bprhOvSVQ.png\"},\"\"),sbXn9nBiI:\"Nina S.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Marketing Manager\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fknx3o-container\",inComponentSlot:true,nodeId:\"Uw_xGMy2u\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"Uw_xGMy2u\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CAlex transformed our vision into a stunning reality. Their creativity and attention to detail brought our brand to life in ways we couldn\u2019t have imagined!\u201D\",layoutId:\"Uw_xGMy2u\",r0tUIN2cH:addImageAlt({src:\"https://framerusercontent.com/images/vgfPvUD5iG4gikiyrOOcUTCYNo.png\"},\"\"),sbXn9nBiI:\"Juno C.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Small Business Owner\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g1ctsm-container hidden-1tfzniy\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fiqL_nLJw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"fiqL_nLJw\",layoutId:\"fiqL_nLJw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yzdcw0-container\",inComponentSlot:true,nodeId:\"BzjyF30sk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"BzjyF30sk\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CAlex is a true creative talent. From concept to completion, they delivered a portfolio that truly reflects my style and personality.\u201D\",layoutId:\"BzjyF30sk\",r0tUIN2cH:addImageAlt({src:\"https://framerusercontent.com/images/tyz5oeJmbRuRGN0foJnpQSUIGQ.png\"},\"\"),sbXn9nBiI:\"Samantha R.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Creative Director\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lone41-container\",inComponentSlot:true,nodeId:\"fO2AkLdfa\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"fO2AkLdfa\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CAlex\u2019s work exceeded all expectations. They brought fresh ideas to the table, and the final designs were nothing short of exceptional.\u201D\",layoutId:\"fO2AkLdfa\",r0tUIN2cH:addImageAlt({src:\"https://framerusercontent.com/images/V0VjlWbaMqKLaAfzXo1ZVzabGEA.png\"},\"\"),sbXn9nBiI:\"Jordan P.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Startup Founder\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:276,width:\"412px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-esxgun-container\",inComponentSlot:true,nodeId:\"IPB6RVnfm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",id:\"IPB6RVnfm\",jbEdan8Mc:\"https://x.com/\",jhbzeUGWy:\"\u201CWorking with Alex was a game-changer. Their innovative designs not only look amazing but also perfectly align with our brand\u2019s identity.\u201D\",layoutId:\"IPB6RVnfm\",r0tUIN2cH:addImageAlt({src:\"https://framerusercontent.com/images/Hex6M3QAm7sX7cxZ2yul8sFs6g.png\"},\"\"),sbXn9nBiI:\"Lucas M.\",style:{width:\"100%\"},width:\"100%\",zNTrZkuSB:\"Photographer\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1o27vwy\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-egl8nu\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",children:\"Pricing\"})}),className:\"framer-6qbay2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j4grdc\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l2nozu\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{style:{rotate:90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-111d5xc\",\"data-framer-name\":\"Spiral wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+784+0),pixelHeight:154,pixelWidth:640,sizes:\"640px\",src:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:77,intrinsicWidth:320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+328+0),pixelHeight:154,pixelWidth:640,sizes:\"640px\",src:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LuWTLiI0UXvkg72UfExgIuQ7wM.png 640w\"},className:\"framer-1ln7o3k\",\"data-framer-name\":\"Spiral\",draggable:\"false\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mg37j2\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tvnkxz\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xmfg8u\",\"data-styles-preset\":\"sohND2NNd\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Per project\"})}),className:\"framer-15d1k1o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:\"For clients seeking a professionally designed landing page with no recurring costs.\"})}),className:\"framer-14qqkp8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xcsh12\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q12y3a\",\"data-styles-preset\":\"EbwL93Yud\",children:\"From\"})}),className:\"framer-vtl57q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"$5000\"}),\"/project\"]})}),className:\"framer-7h4mmy\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+0+0+40+656}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+0+0+40+656,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1736l92-container\",nodeId:\"DaZ13Wwb3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{avSMDE5Ve:resolvedLinks4[2]},xawIChTct:{avSMDE5Ve:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{avSMDE5Ve:resolvedLinks4[0],height:\"100%\",hwfLEpAJz:\"Book a call\",id:\"DaZ13Wwb3\",kkkcdH9pG:false,layoutId:\"DaZ13Wwb3\",style:{width:\"100%\"},variant:\"EK09oMfl9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0p8vs\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+0+0+40+728+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+0+0+40+728+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vdytie-container\",nodeId:\"wrNqzsCDE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"One-time investment\",height:\"100%\",id:\"wrNqzsCDE\",layoutId:\"wrNqzsCDE\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+0+0+40+728+0+32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+0+0+40+728+0+32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8wn5he-container\",nodeId:\"K_LyzDhM1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Full ownership\",height:\"100%\",id:\"K_LyzDhM1\",layoutId:\"K_LyzDhM1\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+0+0+40+728+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+0+0+40+728+0+64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ndgcm0-container\",nodeId:\"NEUFLWjae\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Get all the design files\",height:\"100%\",id:\"NEUFLWjae\",layoutId:\"NEUFLWjae\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eyth8r\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17hlls2\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xmfg8u\",\"data-styles-preset\":\"sohND2NNd\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Monthly\"})}),className:\"framer-yd61k9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",children:\"For clients who want ongoing design updates and support.\"})}),className:\"framer-1xwa4tk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-853jm2\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q12y3a\",\"data-styles-preset\":\"EbwL93Yud\",children:\"From\"})}),className:\"framer-13t8e9l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"$2500\"}),\"/month\"]})}),className:\"framer-1cd3tx6\",fonts:[\"FR;InterDisplay\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+0+912+40+656}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+0+0+40+656,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x2c0of-container\",nodeId:\"nkEl5ryn2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{avSMDE5Ve:resolvedLinks5[2]},xawIChTct:{avSMDE5Ve:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{avSMDE5Ve:resolvedLinks5[0],height:\"100%\",hwfLEpAJz:\"Book a call\",id:\"nkEl5ryn2\",kkkcdH9pG:false,layoutId:\"nkEl5ryn2\",style:{width:\"100%\"},variant:\"EK09oMfl9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a4zv6l\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+0+912+40+728+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+0+0+40+728+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-smhku8-container\",nodeId:\"o1YlZwp_l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Lower upfront cost\",height:\"100%\",id:\"o1YlZwp_l\",layoutId:\"o1YlZwp_l\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+0+912+40+728+0+32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+0+0+40+728+0+32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ihlr63-container\",nodeId:\"ZAzYLB4pq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Monthly updates and support\",height:\"100%\",id:\"ZAzYLB4pq\",layoutId:\"ZAzYLB4pq\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 80px)`,y:(componentViewport?.y||0)+0+971.2+0+0+4668+0+62.4+0+912+40+728+0+64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px) - 16px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+4316+0+78.4+0+0+40+728+0+64,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dc3hj3-container\",nodeId:\"EphoiHgDt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{DQPLNF5gS:\"Easily add new features\",height:\"100%\",id:\"EphoiHgDt\",layoutId:\"EphoiHgDt\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-11fp0vd\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+6618.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+5410.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j8t3p-container\",nodeId:\"ybkqd0MAy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"As a digital product designer, I specialize in creating user interfaces for mobile and web applications, comprehensive design systems, and engaging e-commerce platforms. My work encompasses everything from enterprise dashboards to brand identity packages, always focusing on delivering intuitive user experiences that align with your business goals.\",height:\"100%\",hNwAqP6O_:\"What types of digital products do you design?\",id:\"ybkqd0MAy\",layoutId:\"ybkqd0MAy\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+6618.4+0+88}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+5410.4+0+88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ga7k3h-container\",nodeId:\"Ie8jB9k6D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"My design process begins with thorough research into your business goals and target audience. From there, I develop user personas and journey maps before moving into wireframing and visual design. Each project goes through interactive prototyping and testing phases, culminating in a detailed handoff to your development team. This systematic approach ensures we create products that truly resonate with your users.\",height:\"100%\",hNwAqP6O_:\"What is your design process like?\",id:\"Ie8jB9k6D\",layoutId:\"Ie8jB9k6D\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+6618.4+0+176}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+5410.4+0+176,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bdqe37-container\",nodeId:\"iQB8O9tJ3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"Project timelines vary based on complexity: landing pages and basic UI work typically take 1-2 weeks, mobile apps and multi-page websites require 4-8 weeks, while complex applications and complete design systems need 8-12 weeks. These timeframes include research, design, testing, and revision cycles, ensuring quality results while maintaining efficiency.\",height:\"100%\",hNwAqP6O_:\"What is your typical timeline for projects?\",id:\"iQB8O9tJ3\",layoutId:\"iQB8O9tJ3\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+6618.4+0+264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+5410.4+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1whrki5-container\",nodeId:\"AgqIXAcbN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"To begin effectively, I need your project brief outlining goals and requirements, any existing brand guidelines, content strategy, and reference materials that inspire your vision. Access to key stakeholders for feedback and clear timeline and budget parameters help ensure a smooth project flow from start to finish.\",height:\"100%\",hNwAqP6O_:\"What do you need from me to get started?\",id:\"AgqIXAcbN\",layoutId:\"AgqIXAcbN\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+6618.4+0+352}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+5410.4+0+352,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1we9dbt-container\",nodeId:\"YGlgyASgv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"Each project phase includes two to three revision rounds with structured feedback sessions and clear documentation of changes. I facilitate collaborative design reviews and implement agreed-upon changes promptly. If needed, additional revision rounds can be arranged at an hourly rate to ensure your complete satisfaction.\",height:\"100%\",hNwAqP6O_:\"How do you handle revisions and feedback?\",id:\"YGlgyASgv\",layoutId:\"YGlgyASgv\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+6618.4+0+440}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 840px)`,y:(componentViewport?.y||0)+0+1131.2+0+0+5410.4+0+440,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g85lzb-container\",nodeId:\"HIgVpqQrk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{DK3QMHYdz:\"I maintain clear communication through weekly progress updates and regular check-in meetings. Using project management tools and responding to messages within 24 hours, I ensure you're always informed about project status. Whether via email or Slack, I adapt to your preferred communication methods.\",height:\"100%\",hNwAqP6O_:\"What is your communication style during projects?\",id:\"HIgVpqQrk\",layoutId:\"HIgVpqQrk\",style:{width:\"100%\"},variant:\"pb2K3NDlC\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-1ltmym7\",\"data-framer-name\":\"Call to Action\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g936a2\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Are you ready to take the next step?\"})}),className:\"framer-1nk4fia\",\"data-framer-name\":\"Title\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-adqxz9\",\"data-styles-preset\":\"oMzAN8GuQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ready to bring your digital vision to life? Whether it\u2019s a stunning website, a mobile app, or a full design system, let\u2019s create something exceptional together.\"})}),className:\"framer-12kvux8\",\"data-framer-name\":\"Title\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined},{href:{webPageId:\"ubkCm57J6\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{y:(componentViewport?.y||0)+0+971.2+0+0+7210.4+0+0+40+206.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1131.2+0+0+6042.4+0+0+64+206.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-znv4o5-container\",nodeId:\"sgLib0F3T\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{avSMDE5Ve:resolvedLinks6[2]},xawIChTct:{avSMDE5Ve:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{avSMDE5Ve:resolvedLinks6[0],height:\"100%\",hwfLEpAJz:\"Let's talk\",id:\"sgLib0F3T\",kkkcdH9pG:false,layoutId:\"sgLib0F3T\",variant:\"EK09oMfl9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G3ZrQu2Nb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:714.5,intrinsicWidth:798,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+971.2+0+0+7210.4+0+0+-373),pixelHeight:1429,pixelWidth:1596,sizes:\"981.6126px\",src:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png 1596w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:.5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:714.5,intrinsicWidth:798,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1131.2+0+0+6042.4+0+0+-373),pixelHeight:1429,pixelWidth:1596,sizes:\"1035.2221px\",src:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OKF7CPO7S4kzDri5rUDcSxSLOWw.png 1596w\"},className:\"framer-1lf9dkb\",\"data-framer-name\":\"Blur\",draggable:\"false\"})})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BVRXZ.framer-lux5qc, .framer-BVRXZ .framer-lux5qc { display: block; }\",\".framer-BVRXZ.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-BVRXZ .framer-m4k8qw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 240px 16px 120px 16px; position: relative; width: 100%; z-index: 5; }\",\".framer-BVRXZ .framer-15vdu7p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-BVRXZ .framer-1rhhnn8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1l4yl75, .framer-BVRXZ .framer-j1ypg7 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BVRXZ .framer-1dkpdj2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-nlmvol-container, .framer-BVRXZ .framer-1is791x-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BVRXZ .framer-1ba4wyt-container { -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 50.16012105855856%, rgba(0, 0, 0, 0) 100%) add; aspect-ratio: 2.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 473px); mask: radial-gradient(50% 50% at 50% 50%, #000000 50.16012105855856%, rgba(0, 0, 0, 0) 100%) add; position: relative; width: 100%; z-index: 1; }\",\".framer-BVRXZ .framer-4slwv7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 160px 16px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1c8e8vx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BVRXZ .framer-tn5m7t, .framer-BVRXZ .framer-7005s6, .framer-BVRXZ .framer-168lux9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-yuid5k, .framer-BVRXZ .framer-8a6ef4, .framer-BVRXZ .framer-o3nd9q, .framer-BVRXZ .framer-zi3fax, .framer-BVRXZ .framer-7d6sjt, .framer-BVRXZ .framer-egl8nu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-11hylqy, .framer-BVRXZ .framer-175d4cq, .framer-BVRXZ .framer-1gjn23l, .framer-BVRXZ .framer-rpvdbv, .framer-BVRXZ .framer-1680q7y, .framer-BVRXZ .framer-1ki6ddm, .framer-BVRXZ .framer-tjer9u, .framer-BVRXZ .framer-1tdnitx, .framer-BVRXZ .framer-6qbay2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-BVRXZ .framer-s5krou, .framer-BVRXZ .framer-1pvwojd, .framer-BVRXZ .framer-1k9jp86, .framer-BVRXZ .framer-j96ha7, .framer-BVRXZ .framer-b8zp7, .framer-BVRXZ .framer-1j4grdc { background-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.1)); flex: 1 0 0px; height: 2px; overflow: hidden; position: relative; width: 1px; }\",\".framer-BVRXZ .framer-1nxtky { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1edl2w5-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1tb0ldm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1t8trbj, .framer-BVRXZ .framer-1rsp6ce { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1dgjgo0, .framer-BVRXZ .framer-1ku4nxt, .framer-BVRXZ .framer-8qnz33, .framer-BVRXZ .framer-nvm0wg { --border-bottom-width: 1px; --border-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, #000000); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BVRXZ .framer-3v3sz3, .framer-BVRXZ .framer-1mjp8ow, .framer-BVRXZ .framer-qmp0xq, .framer-BVRXZ .framer-1sjgswb { align-content: center; align-items: center; background-color: var(--token-0f07f556-9e14-491d-9aef-f342061eaaa0, #141414); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BVRXZ .framer-ndchdm, .framer-BVRXZ .framer-1wl3idi, .framer-BVRXZ .framer-qj0d22, .framer-BVRXZ .framer-1lds7ge { align-content: center; align-items: center; background-color: var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, #000000); border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BVRXZ .framer-2bl6ow, .framer-BVRXZ .framer-w4t224, .framer-BVRXZ .framer-s90hwe, .framer-BVRXZ .framer-182f0ev { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-BVRXZ .framer-1eqg73c, .framer-BVRXZ .framer-1r4wzsg, .framer-BVRXZ .framer-x5egoi, .framer-BVRXZ .framer-sj89e9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1rl8djm, .framer-BVRXZ .framer-gh5vtp, .framer-BVRXZ .framer-13lsoyr, .framer-BVRXZ .framer-9xi0by, .framer-BVRXZ .framer-ir6lxy, .framer-BVRXZ .framer-1n524bi, .framer-BVRXZ .framer-1t5xyfz, .framer-BVRXZ .framer-1t7q57r, .framer-BVRXZ .framer-15d1k1o, .framer-BVRXZ .framer-14qqkp8, .framer-BVRXZ .framer-vtl57q, .framer-BVRXZ .framer-7h4mmy, .framer-BVRXZ .framer-yd61k9, .framer-BVRXZ .framer-1xwa4tk, .framer-BVRXZ .framer-13t8e9l, .framer-BVRXZ .framer-1cd3tx6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BVRXZ .framer-16jadjd { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-yxgj-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-uhe6fj-container { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-a8dryg-container { height: 48px; position: relative; width: 165px; }\",\".framer-BVRXZ .framer-xykld-container { height: 48px; position: relative; width: 140px; }\",\".framer-BVRXZ .framer-rij9co-container { height: 48px; position: relative; width: 130px; }\",\".framer-BVRXZ .framer-iaf7j-container { height: 48px; position: relative; width: 168px; }\",\".framer-BVRXZ .framer-1ozmejo-container { height: 48px; position: relative; width: 113px; }\",\".framer-BVRXZ .framer-h29b56 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1s9vtir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; list-style: none; margin: 0px; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-19eo0cd-container, .framer-BVRXZ .framer-1736l92-container, .framer-BVRXZ .framer-vdytie-container, .framer-BVRXZ .framer-8wn5he-container, .framer-BVRXZ .framer-ndgcm0-container, .framer-BVRXZ .framer-x2c0of-container, .framer-BVRXZ .framer-smhku8-container, .framer-BVRXZ .framer-ihlr63-container, .framer-BVRXZ .framer-dc3hj3-container, .framer-BVRXZ .framer-1j8t3p-container, .framer-BVRXZ .framer-1ga7k3h-container, .framer-BVRXZ .framer-bdqe37-container, .framer-BVRXZ .framer-1whrki5-container, .framer-BVRXZ .framer-1we9dbt-container, .framer-BVRXZ .framer-g85lzb-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-470q6r, .framer-BVRXZ .framer-1o27vwy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1ch21qj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-1jp8bbt-container, .framer-BVRXZ .framer-g1ctsm-container { flex: 1 0 0px; height: 800px; position: relative; width: 1px; }\",\".framer-BVRXZ .framer-tsg5cc-container, .framer-BVRXZ .framer-axrzvc-container, .framer-BVRXZ .framer-1fknx3o-container, .framer-BVRXZ .framer-1yzdcw0-container, .framer-BVRXZ .framer-lone41-container, .framer-BVRXZ .framer-esxgun-container { height: auto; position: relative; width: 412px; }\",\".framer-BVRXZ .framer-l2nozu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-111d5xc { flex: none; height: 240px; left: calc(50.00000000000002% - 640px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 240px / 2); width: 640px; z-index: 0; }\",\".framer-BVRXZ .framer-1ln7o3k { -webkit-filter: blur(15px); -webkit-mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add; bottom: 0px; filter: blur(15px); flex: none; left: 0px; mask: radial-gradient(50% 50% at 50% 50%, #000000 0%, rgba(0, 0, 0, 0) 100%) add; opacity: 0.4; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-BVRXZ .framer-mg37j2, .framer-BVRXZ .framer-eyth8r { --border-bottom-width: 1px; --border-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(30px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(30px); background-color: rgba(0, 0, 0, 0.04); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BVRXZ .framer-tvnkxz, .framer-BVRXZ .framer-1r0p8vs, .framer-BVRXZ .framer-17hlls2, .framer-BVRXZ .framer-1a4zv6l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-xcsh12, .framer-BVRXZ .framer-853jm2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-11fp0vd, .framer-BVRXZ .framer-1ltmym7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BVRXZ .framer-g936a2 { --border-bottom-width: 1px; --border-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.06)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BVRXZ .framer-1nk4fia, .framer-BVRXZ .framer-12kvux8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 5; }\",\".framer-BVRXZ .framer-znv4o5-container { flex: none; height: auto; position: relative; width: auto; z-index: 5; }\",\".framer-BVRXZ .framer-1lf9dkb { aspect-ratio: 1.1168649405178446 / 1; bottom: -171px; flex: none; left: -264px; opacity: 0.5; overflow: visible; position: absolute; top: -373px; width: var(--framer-aspect-ratio-supported, 955px); z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BVRXZ.framer-72rtr7, .framer-BVRXZ .framer-m4k8qw, .framer-BVRXZ .framer-15vdu7p, .framer-BVRXZ .framer-1rhhnn8, .framer-BVRXZ .framer-1dkpdj2, .framer-BVRXZ .framer-4slwv7, .framer-BVRXZ .framer-1c8e8vx, .framer-BVRXZ .framer-tn5m7t, .framer-BVRXZ .framer-yuid5k, .framer-BVRXZ .framer-7005s6, .framer-BVRXZ .framer-8a6ef4, .framer-BVRXZ .framer-1tb0ldm, .framer-BVRXZ .framer-1t8trbj, .framer-BVRXZ .framer-1dgjgo0, .framer-BVRXZ .framer-3v3sz3, .framer-BVRXZ .framer-ndchdm, .framer-BVRXZ .framer-1eqg73c, .framer-BVRXZ .framer-1ku4nxt, .framer-BVRXZ .framer-1mjp8ow, .framer-BVRXZ .framer-1wl3idi, .framer-BVRXZ .framer-1r4wzsg, .framer-BVRXZ .framer-1rsp6ce, .framer-BVRXZ .framer-8qnz33, .framer-BVRXZ .framer-qmp0xq, .framer-BVRXZ .framer-qj0d22, .framer-BVRXZ .framer-x5egoi, .framer-BVRXZ .framer-nvm0wg, .framer-BVRXZ .framer-1sjgswb, .framer-BVRXZ .framer-1lds7ge, .framer-BVRXZ .framer-sj89e9, .framer-BVRXZ .framer-168lux9, .framer-BVRXZ .framer-o3nd9q, .framer-BVRXZ .framer-h29b56, .framer-BVRXZ .framer-zi3fax, .framer-BVRXZ .framer-1s9vtir, .framer-BVRXZ .framer-470q6r, .framer-BVRXZ .framer-7d6sjt, .framer-BVRXZ .framer-1ch21qj, .framer-BVRXZ .framer-1o27vwy, .framer-BVRXZ .framer-egl8nu, .framer-BVRXZ .framer-l2nozu, .framer-BVRXZ .framer-mg37j2, .framer-BVRXZ .framer-tvnkxz, .framer-BVRXZ .framer-xcsh12, .framer-BVRXZ .framer-1r0p8vs, .framer-BVRXZ .framer-eyth8r, .framer-BVRXZ .framer-17hlls2, .framer-BVRXZ .framer-853jm2, .framer-BVRXZ .framer-1a4zv6l, .framer-BVRXZ .framer-11fp0vd, .framer-BVRXZ .framer-1ltmym7, .framer-BVRXZ .framer-g936a2 { gap: 0px; } .framer-BVRXZ.framer-72rtr7 > *, .framer-BVRXZ .framer-m4k8qw > *, .framer-BVRXZ .framer-1dgjgo0 > *, .framer-BVRXZ .framer-1ku4nxt > *, .framer-BVRXZ .framer-8qnz33 > *, .framer-BVRXZ .framer-nvm0wg > *, .framer-BVRXZ .framer-1s9vtir > *, .framer-BVRXZ .framer-xcsh12 > *, .framer-BVRXZ .framer-853jm2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BVRXZ.framer-72rtr7 > :first-child, .framer-BVRXZ .framer-m4k8qw > :first-child, .framer-BVRXZ .framer-15vdu7p > :first-child, .framer-BVRXZ .framer-1rhhnn8 > :first-child, .framer-BVRXZ .framer-1c8e8vx > :first-child, .framer-BVRXZ .framer-tn5m7t > :first-child, .framer-BVRXZ .framer-7005s6 > :first-child, .framer-BVRXZ .framer-1tb0ldm > :first-child, .framer-BVRXZ .framer-1dgjgo0 > :first-child, .framer-BVRXZ .framer-1eqg73c > :first-child, .framer-BVRXZ .framer-1ku4nxt > :first-child, .framer-BVRXZ .framer-1r4wzsg > :first-child, .framer-BVRXZ .framer-8qnz33 > :first-child, .framer-BVRXZ .framer-x5egoi > :first-child, .framer-BVRXZ .framer-nvm0wg > :first-child, .framer-BVRXZ .framer-sj89e9 > :first-child, .framer-BVRXZ .framer-168lux9 > :first-child, .framer-BVRXZ .framer-h29b56 > :first-child, .framer-BVRXZ .framer-1s9vtir > :first-child, .framer-BVRXZ .framer-470q6r > :first-child, .framer-BVRXZ .framer-1o27vwy > :first-child, .framer-BVRXZ .framer-mg37j2 > :first-child, .framer-BVRXZ .framer-tvnkxz > :first-child, .framer-BVRXZ .framer-xcsh12 > :first-child, .framer-BVRXZ .framer-1r0p8vs > :first-child, .framer-BVRXZ .framer-eyth8r > :first-child, .framer-BVRXZ .framer-17hlls2 > :first-child, .framer-BVRXZ .framer-853jm2 > :first-child, .framer-BVRXZ .framer-1a4zv6l > :first-child, .framer-BVRXZ .framer-11fp0vd > :first-child, .framer-BVRXZ .framer-1ltmym7 > :first-child, .framer-BVRXZ .framer-g936a2 > :first-child { margin-top: 0px; } .framer-BVRXZ.framer-72rtr7 > :last-child, .framer-BVRXZ .framer-m4k8qw > :last-child, .framer-BVRXZ .framer-15vdu7p > :last-child, .framer-BVRXZ .framer-1rhhnn8 > :last-child, .framer-BVRXZ .framer-1c8e8vx > :last-child, .framer-BVRXZ .framer-tn5m7t > :last-child, .framer-BVRXZ .framer-7005s6 > :last-child, .framer-BVRXZ .framer-1tb0ldm > :last-child, .framer-BVRXZ .framer-1dgjgo0 > :last-child, .framer-BVRXZ .framer-1eqg73c > :last-child, .framer-BVRXZ .framer-1ku4nxt > :last-child, .framer-BVRXZ .framer-1r4wzsg > :last-child, .framer-BVRXZ .framer-8qnz33 > :last-child, .framer-BVRXZ .framer-x5egoi > :last-child, .framer-BVRXZ .framer-nvm0wg > :last-child, .framer-BVRXZ .framer-sj89e9 > :last-child, .framer-BVRXZ .framer-168lux9 > :last-child, .framer-BVRXZ .framer-h29b56 > :last-child, .framer-BVRXZ .framer-1s9vtir > :last-child, .framer-BVRXZ .framer-470q6r > :last-child, .framer-BVRXZ .framer-1o27vwy > :last-child, .framer-BVRXZ .framer-mg37j2 > :last-child, .framer-BVRXZ .framer-tvnkxz > :last-child, .framer-BVRXZ .framer-xcsh12 > :last-child, .framer-BVRXZ .framer-1r0p8vs > :last-child, .framer-BVRXZ .framer-eyth8r > :last-child, .framer-BVRXZ .framer-17hlls2 > :last-child, .framer-BVRXZ .framer-853jm2 > :last-child, .framer-BVRXZ .framer-1a4zv6l > :last-child, .framer-BVRXZ .framer-11fp0vd > :last-child, .framer-BVRXZ .framer-1ltmym7 > :last-child, .framer-BVRXZ .framer-g936a2 > :last-child { margin-bottom: 0px; } .framer-BVRXZ .framer-15vdu7p > *, .framer-BVRXZ .framer-tn5m7t > *, .framer-BVRXZ .framer-7005s6 > *, .framer-BVRXZ .framer-168lux9 > *, .framer-BVRXZ .framer-470q6r > *, .framer-BVRXZ .framer-1o27vwy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BVRXZ .framer-1rhhnn8 > *, .framer-BVRXZ .framer-h29b56 > *, .framer-BVRXZ .framer-mg37j2 > *, .framer-BVRXZ .framer-eyth8r > *, .framer-BVRXZ .framer-g936a2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BVRXZ .framer-1dkpdj2 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-BVRXZ .framer-1dkpdj2 > :first-child, .framer-BVRXZ .framer-4slwv7 > :first-child, .framer-BVRXZ .framer-yuid5k > :first-child, .framer-BVRXZ .framer-8a6ef4 > :first-child, .framer-BVRXZ .framer-1t8trbj > :first-child, .framer-BVRXZ .framer-3v3sz3 > :first-child, .framer-BVRXZ .framer-ndchdm > :first-child, .framer-BVRXZ .framer-1mjp8ow > :first-child, .framer-BVRXZ .framer-1wl3idi > :first-child, .framer-BVRXZ .framer-1rsp6ce > :first-child, .framer-BVRXZ .framer-qmp0xq > :first-child, .framer-BVRXZ .framer-qj0d22 > :first-child, .framer-BVRXZ .framer-1sjgswb > :first-child, .framer-BVRXZ .framer-1lds7ge > :first-child, .framer-BVRXZ .framer-o3nd9q > :first-child, .framer-BVRXZ .framer-zi3fax > :first-child, .framer-BVRXZ .framer-7d6sjt > :first-child, .framer-BVRXZ .framer-1ch21qj > :first-child, .framer-BVRXZ .framer-egl8nu > :first-child, .framer-BVRXZ .framer-l2nozu > :first-child { margin-left: 0px; } .framer-BVRXZ .framer-1dkpdj2 > :last-child, .framer-BVRXZ .framer-4slwv7 > :last-child, .framer-BVRXZ .framer-yuid5k > :last-child, .framer-BVRXZ .framer-8a6ef4 > :last-child, .framer-BVRXZ .framer-1t8trbj > :last-child, .framer-BVRXZ .framer-3v3sz3 > :last-child, .framer-BVRXZ .framer-ndchdm > :last-child, .framer-BVRXZ .framer-1mjp8ow > :last-child, .framer-BVRXZ .framer-1wl3idi > :last-child, .framer-BVRXZ .framer-1rsp6ce > :last-child, .framer-BVRXZ .framer-qmp0xq > :last-child, .framer-BVRXZ .framer-qj0d22 > :last-child, .framer-BVRXZ .framer-1sjgswb > :last-child, .framer-BVRXZ .framer-1lds7ge > :last-child, .framer-BVRXZ .framer-o3nd9q > :last-child, .framer-BVRXZ .framer-zi3fax > :last-child, .framer-BVRXZ .framer-7d6sjt > :last-child, .framer-BVRXZ .framer-1ch21qj > :last-child, .framer-BVRXZ .framer-egl8nu > :last-child, .framer-BVRXZ .framer-l2nozu > :last-child { margin-right: 0px; } .framer-BVRXZ .framer-4slwv7 > *, .framer-BVRXZ .framer-3v3sz3 > *, .framer-BVRXZ .framer-ndchdm > *, .framer-BVRXZ .framer-1mjp8ow > *, .framer-BVRXZ .framer-1wl3idi > *, .framer-BVRXZ .framer-qmp0xq > *, .framer-BVRXZ .framer-qj0d22 > *, .framer-BVRXZ .framer-1sjgswb > *, .framer-BVRXZ .framer-1lds7ge > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BVRXZ .framer-1c8e8vx > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-BVRXZ .framer-yuid5k > *, .framer-BVRXZ .framer-8a6ef4 > *, .framer-BVRXZ .framer-o3nd9q > *, .framer-BVRXZ .framer-zi3fax > *, .framer-BVRXZ .framer-7d6sjt > *, .framer-BVRXZ .framer-egl8nu > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-BVRXZ .framer-1tb0ldm > *, .framer-BVRXZ .framer-11fp0vd > *, .framer-BVRXZ .framer-1ltmym7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BVRXZ .framer-1t8trbj > *, .framer-BVRXZ .framer-1rsp6ce > *, .framer-BVRXZ .framer-1ch21qj > *, .framer-BVRXZ .framer-l2nozu > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-BVRXZ .framer-1eqg73c > *, .framer-BVRXZ .framer-1r4wzsg > *, .framer-BVRXZ .framer-x5egoi > *, .framer-BVRXZ .framer-sj89e9 > *, .framer-BVRXZ .framer-tvnkxz > *, .framer-BVRXZ .framer-1r0p8vs > *, .framer-BVRXZ .framer-17hlls2 > *, .framer-BVRXZ .framer-1a4zv6l > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-BVRXZ[data-border=\"true\"]::after, .framer-BVRXZ [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; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-BVRXZ.framer-72rtr7 { width: 810px; } .framer-BVRXZ .framer-1ba4wyt-container { height: var(--framer-aspect-ratio-supported, 438px); } .framer-BVRXZ .framer-4slwv7 { padding: 0px 16px 120px 16px; } .framer-BVRXZ .framer-1nk4fia, .framer-BVRXZ .framer-12kvux8 { max-width: 82%; } .framer-BVRXZ .framer-1lf9dkb { width: var(--framer-aspect-ratio-supported, 982px); }}\",\"@media (max-width: 809px) { .framer-BVRXZ.framer-72rtr7 { width: 390px; } .framer-BVRXZ .framer-m4k8qw { padding: 160px 16px 40px 16px; } .framer-BVRXZ .framer-1ba4wyt-container { height: var(--framer-aspect-ratio-supported, 95px); } .framer-BVRXZ .framer-4slwv7 { padding: 0px 16px 80px 16px; } .framer-BVRXZ .framer-1c8e8vx { gap: 80px; } .framer-BVRXZ .framer-tn5m7t, .framer-BVRXZ .framer-7005s6, .framer-BVRXZ .framer-168lux9, .framer-BVRXZ .framer-470q6r, .framer-BVRXZ .framer-1o27vwy, .framer-BVRXZ .framer-1ltmym7 { gap: 24px; } .framer-BVRXZ .framer-1t8trbj, .framer-BVRXZ .framer-1rsp6ce, .framer-BVRXZ .framer-1ch21qj, .framer-BVRXZ .framer-l2nozu { flex-direction: column; } .framer-BVRXZ .framer-1dgjgo0, .framer-BVRXZ .framer-1ku4nxt, .framer-BVRXZ .framer-8qnz33, .framer-BVRXZ .framer-nvm0wg, .framer-BVRXZ .framer-1jp8bbt-container, .framer-BVRXZ .framer-mg37j2, .framer-BVRXZ .framer-eyth8r { flex: none; width: 100%; } .framer-BVRXZ .framer-h29b56 { gap: 8px; } .framer-BVRXZ .framer-g936a2 { padding: 40px; } .framer-BVRXZ .framer-1lf9dkb { width: var(--framer-aspect-ratio-supported, 876px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BVRXZ .framer-1c8e8vx, .framer-BVRXZ .framer-tn5m7t, .framer-BVRXZ .framer-7005s6, .framer-BVRXZ .framer-1t8trbj, .framer-BVRXZ .framer-1rsp6ce, .framer-BVRXZ .framer-168lux9, .framer-BVRXZ .framer-h29b56, .framer-BVRXZ .framer-470q6r, .framer-BVRXZ .framer-1ch21qj, .framer-BVRXZ .framer-1o27vwy, .framer-BVRXZ .framer-l2nozu, .framer-BVRXZ .framer-1ltmym7 { gap: 0px; } .framer-BVRXZ .framer-1c8e8vx > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-BVRXZ .framer-1c8e8vx > :first-child, .framer-BVRXZ .framer-tn5m7t > :first-child, .framer-BVRXZ .framer-7005s6 > :first-child, .framer-BVRXZ .framer-1t8trbj > :first-child, .framer-BVRXZ .framer-1rsp6ce > :first-child, .framer-BVRXZ .framer-168lux9 > :first-child, .framer-BVRXZ .framer-h29b56 > :first-child, .framer-BVRXZ .framer-470q6r > :first-child, .framer-BVRXZ .framer-1ch21qj > :first-child, .framer-BVRXZ .framer-1o27vwy > :first-child, .framer-BVRXZ .framer-l2nozu > :first-child, .framer-BVRXZ .framer-1ltmym7 > :first-child { margin-top: 0px; } .framer-BVRXZ .framer-1c8e8vx > :last-child, .framer-BVRXZ .framer-tn5m7t > :last-child, .framer-BVRXZ .framer-7005s6 > :last-child, .framer-BVRXZ .framer-1t8trbj > :last-child, .framer-BVRXZ .framer-1rsp6ce > :last-child, .framer-BVRXZ .framer-168lux9 > :last-child, .framer-BVRXZ .framer-h29b56 > :last-child, .framer-BVRXZ .framer-470q6r > :last-child, .framer-BVRXZ .framer-1ch21qj > :last-child, .framer-BVRXZ .framer-1o27vwy > :last-child, .framer-BVRXZ .framer-l2nozu > :last-child, .framer-BVRXZ .framer-1ltmym7 > :last-child { margin-bottom: 0px; } .framer-BVRXZ .framer-tn5m7t > *, .framer-BVRXZ .framer-7005s6 > *, .framer-BVRXZ .framer-168lux9 > *, .framer-BVRXZ .framer-470q6r > *, .framer-BVRXZ .framer-1o27vwy > *, .framer-BVRXZ .framer-1ltmym7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BVRXZ .framer-1t8trbj > *, .framer-BVRXZ .framer-1rsp6ce > *, .framer-BVRXZ .framer-1ch21qj > *, .framer-BVRXZ .framer-l2nozu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BVRXZ .framer-h29b56 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7755.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xawIChTct\":{\"layout\":[\"fixed\",\"auto\"]},\"G3ZrQu2Nb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-BVRXZ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7755.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"}]},...ButtonFonts,...VideoFonts,...ProductItemFonts,...WorkItemFonts,...BookingFonts,...SpotifyFonts,...NotionFonts,...MailchimpFonts,...DribbbleFonts,...TickerFonts,...BlogItemFonts,...TestimonialFonts,...FeatureFonts,...FAQItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xawIChTct\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G3ZrQu2Nb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7755.5\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useRenderTarget", "se", "RenderTarget", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerddP1ZGjCC", "withCSS", "ddP1ZGjCC_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerF5FsYrOp_", "withCSS", "F5FsYrOp_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerJy__ZHX01", "withCSS", "Jy_ZHX01_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerKj7_uzx2q", "withCSS", "Kj7_uzx2q_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramermLLDk_sM1", "withCSS", "mLLDk_sM1_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DQPLNF5gS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "RichText2", "css", "Framernl1FFRjX8", "withCSS", "nl1FFRjX8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "function1", "height", "id", "link", "name1", "photo", "testimonialText", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jhbzeUGWy", "sbXn9nBiI", "zNTrZkuSB", "r0tUIN2cH", "jbEdan8Mc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "SVG", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerS0FWhyfg9", "withCSS", "S0FWhyfg9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "ButtonFonts", "getFonts", "kIge2YdBH_default", "ContainerWithFX", "withFX", "Container", "VideoFonts", "Video", "ProductItemFonts", "bXxL_ulUc_default", "MotionDivWithFX", "motion", "WorkItemFonts", "n_KCRw5fi_default", "BookingFonts", "ddP1ZGjCC_default", "SpotifyFonts", "Kj7_uzx2q_default", "NotionFonts", "F5FsYrOp_default", "MailchimpFonts", "mLLDk_sM1_default", "DribbbleFonts", "Jy_ZHX01_default", "TickerFonts", "Ticker", "BlogItemFonts", "pXrxHY97w_default", "TestimonialFonts", "S0FWhyfg9_default", "FeatureFonts", "nl1FFRjX8_default", "FAQItemFonts", "gzC090QB_default", "ImageWithFX", "Image2", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "textEffect1", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "animation5", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "addImageAlt", "image", "alt", "transition4", "textEffect2", "transition5", "animation6", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "s9B_hbmyCDx8pLQxS6", "y62fq8pIpDx8pLQxS6", "TbvNyHeAYDx8pLQxS6", "tKSWt1rfBDx8pLQxS6", "Wlio9sg6mDx8pLQxS6", "idDx8pLQxS6", "Vw8sETrE7bplvpDPwX", "YWhGaTO19bplvpDPwX", "ZjwaZoOB8bplvpDPwX", "PTI3Fw1rgbplvpDPwX", "idbplvpDPwX", "SsFcRNaX1JunkpIXKz", "VAF3x_YTkJunkpIXKz", "qTQhUgahpJunkpIXKz", "ZXlUncUWpJunkpIXKz", "idJunkpIXKz", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "RichText2", "x", "PropertyOverrides2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "Link", "ChildrenCanSuspend", "mlonwwwCp_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "SVG", "eDHm1sab3_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "UYgssMU2c_default", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks3", "getLoadingLazyAtYPosition", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
