{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0", "ssg:https://framerusercontent.com/modules/2DjIkbkpgvIkNOjjhR6x/iC4FPhub9qW33qw2W4cA/Input.js", "ssg:https://framerusercontent.com/modules/4TG0CA0xFC8r92HZNVLs/oNHmObL27xLBv67Gbys4/Input.js", "ssg:https://framerusercontent.com/modules/rvEG2OmnbafKrRzqwGXY/F1sEpQ9i0cs2ufC2lsSL/ANk80rNmD.js", "ssg:https://framerusercontent.com/modules/veVUSQhAAoyiRjIMo0U8/WUYNLUQ6xdF8gmt7VR9d/w5d74BhUj.js", "ssg:https://framerusercontent.com/modules/vgKFUnQpcIuyqBK0nKxu/vFTpxS32p8dbeBQuwIdu/UMJo7InZ2.js"],
  "sourcesContent": ["import{useLayoutEffect,useEffect}from\"react\";/**\n * Swaps `useLayoutEffect` for `useEffect` on the server to avoid React warnings.\n * NOTE! The effect won't run on the server.\n */ export const useIsomorphicLayoutEffect=typeof document!==\"undefined\"?useLayoutEffect:useEffect;\nexport const __FramerMetadata__ = {\"exports\":{\"useIsomorphicLayoutEffect\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useIsomorphicLayoutEffect.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// @ts-ignore\nimport{ControlType,addPropertyControls,withCSS}from\"framer\";import{useCallback,useEffect,useRef,useMemo}from\"react\";import{fontStack,fontControls,fontSizeOptions,useOnEnter,useFontControls,useIsInPreview,usePadding,useRadius,paddingControl,borderRadiusControl,useControlledState}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useIsomorphicLayoutEffect}from\"https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0\";/**\n * INPUT\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export const Input=withCSS(function Input(props){const{placeholder,backgroundColor,textColor,border,borderWidth,password,onSubmit,onFocus,onBlur,value,textAlign,multiLine,placeholderColor,focused,inputStyle,caretColor,fontFamily,blurOnSubmit,disabled,keyboard,truncate,onChange,onValueChange,maxLength,lineHeight,enableLimit,isRTL,style}=props;const[inputValue,setValue]=useControlledState(value);const inputEle=useRef();const Tag=useMemo(()=>multiLine?\"textarea\":\"input\",[multiLine,]);const inPreview=useIsInPreview();const fontStyles=useFontControls(props);const paddingValue=usePadding(props);const borderRadius=useRadius(props);const handleChange=useCallback(event=>{const element=multiLine?event.nativeEvent.target:event.nativeEvent.target;const value=element.value;setValue(value);if(onChange)onChange(value);if(onValueChange)onValueChange(value);},[onChange,multiLine]);useOnEnter(()=>{if(inPreview&&focused)inputEle.current.focus();});useEffect(()=>{if(inPreview&&focused)inputEle.current.focus();},[focused]);useIsomorphicLayoutEffect(()=>{// I only want to control my own height is auto-sizing is enabled\nif(multiLine&&props.style.height!==\"100%\"){// Autosizing hack for multi-line textareas, may have perf impact\ninputEle.current.style.height=\"auto\";inputEle.current.style.height=inputEle.current.scrollHeight+\"px\";}},[inputValue,multiLine,style===null||style===void 0?void 0:style.height,placeholder]);return /*#__PURE__*/ _jsx(Tag,{onChange:handleChange,ref:inputEle,value:inputValue,placeholder:placeholder,onKeyDown:e=>{if(e.keyCode===13){if(blurOnSubmit&&inputEle.current)inputEle.current.blur();if(onSubmit)onSubmit();}},disabled:disabled,onFocus:()=>{if(onFocus)onFocus();},onBlur:()=>{if(onBlur)onBlur();},maxLength:enableLimit?maxLength:524288,autoFocus:inPreview&&focused,className:\"framer-default-input\",rows:1,style:{\"--framer-default-input-border-width\":`${props.borderWidth}px`,\"--framer-default-input-border-color\":props.focusColor,\"--framer-default-input-placeholder-color\":props.placeholderColor,...baseInputStyles,color:textColor,backgroundColor,borderRadius,textAlign,lineHeight,caretColor,margin:0,display:\"flex\",height:\"auto\",padding:paddingValue,direction:isRTL?\"rtl\":\"ltr\",overflow:\"show\",textOverflow:truncate?\"ellipsis\":\"unset\",boxShadow:!inPreview&&focused?`inset 0 0 0 ${props.borderWidth}px ${props.focusColor}`:`inset 0 0 0 ${borderWidth}px ${border}`,...inputStyle,...style,...fontStyles},type:password?\"password\":\"text\",inputMode:keyboard});},[\".framer-default-input { --framer-default-input-border-width: 1px; --framer-default-input-border-color: #09f; --framer-default-input-placeholder-color: #aaa; }\",\".framer-default-input:focus { box-shadow: inset 0 0 0 var(--framer-default-input-border-width) var(--framer-default-input-border-color) !important; }\",\".framer-default-input::placeholder { color: var(--framer-default-input-placeholder-color) !important; }\",]);Input.defaultProps={value:\"\",placeholder:\"Type something\u2026\",width:260,height:50,backgroundColor:\"#EBEBEB\",textColor:\"#333\",focusColor:\"#09F\",fontSize:16,fontWeight:400,borderRadius:8,lineHeight:1.4,padding:15,border:\"rgba(0,0,0,0)\",placeholderColor:\"#aaa\",borderWidth:1,truncate:false,alignment:\"left\",caretColor:\"#333\",multiLine:false,maxLength:10,password:false,keyboard:\"\"};addPropertyControls(Input,{placeholder:{type:ControlType.String,title:\"Placeholder\"},value:{type:ControlType.String,title:\"Value\"},textColor:{type:ControlType.Color,title:\"Text\"},caretColor:{type:ControlType.Color,title:\"Caret\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder\"},backgroundColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Color,title:\"Border\"},borderWidth:{type:ControlType.Number,title:\" \",min:1,max:5,displayStepper:true},focusColor:{type:ControlType.Color,title:\"Focus\"},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},...fontControls,fontSize:{...fontSizeOptions},lineHeight:{type:ControlType.Number,min:0,step:.1,max:2,displayStepper:true},...paddingControl,...borderRadiusControl,textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},isRTL:{type:ControlType.Boolean,title:\"Direction\",enabledTitle:\"RTL\",disabledTitle:\"LTR\",defaultValue:false},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},multiLine:{type:ControlType.Boolean,title:\"Text Area\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},truncate:{type:ControlType.Boolean,title:\"Truncate\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\",hidden:({multiLine})=>multiLine},password:{type:ControlType.Boolean,title:\"Password\",hidden:({multiLine})=>multiLine,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},enableLimit:{title:\"Limit\",type:ControlType.Boolean,displayStepper:true,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},maxLength:{title:\" \",type:ControlType.Number,// @ts-ignore\ndefaultValue:Input.defaultProps.maxLength,displayStepper:true,min:1,hidden:({enableLimit})=>!enableLimit},keyboard:{type:ControlType.Enum,title:\"Keyboard\",defaultValue:\"\",options:[\"\",\"numeric\",\"tel\",\"decimal\",\"email\",\"url\",\"search\"],optionTitles:[\"Default\",\"Numeric\",\"Phone\",\"Decimal\",\"Email\",\"URL\",\"Search\",]},onChange:{type:ControlType.EventHandler},onSubmit:{type:ControlType.EventHandler},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler}});const baseInputStyles={pointerEvents:\"auto\",border:\"none\",width:\"100%\",boxSizing:\"border-box\",outline:\"none\",resize:\"none\",margin:0,fontFamily:fontStack,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitAppearance:\"none\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"50\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"260\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// @ts-ignore\nimport{ControlType,addPropertyControls,withCSS}from\"framer\";import{useCallback,useEffect,useRef,useMemo}from\"react\";import{fontStack,fontControls,fontSizeOptions,useOnEnter,useFontControls,useIsInPreview,usePadding,useRadius,paddingControl,borderRadiusControl,useControlledState}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useIsomorphicLayoutEffect}from\"https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0\";/**\n * INPUT\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export const Input=withCSS(function Input(props){const{placeholder,backgroundColor,textColor,border,borderWidth,password,onSubmit,onFocus,onBlur,value,textAlign,multiLine,placeholderColor,focused,inputStyle,caretColor,fontFamily,blurOnSubmit,disabled,keyboard,truncate,onChange,onValueChange,maxLength,lineHeight,enableLimit,isRTL,style}=props;const[inputValue,setValue]=useControlledState(value);const inputEle=useRef();const Tag=useMemo(()=>multiLine?\"textarea\":\"input\",[multiLine,]);const inPreview=useIsInPreview();const fontStyles=useFontControls(props);const paddingValue=usePadding(props);const borderRadius=useRadius(props);const handleChange=useCallback(event=>{const element=multiLine?event.nativeEvent.target:event.nativeEvent.target;const value=element.value;setValue(value);if(onChange)onChange(value);if(onValueChange)onValueChange(value);},[onChange,multiLine]);useOnEnter(()=>{if(inPreview&&focused)inputEle.current.focus();});useEffect(()=>{if(inPreview&&focused)inputEle.current.focus();},[focused]);useIsomorphicLayoutEffect(()=>{// I only want to control my own height is auto-sizing is enabled\nif(multiLine&&props.style.height!==\"100%\"){// Autosizing hack for multi-line textareas, may have perf impact\ninputEle.current.style.height=\"auto\";inputEle.current.style.height=inputEle.current.scrollHeight+\"px\";}},[inputValue,multiLine,style===null||style===void 0?void 0:style.height,placeholder]);return(/*#__PURE__*/ _jsx(Tag,{onChange:handleChange,ref:inputEle,value:inputValue,placeholder:placeholder,onKeyDown:e=>{if(e.keyCode===13){if(blurOnSubmit&&inputEle.current)inputEle.current.blur();if(onSubmit)onSubmit();}},disabled:disabled,onFocus:()=>{if(onFocus)onFocus();},onBlur:()=>{if(onBlur)onBlur();},maxLength:enableLimit?maxLength:524288,autoFocus:inPreview&&focused,className:\"framer-default-input\",rows:1,style:{\"--framer-default-input-border-width\":`${props.borderWidth}px`,\"--framer-default-input-border-color\":props.focusColor,\"--framer-default-input-placeholder-color\":props.placeholderColor,...baseInputStyles,color:textColor,backgroundColor,borderRadius,textAlign,lineHeight,caretColor,margin:0,display:\"flex\",height:\"auto\",padding:paddingValue,direction:isRTL?\"rtl\":\"ltr\",overflow:\"show\",textOverflow:truncate?\"ellipsis\":\"unset\",boxShadow:!inPreview&&focused?`inset 0 0 0 ${props.borderWidth}px ${props.focusColor}`:`inset 0 0 0 ${borderWidth}px ${border}`,...inputStyle,...style,...fontStyles},type:password?\"password\":\"text\",inputMode:keyboard}));},[\".framer-default-input { --framer-default-input-border-width: 1px; --framer-default-input-border-color: #09f; --framer-default-input-placeholder-color: #aaa; }\",\".framer-default-input:focus { box-shadow: inset 0 0 0 var(--framer-default-input-border-width) var(--framer-default-input-border-color) !important; }\",\".framer-default-input::placeholder { color: var(--framer-default-input-placeholder-color) !important; }\",]);Input.defaultProps={value:\"\",placeholder:\"Type something\u2026\",width:260,height:50,backgroundColor:\"#EBEBEB\",textColor:\"#333\",focusColor:\"#09F\",fontSize:16,fontWeight:400,borderRadius:8,lineHeight:1.4,padding:15,border:\"rgba(0,0,0,0)\",placeholderColor:\"#aaa\",borderWidth:1,truncate:false,alignment:\"left\",caretColor:\"#333\",multiLine:false,maxLength:10,password:false,keyboard:\"\"};addPropertyControls(Input,{placeholder:{type:ControlType.String,title:\"Placeholder\"},value:{type:ControlType.String,title:\"Value\"},textColor:{type:ControlType.Color,title:\"Text\"},caretColor:{type:ControlType.Color,title:\"Caret\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder\"},backgroundColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Color,title:\"Border\"},borderWidth:{type:ControlType.Number,title:\" \",min:1,max:5,displayStepper:true},focusColor:{type:ControlType.Color,title:\"Focus\"},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},...fontControls,fontSize:{...fontSizeOptions},lineHeight:{type:ControlType.Number,min:0,step:0.1,max:2,displayStepper:true},...paddingControl,...borderRadiusControl,textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},isRTL:{type:ControlType.Boolean,title:\"Direction\",enabledTitle:\"RTL\",disabledTitle:\"LTR\",defaultValue:false},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},multiLine:{type:ControlType.Boolean,title:\"Text Area\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},truncate:{type:ControlType.Boolean,title:\"Truncate\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\",hidden:({multiLine})=>multiLine},password:{type:ControlType.Boolean,title:\"Password\",hidden:({multiLine})=>multiLine,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},enableLimit:{title:\"Limit\",type:ControlType.Boolean,displayStepper:true,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},maxLength:{title:\" \",type:ControlType.Number,// @ts-ignore\ndefaultValue:Input.defaultProps.maxLength,displayStepper:true,min:1,hidden:({enableLimit})=>!enableLimit},keyboard:{type:ControlType.Enum,title:\"Keyboard\",defaultValue:\"\",options:[\"\",\"numeric\",\"tel\",\"decimal\",\"email\",\"url\",\"search\"],optionTitles:[\"Default\",\"Numeric\",\"Phone\",\"Decimal\",\"Email\",\"URL\",\"Search\",]},onChange:{type:ControlType.EventHandler},onSubmit:{type:ControlType.EventHandler},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler}});const baseInputStyles={pointerEvents:\"auto\",border:\"none\",width:\"100%\",boxSizing:\"border-box\",outline:\"none\",resize:\"none\",margin:0,fontFamily:fontStack,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitAppearance:\"none\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"260\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Roboto Serif-regular\",\"GF;Roboto Serif-700\",\"GF;Roboto Serif-700italic\",\"GF;Roboto Serif-italic\"]);export const fonts=[{family:\"Roboto Serif\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6J2Af5fR4k.woff2\",weight:\"400\"},{family:\"Roboto Serif\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6J2Af5fR4k.woff2\",weight:\"700\"},{family:\"Roboto Serif\",style:\"italic\",url:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8ANxaV4nUFw.woff2\",weight:\"700\"},{family:\"Roboto Serif\",style:\"italic\",url:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8ANxaV4nUFw.woff2\",weight:\"400\"}];export const css=['.framer-w0ywW .framer-styles-preset-16p0bgx:not(.rich-text-wrapper), .framer-w0ywW .framer-styles-preset-16p0bgx.rich-text-wrapper h2 { --framer-font-family: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-bold: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-bold-italic: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-italic: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, #181111); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-w0ywW\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Roboto Serif-regular\",\"GF;Roboto Serif-700\",\"GF;Roboto Serif-700italic\",\"GF;Roboto Serif-italic\"]);export const fonts=[{family:\"Roboto Serif\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6J2Af5fR4k.woff2\",weight:\"400\"},{family:\"Roboto Serif\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotoserif/v13/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6J2Af5fR4k.woff2\",weight:\"700\"},{family:\"Roboto Serif\",style:\"italic\",url:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8ANxaV4nUFw.woff2\",weight:\"700\"},{family:\"Roboto Serif\",style:\"italic\",url:\"https://fonts.gstatic.com/s/robotoserif/v13/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8ANxaV4nUFw.woff2\",weight:\"400\"}];export const css=['.framer-qgbXN .framer-styles-preset-1haubxk:not(.rich-text-wrapper), .framer-qgbXN .framer-styles-preset-1haubxk.rich-text-wrapper h1 { --framer-font-family: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-bold: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-bold-italic: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-italic: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, #181111); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-qgbXN .framer-styles-preset-1haubxk:not(.rich-text-wrapper), .framer-qgbXN .framer-styles-preset-1haubxk.rich-text-wrapper h1 { --framer-font-family: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-bold: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-bold-italic: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-italic: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-size: 29px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, #181111); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-qgbXN .framer-styles-preset-1haubxk:not(.rich-text-wrapper), .framer-qgbXN .framer-styles-preset-1haubxk.rich-text-wrapper h1 { --framer-font-family: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-bold: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-bold-italic: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-family-italic: \"Roboto Serif\", \"Roboto Serif Placeholder\", serif; --framer-font-size: 23px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, #181111); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-qgbXN\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (53c1d35)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Input}from\"https://framerusercontent.com/modules/2DjIkbkpgvIkNOjjhR6x/iC4FPhub9qW33qw2W4cA/Input.js\";import{Input as Input1}from\"https://framerusercontent.com/modules/4TG0CA0xFC8r92HZNVLs/oNHmObL27xLBv67Gbys4/Input.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/FzZ67ct97QwFne6Bf7ku/Ticker.js\";import PrimaryButton from\"https://framerusercontent.com/modules/f1ZozondrmD3Z7t5HOUw/M1O7YnxoxgaWPy5pVpEp/VxuuvsNI6.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import FooterDarkCopy from\"#framer/local/canvasComponent/QybIagL2w/QybIagL2w.js\";import ObituarySubmissionCost from\"#framer/local/collection/SPcpKMEJ7/SPcpKMEJ7.js\";import TributesObituaryArticles from\"#framer/local/collection/SyeBVXsHS/SyeBVXsHS.js\";import*as sharedStyle4 from\"#framer/local/css/ANk80rNmD/ANk80rNmD.js\";import*as sharedStyle3 from\"#framer/local/css/itEhhGbxo/itEhhGbxo.js\";import*as sharedStyle6 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle from\"#framer/local/css/TgesJdGZY/TgesJdGZY.js\";import*as sharedStyle1 from\"#framer/local/css/w5d74BhUj/w5d74BhUj.js\";import*as sharedStyle2 from\"#framer/local/css/WFxQPp2kw/WFxQPp2kw.js\";import*as sharedStyle5 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import metadataProvider from\"#framer/local/webPageMetadata/UMJo7InZ2/UMJo7InZ2.js\";const TickerFonts=getFonts(Ticker);const PrimaryButtonFonts=getFonts(PrimaryButton);const MotionDivWithFX=withFX(motion.div);const InputFonts=getFonts(Input);const Input1Fonts=getFonts(Input1);const EmbedFonts=getFonts(Embed);const FooterDarkCopyFonts=getFonts(FooterDarkCopy);const breakpoints={CzPwyoFqY:\"(max-width: 809.98px)\",J3t0EUy5S:\"(min-width: 1440px)\",ZJS0rNeYb:\"(min-width: 810px) and (max-width: 1439.98px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-MQJNo\";const variantClassNames={CzPwyoFqY:\"framer-v-80c6w2\",J3t0EUy5S:\"framer-v-dqzu38\",ZJS0rNeYb:\"framer-v-v4ib82\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:150,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"J3t0EUy5S\",Phone:\"CzPwyoFqY\",Tablet:\"ZJS0rNeYb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"J3t0EUy5S\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,h5IOL6j2HhQj84PHTK,GuQaWt5xphQj84PHTK,B640aWvrVhQj84PHTK,uF53idefthQj84PHTK,idhQj84PHTK,p8TKWjoB2vPKdcTs1T,Bw0kjJG5MvPKdcTs1T,ZykksqN7evPKdcTs1T,q4AxOMKiFvPKdcTs1T,idvPKdcTs1T,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"CzPwyoFqY\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"CzPwyoFqY\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"J3t0EUy5S\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(30, 99, 161); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-dqzu38\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ltpy4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hsaj98\",\"data-framer-name\":\"Tickers\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xe5muw-container\",\"data-framer-name\":\"Bottom\",isAuthoredByUser:true,isModuleExternal:true,name:\"Bottom\",nodeId:\"urUhoQ18m\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{gap:72,padding:50,paddingBottom:50,paddingLeft:50,paddingRight:50,paddingTop:50}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:112,height:\"100%\",hoverFactor:1,id:\"urUhoQ18m\",layoutId:\"urUhoQ18m\",name:\"Bottom\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,pixelHeight:4032,pixelWidth:3024,src:\"https://framerusercontent.com/images/hcOeIsyFThf0dRbArfas0Qzv7G0.jpg?scale-down-to=512&width=3024&height=4032\"},className:\"framer-1yd60q\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:3095,intrinsicWidth:4643,pixelHeight:3095,pixelWidth:4643,src:\"https://framerusercontent.com/images/VQcXESWbtijemFEgKvRlgTOI.jpg?scale-down-to=512&width=4643&height=3095\"},className:\"framer-1flfdu4\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,pixelHeight:4500,pixelWidth:3e3,src:\"https://framerusercontent.com/images/wvGRhh51RFjTDYcnOJdfpIWa0xg.jpg?scale-down-to=512&width=3000&height=4500\"},className:\"framer-wokjoe\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:5472,intrinsicWidth:3648,pixelHeight:5472,pixelWidth:3648,src:\"https://framerusercontent.com/images/DDbDjOSQKDgvk7y0yC2wZQi50jM.jpg?scale-down-to=512&width=3648&height=5472\"},className:\"framer-1ifpsmu\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:3680,intrinsicWidth:5659,pixelHeight:3680,pixelWidth:5659,src:\"https://framerusercontent.com/images/YlINfQr3d1ja9fS8mmCrsVk1sI.jpg?scale-down-to=512&width=5659&height=3680\"},className:\"framer-5tvd15\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:5436,intrinsicWidth:3624,pixelHeight:5436,pixelWidth:3624,src:\"https://framerusercontent.com/images/inWBHDhIOR9t6Y8N93lDq1GCQE.jpg?scale-down-to=512&width=3624&height=5436\"},className:\"framer-145p52e\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:4749,intrinsicWidth:3166,pixelHeight:4749,pixelWidth:3166,src:\"https://framerusercontent.com/images/ASIJqc1u1GMBJMmXVVdQ7uANw9I.jpg?scale-down-to=512&width=3166&height=4749\"},className:\"framer-1y4xor3\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i6uiq0-container hidden-80c6w2\",\"data-framer-name\":\"Top\",isAuthoredByUser:true,isModuleExternal:true,name:\"Top\",nodeId:\"JWZhl2U8o\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"JWZhl2U8o\",layoutId:\"JWZhl2U8o\",name:\"Top\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:2464,intrinsicWidth:1632,pixelHeight:2464,pixelWidth:1632,src:\"https://framerusercontent.com/images/qac60R1JAjsPzsCx8gogQ0JgE.jpg?scale-down-to=512&width=1632&height=2464\"},className:\"framer-1u7x5zl\",\"data-framer-name\":\"top-1\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:2448,intrinsicWidth:3264,pixelHeight:2448,pixelWidth:3264,src:\"https://framerusercontent.com/images/fviXJ8Mu4uuTUNVxXMv9pcFx2E.jpg?scale-down-to=512&width=3264&height=2448\"},className:\"framer-1bdfc32\",\"data-framer-name\":\"top-2\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:5184,intrinsicWidth:3456,pixelHeight:5184,pixelWidth:3456,src:\"https://framerusercontent.com/images/MBfk04zAWsfsTIXkpsvpwomEsk.jpg?scale-down-to=512&width=3456&height=5184\"},className:\"framer-1li1vkw\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,src:\"https://framerusercontent.com/images/jyqMPHXgKUfe35Fn2EivFnPhs.jpg?scale-down-to=512&width=6000&height=4000\"},className:\"framer-r3xko6\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,pixelHeight:4e3,pixelWidth:6e3,src:\"https://framerusercontent.com/images/ojrtNzHIiAlQwqR6PmWhi5MTng.jpg?scale-down-to=512&width=6000&height=4000\"},className:\"framer-zan0d1\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:3350,intrinsicWidth:2737,pixelHeight:3350,pixelWidth:2737,src:\"https://framerusercontent.com/images/AoMIZmIpx6FiU6WyKTv0y8oQuk.jpg?scale-down-to=512&width=2737&height=3350\"},className:\"framer-yrggwr\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:5472,intrinsicWidth:3648,pixelHeight:5472,pixelWidth:3648,src:\"https://framerusercontent.com/images/0FmpmXCIYZ1XiMNN8JWMHnWmk.jpg?scale-down-to=512&width=3648&height=5472\"},className:\"framer-1nogzw6\"})],speed:33,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jvpzsz-container\",\"data-framer-name\":\"Middle\",isAuthoredByUser:true,isModuleExternal:true,name:\"Middle\",nodeId:\"wqdmnTFfx\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{gap:36}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"wqdmnTFfx\",layoutId:\"wqdmnTFfx\",name:\"Middle\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,pixelHeight:6e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/VDYEjPjLqlGxrpbHuSzegwzr8.jpg?scale-down-to=512&width=4000&height=6000\"},className:\"framer-1mrab9j\",\"data-framer-name\":\"1\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:2975,intrinsicWidth:3813,pixelHeight:2975,pixelWidth:3813,src:\"https://framerusercontent.com/images/VBHDuwtEkD7RUWDxsNcQIuCGW8.jpg?scale-down-to=512&width=3813&height=2975\"},className:\"framer-14m0nuh\",\"data-framer-name\":\"2\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:5616,intrinsicWidth:3744,pixelHeight:5616,pixelWidth:3744,src:\"https://framerusercontent.com/images/qhYj0dbGtD75n4IWob5MxW3z8M.jpg?scale-down-to=512&width=3744&height=5616\"},className:\"framer-1tg4jjs\",\"data-framer-name\":\"3\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:4513,intrinsicWidth:3009,pixelHeight:4513,pixelWidth:3009,src:\"https://framerusercontent.com/images/jYyP0jbjEbXbx1Ygj916dtYM.jpg?scale-down-to=512&width=3009&height=4513\"},className:\"framer-1u8ex85\",\"data-framer-name\":\"4\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:5616,intrinsicWidth:3744,pixelHeight:5616,pixelWidth:3744,src:\"https://framerusercontent.com/images/F7a3X3xuehxJCCFfML3DC0Xjo.jpg?scale-down-to=512&width=3744&height=5616\"},className:\"framer-tx0ikb\",\"data-framer-name\":\"5\"}),/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"\">',background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,pixelHeight:4096,pixelWidth:3276,src:\"https://framerusercontent.com/images/X0wsngqA1ErHf7zsAOnK0KcL1gk.jpg?scale-down-to=512&width=3276&height=4096\"},className:\"framer-19k7yr4\",\"data-framer-name\":\"6\"})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rhgxoj hidden-80c6w2\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cpyxyc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e8k31n\",\"data-framer-name\":\"Hero\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+16),pixelHeight:259,pixelWidth:971,positionX:\"center\",positionY:\"center\",sizes:\"142.2439px\",src:\"https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?width=971&height=259\",srcSet:\"https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?scale-down-to=512&width=971&height=259 512w,https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?width=971&height=259 971w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:640,pixelHeight:259,pixelWidth:971,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?width=971&height=259\",srcSet:\"https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?scale-down-to=512&width=971&height=259 512w,https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?width=971&height=259 971w\"},className:\"framer-1738mcf hidden-dqzu38 hidden-v4ib82\",\"data-framer-name\":\"logo\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i386vc\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1liirhl\",style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{\"aria-label\":'<img alt=\"Tributes.com\">',background:{alt:\"\",fit:\"fit\",intrinsicHeight:200,intrinsicWidth:640,pixelHeight:259,pixelWidth:971,positionX:\"center\",positionY:\"center\",sizes:\"266.5px\",src:\"https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?width=971&height=259\",srcSet:\"https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?scale-down-to=512&width=971&height=259 512w,https://framerusercontent.com/images/rMu5yE6HiOzvVUGfPsZEBeCJZiI.png?width=971&height=259 971w\"},className:\"framer-l0l92 hidden-80c6w2\",\"data-framer-name\":\"logo\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brnq6b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-vf5j5i\",\"data-styles-preset\":\"TgesJdGZY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-031c97b3-a0ab-4349-8808-91761393e667, rgb(251, 250, 248))\"},children:\"Share their life story.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-vf5j5i\",\"data-styles-preset\":\"TgesJdGZY\",style:{\"--framer-text-color\":\"var(--token-031c97b3-a0ab-4349-8808-91761393e667, rgb(251, 250, 248))\"},children:\"Share their life story.\"})}),className:\"framer-15n8v69\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-031c97b3-a0ab-4349-8808-91761393e667, rgb(251, 250, 248))\"},children:\"While Tributes.com is gone you can still find obituaries on Legacy.com. Find your obituary & funeral information with the links below.\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-031c97b3-a0ab-4349-8808-91761393e667, rgb(251, 250, 248))\"},children:\"While Tributes.com is gone you can still find obituaries on Legacy.com. Find your obituary & funeral information with the links below.\\xa0\"})}),className:\"framer-1j5oxeo\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s0dnlp-container\",isModuleExternal:true,nodeId:\"XCasXVTkJ\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(PrimaryButton,{cVKgz5c0y:\"https://www.legacy.com/place-an-obituary-anywhere?utm_campaign=tributeshomepagecta&utm_source=tributes&utm_medium=referral\",Dx9k0Xyd8:\"var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, rgb(0, 20, 30))\",FvvmyJ_Yf:true,height:\"100%\",I5rsizTbM:\"Submit an Obituary\",id:\"XCasXVTkJ\",IZAPR1K34:5,layoutId:\"XCasXVTkJ\",oboOssO3m:\"PersonAdd\",qN1PZnK1b:true,style:{height:\"100%\",width:\"100%\"},variant:\"PjuYSx2eB\",width:\"100%\",zsI_5UZf0:\"var(--token-23071062-d4b2-4714-89f5-40b58645cbca, rgb(250, 173, 90))\"})})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ujd7dn hidden-80c6w2\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t0ivv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdeoze\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-95iphj\",\"data-framer-name\":\"Search\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k6oone\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1haubxk\",\"data-styles-preset\":\"w5d74BhUj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Search the world's largest obituary database.\"})}),className:\"framer-bqtfim\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x278cs\",\"data-framer-name\":\"Fields & Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6szxf1\",\"data-framer-name\":\"Search Fields\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13by98b-container\",\"data-framer-name\":\"First_Name\",isAuthoredByUser:true,isModuleExternal:true,name:\"First_Name\",nodeId:\"xvpwqDJ5y\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{fontSize:18,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgba(255, 255, 255, 0)\",border:\"rgba(204, 208, 210, 0)\",borderRadius:19,borderWidth:2,bottomLeftRadius:10,bottomRightRadius:0,caretColor:\"rgb(0, 20, 30)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 102, 153)\",focused:false,font:true,fontFamily:\"Open Sans\",fontSize:20,fontWeight:600,height:\"100%\",id:\"xvpwqDJ5y\",isMixedBorderRadius:false,isRTL:false,keyboard:\"\",layoutId:\"xvpwqDJ5y\",lineHeight:1.2,maxLength:10,multiLine:false,name:\"First_Name\",padding:16,paddingBottom:16,paddingLeft:48,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"First Name\",placeholderColor:\"rgb(127, 137, 142)\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"rgb(0, 20, 30)\",topLeftRadius:10,topRightRadius:0,truncate:false,value:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qe0rdz\",\"data-framer-name\":\"Vertical Divider\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w3nw7j-container\",\"data-framer-name\":\"Last_Name\",isAuthoredByUser:true,isModuleExternal:true,name:\"Last_Name\",nodeId:\"O577FOqGP\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{fontSize:18,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Input1,{backgroundColor:\"rgba(255, 255, 255, 0)\",border:\"rgba(204, 208, 210, 0)\",borderRadius:19,borderWidth:2,bottomLeftRadius:0,bottomRightRadius:10,caretColor:\"rgb(0, 20, 30)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 102, 153)\",focused:false,font:true,fontFamily:\"open sans\",fontSize:20,fontWeight:600,height:\"100%\",id:\"O577FOqGP\",isMixedBorderRadius:false,isRTL:false,keyboard:\"\",layoutId:\"O577FOqGP\",lineHeight:1.2,maxLength:10,multiLine:false,name:\"Last_Name\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Last Name\",placeholderColor:\"rgb(127, 137, 142)\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"rgb(0, 20, 30)\",topLeftRadius:0,topRightRadius:10,truncate:false,value:\"\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tgi9t7-container\",isModuleExternal:true,nodeId:\"lvy8sBCuH\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{I5rsizTbM:\"Search\",variant:\"PjuYSx2eB\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{cVKgz5c0y:\"javascript:goToSearch();\",Dx9k0Xyd8:\"var(--token-b5f995ec-6f21-4f9c-a3db-fe93cfb5fc68, rgb(30, 99, 161))\",FvvmyJ_Yf:true,height:\"100%\",I5rsizTbM:\"Button\",id:\"lvy8sBCuH\",IZAPR1K34:5,layoutId:\"lvy8sBCuH\",oboOssO3m:\"Search\",qN1PZnK1b:false,style:{height:\"100%\",width:\"100%\"},variant:\"tCuOjPhHH\",width:\"100%\",zsI_5UZf0:\"var(--token-b14bdb86-f6ef-435d-9829-f21225062109, rgb(180, 149, 97))\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15e6lu7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-facqnx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-40uqt0\",\"data-styles-preset\":\"WFxQPp2kw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Need Help Writing and Publishing an Obituary?\"})}),className:\"framer-tn5m3u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, rgb(24, 17, 17))\"},children:\"Read one of our helpful articles below.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3BlbiBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, rgb(24, 17, 17))\"},children:\"Read one of our helpful articles below.\"})}),className:\"framer-101kl4v\",fonts:[\"GF;Open Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q2tthg\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hQj84PHTK\",data:TributesObituaryArticles,type:\"Collection\"},orderBy:[{collection:\"hQj84PHTK\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"hQj84PHTK\",name:\"h5IOL6j2H\",type:\"Identifier\"},{collection:\"hQj84PHTK\",name:\"GuQaWt5xp\",type:\"Identifier\"},{collection:\"hQj84PHTK\",name:\"B640aWvrV\",type:\"Identifier\"},{collection:\"hQj84PHTK\",name:\"uF53ideft\",type:\"Identifier\"},{collection:\"hQj84PHTK\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({B640aWvrV:B640aWvrVhQj84PHTK,GuQaWt5xp:GuQaWt5xphQj84PHTK,h5IOL6j2H:h5IOL6j2HhQj84PHTK,id:idhQj84PHTK,uF53ideft:uF53idefthQj84PHTK},index)=>{h5IOL6j2HhQj84PHTK??=\"\";B640aWvrVhQj84PHTK??=\"\";uF53idefthQj84PHTK??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hQj84PHTK-${idhQj84PHTK}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{h5IOL6j2H:h5IOL6j2HhQj84PHTK},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{h5IOL6j2H:h5IOL6j2HhQj84PHTK},webPageId:\"ulQFow74K\"},motionChild:true,nodeId:\"IOhKBAYuC\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-d15cig framer-wdo8oe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+724.4+0+0+0+318.4+32+220.8+0+1241.6+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,...toResponsiveImage(GuQaWt5xphQj84PHTK)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(GuQaWt5xphQj84PHTK)},className:\"framer-13odfvo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6qakgn\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p0bgx\",\"data-styles-preset\":\"ANk80rNmD\",children:\"Template for How to Write an Obituary\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnhwf\",\"data-styles-preset\":\"itEhhGbxo\",children:\"Title Tag\"})}),className:\"framer-1pjoqhb\",\"data-framer-name\":\"Title Tag\",fonts:[\"Inter\"],text:B640aWvrVhQj84PHTK,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, rgb(24, 17, 17))\"},children:\"Meta Description\"})}),className:\"framer-1xrjq21\",\"data-framer-name\":\"Meta Description\",fonts:[\"Inter\"],text:uF53idefthQj84PHTK,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idhQj84PHTK);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15n5658\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vPKdcTs1T\",data:ObituarySubmissionCost,type:\"Collection\"},orderBy:[{collection:\"vPKdcTs1T\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"vPKdcTs1T\",name:\"p8TKWjoB2\",type:\"Identifier\"},{collection:\"vPKdcTs1T\",name:\"Bw0kjJG5M\",type:\"Identifier\"},{collection:\"vPKdcTs1T\",name:\"ZykksqN7e\",type:\"Identifier\"},{collection:\"vPKdcTs1T\",name:\"q4AxOMKiF\",type:\"Identifier\"},{collection:\"vPKdcTs1T\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({Bw0kjJG5M:Bw0kjJG5MvPKdcTs1T,id:idvPKdcTs1T,p8TKWjoB2:p8TKWjoB2vPKdcTs1T,q4AxOMKiF:q4AxOMKiFvPKdcTs1T,ZykksqN7e:ZykksqN7evPKdcTs1T},index1)=>{p8TKWjoB2vPKdcTs1T??=\"\";ZykksqN7evPKdcTs1T??=\"\";q4AxOMKiFvPKdcTs1T??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vPKdcTs1T-${idvPKdcTs1T}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{p8TKWjoB2:p8TKWjoB2vPKdcTs1T},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{p8TKWjoB2:p8TKWjoB2vPKdcTs1T},webPageId:\"p4Pm453LC\"},motionChild:true,nodeId:\"AofeeoHpc\",openInNewTab:false,scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-rnnft8 framer-wdo8oe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+724.4+0+0+0+318.4+32+1756.8+0+0+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,...toResponsiveImage(Bw0kjJG5MvPKdcTs1T)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(Bw0kjJG5MvPKdcTs1T)},className:\"framer-12dgwi3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ajekee\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16p0bgx\",\"data-styles-preset\":\"ANk80rNmD\",children:\"Template for How to Write an Obituary\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3qnhwf\",\"data-styles-preset\":\"itEhhGbxo\",children:\"Guide to Writing a Meaningful Obituary\"})}),className:\"framer-qhpiyq\",\"data-framer-name\":\"Title Tag\",fonts:[\"Inter\"],text:ZykksqN7evPKdcTs1T,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, rgb(24, 17, 17))\"},children:\"Learn how to write an obituary that honors your loved one with grace and authenticity. This step-by-step guide from Tributes helps you craft a heartfelt tribute that reflects their life, legacy, and impact.\"})}),className:\"framer-192tejy\",\"data-framer-name\":\"Meta Description\",fonts:[\"Inter\"],text:q4AxOMKiFvPKdcTs1T,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idvPKdcTs1T);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qy331c\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1haubxk\",\"data-styles-preset\":\"w5d74BhUj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"See the latest celebrity tributes\"})}),className:\"framer-13v5h7o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ir50ha-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rbOUQAEPd\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{html:'<iframe width=\"320\" height=\"180\\n\" src=\"https://www.youtube.com/embed/videoseries?list=PL4XW2Z4C-yZHzfoVQPRhOUzL6jnHdrnBD\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>\\n'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/videoseries?si=1JkA_cGHa9vtZPo8&amp;list=PL4XW2Z4C-yZEya4iJeIsr_CEjqVjToHcN\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>',id:\"rbOUQAEPd\",layoutId:\"rbOUQAEPd\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tlfcup\",\"data-framer-name\":\"About\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-40uqt0\",\"data-styles-preset\":\"WFxQPp2kw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"About Us\"})}),className:\"framer-nexraw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qjidgo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Tributes.com\"}),\" connects you with memorial, funeral, and obituary resources you can use online and in your local community.\\xa0\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We understand how difficult it can be to find the perfect words to honor a loved one who has passed away. During this emotional time, Legacy.com can be a valuable resource.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"They offer a variety of tools to help you create a beautiful and \",/*#__PURE__*/_jsx(Link,{href:\"https://www.legacy.com/memorial-writing/\",motionChild:true,nodeId:\"vbSnNB3Zl\",openInNewTab:true,relValues:[],scopeId:\"UMJo7InZ2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"meaningful memorial obituary\"})}),\", including:\"]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Inspirational Writing Resources:\"}),\" Find guidance and \",/*#__PURE__*/_jsx(Link,{href:\"https://www.legacy.com/advice/obituary-examples/\",motionChild:true,nodeId:\"vbSnNB3Zl\",openInNewTab:true,relValues:[],scopeId:\"UMJo7InZ2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"obituary examples\"})}),\" to capture your loved one's unique story.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Easy-to-Use Templates:\"}),\" Get a head start on writing with \",/*#__PURE__*/_jsx(Link,{href:\"https://www.legacy.com/advice/obituary-examples/\",motionChild:true,nodeId:\"vbSnNB3Zl\",openInNewTab:true,relValues:[],scopeId:\"UMJo7InZ2\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"customizable obituary templates\"})}),\".\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Memorialization Options:\"}),\" Explore options like charitable donations in their memory or planting a memorial tree.\"]})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Visit Legacy.com to explore these resources and find comfort in remembering your loved one.\"})]}),className:\"framer-oul71c\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{y:(componentViewport?.y||0)+0+4672.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:410,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19toa8w-container\",\"data-framer-name\":\"Footer\",name:\"Footer\",nodeId:\"Wo68Gnwo0\",scopeId:\"UMJo7InZ2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CzPwyoFqY:{variant:\"GewwdDMn6\"},ZJS0rNeYb:{variant:\"LGM3Zj1JF\"}},children:/*#__PURE__*/_jsx(FooterDarkCopy,{height:\"100%\",id:\"Wo68Gnwo0\",layoutId:\"Wo68Gnwo0\",name:\"Footer\",style:{width:\"100%\"},variant:\"JeX5jO5IE\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MQJNo.framer-wdo8oe, .framer-MQJNo .framer-wdo8oe { display: block; }\",\".framer-MQJNo.framer-dqzu38 { align-content: center; align-items: center; background-color: #1e63a1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-MQJNo .framer-9ltpy4 { flex: none; height: 612px; overflow: hidden; position: absolute; right: 0px; top: -64px; width: 59%; z-index: 0; }\",\".framer-MQJNo .framer-hsaj98 { flex: none; gap: 10px; height: 500px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(50.81699346405231% - 500px / 2); z-index: 0; }\",\".framer-MQJNo .framer-xe5muw-container { bottom: -3px; flex: none; height: 211px; left: 0px; position: absolute; right: 0px; }\",\".framer-MQJNo .framer-1yd60q, .framer-MQJNo .framer-1flfdu4, .framer-MQJNo .framer-1ifpsmu, .framer-MQJNo .framer-1y4xor3, .framer-MQJNo .framer-1u7x5zl, .framer-MQJNo .framer-1li1vkw, .framer-MQJNo .framer-zan0d1, .framer-MQJNo .framer-1nogzw6 { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25); height: var(--framer-aspect-ratio-supported, 112px); overflow: hidden; position: relative; width: 112px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MQJNo .framer-wokjoe, .framer-MQJNo .framer-5tvd15, .framer-MQJNo .framer-145p52e, .framer-MQJNo .framer-1bdfc32, .framer-MQJNo .framer-r3xko6, .framer-MQJNo .framer-yrggwr { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25); height: var(--framer-aspect-ratio-supported, 140px); overflow: hidden; position: relative; width: 140px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MQJNo .framer-1i6uiq0-container { flex: none; height: 211px; left: 0px; position: absolute; right: 0px; top: 20px; }\",\".framer-MQJNo .framer-jvpzsz-container { flex: none; height: 230px; left: 0px; position: absolute; right: -115px; top: calc(53.200000000000024% - 230px / 2); }\",\".framer-MQJNo .framer-1mrab9j, .framer-MQJNo .framer-1tg4jjs, .framer-MQJNo .framer-tx0ikb { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25); height: var(--framer-aspect-ratio-supported, 200px); overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MQJNo .framer-14m0nuh, .framer-MQJNo .framer-1u8ex85, .framer-MQJNo .framer-19k7yr4 { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25); height: var(--framer-aspect-ratio-supported, 145px); overflow: hidden; position: relative; width: 145px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MQJNo .framer-1rhgxoj { background: linear-gradient(90deg, #1e63a1 0%, rgba(30, 99, 161, 0) 100%); bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 993px; z-index: 1; }\",\".framer-MQJNo .framer-cpyxyc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-e8k31n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 491px; justify-content: space-around; max-width: 1200px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-1738mcf { aspect-ratio: 2.9634146341463414 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); left: 53%; overflow: hidden; position: absolute; top: 16px; transform: translateX(-50%); width: 142px; z-index: 1; }\",\".framer-MQJNo .framer-i386vc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MQJNo .framer-1liirhl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-l0l92 { aspect-ratio: 2.9634146341463414 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); overflow: hidden; position: relative; width: 267px; }\",\".framer-MQJNo .framer-1brnq6b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 560px; z-index: 1; }\",\".framer-MQJNo .framer-15n8v69, .framer-MQJNo .framer-1j5oxeo, .framer-MQJNo .framer-101kl4v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MQJNo .framer-1s0dnlp-container { flex: none; height: 56px; position: relative; width: 300px; }\",\".framer-MQJNo .framer-ujd7dn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MQJNo .framer-t0ivv { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-b5f995ec-6f21-4f9c-a3db-fe93cfb5fc68, #1e63a1) 0%, var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, rgb(24, 17, 17)) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-1tdeoze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-95iphj { align-content: center; align-items: center; background-color: var(--token-0786c4cd-6c9e-4022-ad33-000efe2390a1, #2e9dcb); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 32px 16px 32px 16px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-k6oone { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-bqtfim { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-MQJNo .framer-1x278cs { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.3613123810646357px 0.3613123810646357px -0.8333333333333333px rgba(0, 0, 0, 0.25), 0px 1.3731199819460742px 1.3731199819460742px -1.6666666666666665px rgba(0, 0, 0, 0.25), 0px 6px 6px -2.5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 72px; justify-content: center; max-width: 980px; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: 100%; z-index: 2; }\",\".framer-MQJNo .framer-6szxf1 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 56px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MQJNo .framer-13by98b-container, .framer-MQJNo .framer-1w3nw7j-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-MQJNo .framer-qe0rdz { background-color: #ccd0d2; flex: none; height: 40px; overflow: visible; position: relative; width: 1px; }\",\".framer-MQJNo .framer-1tgi9t7-container { flex: none; height: 56px; position: relative; width: 56px; z-index: 1; }\",\".framer-MQJNo .framer-15e6lu7 { align-content: center; align-items: center; background-color: var(--token-031c97b3-a0ab-4349-8808-91761393e667, #fbfaf8); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-MQJNo .framer-facqnx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-tn5m3u, .framer-MQJNo .framer-13v5h7o, .framer-MQJNo .framer-nexraw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MQJNo .framer-1q2tthg, .framer-MQJNo .framer-15n5658 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-d15cig, .framer-MQJNo .framer-rnnft8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-MQJNo .framer-13odfvo, .framer-MQJNo .framer-12dgwi3 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 150px; position: relative; width: 150px; }\",\".framer-MQJNo .framer-6qakgn, .framer-MQJNo .framer-ajekee { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-MQJNo .framer-1pjoqhb, .framer-MQJNo .framer-1xrjq21, .framer-MQJNo .framer-qhpiyq, .framer-MQJNo .framer-192tejy, .framer-MQJNo .framer-oul71c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MQJNo .framer-qy331c { align-content: center; align-items: center; background-color: var(--token-9f32480c-4f16-4239-a5df-755fb8d2f8e7, #181111); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 2px 0px #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-MQJNo .framer-1ir50ha-container { aspect-ratio: 3.318885448916409 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 323px); position: relative; width: 1072px; }\",\".framer-MQJNo .framer-tlfcup { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-1qjidgo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MQJNo .framer-19toa8w-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1439.98px) { .framer-MQJNo.framer-dqzu38 { width: 810px; } .framer-MQJNo .framer-9ltpy4 { width: 59%; } .framer-MQJNo .framer-hsaj98 { right: -207px; } .framer-MQJNo .framer-1rhgxoj { right: 7px; top: 9px; width: unset; } .framer-MQJNo .framer-e8k31n { height: 521px; } .framer-MQJNo .framer-1liirhl { gap: 32px; } .framer-MQJNo .framer-1brnq6b { width: 364px; }}\",\"@media (max-width: 809.98px) { .framer-MQJNo.framer-dqzu38 { width: 375px; } .framer-MQJNo .framer-9ltpy4 { height: 428px; left: 0px; top: 33px; width: unset; } .framer-MQJNo .framer-hsaj98 { bottom: 21px; height: unset; top: -82px; } .framer-MQJNo .framer-xe5muw-container { bottom: 34px; } .framer-MQJNo .framer-jvpzsz-container { right: 0px; top: calc(47.64826175869123% - 230px / 2); } .framer-MQJNo .framer-cpyxyc, .framer-MQJNo .framer-t0ivv { gap: 0px; } .framer-MQJNo .framer-e8k31n { flex-direction: column; gap: 24px; height: min-content; justify-content: flex-start; padding: 324px 16px 40px 16px; } .framer-MQJNo .framer-1738mcf { order: 0; } .framer-MQJNo .framer-i386vc { flex: none; order: 2; padding: 64px 0px 0px 0px; width: 100%; } .framer-MQJNo .framer-1liirhl { order: 3; } .framer-MQJNo .framer-1brnq6b { gap: 16px; width: 100%; } .framer-MQJNo .framer-1s0dnlp-container { width: 100%; } .framer-MQJNo .framer-1tdeoze { gap: 24px; padding: 0px 16px 0px 16px; } .framer-MQJNo .framer-95iphj { padding: 24px 16px 16px 16px; } .framer-MQJNo .framer-k6oone { padding: 0px 16px 0px 16px; } .framer-MQJNo .framer-1x278cs { flex-direction: column; gap: 16px; height: min-content; padding: 8px 8px 16px 8px; } .framer-MQJNo .framer-6szxf1 { flex: none; flex-direction: column; height: min-content; width: 100%; } .framer-MQJNo .framer-13by98b-container, .framer-MQJNo .framer-1w3nw7j-container { flex: none; height: auto; width: 100%; } .framer-MQJNo .framer-qe0rdz { height: 0px; } .framer-MQJNo .framer-1tgi9t7-container { height: 48px; width: 96%; } .framer-MQJNo .framer-15e6lu7, .framer-MQJNo .framer-qy331c { padding: 32px 16px 32px 16px; } .framer-MQJNo .framer-d15cig, .framer-MQJNo .framer-rnnft8 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 8px 8px; } .framer-MQJNo .framer-13odfvo, .framer-MQJNo .framer-12dgwi3 { aspect-ratio: 2.9903846153846154 / 1; height: var(--framer-aspect-ratio-supported, 67px); width: 100%; } .framer-MQJNo .framer-6qakgn, .framer-MQJNo .framer-ajekee { flex: none; width: 100%; } .framer-MQJNo .framer-1ir50ha-container { height: var(--framer-aspect-ratio-supported, 60px); width: 100%; } .framer-MQJNo .framer-1qjidgo { gap: 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3405\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZJS0rNeYb\":{\"layout\":[\"fixed\",\"auto\"]},\"CzPwyoFqY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerUMJo7InZ2=withCSS(Component,css,\"framer-MQJNo\");export default FramerUMJo7InZ2;FramerUMJo7InZ2.displayName=\"Home\";FramerUMJo7InZ2.defaultProps={height:3405,width:1440};addFonts(FramerUMJo7InZ2,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...TickerFonts,...PrimaryButtonFonts,...InputFonts,...Input1Fonts,...EmbedFonts,...FooterDarkCopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUMJo7InZ2\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3405\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZJS0rNeYb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CzPwyoFqY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["useIsomorphicLayoutEffect", "fe", "ue", "Input", "withCSS", "props", "placeholder", "backgroundColor", "textColor", "border", "borderWidth", "password", "onSubmit", "onFocus", "onBlur", "value", "textAlign", "multiLine", "placeholderColor", "focused", "inputStyle", "caretColor", "fontFamily", "blurOnSubmit", "disabled", "keyboard", "truncate", "onChange", "onValueChange", "maxLength", "lineHeight", "enableLimit", "isRTL", "style", "inputValue", "setValue", "useControlledState", "inputEle", "pe", "Tag", "se", "inPreview", "useIsInPreview", "fontStyles", "useFontControls", "paddingValue", "usePadding", "borderRadius", "useRadius", "handleChange", "te", "event", "useOnEnter", "ue", "useIsomorphicLayoutEffect", "p", "e", "baseInputStyles", "addPropertyControls", "ControlType", "fontControls", "fontSizeOptions", "paddingControl", "borderRadiusControl", "fontStack", "Input", "withCSS", "props", "placeholder", "backgroundColor", "textColor", "border", "borderWidth", "password", "onSubmit", "onFocus", "onBlur", "value", "textAlign", "multiLine", "placeholderColor", "focused", "inputStyle", "caretColor", "fontFamily", "blurOnSubmit", "disabled", "keyboard", "truncate", "onChange", "onValueChange", "maxLength", "lineHeight", "enableLimit", "isRTL", "style", "inputValue", "setValue", "useControlledState", "inputEle", "pe", "Tag", "se", "inPreview", "useIsInPreview", "fontStyles", "useFontControls", "paddingValue", "usePadding", "borderRadius", "useRadius", "handleChange", "te", "event", "useOnEnter", "ue", "useIsomorphicLayoutEffect", "p", "e", "baseInputStyles", "addPropertyControls", "ControlType", "fontControls", "fontSizeOptions", "paddingControl", "borderRadiusControl", "fontStack", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "TickerFonts", "getFonts", "Ticker", "PrimaryButtonFonts", "VxuuvsNI6_default", "MotionDivWithFX", "withFX", "motion", "InputFonts", "Input", "Input1Fonts", "EmbedFonts", "Embed", "FooterDarkCopyFonts", "QybIagL2w_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "animation", "transition1", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "h5IOL6j2HhQj84PHTK", "GuQaWt5xphQj84PHTK", "B640aWvrVhQj84PHTK", "uF53idefthQj84PHTK", "idhQj84PHTK", "p8TKWjoB2vPKdcTs1T", "Bw0kjJG5MvPKdcTs1T", "ZykksqN7evPKdcTs1T", "q4AxOMKiFvPKdcTs1T", "idvPKdcTs1T", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "RichText", "ChildrenCanSuspend", "SyeBVXsHS_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "SPcpKMEJ7_default", "collection1", "paginationInfo1", "loadMore1", "index1", "css", "FramerUMJo7InZ2", "withCSS", "UMJo7InZ2_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
