{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/HtnvjS5rG6UkN9cOCZqv/Quzno2depF6zf3wf3ZtI/Lightbox.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/jFOAZKc2EvehHtUZX1Hf/Video.js", "ssg:https://framerusercontent.com/modules/xeYxzA4mpfs64lsDXodt/QI0BBTA48vMAJR47UhWV/h3OC0z7Sg.js", "ssg:https://framerusercontent.com/modules/gYkGi2D5XF5imoIK9iQg/pzQXdj5LKx7tBAkY3YW6/MEvhPZcX8.js", "ssg:https://framerusercontent.com/modules/liC6d9nDgfa4YSTL7AfF/TQEqjDAyZj2BYiQRExRu/VE2nr639E.js", "ssg:https://framerusercontent.com/modules/U1VUXSRwkotD4h19ooau/LhNSIErhLpYWQq24Xt4D/YHn6SZ2ra.js", "ssg:https://framerusercontent.com/modules/Y3ee4DKgM8eVzuY62aQx/wGLbUbBZxRUwzBkYQho3/FMYvhwC7U.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect,useRef,useMemo,useCallback}from\"react\";import{createPortal}from\"react-dom\";import{addPropertyControls,ControlType}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";/**\n * @copyright \u00A9framer-code.com\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n **/export default function Lightbox({image={src:\"https://images.unsplash.com/photo-1682687218147-9806132dc697?q=80&w=800&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYW gel\",alt:\"Default Image\",positionX:\"50%\",positionY:\"50%\"},style,styles,transition,isMixedRadius=false,animateFromThumbnail=true}){const radiusValue=isMixedRadius?`${styles.radius}px`:`${styles.topLeft}px ${styles.topRight}px ${styles.bottomRight}px ${styles.bottomLeft}px`;const[lightboxState,setLightboxState]=useState({isOpen:false,thumbnailRect:null,loading:true,error:false});const thumbnailRef=useRef(null);const[portalDiv,setPortalDiv]=useState(null);const toggleLightbox=useCallback(()=>{setLightboxState(prevState=>{const newIsOpen=!prevState.isOpen;return{...prevState,isOpen:newIsOpen,thumbnailRect:newIsOpen&&animateFromThumbnail?thumbnailRef.current.getBoundingClientRect():null,loading:newIsOpen,error:false};});},[animateFromThumbnail]);useEffect(()=>{if(lightboxState.isOpen){const img=new Image;img.onload=()=>setLightboxState(prev=>({...prev,loading:false}));img.onerror=()=>setLightboxState(prev=>({...prev,loading:false,error:true}));img.src=image.src;}},[lightboxState.isOpen,image.src]);useEffect(()=>{const isBrowser=typeof window!==\"undefined\";if(!isBrowser)return;let div=document.getElementById(\"lightbox-portal\");if(!div){div=document.createElement(\"div\");div.id=\"lightbox-portal\";document.body.appendChild(div);}setPortalDiv(div);const handleKeyDown=event=>{if(event.key===\"Escape\"&&lightboxState.isOpen){toggleLightbox();}};window.addEventListener(\"keydown\",handleKeyDown);return()=>{window.removeEventListener(\"keydown\",handleKeyDown);if(div&&document.body.contains(div)){document.body.removeChild(div);}};},[lightboxState.isOpen,toggleLightbox]);const imageStyle=useMemo(()=>({cursor:\"pointer\",objectPosition:`${image.positionX} ${image.positionY}`,objectFit:\"cover\",borderRadius:radiusValue,...style}),[image.positionX,image.positionY,radiusValue,style]);if(!portalDiv)return null;const overlayStyle={position:\"fixed\",top:0,left:0,width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:styles.color,zIndex:styles.zIndex};const imageAnimation=animateFromThumbnail?{hidden:{opacity:0,x:lightboxState.thumbnailRect?lightboxState.thumbnailRect.left+lightboxState.thumbnailRect.width/2-window.innerWidth/2:0,y:lightboxState.thumbnailRect?lightboxState.thumbnailRect.top+lightboxState.thumbnailRect.height/2-window.innerHeight/2:0,scale:.5},visible:{opacity:1,x:0,y:0,scale:1},exit:{opacity:0,x:lightboxState.thumbnailRect?lightboxState.thumbnailRect.left+lightboxState.thumbnailRect.width/2-window.innerWidth/2:0,y:lightboxState.thumbnailRect?lightboxState.thumbnailRect.top+lightboxState.thumbnailRect.height/2-window.innerHeight/2:0,scale:.5}}:{hidden:{opacity:0,scale:.8},visible:{opacity:1,scale:1},exit:{opacity:0,scale:.8}};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.img,{ref:thumbnailRef,src:image.src,alt:image.alt,style:imageStyle,onClick:toggleLightbox,transition:transition}),lightboxState.isOpen&&portalDiv&&/*#__PURE__*/createPortal(/*#__PURE__*/_jsx(AnimatePresence,{children:/*#__PURE__*/_jsxs(motion.div,{initial:\"hidden\",animate:\"visible\",exit:\"exit\",style:overlayStyle,onClick:toggleLightbox,children:[lightboxState.loading&&/*#__PURE__*/_jsx(\"div\",{children:\"Loading...\"}),lightboxState.error&&/*#__PURE__*/_jsx(\"div\",{children:\"Error loading image\"}),!lightboxState.loading&&!lightboxState.error&&/*#__PURE__*/_jsx(motion.img,{src:image.src,alt:image.alt,variants:imageAnimation,transition:transition,style:{maxWidth:\"90%\",maxHeight:\"90%\",width:\"auto\",height:\"auto\",objectFit:\"contain\",boxShadow:styles.shadows,borderRadius:radiusValue,...style}})]})}),portalDiv)]});}addPropertyControls(Lightbox,{image:{type:ControlType.ResponsiveImage,title:\"Image\",defaultValue:{src:\"https://images.unsplash.com/photo-1682687218147-9806132dc697?q=80&w=800&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYW gel\",alt:\"Default Image\",positionX:\"50%\",positionY:\"50%\"}},style:{type:ControlType.Object,title:\"Style\"},styles:{type:ControlType.Object,title:\"Styles\",controls:{radius:{type:ControlType.FusedNumber,title:\"Radius\",defaultValue:0,toggleKey:\"isMixedRadius\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},color:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0, 0, 0, 0.5)\"},shadows:{type:ControlType.BoxShadow,title:\"Shadows\"},zIndex:{type:ControlType.Number,title:\"Z Index\",defaultValue:6,min:0,displayStepper:true}}},transition:{type:ControlType.Transition,title:\"Transition\"},animateFromThumbnail:{type:ControlType.Boolean,title:\"From Position\",defaultValue:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Lightbox\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Lightbox.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:\"0px 0px 100px 100px\",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(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\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\"||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\"||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\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"RRJdsXdaU\",\"vw9YeBUUe\"];const serializationHash=\"framer-xYUam\";const variantClassNames={RRJdsXdaU:\"framer-v-lx6rgh\",vw9YeBUUe:\"framer-v-7spt6a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={telegram:\"RRJdsXdaU\",whatsapp:\"vw9YeBUUe\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RRJdsXdaU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RRJdsXdaU\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"vw9YeBUUe\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"vw9YeBUUe\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lx6rgh\",className,classNames),\"data-framer-name\":\"telegram\",layoutDependency:layoutDependency,layoutId:\"RRJdsXdaU\",ref:refBinding,style:{...style},...addPropertyOverrides({vw9YeBUUe:{\"data-framer-name\":\"whatsapp\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1sut3ea\",\"data-framer-name\":\"Telegram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"u5lsKF3AV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 1.186 8.01 C 5.817 5.998 8.905 4.672 10.448 4.033 C 14.861 2.203 15.777 1.885 16.376 1.875 C 16.507 1.873 16.8 1.905 16.991 2.059 C 17.15 2.189 17.195 2.365 17.217 2.489 C 17.237 2.612 17.264 2.892 17.242 3.111 C 17.003 5.615 15.968 11.691 15.442 14.495 C 15.221 15.681 14.782 16.079 14.357 16.118 C 13.435 16.202 12.734 15.511 11.841 14.927 C 10.444 14.013 9.654 13.445 8.296 12.553 C 6.728 11.523 7.745 10.957 8.639 10.031 C 8.872 9.789 12.938 6.104 13.015 5.77 C 13.025 5.729 13.035 5.572 12.94 5.49 C 12.848 5.407 12.712 5.436 12.613 5.458 C 12.471 5.49 10.24 6.961 5.911 9.873 C 5.278 10.306 4.705 10.518 4.189 10.507 C 3.623 10.495 2.531 10.187 1.719 9.925 C 0.727 9.602 -0.065 9.432 0.004 8.885 C 0.039 8.599 0.433 8.307 1.186 8.009 Z\" fill=\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;fg-primary&quot;} */\"></path></svg>',svgContentId:9591821392,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ihb3x8\",\"data-framer-name\":\"\\\\\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RVgAN8w8_\",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 1.947 18.125 L 3.089 13.952 C 2.383 12.729 2.013 11.34 2.014 9.927 C 2.017 5.486 5.629 1.875 10.069 1.875 C 12.208 1.87 14.259 2.72 15.767 4.237 C 17.282 5.744 18.131 7.796 18.124 9.933 C 18.123 14.372 14.508 17.986 10.069 17.986 L 10.066 17.986 C 8.721 17.986 7.397 17.648 6.216 17.005 L 1.948 18.125 Z M 7.217 6.208 C 7.011 6.214 6.817 6.305 6.681 6.461 L 6.642 6.503 C 6.432 6.727 5.977 7.213 5.977 8.139 C 5.977 9.122 6.687 10.071 6.796 10.217 L 6.798 10.22 L 6.841 10.283 C 7.097 10.662 8.344 12.512 10.236 13.258 C 11.772 13.864 12.202 13.813 12.544 13.773 L 12.652 13.762 C 13.021 13.728 13.842 13.275 14.01 12.805 C 14.177 12.335 14.177 11.932 14.127 11.848 C 14.087 11.781 13.992 11.734 13.852 11.668 L 13.741 11.613 C 13.54 11.513 12.551 11.026 12.366 10.959 C 12.182 10.891 12.047 10.858 11.913 11.059 C 11.779 11.261 11.393 11.713 11.276 11.848 C 11.158 11.982 11.041 11.999 10.841 11.898 C 10.807 11.883 10.762 11.863 10.707 11.839 C 10.425 11.717 9.866 11.474 9.222 10.9 C 8.623 10.367 8.219 9.708 8.102 9.506 C 7.984 9.304 8.09 9.196 8.19 9.096 C 8.25 9.036 8.319 8.952 8.387 8.868 C 8.423 8.826 8.458 8.783 8.492 8.743 C 8.563 8.66 8.621 8.566 8.665 8.466 C 8.674 8.446 8.684 8.427 8.693 8.408 C 8.76 8.273 8.727 8.155 8.677 8.055 C 8.655 8.013 8.572 7.808 8.47 7.555 C 8.332 7.215 8.159 6.789 8.057 6.561 C 7.906 6.226 7.747 6.219 7.603 6.213 Z\" fill=\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;fg-primary&quot;} */\"></path></svg>',svgContentId:11798169420,withExternalLayout:true,...addPropertyOverrides({vw9YeBUUe:{svgContentId:12809672969}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xYUam.framer-1lki5t, .framer-xYUam .framer-1lki5t { display: block; }\",\".framer-xYUam.framer-lx6rgh { height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-xYUam .framer-1sut3ea { flex: none; height: 18px; left: 1px; position: absolute; top: 1px; width: 18px; }\",\".framer-xYUam .framer-ihb3x8 { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-xYUam.framer-v-7spt6a.framer-lx6rgh { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vw9YeBUUe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerh3OC0z7Sg=withCSS(Component,css,\"framer-xYUam\");export default Framerh3OC0z7Sg;Framerh3OC0z7Sg.displayName=\"icon 20\";Framerh3OC0z7Sg.defaultProps={height:20,width:20};addPropertyControls(Framerh3OC0z7Sg,{variant:{options:[\"RRJdsXdaU\",\"vw9YeBUUe\"],optionTitles:[\"telegram\",\"whatsapp\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerh3OC0z7Sg,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerh3OC0z7Sg\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vw9YeBUUe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"20\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./h3OC0z7Sg.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Icon20 from\"https://framerusercontent.com/modules/xeYxzA4mpfs64lsDXodt/QI0BBTA48vMAJR47UhWV/h3OC0z7Sg.js\";const Icon20Fonts=getFonts(Icon20);const enabledGestures={cOKqMja1F:{hover:true}};const serializationHash=\"framer-TsBu4\";const variantClassNames={cOKqMja1F:\"framer-v-wkr6fj\"};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,label,link,showIcon,width,...props})=>{return{...props,Cwo23cSvS:link??props.Cwo23cSvS,erww65r1w:label??props.erww65r1w??\"Chat\",qNBDP5atE:showIcon??props.qNBDP5atE??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Cwo23cSvS,erww65r1w,qNBDP5atE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"cOKqMja1F\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1a8dulf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"cOKqMja1F\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Cwo23cSvS,motionChild:true,nodeId:\"cOKqMja1F\",openInNewTab:true,scopeId:\"MEvhPZcX8\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-wkr6fj\",className,classNames)} framer-1rdlrau`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cOKqMja1F\",onTap:onTap1a8dulf,ref:refBinding,style:{opacity:1,...style},variants:{\"cOKqMja1F-hover\":{opacity:.7}},...addPropertyOverrides({\"cOKqMja1F-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[qNBDP5atE&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"20px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||24)-0-16)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17j2pu1-container\",layoutDependency:layoutDependency,layoutId:\"rRdkUGrJ2-container\",nodeId:\"rRdkUGrJ2\",rendersWithMotion:true,scopeId:\"MEvhPZcX8\",children:/*#__PURE__*/_jsx(Icon20,{height:\"100%\",id:\"rRdkUGrJ2\",layoutId:\"rRdkUGrJ2\",style:{height:\"100%\",width:\"100%\"},variant:\"vw9YeBUUe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0)))\"},children:\"Chat\"})}),className:\"framer-uy5ke4\",\"data-framer-name\":\"label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"YVs8Jd6Sp\",style:{\"--extracted-r6o4lv\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:erww65r1w,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TsBu4.framer-1rdlrau, .framer-TsBu4 .framer-1rdlrau { display: block; }\",\".framer-TsBu4.framer-wkr6fj { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-TsBu4 .framer-17j2pu1-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-TsBu4 .framer-uy5ke4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TsBu4.framer-wkr6fj { gap: 0px; } .framer-TsBu4.framer-wkr6fj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-TsBu4.framer-wkr6fj > :first-child { margin-left: 0px; } .framer-TsBu4.framer-wkr6fj > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 62.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"vFw4DfqtU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Cwo23cSvS\":\"link\",\"erww65r1w\":\"label\",\"qNBDP5atE\":\"showIcon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMEvhPZcX8=withCSS(Component,css,\"framer-TsBu4\");export default FramerMEvhPZcX8;FramerMEvhPZcX8.displayName=\"secondary button\";FramerMEvhPZcX8.defaultProps={height:24,width:62.5};addPropertyControls(FramerMEvhPZcX8,{Cwo23cSvS:{title:\"Link\",type:ControlType.Link},erww65r1w:{defaultValue:\"Chat\",displayTextArea:false,title:\"Label\",type:ControlType.String},qNBDP5atE:{defaultValue:true,title:\"Show icon\",type:ControlType.Boolean}});addFonts(FramerMEvhPZcX8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...Icon20Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMEvhPZcX8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vFw4DfqtU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"Cwo23cSvS\\\":\\\"link\\\",\\\"erww65r1w\\\":\\\"label\\\",\\\"qNBDP5atE\\\":\\\"showIcon\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"62.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={xAl4wfNzd:{hover:true}};const serializationHash=\"framer-PFZZG\";const variantClassNames={xAl4wfNzd:\"framer-v-4if2jn\"};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,label,link,width,...props})=>{return{...props,hkN983ZPB:link??props.hkN983ZPB,r_eJXtEqk:label??props.r_eJXtEqk??\"button\"};};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,hkN983ZPB,r_eJXtEqk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"xAl4wfNzd\",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(Link,{href:hkN983ZPB,nodeId:\"xAl4wfNzd\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-4if2jn\",className,classNames)} framer-ki6at0`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xAl4wfNzd\",ref:ref??ref1,style:{backgroundColor:\"var(--token-b5ea92e4-8f55-4288-873b-2420bff0396e, rgb(0, 0, 0))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:1,...style},variants:{\"xAl4wfNzd-hover\":{opacity:.7}},...addPropertyOverrides({\"xAl4wfNzd-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64809f5c-8b56-4c65-82e9-f7faca032ff9, rgb(255, 255, 255)))\"},children:\"button\"})}),className:\"framer-12vdxa4\",\"data-framer-name\":\"label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"if7u3SRUl\",style:{\"--extracted-r6o4lv\":\"var(--token-64809f5c-8b56-4c65-82e9-f7faca032ff9, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:r_eJXtEqk,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PFZZG.framer-ki6at0, .framer-PFZZG .framer-ki6at0 { display: block; }\",\".framer-PFZZG.framer-4if2jn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 44px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-PFZZG .framer-12vdxa4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PFZZG.framer-4if2jn { gap: 0px; } .framer-PFZZG.framer-4if2jn > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-PFZZG.framer-4if2jn > :first-child { margin-left: 0px; } .framer-PFZZG.framer-4if2jn > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 87\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"o7v0Keqsy\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"hkN983ZPB\":\"link\",\"r_eJXtEqk\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVE2nr639E=withCSS(Component,css,\"framer-PFZZG\");export default FramerVE2nr639E;FramerVE2nr639E.displayName=\"primary button\";FramerVE2nr639E.defaultProps={height:44,width:87};addPropertyControls(FramerVE2nr639E,{hkN983ZPB:{title:\"Link\",type:ControlType.Link},r_eJXtEqk:{defaultValue:\"button\",displayTextArea:false,title:\"label\",type:ControlType.String}});addFonts(FramerVE2nr639E,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVE2nr639E\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"o7v0Keqsy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"hkN983ZPB\\\":\\\"link\\\",\\\"r_eJXtEqk\\\":\\\"label\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"44\",\"framerIntrinsicWidth\":\"87\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VE2nr639E.map", "// Generated by Framer (74b1a33)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-nrXbK .framer-styles-preset-1pjz1k7:not(.rich-text-wrapper), .framer-nrXbK .framer-styles-preset-1pjz1k7.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, #000000) /* {\"name\":\"fg-primary\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56)); --framer-link-text-decoration: none; }'];export const className=\"framer-nrXbK\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Lightbox from\"https://framerusercontent.com/modules/HtnvjS5rG6UkN9cOCZqv/Quzno2depF6zf3wf3ZtI/Lightbox.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import SecondaryButton from\"#framer/local/canvasComponent/MEvhPZcX8/MEvhPZcX8.js\";import PrimaryButton from\"#framer/local/canvasComponent/VE2nr639E/VE2nr639E.js\";import*as sharedStyle from\"#framer/local/css/YHn6SZ2ra/YHn6SZ2ra.js\";import metadataProvider from\"#framer/local/webPageMetadata/FMYvhwC7U/FMYvhwC7U.js\";const PrimaryButtonFonts=getFonts(PrimaryButton);const SecondaryButtonFonts=getFonts(SecondaryButton);const VideoFonts=getFonts(Video);const LightboxFonts=getFonts(Lightbox);const MotionDivWithFX=withFX(motion.div);const breakpoints={F1ao6GWvS:\"(min-width: 1200px)\",J5StSZ72S:\"(max-width: 809px)\",YjiRkivDw:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-cW9RM\";const variantClassNames={F1ao6GWvS:\"framer-v-elw38u\",J5StSZ72S:\"framer-v-1sm9s3b\",YjiRkivDw:\"framer-v-y6r0ng\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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:.4,type:\"spring\"};const getTextEffect=ref=>({effect:animation,target:{ref},threshold:.5,tokenization:\"word\",transition:transition1,trigger:\"onScrollTarget\",type:\"appear\"});const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition2={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"F1ao6GWvS\",Phone:\"J5StSZ72S\",Tablet:\"YjiRkivDw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"F1ao6GWvS\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"UAirDDXCB\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"xWRe5nbEX\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"F1ao6GWvS\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-87bb21ae-3184-4fb1-9bc8-d4e3b1fb32d9, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-elw38u\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12lp53z\",\"data-framer-name\":\"navbar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19jfbu2\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FMYvhwC7U\"},motionChild:true,nodeId:\"l_g9q3PUQ\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-nr1x13 framer-ew6xk8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(24),pixelHeight:1913,pixelWidth:1913,sizes:\"24px\",src:\"https://framerusercontent.com/images/13GBx4AbnJAEHYtA4XPGYBJgY.jpeg\",srcSet:\"https://framerusercontent.com/images/13GBx4AbnJAEHYtA4XPGYBJgY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/13GBx4AbnJAEHYtA4XPGYBJgY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/13GBx4AbnJAEHYtA4XPGYBJgY.jpeg 1913w\"},className:\"framer-1e215he\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Daniil\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Daniil Bondarenko\"})}),className:\"framer-dlvdrj\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yq4cco\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/dzzgnr/\",motionChild:true,nodeId:\"haPGaZsmk\",openInNewTab:true,scopeId:\"FMYvhwC7U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pjz1k7\",\"data-styles-preset\":\"YHn6SZ2ra\",children:\"linkedin\"})})})}),className:\"framer-s1l5oj\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hey@daniil.cc\",motionChild:true,nodeId:\"B4MDiaSqX\",openInNewTab:true,scopeId:\"FMYvhwC7U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pjz1k7\",\"data-styles-preset\":\"YHn6SZ2ra\",children:\"email\"})})})}),className:\"framer-7v0u43\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://x.com/dzzgnr\",motionChild:true,nodeId:\"UqDGalJpx\",openInNewTab:true,scopeId:\"FMYvhwC7U\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1pjz1k7\",\"data-styles-preset\":\"YHn6SZ2ra\",children:\"x.com\"})})})}),className:\"framer-1jwdwec\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wdk5ry\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x6mtvn\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hb2912\",\"data-framer-name\":\"hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vg6k5q\",\"data-framer-name\":\"title+subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TG9yYS1pdGFsaWM=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Designing interfaces\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TG9yYS1pdGFsaWM=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"for startups\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TG9yYS1pdGFsaWM=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"42px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Designing interfaces for startups\"})}),className:\"framer-19ofglp\",\"data-framer-name\":\"title\",fonts:[\"FS;Lora-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:[\"I\u2019m Daniil, a product designer based in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Warsaw\"}),\". I work with founders to transform big ideas into exceptional digital experiences that delight users and drive growth.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:[\"I\u2019m Daniil, a product designer based in \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Warsaw\"}),\". I work with founders to transform\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"big ideas into exceptional digital experiences that delight users and drive growth.\"})]}),className:\"framer-1ics78r\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1120895\",\"data-framer-name\":\"buttons\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xez05e-container\",nodeId:\"PWPvvbTQ0\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",hkN983ZPB:\"https://cal.com/dzzgnr/15min\",id:\"PWPvvbTQ0\",layoutId:\"PWPvvbTQ0\",r_eJXtEqk:\"schedule a call\",style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7spc2-container\",nodeId:\"IAlCreNSn\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(SecondaryButton,{Cwo23cSvS:\" https://wa.me/+380975790290\",erww65r1w:\"chat\",height:\"100%\",id:\"IAlCreNSn\",layoutId:\"IAlCreNSn\",qNBDP5atE:true,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r83p1l\",\"data-border\":true,\"data-framer-name\":\"video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w4zrt0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"w_0n29eGt\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"w_0n29eGt\",isMixedBorderRadius:false,layoutId:\"w_0n29eGt\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/WLLVpYcPTGDvoScCxOgQTHGCIdE.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/PkauhL24j9iuFzx1n2HsCVfz7NA.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__*/_jsxs(\"div\",{className:\"framer-ewfa5a\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:800,sizes:\"36px\",src:\"https://framerusercontent.com/images/CgXki7DWpSyXzn6HXrR1lOic.png\",srcSet:\"https://framerusercontent.com/images/CgXki7DWpSyXzn6HXrR1lOic.png?scale-down-to=512 512w,https://framerusercontent.com/images/CgXki7DWpSyXzn6HXrR1lOic.png 800w\"},className:\"framer-1mr1w42\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7z8h0\",\"data-framer-name\":\"title+subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"We are lucky we have Daniil at Unstoppable. Find a UX designer who loves your product and works well with your team. It is so challenging in crypto!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"We are lucky we have Daniil at Unstoppable. Find a UX designer who loves\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"your product and works well with your team. It is so challenging in crypto!\"})]}),className:\"framer-171r2vl\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Matthew Gould, Founder @ Unstoppable Domains\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Matthew Gould, Founder @ Unstoppable Domains\"})}),className:\"framer-4351fu\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uni2eh\",\"data-framer-name\":\"fab\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fj502y\",\"data-framer-name\":\"projects\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TG9yYS1pdGFsaWM=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Selected projects\"})}),className:\"framer-tualsg\",\"data-framer-name\":\"title\",fonts:[\"FS;Lora-italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9kur0o\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-akexbz\",\"data-framer-name\":\"label\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/vIghVynXPY3bR1qeKyAIPSwM4.webp\"},className:\"framer-3bcr5a\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Unstoppable Domains  \\xb7  Crypto Wallet\"})}),className:\"framer-ikak54\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rpe6d1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v9sw9x\",\"data-border\":true,\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vkzcxs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XjHjnkK0m\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"XjHjnkK0m\",image:addImageAlt({src:\"https://framerusercontent.com/images/2cSWqSXSbVGEzKPcqrIUBKVmoJo.webp\",srcSet:\"https://framerusercontent.com/images/2cSWqSXSbVGEzKPcqrIUBKVmoJo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2cSWqSXSbVGEzKPcqrIUBKVmoJo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/2cSWqSXSbVGEzKPcqrIUBKVmoJo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/2cSWqSXSbVGEzKPcqrIUBKVmoJo.webp 3600w\"},\"\"),layoutId:\"XjHjnkK0m\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14fh5fz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jf81iw\",\"data-border\":true,\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-131ldyu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kyTnTXGu7\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"kyTnTXGu7\",image:addImageAlt({src:\"https://framerusercontent.com/images/Wj6kop7qY3HNE0EnCph13F43mA.webp\",srcSet:\"https://framerusercontent.com/images/Wj6kop7qY3HNE0EnCph13F43mA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Wj6kop7qY3HNE0EnCph13F43mA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wj6kop7qY3HNE0EnCph13F43mA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Wj6kop7qY3HNE0EnCph13F43mA.webp 3050w\"},\"\"),layoutId:\"kyTnTXGu7\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-icrv9u\",\"data-border\":true,\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-slmw7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wQcaHtZyi\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"wQcaHtZyi\",image:addImageAlt({src:\"https://framerusercontent.com/images/bzb1R8OxlX2MoKg5ORDN8fz3MI.webp\",srcSet:\"https://framerusercontent.com/images/bzb1R8OxlX2MoKg5ORDN8fz3MI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bzb1R8OxlX2MoKg5ORDN8fz3MI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/bzb1R8OxlX2MoKg5ORDN8fz3MI.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/bzb1R8OxlX2MoKg5ORDN8fz3MI.webp 3050w\"},\"\"),layoutId:\"wQcaHtZyi\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-149pfqx\",\"data-border\":true,\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-790xal-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fM8e46q93\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"fM8e46q93\",image:addImageAlt({src:\"https://framerusercontent.com/images/cfmwOqao5VRP5Mc8uFaL5eFPBY.webp\",srcSet:\"https://framerusercontent.com/images/cfmwOqao5VRP5Mc8uFaL5eFPBY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cfmwOqao5VRP5Mc8uFaL5eFPBY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/cfmwOqao5VRP5Mc8uFaL5eFPBY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/cfmwOqao5VRP5Mc8uFaL5eFPBY.webp 4074w\"},\"\"),layoutId:\"fM8e46q93\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4kl3o\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z5c3k0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:\"\uD83E\uDD84\"})}),className:\"framer-1dg1kbw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b80uw\",\"data-framer-name\":\"title+subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Unstoppable Domains Raised $65 Million\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Series A at a $1 Billion Valuation\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Unstoppable Domains Raised $65 Million\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Series A at a $1 Billion Valuation\"})]}),className:\"framer-rh785v\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"One year after I joined the team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"One year after I joined the team\"})}),className:\"framer-i5zgbb\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xcyubf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sqeysj\",\"data-framer-name\":\"label\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/qkYGOED95s0bWXV1TDmAc6umVDg.webp\"},className:\"framer-w0kq9s\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Unstoppable Domains\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Unstoppable Domains  \\xb7  Domain Registrar\"})}),className:\"framer-359kfa\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wf7bh8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11swbm4\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wz4ofz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LoiSUOvXA\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"LoiSUOvXA\",image:addImageAlt({src:\"https://framerusercontent.com/images/4ho5aEAcORNg2JYWuvqPl3XytQM.webp\",srcSet:\"https://framerusercontent.com/images/4ho5aEAcORNg2JYWuvqPl3XytQM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/4ho5aEAcORNg2JYWuvqPl3XytQM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ho5aEAcORNg2JYWuvqPl3XytQM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/4ho5aEAcORNg2JYWuvqPl3XytQM.webp 2880w\"},\"\"),layoutId:\"LoiSUOvXA\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mbx55a\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x9q16h\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sk1ugh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"q9C3s2WY3\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"q9C3s2WY3\",image:addImageAlt({src:\"https://framerusercontent.com/images/nKBCHf3eV3WqS24ohVJstJcLYuI.webp\",srcSet:\"https://framerusercontent.com/images/nKBCHf3eV3WqS24ohVJstJcLYuI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nKBCHf3eV3WqS24ohVJstJcLYuI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/nKBCHf3eV3WqS24ohVJstJcLYuI.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/nKBCHf3eV3WqS24ohVJstJcLYuI.webp 2700w\"},\"\"),layoutId:\"q9C3s2WY3\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rmeg84\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-esdjdo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pZJIQrtob\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"pZJIQrtob\",image:addImageAlt({src:\"https://framerusercontent.com/images/cs8W20l048tXaPZO6joj9K4EeM.webp\",srcSet:\"https://framerusercontent.com/images/cs8W20l048tXaPZO6joj9K4EeM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cs8W20l048tXaPZO6joj9K4EeM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/cs8W20l048tXaPZO6joj9K4EeM.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/cs8W20l048tXaPZO6joj9K4EeM.webp 2700w\"},\"\"),layoutId:\"pZJIQrtob\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16js07f\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b9ra6f-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sGJ2vt7JN\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"sGJ2vt7JN\",image:addImageAlt({src:\"https://framerusercontent.com/images/WRh4MHyhPXTScEgravJuUVmS4xs.webp\",srcSet:\"https://framerusercontent.com/images/WRh4MHyhPXTScEgravJuUVmS4xs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/WRh4MHyhPXTScEgravJuUVmS4xs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/WRh4MHyhPXTScEgravJuUVmS4xs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/WRh4MHyhPXTScEgravJuUVmS4xs.webp 2880w\"},\"\"),layoutId:\"sGJ2vt7JN\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a24u20\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:800,sizes:\"36px\",src:\"https://framerusercontent.com/images/NH7bgmCh6MsID9JDwA6PafT6Po.png\",srcSet:\"https://framerusercontent.com/images/NH7bgmCh6MsID9JDwA6PafT6Po.png?scale-down-to=512 512w,https://framerusercontent.com/images/NH7bgmCh6MsID9JDwA6PafT6Po.png 800w\"},className:\"framer-19qcd40\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19cedo2\",\"data-framer-name\":\"title+subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Working with Daniil was an absolute pleasure, and without a doubt, the best designer I've had the pleasure to work with in my career.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Working with Daniil was an absolute pleasure, and without a doubt,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"the best designer I've had the pleasure to work with in my career.\"})]}),className:\"framer-uijk29\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Edward Nehamkin\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Edward Nehamkin\"})}),className:\"framer-bm4jnx\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ikbzbr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1urrtlo\",\"data-framer-name\":\"label\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/9nc983DtmsGCK2Iez0aEHC1gpzg.webp\"},className:\"framer-1shlsts\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Nonna  \\xb7  AI Recipes\"})}),className:\"framer-ynuhk6\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pdnjxo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16bt84c\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-26kflq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fHiyxiHLH\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"fHiyxiHLH\",image:addImageAlt({src:\"https://framerusercontent.com/images/C6T518HR5f2UQ4MmCHYtt7f5w.webp\",srcSet:\"https://framerusercontent.com/images/C6T518HR5f2UQ4MmCHYtt7f5w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/C6T518HR5f2UQ4MmCHYtt7f5w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/C6T518HR5f2UQ4MmCHYtt7f5w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/C6T518HR5f2UQ4MmCHYtt7f5w.webp 3600w\"},\"\"),layoutId:\"fHiyxiHLH\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"rgba(255, 255, 255, 0.8)\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tnsjd8\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4eazya-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MCinwQb4u\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"MCinwQb4u\",image:addImageAlt({src:\"https://framerusercontent.com/images/peGHCn0vC5xFyftaNiTICb4eD4.webp\",srcSet:\"https://framerusercontent.com/images/peGHCn0vC5xFyftaNiTICb4eD4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/peGHCn0vC5xFyftaNiTICb4eD4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/peGHCn0vC5xFyftaNiTICb4eD4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/peGHCn0vC5xFyftaNiTICb4eD4.webp 3600w\"},\"\"),layoutId:\"MCinwQb4u\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y9jve6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qujuj1\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o88u8y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZEPGHXOyQ\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"ZEPGHXOyQ\",image:addImageAlt({src:\"https://framerusercontent.com/images/QNoZgqEk5FrzOwCf2Otxy5Efs.webp\",srcSet:\"https://framerusercontent.com/images/QNoZgqEk5FrzOwCf2Otxy5Efs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/QNoZgqEk5FrzOwCf2Otxy5Efs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/QNoZgqEk5FrzOwCf2Otxy5Efs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/QNoZgqEk5FrzOwCf2Otxy5Efs.webp 3050w\"},\"\"),layoutId:\"ZEPGHXOyQ\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hpe0uo\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d8zf58-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rsw0bgNvo\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"rsw0bgNvo\",image:addImageAlt({src:\"https://framerusercontent.com/images/dugyOIsj8ZwfJIDrtfjwfzFEjo.webp\",srcSet:\"https://framerusercontent.com/images/dugyOIsj8ZwfJIDrtfjwfzFEjo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dugyOIsj8ZwfJIDrtfjwfzFEjo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/dugyOIsj8ZwfJIDrtfjwfzFEjo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/dugyOIsj8ZwfJIDrtfjwfzFEjo.webp 3050w\"},\"\"),layoutId:\"rsw0bgNvo\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1egcovb\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ps8wjz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iqH6CBAYt\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"iqH6CBAYt\",image:addImageAlt({src:\"https://framerusercontent.com/images/lHIbLnJrsSVSctb9vOBQhnKI.webp\",srcSet:\"https://framerusercontent.com/images/lHIbLnJrsSVSctb9vOBQhnKI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/lHIbLnJrsSVSctb9vOBQhnKI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/lHIbLnJrsSVSctb9vOBQhnKI.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/lHIbLnJrsSVSctb9vOBQhnKI.webp 3600w\"},\"\"),layoutId:\"iqH6CBAYt\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kgp8jk\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:800,sizes:\"36px\",src:\"https://framerusercontent.com/images/u5MsZoI9z98xCknCvP5PO1vFmw.png\",srcSet:\"https://framerusercontent.com/images/u5MsZoI9z98xCknCvP5PO1vFmw.png?scale-down-to=512 512w,https://framerusercontent.com/images/u5MsZoI9z98xCknCvP5PO1vFmw.png 800w\"},className:\"framer-10e9pkt\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1900i4s\",\"data-framer-name\":\"title+subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Daniil has an incredibly sharp eye with a meticulous attention to detail. He's thorough when it comes to delivery.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Daniil has an incredibly sharp eye with a meticulous attention\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"to detail. He's thorough when it comes to delivery.\"})]}),className:\"framer-1hs2csf\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Ally Hwang\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Ally Hwang\"})}),className:\"framer-14r247y\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1to34hw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j6f67q\",\"data-framer-name\":\"label\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/MF1XUPmTGJ4NKJfzhfB2qVe0w.png\"},className:\"framer-usbtda\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"nochat  \\xb7  AI Assistant\"})}),className:\"framer-19gefi6\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wbalk9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y9syvs\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a9s7wz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Gb0mMZZad\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"Gb0mMZZad\",image:addImageAlt({src:\"https://framerusercontent.com/images/SZruM8G6lGVLUir7w9nSPI0uUE.webp\",srcSet:\"https://framerusercontent.com/images/SZruM8G6lGVLUir7w9nSPI0uUE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SZruM8G6lGVLUir7w9nSPI0uUE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/SZruM8G6lGVLUir7w9nSPI0uUE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/SZruM8G6lGVLUir7w9nSPI0uUE.webp 3600w\"},\"\"),layoutId:\"Gb0mMZZad\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvrcr0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mab58v\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19i0w51-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SYc1r4Aui\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"SYc1r4Aui\",image:addImageAlt({src:\"https://framerusercontent.com/images/zod1syLCnX3YmtvMEY71TmDtQ.webp\",srcSet:\"https://framerusercontent.com/images/zod1syLCnX3YmtvMEY71TmDtQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/zod1syLCnX3YmtvMEY71TmDtQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/zod1syLCnX3YmtvMEY71TmDtQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/zod1syLCnX3YmtvMEY71TmDtQ.webp 2700w\"},\"\"),layoutId:\"SYc1r4Aui\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15wfh8q\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gppoex-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LLRXeA88w\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"LLRXeA88w\",image:addImageAlt({src:\"https://framerusercontent.com/images/y4IczeGUlByYFfjqG6fAHqx7akY.webp\",srcSet:\"https://framerusercontent.com/images/y4IczeGUlByYFfjqG6fAHqx7akY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/y4IczeGUlByYFfjqG6fAHqx7akY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/y4IczeGUlByYFfjqG6fAHqx7akY.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/y4IczeGUlByYFfjqG6fAHqx7akY.webp 2700w\"},\"\"),layoutId:\"LLRXeA88w\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xpio08\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lr6uhz\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5kjkjo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"us1eZnT5m\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"us1eZnT5m\",image:addImageAlt({src:\"https://framerusercontent.com/images/VOMQYn0aZ0EDSC6zh0S3UvZsQ.webp\",srcSet:\"https://framerusercontent.com/images/VOMQYn0aZ0EDSC6zh0S3UvZsQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VOMQYn0aZ0EDSC6zh0S3UvZsQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/VOMQYn0aZ0EDSC6zh0S3UvZsQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/VOMQYn0aZ0EDSC6zh0S3UvZsQ.webp 2700w\"},\"\"),layoutId:\"us1eZnT5m\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eto6s8\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bm7ktk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xm2rqWtc7\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"xm2rqWtc7\",image:addImageAlt({src:\"https://framerusercontent.com/images/rekqvSSAkCYM7r1gDihzkB414.webp\",srcSet:\"https://framerusercontent.com/images/rekqvSSAkCYM7r1gDihzkB414.webp?scale-down-to=512 512w,https://framerusercontent.com/images/rekqvSSAkCYM7r1gDihzkB414.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/rekqvSSAkCYM7r1gDihzkB414.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/rekqvSSAkCYM7r1gDihzkB414.webp 2700w\"},\"\"),layoutId:\"xm2rqWtc7\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jejlu4\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:520,pixelWidth:520,sizes:\"36px\",src:\"https://framerusercontent.com/images/3dZYPlaeIFeUrboDZTk1PelDU.jpg\",srcSet:\"https://framerusercontent.com/images/3dZYPlaeIFeUrboDZTk1PelDU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3dZYPlaeIFeUrboDZTk1PelDU.jpg 520w\"},className:\"framer-18n618e\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2y0lsp\",\"data-framer-name\":\"title+subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Working with Daniil has been an incredible experience, delivered on time, bold design with sleek micro interactions with even better documentation to ensure experience transition smoothly with development.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Working with Daniil has been an incredible experience, delivered on time,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\" good communication, bold design with sleek micro interactions with even better documentation to ensure experience transition smoothly with development.\"})]}),className:\"framer-1v3hlvm\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Jean Rengifo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Jean Rengifo\"})}),className:\"framer-1sao674\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0pjf7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o5wtdo\",\"data-framer-name\":\"label\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/Z1M2tWeQL5u4q9LB4WXAxcNskoA.png\"},className:\"framer-19u73f5\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Venta AI  \\xb7  AI Educator\"})}),className:\"framer-1y6y07x\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ij9iw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14exit\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f2ezbp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FNS0zuxIe\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"FNS0zuxIe\",image:addImageAlt({src:\"https://framerusercontent.com/images/Jo72n4nopITLWFvZBKVjJTRUUJE.webp\",srcSet:\"https://framerusercontent.com/images/Jo72n4nopITLWFvZBKVjJTRUUJE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Jo72n4nopITLWFvZBKVjJTRUUJE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jo72n4nopITLWFvZBKVjJTRUUJE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Jo72n4nopITLWFvZBKVjJTRUUJE.webp 3600w\"},\"\"),layoutId:\"FNS0zuxIe\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"rgba(255, 255, 255, 0.8)\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x21s73\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ptomru\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gcg1ai-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KQhqlAdUV\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"KQhqlAdUV\",image:addImageAlt({src:\"https://framerusercontent.com/images/DN759xav2zlDkdeTcf2CznZPsZ8.webp\",srcSet:\"https://framerusercontent.com/images/DN759xav2zlDkdeTcf2CznZPsZ8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/DN759xav2zlDkdeTcf2CznZPsZ8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/DN759xav2zlDkdeTcf2CznZPsZ8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/DN759xav2zlDkdeTcf2CznZPsZ8.webp 2700w\"},\"\"),layoutId:\"KQhqlAdUV\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12kxg9i\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wdw02o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DE3mxTCza\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"DE3mxTCza\",image:addImageAlt({src:\"https://framerusercontent.com/images/D7ndp5FW4LFHLvlsi0KnQB1QtGQ.webp\",srcSet:\"https://framerusercontent.com/images/D7ndp5FW4LFHLvlsi0KnQB1QtGQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/D7ndp5FW4LFHLvlsi0KnQB1QtGQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/D7ndp5FW4LFHLvlsi0KnQB1QtGQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/D7ndp5FW4LFHLvlsi0KnQB1QtGQ.webp 2700w\"},\"\"),layoutId:\"DE3mxTCza\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18zi4hl\",\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11tprgh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DTe3oDAJJ\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(Lightbox,{animateFromThumbnail:true,height:\"100%\",id:\"DTe3oDAJJ\",image:addImageAlt({src:\"https://framerusercontent.com/images/6zm1C14GeDsh91rSqqTcPisxQ.webp\",srcSet:\"https://framerusercontent.com/images/6zm1C14GeDsh91rSqqTcPisxQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/6zm1C14GeDsh91rSqqTcPisxQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/6zm1C14GeDsh91rSqqTcPisxQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/6zm1C14GeDsh91rSqqTcPisxQ.webp 3600w\"},\"\"),layoutId:\"DTe3oDAJJ\",style:{height:\"100%\",width:\"100%\"},styles:{bottomLeft:0,bottomRight:0,color:\"var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88))\",isMixedRadius:false,radius:0,shadows:\"\",topLeft:0,topRight:0,zIndex:6},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7siaup\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:800,sizes:\"36px\",src:\"https://framerusercontent.com/images/N9AD5JZDbPPWp1i3gR6RQvPknEE.png\",srcSet:\"https://framerusercontent.com/images/N9AD5JZDbPPWp1i3gR6RQvPknEE.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9AD5JZDbPPWp1i3gR6RQvPknEE.png 800w\"},className:\"framer-2mmsex\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15p5jqs\",\"data-framer-name\":\"title+subtitle\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"His ability to create visually appealing and user-friendly mobile interfaces sets him apart from others in the field.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"His ability to create visually appealing and user-friendly\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"mobile interfaces sets him apart from others in the field.\"})]}),className:\"framer-whn4sc\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Alex Zaitsev\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Alex Zaitsev\"})}),className:\"framer-1wppjgx\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17cwc0p\",\"data-framer-name\":\"expertise\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TG9yYS1pdGFsaWM=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Expertise\"})}),className:\"framer-1vm15o9\",\"data-framer-name\":\"title\",fonts:[\"FS;Lora-italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j2yl0e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b150hm\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-niog85\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Mobile App Design\"})}),className:\"framer-1ycxnx5\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lte0kn\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Landing Page\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Landing Page Design\"})}),className:\"framer-4xoch\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l3adv8\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Interactive Design\"})}),className:\"framer-1xoqwtm\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-138h57y\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Pit\u0441h Deck Design\"})}),className:\"framer-1w38wqq\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-98u7ze\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8in0mb\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Web App Design\"})}),className:\"framer-14juor2\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-syod2h\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Framer Website\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Website Development  \\xb7  Framer\"})}),className:\"framer-vz2k1e\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aluz0q\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Design Systems\"})}),className:\"framer-1bzgmi8\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tb1qtv\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"App Icon Design\"})}),className:\"framer-mmkdjx\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hhp4ml\",\"data-framer-name\":\"footer\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jxx2i1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J5StSZ72S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TG9yYS1pdGFsaWM=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Ready to bring your idea to life?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TG9yYS1pdGFsaWM=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"42px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bf4b796a-6c41-441f-acf1-84d2d4f30cb8, rgb(0, 0, 0))\"},children:\"Ready to bring your idea to life?\"})}),className:\"framer-1o283qp\",\"data-framer-name\":\"title\",effect:getTextEffect(ref2),fonts:[\"FS;Lora-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-22dbf445-b1c0-4ede-9cdd-e0e44a0a9b57, rgba(0, 0, 0, 0.56))\"},children:\"Now booking projects for March 25'\"})}),className:\"framer-wb394f\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aur7co\",\"data-framer-name\":\"buttons\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pxtiou-container\",nodeId:\"t1JYLbf7N\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",hkN983ZPB:\"https://cal.com/dzzgnr/15min\",id:\"t1JYLbf7N\",layoutId:\"t1JYLbf7N\",r_eJXtEqk:\"schedule a call\",style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tqrnd0-container\",nodeId:\"lKc_d9_BD\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(SecondaryButton,{Cwo23cSvS:\" https://wa.me/+380975790290\",erww65r1w:\"chat\",height:\"100%\",id:\"lKc_d9_BD\",layoutId:\"lKc_d9_BD\",qNBDP5atE:true,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ci787a\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-or0bv\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-aa729348-62f3-43b5-8892-f3a6ff0c0517, rgba(0, 0, 0, 0.32))\"},children:\"\\xa9 2025  \\xb7  Daniil Bondarenko\"})}),className:\"framer-ws639g\",\"data-framer-name\":\"subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u3r1nw\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:932,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ja3mm6-container\",nodeId:\"jZgIfzeU8\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",hkN983ZPB:\"https://cal.com/dzzgnr/15min\",id:\"jZgIfzeU8\",layoutId:\"jZgIfzeU8\",r_eJXtEqk:\"schedule a call\",style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:942,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v9bgi7-container\",nodeId:\"n9VRVNSgQ\",scopeId:\"FMYvhwC7U\",children:/*#__PURE__*/_jsx(SecondaryButton,{Cwo23cSvS:\" https://wa.me/+380975790290\",erww65r1w:\"chat\",height:\"100%\",id:\"n9VRVNSgQ\",layoutId:\"n9VRVNSgQ\",qNBDP5atE:true,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cW9RM.framer-ew6xk8, .framer-cW9RM .framer-ew6xk8 { display: block; }\",\".framer-cW9RM.framer-elw38u { align-content: center; align-items: center; background-color: var(--token-87bb21ae-3184-4fb1-9bc8-d4e3b1fb32d9, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-cW9RM .framer-12lp53z { -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: var(--token-1319e4e2-89af-4fa8-b3e2-327e56b49411, rgba(255, 255, 255, 0.88)); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 24px 0px 24px 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-cW9RM .framer-19jfbu2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 720px; }\",\".framer-cW9RM .framer-nr1x13 { 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; text-decoration: none; width: min-content; }\",\".framer-cW9RM .framer-1e215he { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cW9RM .framer-dlvdrj, .framer-cW9RM .framer-s1l5oj, .framer-cW9RM .framer-7v0u43, .framer-cW9RM .framer-1jwdwec { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cW9RM .framer-1yq4cco { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-cW9RM .framer-wdk5ry { 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: 720px; }\",\".framer-cW9RM .framer-x6mtvn, .framer-cW9RM .framer-1fj502y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1hb2912 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-vg6k5q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-19ofglp, .framer-cW9RM .framer-1ics78r, .framer-cW9RM .framer-171r2vl, .framer-cW9RM .framer-4351fu, .framer-cW9RM .framer-tualsg, .framer-cW9RM .framer-rh785v, .framer-cW9RM .framer-i5zgbb, .framer-cW9RM .framer-uijk29, .framer-cW9RM .framer-bm4jnx, .framer-cW9RM .framer-1hs2csf, .framer-cW9RM .framer-14r247y, .framer-cW9RM .framer-1v3hlvm, .framer-cW9RM .framer-1sao674, .framer-cW9RM .framer-whn4sc, .framer-cW9RM .framer-1wppjgx, .framer-cW9RM .framer-1vm15o9, .framer-cW9RM .framer-1ycxnx5, .framer-cW9RM .framer-4xoch, .framer-cW9RM .framer-1xoqwtm, .framer-cW9RM .framer-1w38wqq, .framer-cW9RM .framer-14juor2, .framer-cW9RM .framer-vz2k1e, .framer-cW9RM .framer-1bzgmi8, .framer-cW9RM .framer-mmkdjx, .framer-cW9RM .framer-1o283qp, .framer-cW9RM .framer-wb394f, .framer-cW9RM .framer-ws639g { --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-cW9RM .framer-1120895 { 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: hidden; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1xez05e-container, .framer-cW9RM .framer-1pxtiou-container, .framer-cW9RM .framer-1ja3mm6-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-cW9RM .framer-o7spc2-container, .framer-cW9RM .framer-1tqrnd0-container, .framer-cW9RM .framer-v9bgi7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-cW9RM .framer-r83p1l { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; flex: none; height: 424px; overflow: hidden; position: relative; width: 100%; }\",\".framer-cW9RM .framer-w4zrt0-container, .framer-cW9RM .framer-vkzcxs-container, .framer-cW9RM .framer-131ldyu-container, .framer-cW9RM .framer-slmw7-container, .framer-cW9RM .framer-790xal-container, .framer-cW9RM .framer-1wz4ofz-container, .framer-cW9RM .framer-sk1ugh-container, .framer-cW9RM .framer-esdjdo-container, .framer-cW9RM .framer-1b9ra6f-container, .framer-cW9RM .framer-26kflq-container, .framer-cW9RM .framer-4eazya-container, .framer-cW9RM .framer-1o88u8y-container, .framer-cW9RM .framer-d8zf58-container, .framer-cW9RM .framer-ps8wjz-container, .framer-cW9RM .framer-a9s7wz-container, .framer-cW9RM .framer-19i0w51-container, .framer-cW9RM .framer-gppoex-container, .framer-cW9RM .framer-5kjkjo-container, .framer-cW9RM .framer-bm7ktk-container, .framer-cW9RM .framer-f2ezbp-container, .framer-cW9RM .framer-gcg1ai-container, .framer-cW9RM .framer-wdw02o-container, .framer-cW9RM .framer-11tprgh-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-cW9RM .framer-ewfa5a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1mr1w42, .framer-cW9RM .framer-19qcd40, .framer-cW9RM .framer-10e9pkt, .framer-cW9RM .framer-2mmsex { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: hidden; position: relative; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cW9RM .framer-1f7z8h0, .framer-cW9RM .framer-1b80uw, .framer-cW9RM .framer-19cedo2, .framer-cW9RM .framer-1900i4s, .framer-cW9RM .framer-2y0lsp, .framer-cW9RM .framer-15p5jqs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1uni2eh { 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-cW9RM .framer-9kur0o, .framer-cW9RM .framer-1xcyubf, .framer-cW9RM .framer-ikbzbr, .framer-cW9RM .framer-1to34hw, .framer-cW9RM .framer-n0pjf7 { 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-cW9RM .framer-akexbz, .framer-cW9RM .framer-1sqeysj, .framer-cW9RM .framer-1urrtlo, .framer-cW9RM .framer-j6f67q, .framer-cW9RM .framer-1o5wtdo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-3bcr5a, .framer-cW9RM .framer-w0kq9s, .framer-cW9RM .framer-1shlsts, .framer-cW9RM .framer-usbtda, .framer-cW9RM .framer-19u73f5 { aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cW9RM .framer-ikak54, .framer-cW9RM .framer-359kfa, .framer-cW9RM .framer-ynuhk6, .framer-cW9RM .framer-19gefi6, .framer-cW9RM .framer-1y6y07x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cW9RM .framer-1rpe6d1 { align-content: center; align-items: center; background-color: #2e2e2e; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1v9sw9x, .framer-cW9RM .framer-149pfqx { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #3f3f3f; flex: none; height: 424px; overflow: hidden; position: relative; width: 100%; }\",\".framer-cW9RM .framer-14fh5fz, .framer-cW9RM .framer-mbx55a, .framer-cW9RM .framer-1y9jve6, .framer-cW9RM .framer-mvrcr0, .framer-cW9RM .framer-1xpio08, .framer-cW9RM .framer-1x21s73 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-jf81iw, .framer-cW9RM .framer-icrv9u { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; background-color: #3f3f3f; flex: 1 0 0px; height: 360px; overflow: hidden; position: relative; width: 1px; }\",\".framer-cW9RM .framer-1p4kl3o, .framer-cW9RM .framer-1a24u20, .framer-cW9RM .framer-1kgp8jk, .framer-cW9RM .framer-jejlu4, .framer-cW9RM .framer-7siaup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-z5c3k0 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-a28da255-1e9c-47ae-bc2c-03aaa97f3f4b, #f3f3f3); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 36px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cW9RM .framer-1dg1kbw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cW9RM .framer-wf7bh8, .framer-cW9RM .framer-pdnjxo, .framer-cW9RM .framer-wbalk9, .framer-cW9RM .framer-19ij9iw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-11swbm4, .framer-cW9RM .framer-16js07f { background-color: #f5f5f5; flex: none; height: 424px; overflow: hidden; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1x9q16h, .framer-cW9RM .framer-1rmeg84 { background-color: #f5f5f5; flex: 1 0 0px; height: 360px; overflow: hidden; position: relative; width: 1px; }\",\".framer-cW9RM .framer-16bt84c, .framer-cW9RM .framer-1tnsjd8, .framer-cW9RM .framer-1egcovb, .framer-cW9RM .framer-y9syvs, .framer-cW9RM .framer-14exit, .framer-cW9RM .framer-18zi4hl { background-color: #e7e7e7; flex: none; height: 424px; overflow: hidden; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1qujuj1, .framer-cW9RM .framer-1hpe0uo, .framer-cW9RM .framer-mab58v, .framer-cW9RM .framer-15wfh8q, .framer-cW9RM .framer-1lr6uhz, .framer-cW9RM .framer-eto6s8, .framer-cW9RM .framer-ptomru, .framer-cW9RM .framer-12kxg9i { background-color: #e7e7e7; flex: 1 0 0px; height: 360px; overflow: hidden; position: relative; width: 1px; }\",\".framer-cW9RM .framer-18n618e { --border-bottom-width: 1px; --border-color: var(--token-c23f4580-2123-4791-9ccd-dc0189cf7123, rgba(0, 0, 0, 0.04)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: hidden; position: relative; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-cW9RM .framer-17cwc0p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 72px 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1j2yl0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1b150hm, .framer-cW9RM .framer-98u7ze { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-cW9RM .framer-niog85, .framer-cW9RM .framer-lte0kn, .framer-cW9RM .framer-1l3adv8, .framer-cW9RM .framer-138h57y, .framer-cW9RM .framer-8in0mb, .framer-cW9RM .framer-syod2h, .framer-cW9RM .framer-aluz0q, .framer-cW9RM .framer-tb1qtv { background-color: var(--token-c23f4580-2123-4791-9ccd-dc0189cf7123, rgba(0, 0, 0, 0.04)); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-cW9RM .framer-1hhp4ml { align-content: center; align-items: center; background-color: var(--token-a28da255-1e9c-47ae-bc2c-03aaa97f3f4b, #f3f3f3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-jxx2i1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 720px; }\",\".framer-cW9RM .framer-aur7co { 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: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-cW9RM .framer-ci787a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; }\",\".framer-cW9RM .framer-or0bv { background-color: var(--token-c23f4580-2123-4791-9ccd-dc0189cf7123, rgba(0, 0, 0, 0.04)); flex: none; height: 1px; overflow: hidden; position: relative; width: 720px; }\",\".framer-cW9RM .framer-u3r1nw { align-content: center; align-items: center; background-color: var(--token-47791c88-7031-4396-91be-4b1c1b980e17, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 20px; box-shadow: 0px 0.48174984141951427px 1.252549587690737px -0.5px rgba(0, 0, 0, 0.08), 0px 1.8308266425947657px 4.760149270746391px -1px rgba(0, 0, 0, 0.09397), 0px 8px 20.8px -1.5px rgba(0, 0, 0, 0.168); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 24px 4px 4px; position: fixed; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cW9RM.framer-elw38u, .framer-cW9RM .framer-12lp53z, .framer-cW9RM .framer-19jfbu2, .framer-cW9RM .framer-nr1x13, .framer-cW9RM .framer-1yq4cco, .framer-cW9RM .framer-wdk5ry, .framer-cW9RM .framer-x6mtvn, .framer-cW9RM .framer-1hb2912, .framer-cW9RM .framer-vg6k5q, .framer-cW9RM .framer-1120895, .framer-cW9RM .framer-ewfa5a, .framer-cW9RM .framer-1f7z8h0, .framer-cW9RM .framer-1uni2eh, .framer-cW9RM .framer-1fj502y, .framer-cW9RM .framer-9kur0o, .framer-cW9RM .framer-akexbz, .framer-cW9RM .framer-1rpe6d1, .framer-cW9RM .framer-14fh5fz, .framer-cW9RM .framer-1p4kl3o, .framer-cW9RM .framer-z5c3k0, .framer-cW9RM .framer-1b80uw, .framer-cW9RM .framer-1xcyubf, .framer-cW9RM .framer-1sqeysj, .framer-cW9RM .framer-wf7bh8, .framer-cW9RM .framer-mbx55a, .framer-cW9RM .framer-1a24u20, .framer-cW9RM .framer-19cedo2, .framer-cW9RM .framer-ikbzbr, .framer-cW9RM .framer-1urrtlo, .framer-cW9RM .framer-pdnjxo, .framer-cW9RM .framer-1y9jve6, .framer-cW9RM .framer-1kgp8jk, .framer-cW9RM .framer-1900i4s, .framer-cW9RM .framer-1to34hw, .framer-cW9RM .framer-j6f67q, .framer-cW9RM .framer-wbalk9, .framer-cW9RM .framer-mvrcr0, .framer-cW9RM .framer-1xpio08, .framer-cW9RM .framer-jejlu4, .framer-cW9RM .framer-2y0lsp, .framer-cW9RM .framer-n0pjf7, .framer-cW9RM .framer-1o5wtdo, .framer-cW9RM .framer-19ij9iw, .framer-cW9RM .framer-1x21s73, .framer-cW9RM .framer-7siaup, .framer-cW9RM .framer-15p5jqs, .framer-cW9RM .framer-17cwc0p, .framer-cW9RM .framer-1j2yl0e, .framer-cW9RM .framer-1b150hm, .framer-cW9RM .framer-98u7ze, .framer-cW9RM .framer-1hhp4ml, .framer-cW9RM .framer-jxx2i1, .framer-cW9RM .framer-aur7co, .framer-cW9RM .framer-ci787a, .framer-cW9RM .framer-u3r1nw { gap: 0px; } .framer-cW9RM.framer-elw38u > *, .framer-cW9RM .framer-wdk5ry > *, .framer-cW9RM .framer-1uni2eh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cW9RM.framer-elw38u > :first-child, .framer-cW9RM .framer-wdk5ry > :first-child, .framer-cW9RM .framer-x6mtvn > :first-child, .framer-cW9RM .framer-1hb2912 > :first-child, .framer-cW9RM .framer-vg6k5q > :first-child, .framer-cW9RM .framer-ewfa5a > :first-child, .framer-cW9RM .framer-1f7z8h0 > :first-child, .framer-cW9RM .framer-1uni2eh > :first-child, .framer-cW9RM .framer-1fj502y > :first-child, .framer-cW9RM .framer-9kur0o > :first-child, .framer-cW9RM .framer-1rpe6d1 > :first-child, .framer-cW9RM .framer-1p4kl3o > :first-child, .framer-cW9RM .framer-1b80uw > :first-child, .framer-cW9RM .framer-1xcyubf > :first-child, .framer-cW9RM .framer-wf7bh8 > :first-child, .framer-cW9RM .framer-1a24u20 > :first-child, .framer-cW9RM .framer-19cedo2 > :first-child, .framer-cW9RM .framer-ikbzbr > :first-child, .framer-cW9RM .framer-pdnjxo > :first-child, .framer-cW9RM .framer-1kgp8jk > :first-child, .framer-cW9RM .framer-1900i4s > :first-child, .framer-cW9RM .framer-1to34hw > :first-child, .framer-cW9RM .framer-wbalk9 > :first-child, .framer-cW9RM .framer-jejlu4 > :first-child, .framer-cW9RM .framer-2y0lsp > :first-child, .framer-cW9RM .framer-n0pjf7 > :first-child, .framer-cW9RM .framer-19ij9iw > :first-child, .framer-cW9RM .framer-7siaup > :first-child, .framer-cW9RM .framer-15p5jqs > :first-child, .framer-cW9RM .framer-17cwc0p > :first-child, .framer-cW9RM .framer-1b150hm > :first-child, .framer-cW9RM .framer-98u7ze > :first-child, .framer-cW9RM .framer-1hhp4ml > :first-child, .framer-cW9RM .framer-jxx2i1 > :first-child, .framer-cW9RM .framer-ci787a > :first-child { margin-top: 0px; } .framer-cW9RM.framer-elw38u > :last-child, .framer-cW9RM .framer-wdk5ry > :last-child, .framer-cW9RM .framer-x6mtvn > :last-child, .framer-cW9RM .framer-1hb2912 > :last-child, .framer-cW9RM .framer-vg6k5q > :last-child, .framer-cW9RM .framer-ewfa5a > :last-child, .framer-cW9RM .framer-1f7z8h0 > :last-child, .framer-cW9RM .framer-1uni2eh > :last-child, .framer-cW9RM .framer-1fj502y > :last-child, .framer-cW9RM .framer-9kur0o > :last-child, .framer-cW9RM .framer-1rpe6d1 > :last-child, .framer-cW9RM .framer-1p4kl3o > :last-child, .framer-cW9RM .framer-1b80uw > :last-child, .framer-cW9RM .framer-1xcyubf > :last-child, .framer-cW9RM .framer-wf7bh8 > :last-child, .framer-cW9RM .framer-1a24u20 > :last-child, .framer-cW9RM .framer-19cedo2 > :last-child, .framer-cW9RM .framer-ikbzbr > :last-child, .framer-cW9RM .framer-pdnjxo > :last-child, .framer-cW9RM .framer-1kgp8jk > :last-child, .framer-cW9RM .framer-1900i4s > :last-child, .framer-cW9RM .framer-1to34hw > :last-child, .framer-cW9RM .framer-wbalk9 > :last-child, .framer-cW9RM .framer-jejlu4 > :last-child, .framer-cW9RM .framer-2y0lsp > :last-child, .framer-cW9RM .framer-n0pjf7 > :last-child, .framer-cW9RM .framer-19ij9iw > :last-child, .framer-cW9RM .framer-7siaup > :last-child, .framer-cW9RM .framer-15p5jqs > :last-child, .framer-cW9RM .framer-17cwc0p > :last-child, .framer-cW9RM .framer-1b150hm > :last-child, .framer-cW9RM .framer-98u7ze > :last-child, .framer-cW9RM .framer-1hhp4ml > :last-child, .framer-cW9RM .framer-jxx2i1 > :last-child, .framer-cW9RM .framer-ci787a > :last-child { margin-bottom: 0px; } .framer-cW9RM .framer-12lp53z > *, .framer-cW9RM .framer-nr1x13 > *, .framer-cW9RM .framer-akexbz > *, .framer-cW9RM .framer-1sqeysj > *, .framer-cW9RM .framer-1urrtlo > *, .framer-cW9RM .framer-j6f67q > *, .framer-cW9RM .framer-1o5wtdo > *, .framer-cW9RM .framer-u3r1nw > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-cW9RM .framer-12lp53z > :first-child, .framer-cW9RM .framer-19jfbu2 > :first-child, .framer-cW9RM .framer-nr1x13 > :first-child, .framer-cW9RM .framer-1yq4cco > :first-child, .framer-cW9RM .framer-1120895 > :first-child, .framer-cW9RM .framer-akexbz > :first-child, .framer-cW9RM .framer-14fh5fz > :first-child, .framer-cW9RM .framer-z5c3k0 > :first-child, .framer-cW9RM .framer-1sqeysj > :first-child, .framer-cW9RM .framer-mbx55a > :first-child, .framer-cW9RM .framer-1urrtlo > :first-child, .framer-cW9RM .framer-1y9jve6 > :first-child, .framer-cW9RM .framer-j6f67q > :first-child, .framer-cW9RM .framer-mvrcr0 > :first-child, .framer-cW9RM .framer-1xpio08 > :first-child, .framer-cW9RM .framer-1o5wtdo > :first-child, .framer-cW9RM .framer-1x21s73 > :first-child, .framer-cW9RM .framer-1j2yl0e > :first-child, .framer-cW9RM .framer-aur7co > :first-child, .framer-cW9RM .framer-u3r1nw > :first-child { margin-left: 0px; } .framer-cW9RM .framer-12lp53z > :last-child, .framer-cW9RM .framer-19jfbu2 > :last-child, .framer-cW9RM .framer-nr1x13 > :last-child, .framer-cW9RM .framer-1yq4cco > :last-child, .framer-cW9RM .framer-1120895 > :last-child, .framer-cW9RM .framer-akexbz > :last-child, .framer-cW9RM .framer-14fh5fz > :last-child, .framer-cW9RM .framer-z5c3k0 > :last-child, .framer-cW9RM .framer-1sqeysj > :last-child, .framer-cW9RM .framer-mbx55a > :last-child, .framer-cW9RM .framer-1urrtlo > :last-child, .framer-cW9RM .framer-1y9jve6 > :last-child, .framer-cW9RM .framer-j6f67q > :last-child, .framer-cW9RM .framer-mvrcr0 > :last-child, .framer-cW9RM .framer-1xpio08 > :last-child, .framer-cW9RM .framer-1o5wtdo > :last-child, .framer-cW9RM .framer-1x21s73 > :last-child, .framer-cW9RM .framer-1j2yl0e > :last-child, .framer-cW9RM .framer-aur7co > :last-child, .framer-cW9RM .framer-u3r1nw > :last-child { margin-right: 0px; } .framer-cW9RM .framer-19jfbu2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cW9RM .framer-1yq4cco > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-cW9RM .framer-x6mtvn > *, .framer-cW9RM .framer-1fj502y > *, .framer-cW9RM .framer-17cwc0p > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-cW9RM .framer-1hb2912 > *, .framer-cW9RM .framer-9kur0o > *, .framer-cW9RM .framer-1xcyubf > *, .framer-cW9RM .framer-ikbzbr > *, .framer-cW9RM .framer-1to34hw > *, .framer-cW9RM .framer-n0pjf7 > *, .framer-cW9RM .framer-ci787a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-cW9RM .framer-vg6k5q > *, .framer-cW9RM .framer-ewfa5a > *, .framer-cW9RM .framer-1p4kl3o > *, .framer-cW9RM .framer-1a24u20 > *, .framer-cW9RM .framer-1kgp8jk > *, .framer-cW9RM .framer-jejlu4 > *, .framer-cW9RM .framer-7siaup > *, .framer-cW9RM .framer-1b150hm > *, .framer-cW9RM .framer-98u7ze > *, .framer-cW9RM .framer-jxx2i1 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-cW9RM .framer-1120895 > *, .framer-cW9RM .framer-1j2yl0e > *, .framer-cW9RM .framer-aur7co > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-cW9RM .framer-1f7z8h0 > *, .framer-cW9RM .framer-1b80uw > *, .framer-cW9RM .framer-19cedo2 > *, .framer-cW9RM .framer-1900i4s > *, .framer-cW9RM .framer-2y0lsp > *, .framer-cW9RM .framer-15p5jqs > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-cW9RM .framer-1rpe6d1 > *, .framer-cW9RM .framer-wf7bh8 > *, .framer-cW9RM .framer-pdnjxo > *, .framer-cW9RM .framer-wbalk9 > *, .framer-cW9RM .framer-19ij9iw > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-cW9RM .framer-14fh5fz > *, .framer-cW9RM .framer-mbx55a > *, .framer-cW9RM .framer-1y9jve6 > *, .framer-cW9RM .framer-mvrcr0 > *, .framer-cW9RM .framer-1xpio08 > *, .framer-cW9RM .framer-1x21s73 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-cW9RM .framer-z5c3k0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cW9RM .framer-1hhp4ml > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } }\",...sharedStyle.css,'.framer-cW9RM[data-border=\"true\"]::after, .framer-cW9RM [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: 1199px) { .framer-cW9RM.framer-elw38u { width: 810px; }}\",\"@media (max-width: 809px) { .framer-cW9RM.framer-elw38u { width: 390px; } .framer-cW9RM .framer-12lp53z { padding: 24px 20px 24px 20px; } .framer-cW9RM .framer-19jfbu2 { flex: 1 0 0px; width: 1px; } .framer-cW9RM .framer-1yq4cco { gap: 24px; } .framer-cW9RM .framer-wdk5ry, .framer-cW9RM .framer-jxx2i1, .framer-cW9RM .framer-ci787a { width: 100%; } .framer-cW9RM .framer-x6mtvn, .framer-cW9RM .framer-1fj502y { padding: 72px 20px 0px 20px; } .framer-cW9RM .framer-r83p1l { aspect-ratio: 1.6990291262135921 / 1; height: var(--framer-aspect-ratio-supported, 206px); } .framer-cW9RM .framer-ewfa5a { align-content: flex-start; align-items: flex-start; padding: 48px 16px 48px 20px; } .framer-cW9RM .framer-1v9sw9x, .framer-cW9RM .framer-149pfqx, .framer-cW9RM .framer-11swbm4, .framer-cW9RM .framer-16js07f, .framer-cW9RM .framer-16bt84c, .framer-cW9RM .framer-1tnsjd8, .framer-cW9RM .framer-1egcovb, .framer-cW9RM .framer-y9syvs, .framer-cW9RM .framer-14exit, .framer-cW9RM .framer-18zi4hl { aspect-ratio: 1.6826923076923077 / 1; height: var(--framer-aspect-ratio-supported, 208px); } .framer-cW9RM .framer-jf81iw, .framer-cW9RM .framer-icrv9u, .framer-cW9RM .framer-1x9q16h, .framer-cW9RM .framer-1rmeg84, .framer-cW9RM .framer-1qujuj1, .framer-cW9RM .framer-1hpe0uo, .framer-cW9RM .framer-mab58v, .framer-cW9RM .framer-15wfh8q, .framer-cW9RM .framer-1lr6uhz, .framer-cW9RM .framer-eto6s8, .framer-cW9RM .framer-ptomru, .framer-cW9RM .framer-12kxg9i { aspect-ratio: 1.005813953488372 / 1; height: var(--framer-aspect-ratio-supported, 172px); } .framer-cW9RM .framer-1p4kl3o, .framer-cW9RM .framer-1a24u20, .framer-cW9RM .framer-1kgp8jk, .framer-cW9RM .framer-jejlu4, .framer-cW9RM .framer-7siaup { align-content: flex-start; align-items: flex-start; padding: 0px 16px 48px 0px; } .framer-cW9RM .framer-17cwc0p { padding: 120px 20px 72px 20px; } .framer-cW9RM .framer-1hhp4ml { padding: 72px 20px 24px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cW9RM .framer-1yq4cco { gap: 0px; } .framer-cW9RM .framer-1yq4cco > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-cW9RM .framer-1yq4cco > :first-child { margin-left: 0px; } .framer-cW9RM .framer-1yq4cco > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10208\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YjiRkivDw\":{\"layout\":[\"fixed\",\"auto\"]},\"J5StSZ72S\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"UAirDDXCB\":{\"pattern\":\":UAirDDXCB\",\"name\":\"fab\"},\"xWRe5nbEX\":{\"pattern\":\":xWRe5nbEX\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerFMYvhwC7U=withCSS(Component,css,\"framer-cW9RM\");export default FramerFMYvhwC7U;FramerFMYvhwC7U.displayName=\"Home\";FramerFMYvhwC7U.defaultProps={height:10208,width:1200};addFonts(FramerFMYvhwC7U,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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:\"Lora\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TKLVZDTQCUHIWAN3QIZGCNX4HOOUXHFA/JM2JUOZH27EVDC6FKNUOYGZ3IADBKMM3/DJA2WADOVWLNFBBL4PE4KM6NGVIOXNBS.woff2\",weight:\"400\"}]},...PrimaryButtonFonts,...SecondaryButtonFonts,...VideoFonts,...LightboxFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFMYvhwC7U\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YjiRkivDw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J5StSZ72S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"UAirDDXCB\\\":{\\\"pattern\\\":\\\":UAirDDXCB\\\",\\\"name\\\":\\\"fab\\\"},\\\"xWRe5nbEX\\\":{\\\"pattern\\\":\\\":xWRe5nbEX\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicHeight\":\"10208\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Lightbox", "image", "style", "styles", "transition", "isMixedRadius", "animateFromThumbnail", "radiusValue", "lightboxState", "setLightboxState", "ye", "thumbnailRef", "pe", "portalDiv", "setPortalDiv", "toggleLightbox", "te", "prevState", "newIsOpen", "ue", "img", "prev", "window", "div", "handleKeyDown", "event", "imageStyle", "se", "overlayStyle", "imageAnimation", "u", "l", "p", "motion", "Ga", "AnimatePresence", "addPropertyControls", "ControlType", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "SVG", "css", "Framerh3OC0z7Sg", "withCSS", "h3OC0z7Sg_default", "addPropertyControls", "ControlType", "addFonts", "Icon20Fonts", "getFonts", "h3OC0z7Sg_default", "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", "label", "link", "showIcon", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Cwo23cSvS", "erww65r1w", "qNBDP5atE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1a8dulf", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerMEvhPZcX8", "withCSS", "MEvhPZcX8_default", "addPropertyControls", "ControlType", "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", "label", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hkN983ZPB", "r_eJXtEqk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "FramerVE2nr639E", "withCSS", "VE2nr639E_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "PrimaryButtonFonts", "getFonts", "VE2nr639E_default", "SecondaryButtonFonts", "MEvhPZcX8_default", "VideoFonts", "Video", "LightboxFonts", "Lightbox", "MotionDivWithFX", "withFX", "motion", "breakpoints", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "animation", "transition1", "getTextEffect", "ref", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Link", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "x", "RichText2", "ComponentViewportProvider", "Container", "VE2nr639E_default", "MEvhPZcX8_default", "Video", "Lightbox", "MotionDivWithFX", "css", "FramerFMYvhwC7U", "withCSS", "FMYvhwC7U_default", "addFonts", "PrimaryButtonFonts", "SecondaryButtonFonts", "VideoFonts", "LightboxFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
