{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.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/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/bx5bPAfKcfM8xpIgM1L0/4LlnmynbkCcqCq5aMOwc/pdJaT6lnS.js", "ssg:https://framerusercontent.com/modules/4VHWDFh4D7ES1nVTmthj/yLah99o8KW8NvyyPS1i9/KjBGXFn33.js", "ssg:https://framerusercontent.com/modules/AmMcJCJ2OVjxYzt7x0fr/zQIM1odUVdYQUrnyKJ4K/twpNbRFPm.js", "ssg:https://framerusercontent.com/modules/dQytDsa1fRrIZxqOHfGy/8ysFaPaFFovK0xoImohW/DB8DZifvW.js", "ssg:https://framerusercontent.com/modules/hrSJX1SJvaUpNQCKDZgG/hS5AaIOPblrsHTBov8Wk/wM4RpiIP3.js", "ssg:https://framerusercontent.com/modules/mpgpWvu9W8Ph9OjfwuKN/lsOOV5MXSXGFJHAfFsEU/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,Color}from\"framer\";import{motion}from\"framer-motion\";/**\n * PATTERN\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Pattern(props){const{patternType,front,back,radius,scale,shouldAnimate,direction,diagonal,duration}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;let pattern;let position;let size;let repeat;let blendMode;let filter;let addBackground;let backgroundPosAnimation;const frontHex=Color.toHexString(Color(front));const backHex=Color.toHexString(Color(back));const frontWithoutHex=frontHex.replace(\"#\",\"\");const backWithoutHex=backHex.replace(\"#\",\"\");const factor=direction===\"left\"||direction===\"top\"?-1:1;const xScale=direction===\"left\"||direction===\"right\"?factor*scale:0;const yScale=direction===\"top\"||direction===\"bottom\"?factor*scale:0;if(patternType===\"wave\"){pattern=`radial-gradient(circle at center center, ${front}, ${back}), repeating-radial-gradient(circle at center center, ${front}, ${front}, ${scale}px, transparent ${scale*2}px, transparent ${scale}px)`;blendMode=\"multiply\";}if(patternType===\"zigzag\"){pattern=`linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;position=`${scale}px 0, ${scale}px 0, 0 0, 0 0`;size=`${scale*2}px ${scale*2}px`;repeat=`repeat`;}if(patternType===\"diagonal\"){pattern=`repeating-linear-gradient(45deg, ${front}, ${front} ${scale/2}px, ${back} ${scale/2}px, ${back} ${scale*2}px )`;}if(patternType===\"diagonal-two\"){pattern=`repeating-linear-gradient( 135deg, ${front}, ${front} ${scale/2}px, ${back} ${scale/2}px, ${back} ${scale*2}px )`;}if(patternType===\"blocks\"){pattern=`linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(30deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(150deg, ${front} 12%, transparent 12.5%, transparent 87%, ${front} 87.5%, ${front}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back}), linear-gradient(60deg, ${back} 25%, transparent 25.5%, transparent 75%, ${back} 75%, ${back})`;size=`${scale*8}px ${scale*14}px`;position=`0 0, 0 0, ${scale*4}px ${scale*7}px, ${scale*4}px ${scale*7}px, 0 0, ${scale*4}px ${scale*7}px`;}if(patternType===\"polka\"){pattern=`radial-gradient(${front} 1px, transparent 1px), radial-gradient(${front} 1px, ${back} 1px)`;size=`${scale*2}px ${scale*2}px`;position=`0 0, ${scale}px ${scale}px`;}if(patternType===\"rhombus\"){pattern=`linear-gradient(135deg, ${front} 25%, transparent 25%), linear-gradient(225deg, ${front} 25%, transparent 25%), linear-gradient(45deg, ${front} 25%, transparent 25%), linear-gradient(315deg, ${front} 25%, ${back} 25%)`;position=`${scale}px 0, ${scale}px 0, 0 0, 0 0`;size=`${scale}px ${scale}px`;repeat=\"repeat\";}if(patternType===\"stars\"){pattern=`radial-gradient(ellipse ${scale}px ${scale}px, ${front}, ${front} 25%, ${back} 25%)`;size=`${scale/2}px ${scale/2}px`;if(shouldAnimate){backgroundPosAnimation=`${xScale}px ${yScale}px`;}}if(patternType===\"circles\"){pattern=`radial-gradient(circle at 100% 50%, ${back} 20%, ${front} 21%, ${front} 34%, transparent 35%, transparent), radial-gradient(circle at 0% 50%, ${back} 20%, ${front} 21%, ${front} 34%, ${back} 35%, ${back})`;size=`${scale*2}px ${scale*2}px`;}if(patternType===\"rectangles\"){pattern=`repeating-linear-gradient(45deg, ${front} 25%, transparent 25%, transparent 75%, ${front} 75%, ${front}), repeating-linear-gradient(45deg, ${front} 25%, ${back} 25%, ${back} 75%, ${front} 75%, ${front})`;position=`0 0, ${scale}px ${scale}px`;size=`${scale*2}px ${scale*2}px`;}if(patternType===\"lines\"){pattern=`linear-gradient(0deg, ${front} 50%, ${back} 50%)`;size=`${scale}px ${scale}px`;}if(patternType===\"lines-vertical\"){pattern=`linear-gradient(to right, ${front} 50%, ${back} 50%)`;size=`${scale}px ${scale}px`;}if(patternType===\"paper\"){pattern=`linear-gradient(${front} 2px, transparent 2px), linear-gradient(90deg, ${front} 2px, transparent 2px), linear-gradient(${front} 1px, transparent 1px), linear-gradient(90deg, ${front} 1px, ${back} 1px)`;size=`${scale*5}px ${scale*5}px, ${scale*5}px ${scale*5}px, ${scale}px ${scale}px, ${scale}px ${scale}px`;position=`-2px -2px, -2px -2px, -1px -1px, -1px -1px`;}if(patternType===\"crosses\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' %3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;size=`${scale*4}px ${scale*4}px`;addBackground=back;}if(patternType===\"wave-lines\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;size=`${scale*10}px ${scale*2}px`;addBackground=back;if(shouldAnimate){backgroundPosAnimation=`${xScale*10}px ${yScale*2}px`;}}if(patternType===\"clouds\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='28'%3E%3Cpath fill='%23${frontWithoutHex}' d='M56 26v2h-7.75c2.3-1.27 4.94-2 7.75-2zm-26 2a2 2 0 1 0-4 0h-4.09A25.98 25.98 0 0 0 0 16v-2c.67 0 1.34.02 2 .07V14a2 2 0 0 0-2-2v-2a4 4 0 0 1 3.98 3.6 28.09 28.09 0 0 1 2.8-3.86A8 8 0 0 0 0 6V4a9.99 9.99 0 0 1 8.17 4.23c.94-.95 1.96-1.83 3.03-2.63A13.98 13.98 0 0 0 0 0h7.75c2 1.1 3.73 2.63 5.1 4.45 1.12-.72 2.3-1.37 3.53-1.93A20.1 20.1 0 0 0 14.28 0h2.7c.45.56.88 1.14 1.29 1.74 1.3-.48 2.63-.87 4-1.15-.11-.2-.23-.4-.36-.59H26v.07a28.4 28.4 0 0 1 4 0V0h4.09l-.37.59c1.38.28 2.72.67 4.01 1.15.4-.6.84-1.18 1.3-1.74h2.69a20.1 20.1 0 0 0-2.1 2.52c1.23.56 2.41 1.2 3.54 1.93A16.08 16.08 0 0 1 48.25 0H56c-4.58 0-8.65 2.2-11.2 5.6 1.07.8 2.09 1.68 3.03 2.63A9.99 9.99 0 0 1 56 4v2a8 8 0 0 0-6.77 3.74c1.03 1.2 1.97 2.5 2.79 3.86A4 4 0 0 1 56 10v2a2 2 0 0 0-2 2.07 28.4 28.4 0 0 1 2-.07v2c-9.2 0-17.3 4.78-21.91 12H30zM7.75 28H0v-2c2.81 0 5.46.73 7.75 2zM56 20v2c-5.6 0-10.65 2.3-14.28 6h-2.7c4.04-4.89 10.15-8 16.98-8zm-39.03 8h-2.69C10.65 24.3 5.6 22 0 22v-2c6.83 0 12.94 3.11 16.97 8zm15.01-.4a28.09 28.09 0 0 1 2.8-3.86 8 8 0 0 0-13.55 0c1.03 1.2 1.97 2.5 2.79 3.86a4 4 0 0 1 7.96 0zm14.29-11.86c1.3-.48 2.63-.87 4-1.15a25.99 25.99 0 0 0-44.55 0c1.38.28 2.72.67 4.01 1.15a21.98 21.98 0 0 1 36.54 0zm-5.43 2.71c1.13-.72 2.3-1.37 3.54-1.93a19.98 19.98 0 0 0-32.76 0c1.23.56 2.41 1.2 3.54 1.93a15.98 15.98 0 0 1 25.68 0zm-4.67 3.78c.94-.95 1.96-1.83 3.03-2.63a13.98 13.98 0 0 0-22.4 0c1.07.8 2.09 1.68 3.03 2.63a9.99 9.99 0 0 1 16.34 0z'%3E%3C/path%3E%3C/svg%3E\")`;size=`${scale*5.6}px ${scale*2.8}px`;addBackground=back;if(shouldAnimate){backgroundPosAnimation=`${xScale*5.6}px ${yScale*2.8}px`;}}if(patternType===\"stars-two\"){pattern=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath fill='%23${frontWithoutHex}' d='m16 8.764 2.351 4.764 5.257.764L19.804 18l.898 5.236L16 20.764l-4.702 2.472.898-5.236-3.804-3.708 5.257-.764Z'%3E%3C/path%3E%3C/svg%3E\")`;size=`${scale*3.2}px ${scale*3.2}px`;addBackground=back;}if(patternType===\"wiggle\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*5.2}px ${scale*2.6}px`;if(shouldAnimate){if(diagonal){backgroundPosAnimation=`-${scale*5.2}px -${scale*5.2}px`;}else{backgroundPosAnimation=`${scale*5.2}px ${scale*5.2}px`;}}}if(patternType===\"groovy\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='24' height='40' viewBox='0 0 24 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0C4.477 0 0 4.477 0 10v30zm22 0c-5.523 0-10-4.477-10-10V0c5.523 0 10 4.477 10 10v30z' fill='%23${frontWithoutHex}' fill-rule='evenodd'/%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*2.4}px ${scale*4}px`;if(shouldAnimate){backgroundPosAnimation=`${xScale*2.4}px ${yScale*4}px`;}}if(patternType===\"plus\"){pattern=`url(\"data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23${frontWithoutHex}' %3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`;addBackground=back;size=`${scale*6}px ${scale*6}px`;}return /*#__PURE__*/ _jsx(motion.div,{style:{width:\"100%\",height:\"100%\",backgroundColor:addBackground?addBackground:\"transparent\",backgroundImage:pattern,backgroundPosition:position,backgroundSize:size,backgroundRepeat:repeat,backgroundBlendMode:blendMode,borderRadius:radius,filter:filter},animate:shouldAnimate&&{backgroundPosition:backgroundPosAnimation},transition:{type:\"tween\",ease:\"linear\",duration:duration,repeat:Infinity,repeatType:\"loop\"}});};Pattern.displayName=\"Pattern\";/* Property Controls */ addPropertyControls(Pattern,{patternType:{type:ControlType.Enum,defaultValue:\"wave-lines\",options:[\"wave-lines\",\"clouds\",\"wiggle\",\"groovy\",\"plus\",\"circles\",\"rectangles\",\"lines\",\"lines-vertical\",\"diagonal\",\"diagonal-two\",\"blocks\",\"wave\",\"zigzag\",\"polka\",\"rhombus\",\"stars\",\"stars-two\",\"paper\",\"crosses\",],optionTitles:[\"Wave Lines\",\"Clouds\",\"Wiggle\",\"Groovy\",\"Plus\",\"Circles\",\"Rectangles\",\"Lines\",\"Lines Vertical\",\"Diagonal\",\"Diagonal 2\",\"Blocks\",\"Wave\",\"ZigZag\",\"Polka\",\"Rhombus\",\"Stars\",\"Stars 2\",\"Paper\",\"Crosses\",],title:\"Type\"},front:{type:ControlType.Color,title:\"Front\",defaultValue:\"#FFF\"},back:{type:ControlType.Color,title:\"Back\",defaultValue:\"#2DD\"},scale:{type:ControlType.Number,min:1,max:100,step:1,defaultValue:10},radius:{type:ControlType.Number,min:0,max:100,step:1,defaultValue:0},shouldAnimate:{type:ControlType.Boolean,title:\"Animate\",defaultValue:false,hidden(props){return props.patternType!==\"wave-lines\"&&props.patternType!==\"wiggle\"&&props.patternType!==\"clouds\"&&props.patternType!==\"stars\"&&props.patternType!==\"groovy\";}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true,hidden(props){return props.patternType===\"wiggle\"||props.shouldAnimate===false;}},diagonal:{type:ControlType.Boolean,title:\"Direction\",defaultValue:true,enabledTitle:\"TL\",disabledTitle:\"BR\",hidden(props){return props.patternType!==\"wiggle\";}},duration:{type:ControlType.Number,min:0,max:50,step:.1,defaultValue:5,hidden(props){return props.shouldAnimate===false;}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Pattern\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pattern.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,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{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={}));// 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 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;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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\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!==null&&volume!==void 0?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!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"kScFdVGrs\",\"aStnsqmeV\"];const serializationHash=\"framer-T6wtq\";const variantClassNames={aStnsqmeV:\"framer-v-4smv1w\",kScFdVGrs:\"framer-v-1gqo3px\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={duration:0,type:\"tween\"};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Image:\"kScFdVGrs\",Video:\"aStnsqmeV\"};const getProps=({height,id,image,poster,radius,video,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,hkER3s2E3:(_ref=image!==null&&image!==void 0?image:props.hkER3s2E3)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/wTL9zWV9XLzFQ6wMMu3bnWXjQ.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wTL9zWV9XLzFQ6wMMu3bnWXjQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/wTL9zWV9XLzFQ6wMMu3bnWXjQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/wTL9zWV9XLzFQ6wMMu3bnWXjQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/wTL9zWV9XLzFQ6wMMu3bnWXjQ.jpg 3264w\"},PXGsCbtVD:(_ref1=radius!==null&&radius!==void 0?radius:props.PXGsCbtVD)!==null&&_ref1!==void 0?_ref1:\"36px\",UXLq1sxOJ:(_ref2=video!==null&&video!==void 0?video:props.UXLq1sxOJ)!==null&&_ref2!==void 0?_ref2:\"https://framerusercontent.com/assets/T5aW7Ers3wOpsq7NmDm81E3to4.mp4\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"kScFdVGrs\",w02mljpJa:(_ref4=poster!==null&&poster!==void 0?poster:props.w02mljpJa)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/IR61l2y0LCE32OcyYdpe7JHBT5w.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IR61l2y0LCE32OcyYdpe7JHBT5w.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/IR61l2y0LCE32OcyYdpe7JHBT5w.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/IR61l2y0LCE32OcyYdpe7JHBT5w.jpg 1728w\"}};};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,hkER3s2E3,UXLq1sxOJ,w02mljpJa,PXGsCbtVD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kScFdVGrs\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"aStnsqmeV\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:1456,pixelWidth:816,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(hkER3s2E3)},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1gqo3px\",className,classNames),\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kScFdVGrs\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:radiusForCorner(PXGsCbtVD,3),borderBottomRightRadius:radiusForCorner(PXGsCbtVD,2),borderTopLeftRadius:radiusForCorner(PXGsCbtVD,0),borderTopRightRadius:radiusForCorner(PXGsCbtVD,1),...style},...addPropertyOverrides({aStnsqmeV:{\"data-framer-name\":\"Video\",background:{alt:\"\",positionX:\"center\",positionY:\"center\"}}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ip6l6d-container\",\"data-framer-name\":\"Video Content\",layoutDependency:layoutDependency,layoutId:\"twezzUwrS-container\",name:\"Video Content\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"twezzUwrS\",isMixedBorderRadius:false,layoutId:\"twezzUwrS\",loop:true,muted:true,name:\"Video Content\",objectFit:\"cover\",playing:true,poster:toImageSrc(w02mljpJa),posterEnabled:false,srcFile:UXLq1sxOJ,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T6wtq.framer-1z0ewt2, .framer-T6wtq .framer-1z0ewt2 { display: block; }\",\".framer-T6wtq.framer-1gqo3px { height: 724px; overflow: hidden; position: relative; width: 334px; will-change: var(--framer-will-change-override, transform); }\",\".framer-T6wtq .framer-1ip6l6d-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 724\n * @framerIntrinsicWidth 334\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"aStnsqmeV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hkER3s2E3\":\"image\",\"UXLq1sxOJ\":\"video\",\"w02mljpJa\":\"poster\",\"PXGsCbtVD\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpdJaT6lnS=withCSS(Component,css,\"framer-T6wtq\");export default FramerpdJaT6lnS;FramerpdJaT6lnS.displayName=\"Phone mockup/Screen Content\";FramerpdJaT6lnS.defaultProps={height:724,width:334};addPropertyControls(FramerpdJaT6lnS,{variant:{options:[\"kScFdVGrs\",\"aStnsqmeV\"],optionTitles:[\"Image\",\"Video\"],title:\"Variant\",type:ControlType.Enum},hkER3s2E3:{__defaultAssetReference:\"data:framer/asset-reference,wTL9zWV9XLzFQ6wMMu3bnWXjQ.jpg?originalFilename=photo-1520262494112-9fe481d36ec3%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxOXx8bWluaW1hbHxlbnwwfHx8fDE3MjIzMjM4Mjh8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},UXLq1sxOJ:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,T5aW7Ers3wOpsq7NmDm81E3to4.mp4?originalFilename=video.mp4\",description:undefined,hidden:undefined,title:\"Video\"},w02mljpJa:{__defaultAssetReference:\"data:framer/asset-reference,IR61l2y0LCE32OcyYdpe7JHBT5w.jpg?originalFilename=photo-1518676590629-3dcbd9c5a5c9%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzN3x8bWluaW1hbCUyMHZpZGVvfGVufDB8fHx8MTcyMjMzMTc5Nnww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Poster\",type:ControlType.ResponsiveImage},PXGsCbtVD:{defaultValue:\"36px\",title:\"Radius\",type:ControlType.BorderRadius}});addFonts(FramerpdJaT6lnS,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpdJaT6lnS\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"hkER3s2E3\\\":\\\"image\\\",\\\"UXLq1sxOJ\\\":\\\"video\\\",\\\"w02mljpJa\\\":\\\"poster\\\",\\\"PXGsCbtVD\\\":\\\"radius\\\"}\",\"framerIntrinsicHeight\":\"724\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"334\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aStnsqmeV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pdJaT6lnS.map", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import PhoneMockupScreenContent from\"https://framerusercontent.com/modules/bx5bPAfKcfM8xpIgM1L0/4LlnmynbkCcqCq5aMOwc/pdJaT6lnS.js\";const PhoneMockupScreenContentFonts=getFonts(PhoneMockupScreenContent);const PhoneMockupScreenContentControls=getPropertyControls(PhoneMockupScreenContent);const cycleOrder=[\"jq6olr6y5\",\"hTJs_GWRF\",\"hCRxOkDBJ\"];const serializationHash=\"framer-0aYlW\";const variantClassNames={hCRxOkDBJ:\"framer-v-mszm0p\",hTJs_GWRF:\"framer-v-t850n4\",jq6olr6y5:\"framer-v-1fooypa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const negate=value=>{return!value;};const transition2={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Image:\"kScFdVGrs\",Video:\"aStnsqmeV\"};const humanReadableVariantMap={\"Facing Left\":\"hTJs_GWRF\",\"Facing Right\":\"hCRxOkDBJ\",Front:\"jq6olr6y5\"};const getProps=({height,id,image,notch,screenContent,video,videoPoster,width,...props})=>{var _humanReadableEnumMap_screenContent,_ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,n02YmShp2:image!==null&&image!==void 0?image:props.n02YmShp2,P5gjcV5ym:(_ref1=(_ref=(_humanReadableEnumMap_screenContent=humanReadableEnumMap[screenContent])!==null&&_humanReadableEnumMap_screenContent!==void 0?_humanReadableEnumMap_screenContent:screenContent)!==null&&_ref!==void 0?_ref:props.P5gjcV5ym)!==null&&_ref1!==void 0?_ref1:\"kScFdVGrs\",P7fiRiQ_n:(_ref2=notch!==null&&notch!==void 0?notch:props.P7fiRiQ_n)!==null&&_ref2!==void 0?_ref2:true,Qdp8M_Ki1:(_ref3=video!==null&&video!==void 0?video:props.Qdp8M_Ki1)!==null&&_ref3!==void 0?_ref3:\"https://framerusercontent.com/assets/T5aW7Ers3wOpsq7NmDm81E3to4.mp4\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"jq6olr6y5\",zJpvdHd_j:videoPoster!==null&&videoPoster!==void 0?videoPoster:props.zJpvdHd_j};};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,P7fiRiQ_n,P5gjcV5ym,Qdp8M_Ki1,n02YmShp2,zJpvdHd_j,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jq6olr6y5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=negate(P7fiRiQ_n);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1264,intrinsicWidth:2800},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fooypa\",className,classNames),\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"jq6olr6y5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({hCRxOkDBJ:{\"data-framer-name\":\"Facing Right\",background:{alt:\"\",intrinsicHeight:1264,intrinsicWidth:2800,positionX:\"center\",positionY:\"center\"}},hTJs_GWRF:{\"data-framer-name\":\"Facing Left\",background:{alt:\"\",intrinsicHeight:1264,intrinsicWidth:2800,positionX:\"center\",positionY:\"center\"}}},baseVariant,gestureVariant),children:[P7fiRiQ_n&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png\",srcSet:\"https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png 1072w\"},className:\"framer-xi5560\",\"data-framer-name\":\"Device Render - notch\",layoutDependency:layoutDependency,layoutId:\"G2v7rOmMf\",...addPropertyOverrides({hCRxOkDBJ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png\",srcSet:\"https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png 1072w\"}},hTJs_GWRF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png\",srcSet:\"https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png 1072w\"}}},baseVariant,gestureVariant)}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png\",srcSet:\"https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png 1072w\"},className:\"framer-txcac\",\"data-framer-name\":\"Device Render\",layoutDependency:layoutDependency,layoutId:\"Wp12Eg_E0\",...addPropertyOverrides({hCRxOkDBJ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png\",srcSet:\"https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png 1072w\"}},hTJs_GWRF:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-0)*1)/2)),pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png\",srcSet:\"https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png 1072w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-40,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20,...addPropertyOverrides({hCRxOkDBJ:{height:560,width:\"260px\"},hTJs_GWRF:{height:560,width:\"260px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r6h76u-container\",layoutDependency:layoutDependency,layoutId:\"zfIPqXR8j-container\",style:{rotateY:0},variants:{hCRxOkDBJ:{rotateY:35,transformPerspective:3750},hTJs_GWRF:{rotateY:-35,transformPerspective:3750}},children:/*#__PURE__*/_jsx(PhoneMockupScreenContent,{height:\"100%\",hkER3s2E3:toResponsiveImage(n02YmShp2),id:\"zfIPqXR8j\",layoutId:\"zfIPqXR8j\",PXGsCbtVD:\"35px\",style:{height:\"100%\",width:\"100%\"},UXLq1sxOJ:Qdp8M_Ki1,variant:P5gjcV5ym,w02mljpJa:toResponsiveImage(zJpvdHd_j),width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0aYlW.framer-1ofqich, .framer-0aYlW .framer-1ofqich { display: block; }\",\".framer-0aYlW.framer-1fooypa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-0aYlW .framer-xi5560, .framer-0aYlW .framer-txcac { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-0aYlW .framer-r6h76u-container { bottom: 20px; flex: none; left: 20px; position: absolute; right: 20px; top: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0aYlW.framer-1fooypa { gap: 0px; } .framer-0aYlW.framer-1fooypa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0aYlW.framer-1fooypa > :first-child { margin-left: 0px; } .framer-0aYlW.framer-1fooypa > :last-child { margin-right: 0px; } }\",\".framer-0aYlW.framer-v-t850n4.framer-1fooypa, .framer-0aYlW.framer-v-mszm0p.framer-1fooypa { aspect-ratio: 0.5 / 1; height: var(--framer-aspect-ratio-supported, 600px); }\",\".framer-0aYlW.framer-v-t850n4 .framer-xi5560 { order: 0; }\",\".framer-0aYlW.framer-v-t850n4 .framer-txcac { order: 2; }\",\".framer-0aYlW.framer-v-t850n4 .framer-r6h76u-container { aspect-ratio: 0.4642857142857143 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 560px); left: 10px; order: 1; right: unset; width: 260px; }\",\".framer-0aYlW.framer-v-mszm0p .framer-r6h76u-container { aspect-ratio: 0.4642857142857143 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 560px); left: unset; right: 10px; width: 260px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hTJs_GWRF\":{\"layout\":[\"fixed\",\"fixed\"]},\"hCRxOkDBJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"P7fiRiQ_n\":\"notch\",\"P5gjcV5ym\":\"screenContent\",\"Qdp8M_Ki1\":\"video\",\"n02YmShp2\":\"image\",\"zJpvdHd_j\":\"videoPoster\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKjBGXFn33=withCSS(Component,css,\"framer-0aYlW\");export default FramerKjBGXFn33;FramerKjBGXFn33.displayName=\"Phone mockup/Default - large\";FramerKjBGXFn33.defaultProps={height:600,width:300};addPropertyControls(FramerKjBGXFn33,{variant:{options:[\"jq6olr6y5\",\"hTJs_GWRF\",\"hCRxOkDBJ\"],optionTitles:[\"Front\",\"Facing Left\",\"Facing Right\"],title:\"Variant\",type:ControlType.Enum},P7fiRiQ_n:{defaultValue:true,title:\"Notch\",type:ControlType.Boolean},P5gjcV5ym:(PhoneMockupScreenContentControls===null||PhoneMockupScreenContentControls===void 0?void 0:PhoneMockupScreenContentControls[\"variant\"])&&{...PhoneMockupScreenContentControls[\"variant\"],defaultValue:\"kScFdVGrs\",description:undefined,hidden:undefined,title:\"Screen content\"},Qdp8M_Ki1:(PhoneMockupScreenContentControls===null||PhoneMockupScreenContentControls===void 0?void 0:PhoneMockupScreenContentControls[\"UXLq1sxOJ\"])&&{...PhoneMockupScreenContentControls[\"UXLq1sxOJ\"],__defaultAssetReference:\"data:framer/asset-reference,T5aW7Ers3wOpsq7NmDm81E3to4.mp4?originalFilename=video.mp4\",description:undefined,hidden:undefined,title:\"Video\"},n02YmShp2:{title:\"Image\",type:ControlType.ResponsiveImage},zJpvdHd_j:{title:\"Video poster\",type:ControlType.ResponsiveImage}});addFonts(FramerKjBGXFn33,[{explicitInter:true,fonts:[]},...PhoneMockupScreenContentFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKjBGXFn33\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"P7fiRiQ_n\\\":\\\"notch\\\",\\\"P5gjcV5ym\\\":\\\"screenContent\\\",\\\"Qdp8M_Ki1\\\":\\\"video\\\",\\\"n02YmShp2\\\":\\\"image\\\",\\\"zJpvdHd_j\\\":\\\"videoPoster\\\"}\",\"framerIntrinsicHeight\":\"600\",\"framerIntrinsicWidth\":\"300\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hTJs_GWRF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hCRxOkDBJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import PhoneMockupScreenContent from\"https://framerusercontent.com/modules/bx5bPAfKcfM8xpIgM1L0/4LlnmynbkCcqCq5aMOwc/pdJaT6lnS.js\";const PhoneMockupScreenContentFonts=getFonts(PhoneMockupScreenContent);const PhoneMockupScreenContentControls=getPropertyControls(PhoneMockupScreenContent);const cycleOrder=[\"KuxBUrBP_\",\"c8HbXRkRV\",\"IQhJMhZFZ\"];const serializationHash=\"framer-CFHmP\";const variantClassNames={c8HbXRkRV:\"framer-v-n45lti\",IQhJMhZFZ:\"framer-v-q8e823\",KuxBUrBP_:\"framer-v-o4swtc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const negate=value=>{return!value;};const transition2={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Image:\"kScFdVGrs\",Video:\"aStnsqmeV\"};const humanReadableVariantMap={\"Facing Left\":\"c8HbXRkRV\",\"Facing Right\":\"IQhJMhZFZ\",Front:\"KuxBUrBP_\"};const getProps=({height,id,image,notch,screenContent,video,videoPoster,width,...props})=>{var _humanReadableEnumMap_screenContent,_ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,n02YmShp2:image!==null&&image!==void 0?image:props.n02YmShp2,P5gjcV5ym:(_ref1=(_ref=(_humanReadableEnumMap_screenContent=humanReadableEnumMap[screenContent])!==null&&_humanReadableEnumMap_screenContent!==void 0?_humanReadableEnumMap_screenContent:screenContent)!==null&&_ref!==void 0?_ref:props.P5gjcV5ym)!==null&&_ref1!==void 0?_ref1:\"kScFdVGrs\",P7fiRiQ_n:(_ref2=notch!==null&&notch!==void 0?notch:props.P7fiRiQ_n)!==null&&_ref2!==void 0?_ref2:true,Qdp8M_Ki1:(_ref3=video!==null&&video!==void 0?video:props.Qdp8M_Ki1)!==null&&_ref3!==void 0?_ref3:\"https://framerusercontent.com/assets/T5aW7Ers3wOpsq7NmDm81E3to4.mp4\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"KuxBUrBP_\",zJpvdHd_j:videoPoster!==null&&videoPoster!==void 0?videoPoster:props.zJpvdHd_j};};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,P7fiRiQ_n,P5gjcV5ym,Qdp8M_Ki1,n02YmShp2,zJpvdHd_j,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KuxBUrBP_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=negate(P7fiRiQ_n);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1264,intrinsicWidth:2800},className:cx(serializationHash,...sharedStyleClassNames,\"framer-o4swtc\",className,classNames),\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"KuxBUrBP_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({c8HbXRkRV:{\"data-framer-name\":\"Facing Left\",background:{alt:\"\",intrinsicHeight:1264,intrinsicWidth:2800,positionX:\"center\",positionY:\"center\"}},IQhJMhZFZ:{\"data-framer-name\":\"Facing Right\",background:{alt:\"\",intrinsicHeight:1264,intrinsicWidth:2800,positionX:\"center\",positionY:\"center\"}}},baseVariant,gestureVariant),children:[P7fiRiQ_n&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png\",srcSet:\"https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/M5BYpFV5ukCc6wJlq4Wqvkzw.png 1072w\"},className:\"framer-1gzs3ny\",\"data-framer-name\":\"Device Render - notch\",layoutDependency:layoutDependency,layoutId:\"hOu2onxbG\",...addPropertyOverrides({c8HbXRkRV:{background:{alt:\"\",fit:\"fit\",pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png\",srcSet:\"https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/4HZ41rZMsVny43temRT4THWhIP8.png 1072w\"}},IQhJMhZFZ:{background:{alt:\"\",fit:\"fit\",pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png\",srcSet:\"https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/mAdX3EHy5L1kzdnGs3VCMV78.png 1072w\"}}},baseVariant,gestureVariant)}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png\",srcSet:\"https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/xx8NciXORr52d6luindTUCd91E.png 1072w\"},className:\"framer-cfuy97\",\"data-framer-name\":\"Device Render\",layoutDependency:layoutDependency,layoutId:\"mZSbn4f4h\",...addPropertyOverrides({c8HbXRkRV:{background:{alt:\"\",fit:\"fit\",pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png\",srcSet:\"https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/k95LTOePCofk3rfG4kUcBdyoMQ.png 1072w\"}},IQhJMhZFZ:{background:{alt:\"\",fit:\"fit\",pixelHeight:2163,pixelWidth:1072,positionX:\"center\",positionY:\"center\",sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 10px) / 0, 1px)`,src:\"https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png\",srcSet:\"https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png?scale-down-to=2048 1015w,https://framerusercontent.com/images/Zd14tO2ZsqqW7yREa1Qp4ReB2Lc.png 1072w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 27px)`,...addPropertyOverrides({c8HbXRkRV:{width:\"192px\"},IQhJMhZFZ:{width:\"192px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-am8etz-container\",layoutDependency:layoutDependency,layoutId:\"dwesvDH8c-container\",style:{rotateY:0},variants:{c8HbXRkRV:{rotateY:-35,transformPerspective:2750},IQhJMhZFZ:{rotateY:35,transformPerspective:2750}},children:/*#__PURE__*/_jsx(PhoneMockupScreenContent,{height:\"100%\",hkER3s2E3:toResponsiveImage(n02YmShp2),id:\"dwesvDH8c\",layoutId:\"dwesvDH8c\",PXGsCbtVD:\"30px\",style:{height:\"100%\",width:\"100%\"},UXLq1sxOJ:Qdp8M_Ki1,variant:P5gjcV5ym,w02mljpJa:toResponsiveImage(zJpvdHd_j),width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CFHmP.framer-1kq79e5, .framer-CFHmP .framer-1kq79e5 { display: block; }\",\".framer-CFHmP.framer-o4swtc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 440px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 220px; }\",\".framer-CFHmP .framer-1gzs3ny, .framer-CFHmP .framer-cfuy97 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-CFHmP .framer-am8etz-container { aspect-ratio: 0.46618357487922707 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 414px); left: 14px; position: absolute; right: 13px; top: 13px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CFHmP.framer-o4swtc { gap: 0px; } .framer-CFHmP.framer-o4swtc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CFHmP.framer-o4swtc > :first-child { margin-left: 0px; } .framer-CFHmP.framer-o4swtc > :last-child { margin-right: 0px; } }\",\".framer-CFHmP.framer-v-n45lti.framer-o4swtc, .framer-CFHmP.framer-v-q8e823.framer-o4swtc { aspect-ratio: 0.5 / 1; height: var(--framer-aspect-ratio-supported, 440px); }\",\".framer-CFHmP.framer-v-n45lti .framer-1gzs3ny { order: 0; }\",\".framer-CFHmP.framer-v-n45lti .framer-cfuy97 { order: 2; }\",\".framer-CFHmP.framer-v-n45lti .framer-am8etz-container { aspect-ratio: 0.4665071770334928 / 1; height: var(--framer-aspect-ratio-supported, 412px); left: 7px; order: 1; right: unset; top: 14px; width: 192px; }\",\".framer-CFHmP.framer-v-q8e823 .framer-am8etz-container { aspect-ratio: 0.46601941747572817 / 1; height: var(--framer-aspect-ratio-supported, 412px); left: unset; right: 7px; top: 14px; width: 192px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 220\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"c8HbXRkRV\":{\"layout\":[\"fixed\",\"fixed\"]},\"IQhJMhZFZ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"P7fiRiQ_n\":\"notch\",\"P5gjcV5ym\":\"screenContent\",\"Qdp8M_Ki1\":\"video\",\"n02YmShp2\":\"image\",\"zJpvdHd_j\":\"videoPoster\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertwpNbRFPm=withCSS(Component,css,\"framer-CFHmP\");export default FramertwpNbRFPm;FramertwpNbRFPm.displayName=\"Phone mockup/Default - small\";FramertwpNbRFPm.defaultProps={height:440,width:220};addPropertyControls(FramertwpNbRFPm,{variant:{options:[\"KuxBUrBP_\",\"c8HbXRkRV\",\"IQhJMhZFZ\"],optionTitles:[\"Front\",\"Facing Left\",\"Facing Right\"],title:\"Variant\",type:ControlType.Enum},P7fiRiQ_n:{defaultValue:true,title:\"Notch\",type:ControlType.Boolean},P5gjcV5ym:(PhoneMockupScreenContentControls===null||PhoneMockupScreenContentControls===void 0?void 0:PhoneMockupScreenContentControls[\"variant\"])&&{...PhoneMockupScreenContentControls[\"variant\"],defaultValue:\"kScFdVGrs\",description:undefined,hidden:undefined,title:\"Screen content\"},Qdp8M_Ki1:(PhoneMockupScreenContentControls===null||PhoneMockupScreenContentControls===void 0?void 0:PhoneMockupScreenContentControls[\"UXLq1sxOJ\"])&&{...PhoneMockupScreenContentControls[\"UXLq1sxOJ\"],__defaultAssetReference:\"data:framer/asset-reference,T5aW7Ers3wOpsq7NmDm81E3to4.mp4?originalFilename=video.mp4\",description:undefined,hidden:undefined,title:\"Video\"},n02YmShp2:{title:\"Image\",type:ControlType.ResponsiveImage},zJpvdHd_j:{title:\"Video poster\",type:ControlType.ResponsiveImage}});addFonts(FramertwpNbRFPm,[{explicitInter:true,fonts:[]},...PhoneMockupScreenContentFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertwpNbRFPm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c8HbXRkRV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IQhJMhZFZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"440\",\"framerIntrinsicWidth\":\"220\",\"framerVariables\":\"{\\\"P7fiRiQ_n\\\":\\\"notch\\\",\\\"P5gjcV5ym\\\":\\\"screenContent\\\",\\\"Qdp8M_Ki1\\\":\\\"video\\\",\\\"n02YmShp2\\\":\\\"image\\\",\\\"zJpvdHd_j\\\":\\\"videoPoster\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (acd6bc0)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-semibold\",\"FS;Poppins-black\",\"FS;Poppins-black italic\",\"FS;Poppins-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/22GWRXQXMICIWABQXFWKIWZIILKO5JDJ/2BBKMSVLV5CSDOZ7HEEECOTKPOVVJOC3/RNFY4UJD36462ZMGEIC5I7KNE73BPOAU.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2PWH5ACYHQEXIHGDLY5OWYMAC3F65AK5/OD6JOLYDRZZOKZGAPOMF7QEWPC5DTZS6/F5IVXJVPQ2DIFNG5HQZ7NI5VG7P7VDLV.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UIZNW6TUIPHAJY7PGO5Z3D35Q2C3IESY/VMTPLIFREYY73Z7SYHLS2AWXATFX2ZHJ/3Y2FFVDRGJIJT6SO3BLMSB5PFJTFIJG2.woff2\",weight:\"600\"}]}];export const css=['.framer-bfNm2 .framer-styles-preset-v2zoe0:not(.rich-text-wrapper), .framer-bfNm2 .framer-styles-preset-v2zoe0.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f37763bf-5253-4d14-8ac0-e88a5446af25, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-bfNm2 .framer-styles-preset-v2zoe0:not(.rich-text-wrapper), .framer-bfNm2 .framer-styles-preset-v2zoe0.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f37763bf-5253-4d14-8ac0-e88a5446af25, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-bfNm2 .framer-styles-preset-v2zoe0:not(.rich-text-wrapper), .framer-bfNm2 .framer-styles-preset-v2zoe0.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-f37763bf-5253-4d14-8ac0-e88a5446af25, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }'];export const className=\"framer-bfNm2\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (acd6bc0)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-semibold\",\"FS;Poppins-extrabold\",\"FS;Poppins-black italic\",\"FS;Poppins-semibold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GCE3CQJHNQPET5GTQTXRVLUNQRTTGRYD/PW7XXFU476CRE7KBIKF63THLLGCBMQ4S/IX2APREQD7NDYAG5A6YIV4Q2246OG5XH.woff2\",weight:\"800\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2PWH5ACYHQEXIHGDLY5OWYMAC3F65AK5/OD6JOLYDRZZOKZGAPOMF7QEWPC5DTZS6/F5IVXJVPQ2DIFNG5HQZ7NI5VG7P7VDLV.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UIZNW6TUIPHAJY7PGO5Z3D35Q2C3IESY/VMTPLIFREYY73Z7SYHLS2AWXATFX2ZHJ/3Y2FFVDRGJIJT6SO3BLMSB5PFJTFIJG2.woff2\",weight:\"600\"}]}];export const css=['.framer-ap3El .framer-styles-preset-1miq345:not(.rich-text-wrapper), .framer-ap3El .framer-styles-preset-1miq345.rich-text-wrapper h2 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 800; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-f37763bf-5253-4d14-8ac0-e88a5446af25, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-ap3El .framer-styles-preset-1miq345:not(.rich-text-wrapper), .framer-ap3El .framer-styles-preset-1miq345.rich-text-wrapper h2 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 800; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-f37763bf-5253-4d14-8ac0-e88a5446af25, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ap3El .framer-styles-preset-1miq345:not(.rich-text-wrapper), .framer-ap3El .framer-styles-preset-1miq345.rich-text-wrapper h2 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 800; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-f37763bf-5253-4d14-8ac0-e88a5446af25, #1a1a1a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-ap3El\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Pattern from\"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Footer from\"#framer/local/canvasComponent/A6YZ7SwMg/A6YZ7SwMg.js\";import Navigation from\"#framer/local/canvasComponent/HwL_wPwDF/HwL_wPwDF.js\";import PhoneMockupDefaultLarge from\"#framer/local/canvasComponent/KjBGXFn33/KjBGXFn33.js\";import ButtonsPrimary from\"#framer/local/canvasComponent/sRUv07toy/sRUv07toy.js\";import PhoneMockupDefaultSmall from\"#framer/local/canvasComponent/twpNbRFPm/twpNbRFPm.js\";import*as sharedStyle from\"#framer/local/css/DB8DZifvW/DB8DZifvW.js\";import*as sharedStyle2 from\"#framer/local/css/dv4KAPOO0/dv4KAPOO0.js\";import*as sharedStyle1 from\"#framer/local/css/sqJjfOoB8/sqJjfOoB8.js\";import*as sharedStyle3 from\"#framer/local/css/wM4RpiIP3/wM4RpiIP3.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const PhoneMockupDefaultSmallFonts=getFonts(PhoneMockupDefaultSmall);const ContainerWithFX=withFX(Container);const PhoneMockupDefaultLargeFonts=getFonts(PhoneMockupDefaultLarge);const PatternFonts=getFonts(Pattern);const MotionDivWithFX=withFX(motion.div);const ButtonsPrimaryFonts=getFonts(ButtonsPrimary);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const YouTubeFonts=getFonts(YouTube);const FooterFonts=getFonts(Footer);const breakpoints={DPvKhKRlI:\"(min-width: 810px) and (max-width: 1199px)\",HrUQaddV8:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-DWvbC\";const variantClassNames={DPvKhKRlI:\"framer-v-u2j6mn\",HrUQaddV8:\"framer-v-ggd810\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const textEffect={effect:animation,tokenization:\"word\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:120,y:0};const transition2={damping:30,delay:.9,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:120,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition3={damping:30,delay:.5,mass:1,stiffness:200,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-120,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-120,y:0};const transition4={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:1.3,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition6={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:150};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-200,y:0};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:-200,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation14={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:30};const textEffect1={effect:animation14,tokenization:\"word\",transition:transition6,trigger:\"onInView\",type:\"appear\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"HrUQaddV8\",Tablet:\"DPvKhKRlI\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-DWvbC`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-DWvbC`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kdxca4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{variant:\"VfPMUI9Os\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"WYQDbjK90\",layoutId:\"WYQDbjK90\",style:{width:\"100%\"},variant:\"HIGBC06yh\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1v1q1py\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pxhnv\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-102sifq\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-srpujp\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-v2zoe0\",\"data-styles-preset\":\"DB8DZifvW\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-05dc227e-c0e5-4cb4-8918-4f28e4a8e29f, rgb(41, 41, 41))\"},children:\"Your go-to app for everyday \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-05dc227e-c0e5-4cb4-8918-4f28e4a8e29f, rgb(41, 41, 41))\"},children:\"mental wellbeing self-care\"})]})}),className:\"framer-bi2vng\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f8320fe7-e5e1-4515-85bc-42acf990f0d5, rgb(109, 109, 109))\"},children:\"Find the right companion to get connected, supported, and inspired.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f8320fe7-e5e1-4515-85bc-42acf990f0d5, rgb(109, 109, 109))\"},children:\"Find the right companion to get connected, supported, and inspired.\"})}),className:\"framer-wvxn31\",effect:textEffect,fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j159bb\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ws0jh2\",\"data-framer-name\":\"Device\",name:\"Device\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{y:434.0000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"220px\",y:462.0000000000001,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kilq6u-container\",children:/*#__PURE__*/_jsx(PhoneMockupDefaultSmall,{height:\"100%\",id:\"QgHMhBf4P\",layoutId:\"QgHMhBf4P\",n02YmShp2:addImageAlt({src:\"https://framerusercontent.com/images/CGu24jCl6Kg9S8wtviPq4VQVe5A.png\",srcSet:\"https://framerusercontent.com/images/CGu24jCl6Kg9S8wtviPq4VQVe5A.png 590w\"},\"\"),P5gjcV5ym:\"kScFdVGrs\",P7fiRiQ_n:false,style:{height:\"100%\",width:\"100%\"},variant:\"c8HbXRkRV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{y:354}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"300px\",y:382,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t5gll-container\",children:/*#__PURE__*/_jsx(PhoneMockupDefaultLarge,{height:\"100%\",id:\"xmDkAsxsv\",layoutId:\"xmDkAsxsv\",n02YmShp2:addImageAlt({src:\"https://framerusercontent.com/images/60YmEhujTEQc5vfCxdNqD2B12Co.png\",srcSet:\"https://framerusercontent.com/images/60YmEhujTEQc5vfCxdNqD2B12Co.png 590w\"},\"\"),P5gjcV5ym:\"kScFdVGrs\",P7fiRiQ_n:false,Qdp8M_Ki1:\"https://framerusercontent.com/assets/8KdiZW4ODU9DuPl9Uq0gtCjp6Y.mp4\",style:{height:\"100%\",width:\"100%\"},variant:\"jq6olr6y5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{y:434.0000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"220px\",y:462.0000000000001,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oq4thh-container\",children:/*#__PURE__*/_jsx(PhoneMockupDefaultSmall,{height:\"100%\",id:\"j7bnDAeYn\",layoutId:\"j7bnDAeYn\",n02YmShp2:addImageAlt({src:\"https://framerusercontent.com/images/Id1CipkrMHVM2hmPTaGGc1lr7cw.png\",srcSet:\"https://framerusercontent.com/images/Id1CipkrMHVM2hmPTaGGc1lr7cw.png 590w\"},\"\"),P5gjcV5ym:\"kScFdVGrs\",P7fiRiQ_n:false,style:{height:\"100%\",width:\"100%\"},variant:\"IQhJMhZFZ\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11rw7br\",\"data-framer-name\":\"Background\",name:\"Background\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a6dhus-container\",children:/*#__PURE__*/_jsx(Pattern,{back:\"var(--token-3ad04349-ec11-4d5a-9651-1106568fd825, rgb(246, 246, 246))\",diagonal:true,direction:\"left\",duration:5,front:\"var(--token-05dc227e-c0e5-4cb4-8918-4f28e4a8e29f, rgb(41, 41, 41))\",height:\"100%\",id:\"yxFGQtf0P\",layoutId:\"yxFGQtf0P\",patternType:\"wave\",radius:0,scale:15,shouldAnimate:false,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-s9gm2u\",\"data-framer-appear-id\":\"s9gm2u\",\"data-framer-name\":\"CTA\",initial:animation9,name:\"CTA\",optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i3olcf\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined},{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined},{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{width:\"min(min(100vw, 1440px) - 40px, 200px)\",y:1014}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:1042,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qhm4qf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPvKhKRlI:{gkCwChmvz:resolvedLinks[1]},HrUQaddV8:{gkCwChmvz:resolvedLinks[2],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{BYyZkFotR:true,fL78cRMBB:addImageAlt({src:\"https://framerusercontent.com/images/vuUSk6NFyDINqxrIMC0BUakju80.svg\"},\"\"),gkCwChmvz:resolvedLinks[0],height:\"100%\",id:\"QcSZ7Nqkd\",KBZl_F_K_:true,layoutId:\"QcSZ7Nqkd\",S2NzHBxsE:\"App Store\",SQepToM8F:\"Download on the\",style:{height:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined},{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined},{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{width:\"min(min(100vw, 1440px) - 40px, 200px)\",y:1078}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:1042,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4vpip1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPvKhKRlI:{gkCwChmvz:resolvedLinks1[1]},HrUQaddV8:{gkCwChmvz:resolvedLinks1[2],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{BYyZkFotR:true,gkCwChmvz:resolvedLinks1[0],height:\"100%\",id:\"OMwtmFCIV\",KBZl_F_K_:true,layoutId:\"OMwtmFCIV\",S2NzHBxsE:\"Google Play\",SQepToM8F:\"GET IT ON\",style:{height:\"100%\"},width:\"100%\"})})})})})})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-u4ujh6\",\"data-framer-name\":\"Features - 2 columns\",name:\"Features - 2 columns\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i2tyv6\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-64x6m\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p782lr\",\"data-framer-name\":\"Feature 2\",name:\"Feature 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{y:1346}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"300px\",y:1390,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qs945f-container\",children:/*#__PURE__*/_jsx(PhoneMockupDefaultLarge,{height:\"100%\",id:\"VWl2TZyox\",layoutId:\"VWl2TZyox\",n02YmShp2:addImageAlt({src:\"https://framerusercontent.com/images/oCeukMuajhQ8gKaTRctF2GnoOY.png\",srcSet:\"https://framerusercontent.com/images/oCeukMuajhQ8gKaTRctF2GnoOY.png 590w\"},\"\"),P5gjcV5ym:\"aStnsqmeV\",P7fiRiQ_n:true,Qdp8M_Ki1:\"https://framerusercontent.com/assets/5vX7DnMAYAJRvDNTvWXODRx0gM.mp4\",style:{height:\"100%\",width:\"100%\"},variant:\"jq6olr6y5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined,style:{rotateY:35,transformPerspective:3750},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x9e131\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-142vqcx\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1549.6000000000001),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/Cqlk7OzYTTex3bV0zf0LSDaH8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1591.6),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/Cqlk7OzYTTex3bV0zf0LSDaH8.png\"},className:\"framer-194nu0x\",\"data-framer-name\":\"Icon\",name:\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bmvbq1\",\"data-styles-preset\":\"sqJjfOoB8\",children:\"Guided journaling\"})}),className:\"framer-nmwefi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzu99v\",\"data-styles-preset\":\"dv4KAPOO0\",children:\"Record moods and thoughts using AI-generated prompts, deconstructing complicated emotions into simple moods, and measuring the intensity of each mood.\"})}),className:\"framer-kbpa0i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q7azzn\",\"data-framer-name\":\"Feature 2\",name:\"Feature 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2066),pixelHeight:1529,pixelWidth:731,sizes:\"350px\",src:\"https://framerusercontent.com/images/DuxeAt4zJA392q2nCqzMh2dsd7w.png\",srcSet:\"https://framerusercontent.com/images/DuxeAt4zJA392q2nCqzMh2dsd7w.png 731w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2170),pixelHeight:1529,pixelWidth:731,sizes:\"350px\",src:\"https://framerusercontent.com/images/DuxeAt4zJA392q2nCqzMh2dsd7w.png\",srcSet:\"https://framerusercontent.com/images/DuxeAt4zJA392q2nCqzMh2dsd7w.png 731w\"},className:\"framer-1tdeh93\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined,style:{rotateY:35,transformPerspective:3750},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vv32v4\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3tsxgy\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2288.9750000000004),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/5dLjdENaGhcl39TQ5uv9ILsjQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2390.975),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/5dLjdENaGhcl39TQ5uv9ILsjQ.png\"},className:\"framer-17epl4w\",\"data-framer-name\":\"Icon\",name:\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bmvbq1\",\"data-styles-preset\":\"sqJjfOoB8\",children:\"24/7 Stress tracking & journal on the go\"})}),className:\"framer-nx48k6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzu99v\",\"data-styles-preset\":\"dv4KAPOO0\",children:\"Get alerts when your stress level goes up, and record audio journals with your wearable device while you\u2019re on the go.\"})}),className:\"framer-6i6o9c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxhrwe\",\"data-framer-name\":\"Feature 2\",name:\"Feature 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{y:2824.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"300px\",y:2988.75,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q38ms3-container\",children:/*#__PURE__*/_jsx(PhoneMockupDefaultLarge,{height:\"100%\",id:\"tfoT50gsR\",layoutId:\"tfoT50gsR\",n02YmShp2:addImageAlt({src:\"https://framerusercontent.com/images/60YmEhujTEQc5vfCxdNqD2B12Co.png\",srcSet:\"https://framerusercontent.com/images/60YmEhujTEQc5vfCxdNqD2B12Co.png 590w\"},\"\"),P5gjcV5ym:\"aStnsqmeV\",P7fiRiQ_n:true,Qdp8M_Ki1:\"https://framerusercontent.com/assets/QOZVxRz085XrnZe2l97ZDDQZOI.mp4\",style:{height:\"100%\",width:\"100%\"},variant:\"jq6olr6y5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined,style:{rotateY:35,transformPerspective:3750},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fnpt1d\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kjny6x\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3028.3500000000004),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/93mswZ3gyEFiXagYrWTb8lYDQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3190.35),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/93mswZ3gyEFiXagYrWTb8lYDQ.png\"},className:\"framer-18b224s\",\"data-framer-name\":\"Icon\",name:\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bmvbq1\",\"data-styles-preset\":\"sqJjfOoB8\",children:\"Explore, connect, and interact anonymously\"})}),className:\"framer-u4m35g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzu99v\",\"data-styles-preset\":\"dv4KAPOO0\",children:\"Get supported and inspired by people who share similar experiences through personalized post recommendations.\"})}),className:\"framer-2ixgl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3g3arc\",\"data-framer-name\":\"Feature 2\",name:\"Feature 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{y:3544.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"300px\",y:3768.75,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qc35mb-container\",children:/*#__PURE__*/_jsx(PhoneMockupDefaultLarge,{height:\"100%\",id:\"RGThTyKD1\",layoutId:\"RGThTyKD1\",n02YmShp2:addImageAlt({src:\"https://framerusercontent.com/images/Id1CipkrMHVM2hmPTaGGc1lr7cw.png\",srcSet:\"https://framerusercontent.com/images/Id1CipkrMHVM2hmPTaGGc1lr7cw.png 590w\"},\"\"),P5gjcV5ym:\"aStnsqmeV\",P7fiRiQ_n:true,Qdp8M_Ki1:\"https://framerusercontent.com/assets/VV5dGIn1k6S5iLPuwKDH2Vvxnw.mp4\",style:{height:\"100%\",width:\"100%\"},variant:\"jq6olr6y5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined,style:{rotateY:35,transformPerspective:3750},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u6qop9\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14gs32z\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3748.3500000000004),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/K8roFQb5vDyjYYT1c1aAipN5lVE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3970.35),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/K8roFQb5vDyjYYT1c1aAipN5lVE.png\"},className:\"framer-1ibm3kq\",\"data-framer-name\":\"Icon\",name:\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bmvbq1\",\"data-styles-preset\":\"sqJjfOoB8\",children:\"AI-powered stats\"})}),className:\"framer-e96qpz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzu99v\",\"data-styles-preset\":\"dv4KAPOO0\",children:\"Track the the trends of your mental states over time, be self-aware of your mental state patterns, and understand how you can improve your mental wellbeing.\"})}),className:\"framer-t7jpob\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vmida6\",\"data-framer-name\":\"Feature 2\",name:\"Feature 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{y:4264.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"300px\",y:4548.75,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cc0fuo-container\",children:/*#__PURE__*/_jsx(PhoneMockupDefaultLarge,{height:\"100%\",id:\"gsd6l8s5s\",layoutId:\"gsd6l8s5s\",n02YmShp2:addImageAlt({src:\"https://framerusercontent.com/images/JqH1s7HUcVgOAIOcEpsMU5YXHI.png\",srcSet:\"https://framerusercontent.com/images/JqH1s7HUcVgOAIOcEpsMU5YXHI.png 590w\"},\"\"),P5gjcV5ym:\"aStnsqmeV\",P7fiRiQ_n:true,Qdp8M_Ki1:\"https://framerusercontent.com/assets/Q10CvqIzjO6LPCsrDRWtj3oikuc.mp4\",style:{height:\"100%\",width:\"100%\"},variant:\"jq6olr6y5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{__framer__styleAppearEffectEnabled:undefined,style:{rotateY:35,transformPerspective:3750},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jr2aoo\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10asmhj\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4468.35),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/RREukUOpXEOdgulSHdoKDbDFY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4750.35),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/RREukUOpXEOdgulSHdoKDbDFY.png\"},className:\"framer-13a6uha\",\"data-framer-name\":\"Icon\",name:\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bmvbq1\",\"data-styles-preset\":\"sqJjfOoB8\",children:\"Summarize inspirations with AI\"})}),className:\"framer-g2nkpt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzu99v\",\"data-styles-preset\":\"dv4KAPOO0\",children:\"Jot down your inspirations and learnings  from the Parallel community with AI in just one tap to make your mindfulness progress tangible and visible.\"})}),className:\"framer-1il4i17\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1n2rj8l\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kpzraf\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1enk9j6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,topLeftRadius:0,topRightRadius:0}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"v3WEVp3SY\",isMixedBorderRadius:false,isRed:true,layoutId:\"v3WEVp3SY\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/qzLxWuV-g7U\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ojhq13\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxvy92\",\"data-framer-name\":\"Headline\",name:\"Headline\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1miq345\",\"data-styles-preset\":\"wM4RpiIP3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cb67ca2d-859c-42c3-81a3-dda55e384639, rgb(255, 255, 255))\"},children:\"Try Parallel now\"})}),className:\"framer-1ht9m64\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzu99v\",\"data-styles-preset\":\"dv4KAPOO0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3ad04349-ec11-4d5a-9651-1106568fd825, rgb(246, 246, 246))\"},children:\"Start your smart mindfulness journey with Parallel today\"})}),className:\"framer-1qeojzu\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v01lis\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined},{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined},{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{width:\"min(min(min(100vw, 1440px), 800px) - 40px, 200px)\",y:5628.35}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:6012.35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wirybp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPvKhKRlI:{gkCwChmvz:resolvedLinks2[1]},HrUQaddV8:{gkCwChmvz:resolvedLinks2[2],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{BYyZkFotR:true,fL78cRMBB:addImageAlt({src:\"https://framerusercontent.com/images/vuUSk6NFyDINqxrIMC0BUakju80.svg\"},\"\"),gkCwChmvz:resolvedLinks2[0],height:\"100%\",id:\"pAECOK2bM\",KBZl_F_K_:true,layoutId:\"pAECOK2bM\",S2NzHBxsE:\"App Store\",SQepToM8F:\"Download on the\",style:{height:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined},{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined},{href:{webPageId:\"OFVZ1Pch_\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{width:\"min(min(min(100vw, 1440px), 800px) - 40px, 200px)\",y:5692.35}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:6012.35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h29ayl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPvKhKRlI:{gkCwChmvz:resolvedLinks3[1]},HrUQaddV8:{gkCwChmvz:resolvedLinks3[2],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{BYyZkFotR:true,gkCwChmvz:resolvedLinks3[0],height:\"100%\",id:\"R_XpkEKzi\",KBZl_F_K_:true,layoutId:\"R_XpkEKzi\",S2NzHBxsE:\"Google Play\",SQepToM8F:\"GET IT ON\",style:{height:\"100%\"},width:\"100%\"})})})})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HrUQaddV8:{y:5804.35}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,width:\"100vw\",y:6244.35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-92po2c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DPvKhKRlI:{variant:\"G6JtMKFy5\"},HrUQaddV8:{variant:\"AndU9TR94\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"gVHaMOUw1\",layoutId:\"gVHaMOUw1\",style:{width:\"100%\"},variant:\"jjfSZwcK2\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-DWvbC { background: rgb(247, 243, 252); }`,\".framer-DWvbC.framer-lux5qc, .framer-DWvbC .framer-lux5qc { display: block; }\",\".framer-DWvbC.framer-72rtr7 { align-content: center; align-items: center; background-color: #f7f3fc; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-DWvbC .framer-1kdxca4-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 10; }\",\".framer-DWvbC .framer-1v1q1py { align-content: center; align-items: center; background-color: #f7f3fc; 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-DWvbC .framer-6pxhnv { align-content: center; align-items: center; background-color: #f7f3fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 120px 20px 120px 20px; position: relative; width: 100%; }\",\".framer-DWvbC .framer-102sifq { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DWvbC .framer-srpujp { 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-DWvbC .framer-bi2vng, .framer-DWvbC .framer-1qeojzu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-DWvbC .framer-wvxn31 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-DWvbC .framer-1j159bb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DWvbC .framer-1ws0jh2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-DWvbC .framer-1kilq6u-container { flex: none; height: 440px; left: -130px; position: absolute; top: calc(50.00000000000002% - 440px / 2); width: 220px; z-index: 1; }\",\".framer-DWvbC .framer-1t5gll-container, .framer-DWvbC .framer-qs945f-container { aspect-ratio: 0.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); position: relative; width: 300px; z-index: 2; }\",\".framer-DWvbC .framer-oq4thh-container { flex: none; height: 440px; position: absolute; right: -130px; top: calc(50.00000000000002% - 440px / 2); width: 220px; z-index: 1; }\",\".framer-DWvbC .framer-11rw7br { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-DWvbC .framer-1a6dhus-container { -webkit-mask: radial-gradient(50% 50% at 50% 53.1%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%) add; flex: 1 0 0px; height: 100%; mask: radial-gradient(50% 50% at 50% 53.1%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%) add; max-width: 75%; position: relative; width: 1px; z-index: 0; }\",\".framer-DWvbC .framer-s9gm2u { 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-DWvbC .framer-i3olcf, .framer-DWvbC .framer-1v01lis { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DWvbC .framer-1qhm4qf-container, .framer-DWvbC .framer-4vpip1-container, .framer-DWvbC .framer-wirybp-container, .framer-DWvbC .framer-1h29ayl-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-DWvbC .framer-u4ujh6 { align-content: center; align-items: center; background-color: #f7f3fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DWvbC .framer-1i2tyv6 { align-content: center; align-items: center; background-color: #f7f3fc; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 120px 80px 60px 80px; position: relative; width: 1px; }\",\".framer-DWvbC .framer-64x6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DWvbC .framer-p782lr, .framer-DWvbC .framer-1pxhrwe, .framer-DWvbC .framer-3g3arc, .framer-DWvbC .framer-vmida6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; z-index: 1; }\",'.framer-DWvbC .framer-x9e131, .framer-DWvbC .framer-vv32v4, .framer-DWvbC .framer-fnpt1d, .framer-DWvbC .framer-1u6qop9, .framer-DWvbC .framer-1jr2aoo { align-content: flex-start; align-items: flex-start; background: linear-gradient(90deg, var(--token-cb67ca2d-859c-42c3-81a3-dda55e384639, #ffffff) /* {\"name\":\"White\"} */ 0%, var(--token-3ad04349-ec11-4d5a-9651-1106568fd825, rgb(246, 246, 246)) /* {\"name\":\"White 50\"} */ 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: hidden; padding: 24px 24px 24px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-DWvbC .framer-142vqcx, .framer-DWvbC .framer-3tsxgy, .framer-DWvbC .framer-1kjny6x, .framer-DWvbC .framer-14gs32z, .framer-DWvbC .framer-10asmhj { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; 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: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-DWvbC .framer-194nu0x, .framer-DWvbC .framer-17epl4w, .framer-DWvbC .framer-18b224s, .framer-DWvbC .framer-1ibm3kq, .framer-DWvbC .framer-13a6uha { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 32px; }\",\".framer-DWvbC .framer-nmwefi, .framer-DWvbC .framer-kbpa0i, .framer-DWvbC .framer-nx48k6, .framer-DWvbC .framer-6i6o9c, .framer-DWvbC .framer-u4m35g, .framer-DWvbC .framer-2ixgl, .framer-DWvbC .framer-e96qpz, .framer-DWvbC .framer-t7jpob, .framer-DWvbC .framer-g2nkpt, .framer-DWvbC .framer-1il4i17, .framer-DWvbC .framer-1ht9m64 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-DWvbC .framer-q7azzn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-DWvbC .framer-1tdeh93 { aspect-ratio: 0.547945205479452 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 639px); position: relative; width: 350px; }\",\".framer-DWvbC .framer-q38ms3-container, .framer-DWvbC .framer-1qc35mb-container, .framer-DWvbC .framer-1cc0fuo-container { flex: none; height: 600px; position: relative; width: 300px; z-index: 2; }\",\".framer-DWvbC .framer-1n2rj8l { align-content: center; align-items: center; background-color: #8856c4; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DWvbC .framer-kpzraf { align-content: center; align-items: center; background-color: #8856c4; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 120px 80px 120px 80px; position: relative; width: 1px; }\",\".framer-DWvbC .framer-1enk9j6-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 585px); position: relative; width: 100%; }\",\".framer-DWvbC .framer-1ojhq13 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-DWvbC .framer-sxvy92 { 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%; z-index: 1; }\",\".framer-DWvbC .framer-92po2c-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DWvbC.framer-72rtr7, .framer-DWvbC .framer-1v1q1py, .framer-DWvbC .framer-6pxhnv, .framer-DWvbC .framer-102sifq, .framer-DWvbC .framer-srpujp, .framer-DWvbC .framer-1j159bb, .framer-DWvbC .framer-1ws0jh2, .framer-DWvbC .framer-11rw7br, .framer-DWvbC .framer-s9gm2u, .framer-DWvbC .framer-i3olcf, .framer-DWvbC .framer-u4ujh6, .framer-DWvbC .framer-1i2tyv6, .framer-DWvbC .framer-64x6m, .framer-DWvbC .framer-p782lr, .framer-DWvbC .framer-x9e131, .framer-DWvbC .framer-142vqcx, .framer-DWvbC .framer-q7azzn, .framer-DWvbC .framer-vv32v4, .framer-DWvbC .framer-3tsxgy, .framer-DWvbC .framer-1pxhrwe, .framer-DWvbC .framer-fnpt1d, .framer-DWvbC .framer-1kjny6x, .framer-DWvbC .framer-3g3arc, .framer-DWvbC .framer-1u6qop9, .framer-DWvbC .framer-14gs32z, .framer-DWvbC .framer-vmida6, .framer-DWvbC .framer-1jr2aoo, .framer-DWvbC .framer-10asmhj, .framer-DWvbC .framer-1n2rj8l, .framer-DWvbC .framer-kpzraf, .framer-DWvbC .framer-1ojhq13, .framer-DWvbC .framer-sxvy92, .framer-DWvbC .framer-1v01lis { gap: 0px; } .framer-DWvbC.framer-72rtr7 > *, .framer-DWvbC .framer-1v1q1py > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DWvbC.framer-72rtr7 > :first-child, .framer-DWvbC .framer-1v1q1py > :first-child, .framer-DWvbC .framer-6pxhnv > :first-child, .framer-DWvbC .framer-102sifq > :first-child, .framer-DWvbC .framer-srpujp > :first-child, .framer-DWvbC .framer-s9gm2u > :first-child, .framer-DWvbC .framer-1i2tyv6 > :first-child, .framer-DWvbC .framer-64x6m > :first-child, .framer-DWvbC .framer-x9e131 > :first-child, .framer-DWvbC .framer-vv32v4 > :first-child, .framer-DWvbC .framer-fnpt1d > :first-child, .framer-DWvbC .framer-1u6qop9 > :first-child, .framer-DWvbC .framer-1jr2aoo > :first-child, .framer-DWvbC .framer-kpzraf > :first-child, .framer-DWvbC .framer-1ojhq13 > :first-child, .framer-DWvbC .framer-sxvy92 > :first-child { margin-top: 0px; } .framer-DWvbC.framer-72rtr7 > :last-child, .framer-DWvbC .framer-1v1q1py > :last-child, .framer-DWvbC .framer-6pxhnv > :last-child, .framer-DWvbC .framer-102sifq > :last-child, .framer-DWvbC .framer-srpujp > :last-child, .framer-DWvbC .framer-s9gm2u > :last-child, .framer-DWvbC .framer-1i2tyv6 > :last-child, .framer-DWvbC .framer-64x6m > :last-child, .framer-DWvbC .framer-x9e131 > :last-child, .framer-DWvbC .framer-vv32v4 > :last-child, .framer-DWvbC .framer-fnpt1d > :last-child, .framer-DWvbC .framer-1u6qop9 > :last-child, .framer-DWvbC .framer-1jr2aoo > :last-child, .framer-DWvbC .framer-kpzraf > :last-child, .framer-DWvbC .framer-1ojhq13 > :last-child, .framer-DWvbC .framer-sxvy92 > :last-child { margin-bottom: 0px; } .framer-DWvbC .framer-6pxhnv > *, .framer-DWvbC .framer-1i2tyv6 > *, .framer-DWvbC .framer-64x6m > *, .framer-DWvbC .framer-kpzraf > *, .framer-DWvbC .framer-1ojhq13 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-DWvbC .framer-102sifq > *, .framer-DWvbC .framer-s9gm2u > *, .framer-DWvbC .framer-sxvy92 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-DWvbC .framer-srpujp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-DWvbC .framer-1j159bb > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-DWvbC .framer-1j159bb > :first-child, .framer-DWvbC .framer-1ws0jh2 > :first-child, .framer-DWvbC .framer-11rw7br > :first-child, .framer-DWvbC .framer-i3olcf > :first-child, .framer-DWvbC .framer-u4ujh6 > :first-child, .framer-DWvbC .framer-p782lr > :first-child, .framer-DWvbC .framer-142vqcx > :first-child, .framer-DWvbC .framer-q7azzn > :first-child, .framer-DWvbC .framer-3tsxgy > :first-child, .framer-DWvbC .framer-1pxhrwe > :first-child, .framer-DWvbC .framer-1kjny6x > :first-child, .framer-DWvbC .framer-3g3arc > :first-child, .framer-DWvbC .framer-14gs32z > :first-child, .framer-DWvbC .framer-vmida6 > :first-child, .framer-DWvbC .framer-10asmhj > :first-child, .framer-DWvbC .framer-1n2rj8l > :first-child, .framer-DWvbC .framer-1v01lis > :first-child { margin-left: 0px; } .framer-DWvbC .framer-1j159bb > :last-child, .framer-DWvbC .framer-1ws0jh2 > :last-child, .framer-DWvbC .framer-11rw7br > :last-child, .framer-DWvbC .framer-i3olcf > :last-child, .framer-DWvbC .framer-u4ujh6 > :last-child, .framer-DWvbC .framer-p782lr > :last-child, .framer-DWvbC .framer-142vqcx > :last-child, .framer-DWvbC .framer-q7azzn > :last-child, .framer-DWvbC .framer-3tsxgy > :last-child, .framer-DWvbC .framer-1pxhrwe > :last-child, .framer-DWvbC .framer-1kjny6x > :last-child, .framer-DWvbC .framer-3g3arc > :last-child, .framer-DWvbC .framer-14gs32z > :last-child, .framer-DWvbC .framer-vmida6 > :last-child, .framer-DWvbC .framer-10asmhj > :last-child, .framer-DWvbC .framer-1n2rj8l > :last-child, .framer-DWvbC .framer-1v01lis > :last-child { margin-right: 0px; } .framer-DWvbC .framer-1ws0jh2 > *, .framer-DWvbC .framer-11rw7br > *, .framer-DWvbC .framer-u4ujh6 > *, .framer-DWvbC .framer-p782lr > *, .framer-DWvbC .framer-1pxhrwe > *, .framer-DWvbC .framer-3g3arc > *, .framer-DWvbC .framer-vmida6 > *, .framer-DWvbC .framer-1n2rj8l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DWvbC .framer-i3olcf > *, .framer-DWvbC .framer-1v01lis > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-DWvbC .framer-x9e131 > *, .framer-DWvbC .framer-vv32v4 > *, .framer-DWvbC .framer-fnpt1d > *, .framer-DWvbC .framer-1u6qop9 > *, .framer-DWvbC .framer-1jr2aoo > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-DWvbC .framer-142vqcx > *, .framer-DWvbC .framer-q7azzn > *, .framer-DWvbC .framer-3tsxgy > *, .framer-DWvbC .framer-1kjny6x > *, .framer-DWvbC .framer-14gs32z > *, .framer-DWvbC .framer-10asmhj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-DWvbC { background: rgb(247, 243, 252); } .framer-DWvbC.framer-72rtr7 { width: 810px; } .framer-DWvbC .framer-1i2tyv6 { padding: 120px 40px 60px 40px; } .framer-DWvbC .framer-kpzraf { padding: 120px 40px 120px 40px; } .framer-DWvbC .framer-1enk9j6-container { height: var(--framer-aspect-ratio-supported, 411px); }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-DWvbC { background: rgb(247, 243, 252); } .framer-DWvbC.framer-72rtr7 { width: 390px; } .framer-DWvbC .framer-1kdxca4-container { position: fixed; } .framer-DWvbC .framer-6pxhnv { padding: 120px 0px 80px 0px; } .framer-DWvbC .framer-srpujp, .framer-DWvbC .framer-s9gm2u { padding: 0px 20px 0px 20px; } .framer-DWvbC .framer-i3olcf, .framer-DWvbC .framer-u4ujh6, .framer-DWvbC .framer-p782lr, .framer-DWvbC .framer-q7azzn, .framer-DWvbC .framer-1pxhrwe, .framer-DWvbC .framer-3g3arc, .framer-DWvbC .framer-vmida6, .framer-DWvbC .framer-1n2rj8l, .framer-DWvbC .framer-1v01lis { flex-direction: column; } .framer-DWvbC .framer-1qhm4qf-container, .framer-DWvbC .framer-4vpip1-container, .framer-DWvbC .framer-wirybp-container, .framer-DWvbC .framer-1h29ayl-container { max-width: 200px; width: 100%; } .framer-DWvbC .framer-1i2tyv6 { flex: none; padding: 80px 0px 80px 0px; width: 100%; } .framer-DWvbC .framer-64x6m { gap: 0px; } .framer-DWvbC .framer-x9e131, .framer-DWvbC .framer-vv32v4, .framer-DWvbC .framer-fnpt1d, .framer-DWvbC .framer-1u6qop9, .framer-DWvbC .framer-1jr2aoo { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 100%); background-color: rgba(255, 255, 255, 0.75); box-shadow: 0px 0.6021873017743928px 1.5656869846134214px 0px rgba(0, 0, 0, 0.01), 0px 2.288533303243457px 5.950186588432988px 0px rgba(0, 0, 0, 0.03433), 0px 10px 26px 0px rgba(0, 0, 0, 0.15); flex: none; left: 55%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 270px; z-index: 3; } .framer-DWvbC .framer-194nu0x, .framer-DWvbC .framer-17epl4w, .framer-DWvbC .framer-18b224s, .framer-DWvbC .framer-1ibm3kq, .framer-DWvbC .framer-13a6uha { height: var(--framer-aspect-ratio-supported, 28px); width: 28px; } .framer-DWvbC .framer-kpzraf { flex: none; padding: 0px; width: 100%; } .framer-DWvbC .framer-1enk9j6-container { height: var(--framer-aspect-ratio-supported, 219px); } .framer-DWvbC .framer-1ojhq13 { padding: 64px 20px 64px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DWvbC .framer-i3olcf, .framer-DWvbC .framer-u4ujh6, .framer-DWvbC .framer-64x6m, .framer-DWvbC .framer-p782lr, .framer-DWvbC .framer-q7azzn, .framer-DWvbC .framer-1pxhrwe, .framer-DWvbC .framer-3g3arc, .framer-DWvbC .framer-vmida6, .framer-DWvbC .framer-1n2rj8l, .framer-DWvbC .framer-1v01lis { gap: 0px; } .framer-DWvbC .framer-i3olcf > *, .framer-DWvbC .framer-1v01lis > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-DWvbC .framer-i3olcf > :first-child, .framer-DWvbC .framer-u4ujh6 > :first-child, .framer-DWvbC .framer-64x6m > :first-child, .framer-DWvbC .framer-p782lr > :first-child, .framer-DWvbC .framer-q7azzn > :first-child, .framer-DWvbC .framer-1pxhrwe > :first-child, .framer-DWvbC .framer-3g3arc > :first-child, .framer-DWvbC .framer-vmida6 > :first-child, .framer-DWvbC .framer-1n2rj8l > :first-child, .framer-DWvbC .framer-1v01lis > :first-child { margin-top: 0px; } .framer-DWvbC .framer-i3olcf > :last-child, .framer-DWvbC .framer-u4ujh6 > :last-child, .framer-DWvbC .framer-64x6m > :last-child, .framer-DWvbC .framer-p782lr > :last-child, .framer-DWvbC .framer-q7azzn > :last-child, .framer-DWvbC .framer-1pxhrwe > :last-child, .framer-DWvbC .framer-3g3arc > :last-child, .framer-DWvbC .framer-vmida6 > :last-child, .framer-DWvbC .framer-1n2rj8l > :last-child, .framer-DWvbC .framer-1v01lis > :last-child { margin-bottom: 0px; } .framer-DWvbC .framer-u4ujh6 > *, .framer-DWvbC .framer-64x6m > *, .framer-DWvbC .framer-p782lr > *, .framer-DWvbC .framer-1pxhrwe > *, .framer-DWvbC .framer-3g3arc > *, .framer-DWvbC .framer-vmida6 > *, .framer-DWvbC .framer-1n2rj8l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DWvbC .framer-q7azzn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6514\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DPvKhKRlI\":{\"layout\":[\"fixed\",\"auto\"]},\"HrUQaddV8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-DWvbC\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6514,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"}]},...NavigationFonts,...PhoneMockupDefaultSmallFonts,...PhoneMockupDefaultLargeFonts,...PatternFonts,...ButtonsPrimaryFonts,...YouTubeFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"6514\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DPvKhKRlI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HrUQaddV8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Pattern", "props", "patternType", "front", "back", "radius", "scale", "shouldAnimate", "direction", "diagonal", "duration", "isCanvas", "RenderTarget", "pattern", "position", "size", "repeat", "blendMode", "filter", "addBackground", "backgroundPosAnimation", "frontHex", "Color", "backHex", "frontWithoutHex", "backWithoutHex", "factor", "xScale", "yScale", "p", "motion", "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", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "toResponsiveImage", "transition1", "toImageSrc", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "poster", "radius", "video", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hkER3s2E3", "UXLq1sxOJ", "w02mljpJa", "PXGsCbtVD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "ComponentViewportProvider", "css", "FramerpdJaT6lnS", "withCSS", "pdJaT6lnS_default", "addPropertyControls", "ControlType", "addFonts", "PhoneMockupScreenContentFonts", "getFonts", "pdJaT6lnS_default", "PhoneMockupScreenContentControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "negate", "value", "transition2", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "image", "notch", "screenContent", "video", "videoPoster", "width", "props", "_humanReadableEnumMap_screenContent", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "P7fiRiQ_n", "P5gjcV5ym", "Qdp8M_Ki1", "n02YmShp2", "zJpvdHd_j", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerKjBGXFn33", "withCSS", "KjBGXFn33_default", "addPropertyControls", "ControlType", "addFonts", "PhoneMockupScreenContentFonts", "getFonts", "pdJaT6lnS_default", "PhoneMockupScreenContentControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "negate", "value", "transition2", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "image", "notch", "screenContent", "video", "videoPoster", "width", "props", "_humanReadableEnumMap_screenContent", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "P7fiRiQ_n", "P5gjcV5ym", "Qdp8M_Ki1", "n02YmShp2", "zJpvdHd_j", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "ComponentViewportProvider", "css", "FramertwpNbRFPm", "withCSS", "twpNbRFPm_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "HwL_wPwDF_default", "PhoneMockupDefaultSmallFonts", "twpNbRFPm_default", "ContainerWithFX", "withFX", "Container", "PhoneMockupDefaultLargeFonts", "KjBGXFn33_default", "PatternFonts", "Pattern", "MotionDivWithFX", "motion", "ButtonsPrimaryFonts", "sRUv07toy_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "ImageWithFX", "Image2", "YouTubeFonts", "Youtube", "FooterFonts", "A6YZ7SwMg_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "animation1", "transition2", "animation2", "addImageAlt", "image", "alt", "animation3", "transition3", "animation4", "animation5", "animation6", "transition4", "animation7", "transition5", "animation8", "animation9", "animation10", "transition6", "animation11", "animation12", "animation13", "transformTemplate1", "_", "t", "animation14", "textEffect1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "PropertyOverrides2", "Container", "HwL_wPwDF_default", "RichText2", "x", "ContainerWithFX", "twpNbRFPm_default", "KjBGXFn33_default", "MotionDivWithFX", "Pattern", "MotionDivWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "sRUv07toy_default", "resolvedLinks1", "getLoadingLazyAtYPosition", "Image2", "ImageWithFX", "Youtube", "resolvedLinks2", "resolvedLinks3", "A6YZ7SwMg_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "PhoneMockupDefaultSmallFonts", "PhoneMockupDefaultLargeFonts", "PatternFonts", "ButtonsPrimaryFonts", "YouTubeFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
