{"version":3,"file":"A6NTFcSH9fiZds0KcitEJVkRMTpyDIySw-sMXbHZVtI.M_V30kIh.mjs","names":["fonts","css","className","Navbar","Image","FaithFormationFooter","metadata","className","PropertyOverrides","css"],"sources":["https:/framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js","https:/framerusercontent.com/modules/nkmv3udC7eCW2cjP8K9D/gjASKpgei77pTVq72RsL/egz9t5SLD.js","https:/framerusercontent.com/modules/O0jRTYHa2PMXnshWnUs9/mmzJiIh6qU51Ueb6Tvd2/augiA20Il.js","https:/framerusercontent.com/modules/6bqqqbdlRmlsNkiZGCDN/buljLij5FlMWb5OqfhCg/augiA20Il.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don’t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can’t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading…\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map","import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Lato-regular\"]);export const fonts=[{family:\"Lato\",moduleAsset:{localModuleIdentifier:\"local-module:css/egz9t5SLD:default\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxk6XweuBCY.ttf\",weight:\"400\"}];export const css=['.framer-vY7wl .framer-styles-preset-5qkxt5:not(.rich-text-wrapper), .framer-vY7wl .framer-styles-preset-5qkxt5.rich-text-wrapper h1 { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 55px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1599px) and (min-width: 1200px) { .framer-vY7wl .framer-styles-preset-5qkxt5:not(.rich-text-wrapper), .framer-vY7wl .framer-styles-preset-5qkxt5.rich-text-wrapper h1 { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 45px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-vY7wl .framer-styles-preset-5qkxt5:not(.rich-text-wrapper), .framer-vY7wl .framer-styles-preset-5qkxt5.rich-text-wrapper h1 { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 29px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-vY7wl .framer-styles-preset-5qkxt5:not(.rich-text-wrapper), .framer-vY7wl .framer-styles-preset-5qkxt5.rich-text-wrapper h1 { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-vY7wl\";\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 (6d96db3)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={DYPBEvCxe:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (6d96db3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import FaithFormationFooter from\"#framer/local/canvasComponent/bjcIYJKKa/bjcIYJKKa.js\";import Navbar from\"#framer/local/canvasComponent/wTfmOf2rD/wTfmOf2rD.js\";import*as sharedStyle1 from\"#framer/local/css/aMcI0ADrs/aMcI0ADrs.js\";import*as sharedStyle3 from\"#framer/local/css/egz9t5SLD/egz9t5SLD.js\";import*as sharedStyle4 from\"#framer/local/css/KsUhaAsTT/KsUhaAsTT.js\";import*as sharedStyle2 from\"#framer/local/css/Maf11HVes/Maf11HVes.js\";import*as sharedStyle from\"#framer/local/css/tfp17eAnr/tfp17eAnr.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const ImageWithFX=withFX(Image);const EmbedFonts=getFonts(Embed);const FaithFormationFooterFonts=getFonts(FaithFormationFooter);const breakpoints={c4FE2yZNb:\"(min-width: 1600px)\",IfGV6SX3_:\"(max-width: 809px)\",TTR6UeJFm:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1599px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Cln2j\";const variantClassNames={c4FE2yZNb:\"framer-v-no25cd\",IfGV6SX3_:\"framer-v-9je9v5\",TTR6UeJFm:\"framer-v-1h8z31m\",WQLkyLRf1:\"framer-v-72rtr7\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"c4FE2yZNb\",Desktop:\"WQLkyLRf1\",Phone:\"IfGV6SX3_\",Tablet:\"TTR6UeJFm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"b_ps555Br\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m0cnbk-container\",id:\"m0cnbk\",nodeId:\"g3WFQ5NNR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfGV6SX3_:{variant:\"IT0_k1DWh\"},TTR6UeJFm:{variant:\"oK3QcBznW\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"g3WFQ5NNR\",layoutId:\"g3WFQ5NNR\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WUDhAZypL\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:75,__perspectiveFX:false,__targetOpacity:1,as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2281,intrinsicWidth:3250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80),pixelHeight:2281,pixelWidth:3250,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/2mKzqYEtlYY1CrizpkQiZHfARC8.jpg\",srcSet:\"https://framerusercontent.com/images/2mKzqYEtlYY1CrizpkQiZHfARC8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2mKzqYEtlYY1CrizpkQiZHfARC8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2mKzqYEtlYY1CrizpkQiZHfARC8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2mKzqYEtlYY1CrizpkQiZHfARC8.jpg 3250w\"},className:\"framer-oy7vrw\",\"data-framer-name\":\"Header Image\",id:\"oy7vrw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yo3v8y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-gy2wr9\",\"data-styles-preset\":\"tfp17eAnr\",children:\"Office of Faith Formation \"})}),className:\"framer-10q3z0p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfGV6SX3_:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Forming Disciples in the Diocese of Nashville\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UGxheWZhaXIgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Playfair Display\", \"Playfair Display Placeholder\", serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Forming Disciples in the Diocese of Nashville\"})}),className:\"framer-al7908\",fonts:[\"GF;Playfair Display-700\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vk59jg\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-jx1mmu\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfGV6SX3_:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-qg5c0v\",\"data-styles-preset\":\"aMcI0ADrs\",children:[\"Welcome to the \",/*#__PURE__*/_jsx(\"br\",{}),\"Diocese of Nashville \",/*#__PURE__*/_jsx(\"br\",{}),\"Office of Faith Formation!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-qg5c0v\",\"data-styles-preset\":\"aMcI0ADrs\",children:[\"Welcome to the Diocese of Nashville \",/*#__PURE__*/_jsx(\"br\",{}),\"Office of Faith Formation!\"]})}),className:\"framer-1ihrwio\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nzb9m4\",\"data-styles-preset\":\"Maf11HVes\",children:\"We invite you to explore our various resources and upcoming events to support your intellectual and spiritual formation. \"})}),className:\"framer-1hlb7el\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-quj0d1\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfGV6SX3_:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1pdGFsaWM=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(36, 107, 115)\"},children:'\"The definitive aim of catechesis is to put people not only in touch, but in communion, in intimacy, with Jesus Christ…\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1pdGFsaWM=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(36, 107, 115)\"},children:\"~ Pope St. John Paul II, Catechesi Tradendae\"})]})},TTR6UeJFm:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1pdGFsaWM=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(36, 107, 115)\"},children:'\"The definitive aim of catechesis is to put people not only in touch, but in communion, in intimacy, with Jesus Christ…\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1pdGFsaWM=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(36, 107, 115)\"},children:\"~ Pope St. John Paul II, Catechesi Tradendae\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1pdGFsaWM=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(36, 107, 115)\"},children:'\"The definitive aim of catechesis is to put people not only in touch, but in communion, in intimacy, with Jesus Christ…\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1pdGFsaWM=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(36, 107, 115)\"},children:\"~ Pope St. John Paul II, Catechesi Tradendae\"})]}),className:\"framer-109y3ci\",fonts:[\"GF;Lato-italic\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ycksk4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{href:\"https://dioceseofnashville.com/catechesis/\",openInNewTab:true}},children:/*#__PURE__*/_jsx(Link,{href:\"https://dioceseofnashville.com/formation/\",motionChild:true,nodeId:\"YuLNbcJ1Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1092,intrinsicWidth:1677,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1710+0),pixelHeight:1092,pixelWidth:1677,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg\",srcSet:\"https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg 1677w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1092,intrinsicWidth:1677,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796.4533+0),pixelHeight:1092,pixelWidth:1677,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 5px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg\",srcSet:\"https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg 1677w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1092,intrinsicWidth:1677,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1074.2+0),pixelHeight:1092,pixelWidth:1677,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg\",srcSet:\"https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg 1677w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1092,intrinsicWidth:1677,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1464+0),pixelHeight:1092,pixelWidth:1677,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg\",srcSet:\"https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6i1peJqJ6H4TXTUUaoM3VXuDQ.jpg 1677w\"},className:\"framer-vsyc2a framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5qkxt5\",\"data-styles-preset\":\"egz9t5SLD\",children:\"Catechesis\"})}),className:\"framer-1e5ad7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"O597k_Y8t\"},motionChild:true,nodeId:\"RpdJOtiBk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1052,intrinsicWidth:1781,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1710+0),pixelHeight:1052,pixelWidth:1781,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png\",srcSet:\"https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png?scale-down-to=512 512w,https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png 1781w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1052,intrinsicWidth:1781,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+796.4533+0),pixelHeight:1052,pixelWidth:1781,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 5px) / 2, 1px)`,src:\"https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png\",srcSet:\"https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png?scale-down-to=512 512w,https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png 1781w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1052,intrinsicWidth:1781,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1074.2+0),pixelHeight:1052,pixelWidth:1781,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png\",srcSet:\"https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png?scale-down-to=512 512w,https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png 1781w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1052,intrinsicWidth:1781,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1464+0),pixelHeight:1052,pixelWidth:1781,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png\",srcSet:\"https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png?scale-down-to=512 512w,https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/krNBueeoioJ2NuqbpE56Tz4O91U.png 1781w\"},className:\"framer-1mcri2f framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5qkxt5\",\"data-styles-preset\":\"egz9t5SLD\",children:\"Marriage and Family Life\"})}),className:\"framer-f0pmyc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3urrw\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gk41GoXYt\"},motionChild:true,nodeId:\"xEsDxjtKj\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:1331,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2189+0),pixelHeight:960,pixelWidth:1331,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png\",srcSet:\"https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png 1331w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:1331,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1275.4533+0),pixelHeight:960,pixelWidth:1331,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 5px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png\",srcSet:\"https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png 1331w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:1331,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1553.2+0),pixelHeight:960,pixelWidth:1331,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png\",srcSet:\"https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png 1331w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:1331,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1943+0),pixelHeight:960,pixelWidth:1331,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png\",srcSet:\"https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PgkUFGHyXvCtfJHFvrYTD4MACM.png 1331w\"},className:\"framer-fena8q framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5qkxt5\",\"data-styles-preset\":\"egz9t5SLD\",children:\"Youth and Young Adult\"})}),className:\"framer-ft37n2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{href:\"https://dioceseofnashville.com/catechesis/\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://dioceseofnashville.com/formation/\",motionChild:true,nodeId:\"KpONkl7fG\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:730,intrinsicWidth:630,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2189+0),pixelHeight:730,pixelWidth:630,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/fkigGqJor8hs0eseHs05mgHI.png\",srcSet:\"https://framerusercontent.com/images/fkigGqJor8hs0eseHs05mgHI.png 630w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:730,intrinsicWidth:630,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1275.4533+0),pixelHeight:730,pixelWidth:630,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 5px) / 2, 1px)`,src:\"https://framerusercontent.com/images/fkigGqJor8hs0eseHs05mgHI.png\",srcSet:\"https://framerusercontent.com/images/fkigGqJor8hs0eseHs05mgHI.png 630w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:730,intrinsicWidth:630,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1553.2+0),pixelHeight:730,pixelWidth:630,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/fkigGqJor8hs0eseHs05mgHI.png\",srcSet:\"https://framerusercontent.com/images/fkigGqJor8hs0eseHs05mgHI.png 630w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:730,intrinsicWidth:630,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1943+0),pixelHeight:730,pixelWidth:630,sizes:`max((${componentViewport?.width||\"100vw\"} * 1.0017 - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/fkigGqJor8hs0eseHs05mgHI.png\",srcSet:\"https://framerusercontent.com/images/fkigGqJor8hs0eseHs05mgHI.png 630w\"},className:\"framer-zccoog framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5qkxt5\",\"data-styles-preset\":\"egz9t5SLD\",children:\"Ministerio Hispano\"})}),className:\"framer-1g2ra4t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bpxx8f\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qg5c0v\",\"data-styles-preset\":\"aMcI0ADrs\",children:\"Upcoming Events\"})}),className:\"framer-hbwxnq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bw2g5x\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"k1brfQfAG\"},motionChild:true,nodeId:\"mNSMleIty\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2842),pixelHeight:1028,pixelWidth:3092,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png\",srcSet:\"https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png 3092w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1928.4533),pixelHeight:1028,pixelWidth:3092,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png\",srcSet:\"https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png 3092w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2206.2),pixelHeight:1028,pixelWidth:3092,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png\",srcSet:\"https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png 3092w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2596),pixelHeight:1028,pixelWidth:3092,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png\",srcSet:\"https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LYeZYMLMnPWpysvl6p7Tfk8Fdc.png 3092w\"},className:\"framer-12x2fde framer-lux5qc\",\"data-framer-name\":\"Header Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1841amn\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gk41GoXYt\"},motionChild:true,nodeId:\"DLZukryQA\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3492),pixelHeight:1078,pixelWidth:3216,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png\",srcSet:\"https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png 3216w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2578.4533),pixelHeight:1078,pixelWidth:3216,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png\",srcSet:\"https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png 3216w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2856.2),pixelHeight:1078,pixelWidth:3216,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png\",srcSet:\"https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png 3216w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3046),pixelHeight:1078,pixelWidth:3216,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png\",srcSet:\"https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qS4RfjeSwjcqEBrCP1ucvoNEEA.png 3216w\"},className:\"framer-11rcbjb framer-lux5qc\",\"data-framer-name\":\"Header Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b4shib\"}),/*#__PURE__*/_jsx(Link,{href:\"https://forlifeandfamily.org/events/th25-nvtn/\",motionChild:true,nodeId:\"w6jdJSuUO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4142),pixelHeight:1861,pixelWidth:2628,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png\",srcSet:\"https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=512 512w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png 2628w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3228.4533),pixelHeight:1861,pixelWidth:2628,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png\",srcSet:\"https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=512 512w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png 2628w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3506.2),pixelHeight:1861,pixelWidth:2628,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png\",srcSet:\"https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=512 512w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png 2628w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3496),pixelHeight:1861,pixelWidth:2628,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.8)`,src:\"https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png\",srcSet:\"https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=512 512w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/q1Xt52xISiP6aA8FqT6NcoY3ei4.png 2628w\"},className:\"framer-1czm6uv framer-lux5qc\",\"data-framer-name\":\"Header Image\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"exwq2IFPW\"},motionChild:true,nodeId:\"hb6IPB824\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4742),pixelHeight:1254,pixelWidth:2510,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png\",srcSet:\"https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png 2510w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3828.4533),pixelHeight:1254,pixelWidth:2510,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png\",srcSet:\"https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png 2510w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4106.2),pixelHeight:1254,pixelWidth:2510,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png\",srcSet:\"https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png 2510w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4346),pixelHeight:1254,pixelWidth:2510,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png\",srcSet:\"https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JQZ1DsYnN3BZisrQdjfgYDsOLo.png 2510w\"},className:\"framer-dimmqy framer-lux5qc\",\"data-framer-name\":\"Header Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10zip0g\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mw4lj2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mjgv84\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-qg5c0v\",\"data-styles-preset\":\"aMcI0ADrs\",children:[\"Eucharistic Revival in the \",/*#__PURE__*/_jsx(\"br\",{}),\"Diocese of Nashville\"]})})},IfGV6SX3_:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-qg5c0v\",\"data-styles-preset\":\"aMcI0ADrs\",children:[\"Eucharistic Revival in the \",/*#__PURE__*/_jsx(\"br\",{}),\"Diocese of Nashville\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qg5c0v\",\"data-styles-preset\":\"aMcI0ADrs\",children:\"Eucharistic Revival in the Diocese of Nashville\"})}),className:\"framer-45p0ny\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nzb9m4\",\"data-styles-preset\":\"Maf11HVes\",children:\"The United States Conference of Catholic Bishops have called for a three-year grassroots revival to renew devotion and belief in the Real Presence of Jesus in the Eucharist. It is a nationwide movement to rekindle a personal, living relationship with Christ in the Blessed Sacrament.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nzb9m4\",\"data-styles-preset\":\"Maf11HVes\",children:\"To learn how you can participate in the Eucharistic Revival in our diocese, please click the button below.\"})]}),className:\"framer-1qsvb01\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j64m9f\",children:/*#__PURE__*/_jsx(Link,{href:\"https://dioceseofnashville.com/eucharistic/\",motionChild:true,nodeId:\"sYmQCAMQe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5cha6g framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-ad36kj\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://dioceseofnashville.com/eucharistic/\",motionChild:true,nodeId:\"HRCFMe2VN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1126,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5342+0),pixelHeight:1e3,pixelWidth:1126,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png\",srcSet:\"https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png 1126w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1126,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4428.4533+0+0),pixelHeight:1e3,pixelWidth:1126,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png\",srcSet:\"https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png 1126w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1126,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4706.2+0),pixelHeight:1e3,pixelWidth:1126,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png\",srcSet:\"https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png 1126w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1e3,intrinsicWidth:1126,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4746+0),pixelHeight:1e3,pixelWidth:1126,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png\",srcSet:\"https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NknKSxI6C9ihzJm12Nq7LBV1IjE.png 1126w\"},className:\"framer-1z0ahyt framer-lux5qc\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14vpzo8\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-qg5c0v\",\"data-styles-preset\":\"aMcI0ADrs\",children:\"Faith Formation Event Calendar\"})}),className:\"framer-z5hbv3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vupb7e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HWLAMjr3f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"HWLAMjr3f\",layoutId:\"HWLAMjr3f\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://teamup.com/ks11gf63a99dkzmfma?view=m&showLogo=0&showProfileAndInfo=0&showSidepanel=1&showTitle=0&showAgendaHeader=1&showAgendaDetails=0&showYearViewHeader=1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1muu24q\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact Us\"})}),className:\"framer-4997t6\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l7rmmb\",\"data-framer-name\":\"Grid 1\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ns8w6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12kb538\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:884,intrinsicWidth:956,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6814+20+0+0+0+0+0),pixelHeight:884,pixelWidth:956,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg\",srcSet:\"https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg 956w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:884,intrinsicWidth:956,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5942.4533+20+0+0+0+0+0),pixelHeight:884,pixelWidth:956,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg\",srcSet:\"https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg 956w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:884,intrinsicWidth:956,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5998.2+20+0+0+0+0+0),pixelHeight:884,pixelWidth:956,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg\",srcSet:\"https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg 956w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:884,intrinsicWidth:956,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6218+20+0+0+0+0+0),pixelHeight:884,pixelWidth:956,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg\",srcSet:\"https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pdXw5QBQoKRNajqe9ELYpx9ceY4.jpg 956w\"},className:\"framer-pat361\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wrw4ff\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Brad Peper, Ph.D.\"})}),className:\"framer-fsdpyd\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:[\"Director of Faith Formation\",/*#__PURE__*/_jsx(\"br\",{}),\"615-783-0263\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:brad.peper@dioceseofnashville.com\",motionChild:true,nodeId:\"Hh3OXVnAk\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-1amwb16\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8u60uz\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"O597k_Y8t\"},motionChild:true,nodeId:\"TpB2g_qND\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2135,intrinsicWidth:1855,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6814+20+0+0+0+0+0),pixelHeight:1021,pixelWidth:864,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/XvuhjZXGEYCoNDf65JK5xD6XYs.jpg\",srcSet:\"https://framerusercontent.com/images/XvuhjZXGEYCoNDf65JK5xD6XYs.jpg 864w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2135,intrinsicWidth:1855,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5942.4533+20+0+0+377+0+0),pixelHeight:1021,pixelWidth:864,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/XvuhjZXGEYCoNDf65JK5xD6XYs.jpg\",srcSet:\"https://framerusercontent.com/images/XvuhjZXGEYCoNDf65JK5xD6XYs.jpg 864w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2135,intrinsicWidth:1855,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5998.2+20+0+0+0+0+0),pixelHeight:1021,pixelWidth:864,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/XvuhjZXGEYCoNDf65JK5xD6XYs.jpg\",srcSet:\"https://framerusercontent.com/images/XvuhjZXGEYCoNDf65JK5xD6XYs.jpg 864w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2135,intrinsicWidth:1855,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6218+20+0+0+0+0+0),pixelHeight:1021,pixelWidth:864,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/XvuhjZXGEYCoNDf65JK5xD6XYs.jpg\",srcSet:\"https://framerusercontent.com/images/XvuhjZXGEYCoNDf65JK5xD6XYs.jpg 864w\"},className:\"framer-nmejhs framer-lux5qc\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h78mq9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Kristen Rainey\"})}),className:\"framer-ktsoc5\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:[\"Associate Director of Faith Formation \",/*#__PURE__*/_jsx(\"br\",{}),\"615-540-1235\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:kristen.rainey@dioceseofnashville.com\",motionChild:true,nodeId:\"ewLe7_lNY\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-r7t0xy\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qvfomk\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3314,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6814+20+0+0+0+0+0),pixelHeight:1017,pixelWidth:936,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/2W9iyWUsMc5ofI5J2XLlk7J4LvM.jpg\",srcSet:\"https://framerusercontent.com/images/2W9iyWUsMc5ofI5J2XLlk7J4LvM.jpg 936w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3314,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5942.4533+20+0+0+754+0+0),pixelHeight:1017,pixelWidth:936,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/2W9iyWUsMc5ofI5J2XLlk7J4LvM.jpg\",srcSet:\"https://framerusercontent.com/images/2W9iyWUsMc5ofI5J2XLlk7J4LvM.jpg 936w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3314,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5998.2+20+0+0+0+0+0),pixelHeight:1017,pixelWidth:936,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/2W9iyWUsMc5ofI5J2XLlk7J4LvM.jpg\",srcSet:\"https://framerusercontent.com/images/2W9iyWUsMc5ofI5J2XLlk7J4LvM.jpg 936w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3314,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6218+20+0+0+0+0+0),pixelHeight:1017,pixelWidth:936,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/2W9iyWUsMc5ofI5J2XLlk7J4LvM.jpg\",srcSet:\"https://framerusercontent.com/images/2W9iyWUsMc5ofI5J2XLlk7J4LvM.jpg 936w\"},className:\"framer-1ts5t9q\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wg9bdw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Luis Estrada\"})}),className:\"framer-1fb4fzm\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:[\"Assistant Director of Faith Formation for Hispanic Ministry\",/*#__PURE__*/_jsx(\"br\",{}),\"615-760-2796\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:luis.estrada@dioceseofnashville.com\",motionChild:true,nodeId:\"E7Qd1GloJ\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-1aez3d8\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h3ohks\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2043,intrinsicWidth:1745,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6814+20+0+0+0+0+0),pixelHeight:1401,pixelWidth:1046,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg\",srcSet:\"https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg?scale-down-to=1024 764w,https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg 1046w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2043,intrinsicWidth:1745,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5942.4533+20+0+0+1131+0+0),pixelHeight:1401,pixelWidth:1046,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg\",srcSet:\"https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg?scale-down-to=1024 764w,https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg 1046w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2043,intrinsicWidth:1745,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5998.2+20+0+0+363+0+0),pixelHeight:1401,pixelWidth:1046,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg\",srcSet:\"https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg?scale-down-to=1024 764w,https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg 1046w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2043,intrinsicWidth:1745,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6218+20+0+0+0+0+0),pixelHeight:1401,pixelWidth:1046,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg\",srcSet:\"https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg?scale-down-to=1024 764w,https://framerusercontent.com/images/j5gAvIVCJUPn6EesQ5rzcX6mOGc.jpg 1046w\"},className:\"framer-1p3h7fm\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvcny5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Maria Oliva\"})}),className:\"framer-r0tydh\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:[\"Assistant Director of Faith Formation for Marriage and Family Life\",/*#__PURE__*/_jsx(\"br\",{}),\"615-645-9752\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:maria.oliva@dioceseofnashville.com\",motionChild:true,nodeId:\"YIasYUGop\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-1fe5r1\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-187yfku\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2043,intrinsicWidth:1745,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6814+20+0+0+0+0+0),pixelHeight:1055,pixelWidth:864,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg\",srcSet:\"https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg?scale-down-to=1024 838w,https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg 864w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2043,intrinsicWidth:1745,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5942.4533+20+0+0+1508+0+0),pixelHeight:1055,pixelWidth:864,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg\",srcSet:\"https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg?scale-down-to=1024 838w,https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg 864w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2043,intrinsicWidth:1745,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5998.2+20+0+0+363+0+0),pixelHeight:1055,pixelWidth:864,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg\",srcSet:\"https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg?scale-down-to=1024 838w,https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg 864w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2043,intrinsicWidth:1745,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6218+20+0+0+414+0+0),pixelHeight:1055,pixelWidth:864,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg\",srcSet:\"https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg?scale-down-to=1024 838w,https://framerusercontent.com/images/T5P9nbL5hp8gmDbHYfW7ttu8VM.jpg 864w\"},className:\"framer-d9basx\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1082nyd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Melissa Doyle\"})}),className:\"framer-1rath2y\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:[\"Assistant Director of Faith Formation for Catechesis\",/*#__PURE__*/_jsx(\"br\",{}),\"615-783-0757\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:melissa.doyle@dioceseofnashville.com\",motionChild:true,nodeId:\"m9ESf4t33\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-12q2jrd\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u6yqcv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2201,intrinsicWidth:1955,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6814+20+0+0+414+0+0),pixelHeight:2201,pixelWidth:1955,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg\",srcSet:\"https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg?scale-down-to=1024 909w,https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg?scale-down-to=2048 1819w,https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg 1955w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2201,intrinsicWidth:1955,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5942.4533+20+0+0+1885+0+0),pixelHeight:2201,pixelWidth:1955,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg\",srcSet:\"https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg?scale-down-to=1024 909w,https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg?scale-down-to=2048 1819w,https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg 1955w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2201,intrinsicWidth:1955,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5998.2+20+0+0+363+0+0),pixelHeight:2201,pixelWidth:1955,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg\",srcSet:\"https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg?scale-down-to=1024 909w,https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg?scale-down-to=2048 1819w,https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg 1955w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2201,intrinsicWidth:1955,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6218+20+0+0+414+0+0),pixelHeight:2201,pixelWidth:1955,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg\",srcSet:\"https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg?scale-down-to=1024 909w,https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg?scale-down-to=2048 1819w,https://framerusercontent.com/images/GHYqrQoRw9Q1hawTWUG4aqr9o.jpeg 1955w\"},className:\"framer-12lw0nd\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kgyh0w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Fr. Nonso Ohanaka\"})}),className:\"framer-cy3ya6\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:[\"Chaplain  of Faith Formation for Youth and Young Adults\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:fr.ohanaka@popeprep.org\",motionChild:true,nodeId:\"JQZoew4Hs\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-1qf44x7\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vxwuzf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3246,intrinsicWidth:2994,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6814+20+0+0+414+0+0),pixelHeight:2325,pixelWidth:1880,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg\",srcSet:\"https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg?scale-down-to=1024 828w,https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg?scale-down-to=2048 1656w,https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg 1880w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3246,intrinsicWidth:2994,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5942.4533+20+0+0+2262+0+0),pixelHeight:2325,pixelWidth:1880,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg\",srcSet:\"https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg?scale-down-to=1024 828w,https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg?scale-down-to=2048 1656w,https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg 1880w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3246,intrinsicWidth:2994,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5998.2+20+0+0+726+0+0),pixelHeight:2325,pixelWidth:1880,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg\",srcSet:\"https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg?scale-down-to=1024 828w,https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg?scale-down-to=2048 1656w,https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg 1880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3246,intrinsicWidth:2994,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6218+20+0+0+414+0+0),pixelHeight:2325,pixelWidth:1880,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg\",srcSet:\"https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg?scale-down-to=1024 828w,https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg?scale-down-to=2048 1656w,https://framerusercontent.com/images/d4Qii4hhZtynjZSOczkt4fdO4c0.jpg 1880w\"},className:\"framer-82v6cg\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-co5kzh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Nick Aguirre\"})}),className:\"framer-wwxq0e\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:[\"Assistant Director of Faith Formation for Youth and Young Adults\",/*#__PURE__*/_jsx(\"br\",{}),\"615-760-2781\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:nick.aguirre@dioceseofnashville.com\",motionChild:true,nodeId:\"YLYNhaMxi\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-17mq6cv\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14jsccf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3246,intrinsicWidth:2994,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6814+20+0+0+414+0+0),pixelHeight:1018,pixelWidth:936,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/RHOIRNuNDF2goNvpcjrEdVlsYVk.jpg\",srcSet:\"https://framerusercontent.com/images/RHOIRNuNDF2goNvpcjrEdVlsYVk.jpg 936w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3246,intrinsicWidth:2994,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5942.4533+20+0+0+2639+0+0),pixelHeight:1018,pixelWidth:936,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/RHOIRNuNDF2goNvpcjrEdVlsYVk.jpg\",srcSet:\"https://framerusercontent.com/images/RHOIRNuNDF2goNvpcjrEdVlsYVk.jpg 936w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3246,intrinsicWidth:2994,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5998.2+20+0+0+726+0+0),pixelHeight:1018,pixelWidth:936,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/RHOIRNuNDF2goNvpcjrEdVlsYVk.jpg\",srcSet:\"https://framerusercontent.com/images/RHOIRNuNDF2goNvpcjrEdVlsYVk.jpg 936w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3246,intrinsicWidth:2994,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6218+20+0+0+414+0+0),pixelHeight:1018,pixelWidth:936,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/RHOIRNuNDF2goNvpcjrEdVlsYVk.jpg\",srcSet:\"https://framerusercontent.com/images/RHOIRNuNDF2goNvpcjrEdVlsYVk.jpg 936w\"},className:\"framer-ruyknd\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pwo7go\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGF0by03MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Erin Sprenger\"})}),className:\"framer-1ey11ft\",fonts:[\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\"},children:[\"Coordinator of Faith Formation for Youth and Young Adults\",/*#__PURE__*/_jsx(\"br\",{}),\"615-540-1230\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:erin.sprenger@dioceseofnashville.com\",motionChild:true,nodeId:\"K5QuF6H56\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-bsdkp8\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{y:(componentViewport?.y||0)+0+7642},IfGV6SX3_:{y:(componentViewport?.y||0)+0+8995.4533},TTR6UeJFm:{y:(componentViewport?.y||0)+0+7138.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:293,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7046,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ys8yea-container\",nodeId:\"anpiBRJWS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{variant:\"NGmdz66mx\"},IfGV6SX3_:{variant:\"irgm9461q\"},TTR6UeJFm:{variant:\"xaIzem8mV\"}},children:/*#__PURE__*/_jsx(FaithFormationFooter,{height:\"100%\",id:\"anpiBRJWS\",layoutId:\"anpiBRJWS\",style:{width:\"100%\"},variant:\"MLmumzsC5\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Cln2j.framer-lux5qc, .framer-Cln2j .framer-lux5qc { display: block; }\",\".framer-Cln2j.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Cln2j .framer-m0cnbk-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-Cln2j .framer-oy7vrw { align-content: center; align-items: center; aspect-ratio: 1.530612244897959 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: var(--framer-aspect-ratio-supported, 784px); justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-1yo3v8y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 857px; z-index: 1; }\",\".framer-Cln2j .framer-10q3z0p { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; text-shadow: 2px 1px 2px #000000; white-space: pre-wrap; width: 905px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Cln2j .framer-al7908 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-Cln2j .framer-vk59jg { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; gap: 10px; left: 0px; opacity: 0.67; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-Cln2j .framer-jx1mmu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-1ihrwio { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-1hlb7el { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 781px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-quj0d1 { --border-bottom-width: 4px; --border-color: #246b73; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 4px; align-content: center; align-items: center; background-color: #dddddd; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 290px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-109y3ci { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 220px; position: relative; white-space: pre-wrap; width: 957px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-1ycksk4 { align-content: center; align-items: center; aspect-ratio: 2.509394572025052 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 479px); justify-content: flex-start; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-vsyc2a, .framer-Cln2j .framer-1mcri2f, .framer-Cln2j .framer-fena8q, .framer-Cln2j .framer-zccoog { flex: 1 0 0px; height: 100%; position: relative; text-decoration: none; width: 1px; }\",\".framer-Cln2j .framer-1e5ad7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 82px; left: calc(50.167785234899355% - 294px / 2); position: absolute; text-shadow: 0px 1px 2px #000000, 2px 1px 4px rgb(0, 0, 0); top: calc(51.172707889125824% - 82px / 2); white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-f0pmyc, .framer-Cln2j .framer-1g2ra4t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 76px; left: calc(50.00000000000002% - 278px / 2); position: absolute; text-shadow: 0px 1px 2px #000000, 2px 1px 4px rgb(0, 0, 0); top: calc(43.070362473347565% - 76px / 2); white-space: pre-wrap; width: 278px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-1c3urrw { align-content: center; align-items: center; aspect-ratio: 2.509394572025052 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 479px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-ft37n2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 76px; left: calc(50.167785234899355% - 241px / 2); position: absolute; text-shadow: 0px 1px 2px #000000, 2px 1px 4px rgb(0, 0, 0); top: calc(43.070362473347565% - 76px / 2); white-space: pre-wrap; width: 241px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-bpxx8f, .framer-Cln2j .framer-14vpzo8 { --border-bottom-width: 4px; --border-color: #246b73; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 4px; align-content: center; align-items: center; background-color: #dddddd; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 124px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-hbwxnq, .framer-Cln2j .framer-z5hbv3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Cln2j .framer-bw2g5x, .framer-Cln2j .framer-1841amn, .framer-Cln2j .framer-1b4shib { align-content: center; align-items: center; aspect-ratio: 24 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 50px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-12x2fde, .framer-Cln2j .framer-11rcbjb { align-content: center; align-items: center; aspect-ratio: 3 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 320px); justify-content: center; overflow: hidden; padding: 60px; position: relative; text-decoration: none; width: 80%; }\",\".framer-Cln2j .framer-1czm6uv { align-content: center; align-items: center; aspect-ratio: 1.411764705882353 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 680px); justify-content: center; overflow: hidden; padding: 60px; position: relative; text-decoration: none; width: 80%; }\",\".framer-Cln2j .framer-dimmqy { align-content: center; align-items: center; aspect-ratio: 2 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: center; overflow: hidden; padding: 60px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Cln2j .framer-10zip0g { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-1mw4lj2 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Cln2j .framer-mjgv84 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 522px; }\",\".framer-Cln2j .framer-45p0ny, .framer-Cln2j .framer-fsdpyd, .framer-Cln2j .framer-ktsoc5, .framer-Cln2j .framer-1fb4fzm, .framer-Cln2j .framer-r0tydh, .framer-Cln2j .framer-1rath2y, .framer-Cln2j .framer-cy3ya6, .framer-Cln2j .framer-wwxq0e, .framer-Cln2j .framer-1ey11ft { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-1qsvb01, .framer-Cln2j .framer-1amwb16, .framer-Cln2j .framer-r7t0xy, .framer-Cln2j .framer-1aez3d8, .framer-Cln2j .framer-1fe5r1, .framer-Cln2j .framer-12q2jrd, .framer-Cln2j .framer-1qf44x7, .framer-Cln2j .framer-17mq6cv, .framer-Cln2j .framer-bsdkp8 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-j64m9f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Cln2j .framer-5cha6g { align-content: center; align-items: center; background-color: #246b73; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 25px 15px 25px 15px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\".framer-Cln2j .framer-ad36kj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Cln2j .framer-1z0ahyt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-Cln2j .framer-1vupb7e-container { aspect-ratio: 1.8181818181818181 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); position: relative; width: 97%; }\",\".framer-Cln2j .framer-1muu24q { --border-bottom-width: 5px; --border-color: #414042; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 5px; align-content: center; align-items: center; background-color: #246b73; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-4997t6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 67px; position: relative; white-space: pre-wrap; width: 283px; word-break: break-word; word-wrap: break-word; }\",\".framer-Cln2j .framer-l7rmmb { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-7ns8w6 { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-12kb538, .framer-Cln2j .framer-8u60uz, .framer-Cln2j .framer-qvfomk, .framer-Cln2j .framer-h3ohks, .framer-Cln2j .framer-187yfku, .framer-Cln2j .framer-u6yqcv, .framer-Cln2j .framer-vxwuzf, .framer-Cln2j .framer-14jsccf { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-pat361, .framer-Cln2j .framer-1ts5t9q, .framer-Cln2j .framer-12lw0nd, .framer-Cln2j .framer-82v6cg, .framer-Cln2j .framer-ruyknd { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 205px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cln2j .framer-1wrw4ff, .framer-Cln2j .framer-h78mq9, .framer-Cln2j .framer-wg9bdw, .framer-Cln2j .framer-yvcny5, .framer-Cln2j .framer-1082nyd, .framer-Cln2j .framer-1kgyh0w, .framer-Cln2j .framer-co5kzh, .framer-Cln2j .framer-pwo7go { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Cln2j .framer-nmejhs { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 205px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cln2j .framer-1p3h7fm, .framer-Cln2j .framer-d9basx { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 205px); justify-content: center; overflow: hidden; padding: 1px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Cln2j .framer-1ys8yea-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-Cln2j[data-border=\"true\"]::after, .framer-Cln2j [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 809px) { .framer-Cln2j.framer-72rtr7 { width: 390px; } .framer-Cln2j .framer-oy7vrw { height: var(--framer-aspect-ratio-supported, 255px); } .framer-Cln2j .framer-1yo3v8y { gap: 5px; order: 1; } .framer-Cln2j .framer-10q3z0p { width: auto; } .framer-Cln2j .framer-vk59jg { order: 0; } .framer-Cln2j .framer-jx1mmu { width: 100%; } .framer-Cln2j .framer-quj0d1 { height: 151px; width: 99%; } .framer-Cln2j .framer-109y3ci { height: 117px; width: 351px; } .framer-Cln2j .framer-1ycksk4 { gap: 5px; height: var(--framer-aspect-ratio-supported, 156px); padding: 0px 0px 5px 0px; } .framer-Cln2j .framer-1e5ad7 { height: 45px; left: calc(49.8687664041995% - 114px / 2); top: calc(53.608247422680435% - 45px / 2); width: 114px; } .framer-Cln2j .framer-f0pmyc, .framer-Cln2j .framer-ft37n2, .framer-Cln2j .framer-1g2ra4t { height: 45px; left: calc(49.8687664041995% - 114px / 2); top: calc(50.171821305841945% - 45px / 2); width: 114px; } .framer-Cln2j .framer-1c3urrw { gap: 5px; height: var(--framer-aspect-ratio-supported, 156px); } .framer-Cln2j .framer-bw2g5x, .framer-Cln2j .framer-1b4shib { height: var(--framer-aspect-ratio-supported, 17px); } .framer-Cln2j .framer-12x2fde, .framer-Cln2j .framer-11rcbjb { height: var(--framer-aspect-ratio-supported, 120px); } .framer-Cln2j .framer-1841amn { height: var(--framer-aspect-ratio-supported, 16px); } .framer-Cln2j .framer-1czm6uv { height: var(--framer-aspect-ratio-supported, 221px); } .framer-Cln2j .framer-dimmqy { height: var(--framer-aspect-ratio-supported, 195px); } .framer-Cln2j .framer-10zip0g { flex-direction: column; } .framer-Cln2j .framer-1mw4lj2 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-Cln2j .framer-mjgv84 { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-Cln2j .framer-1z0ahyt { flex: none; height: 400px; order: 0; width: 100%; } .framer-Cln2j .framer-1vupb7e-container { aspect-ratio: 0.9312039312039312 / 1; height: var(--framer-aspect-ratio-supported, 407px); width: 97%; } .framer-Cln2j .framer-4997t6 { height: auto; white-space: pre; width: auto; } .framer-Cln2j .framer-7ns8w6 { gap: 23px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-Cln2j .framer-pat361, .framer-Cln2j .framer-nmejhs, .framer-Cln2j .framer-1ts5t9q, .framer-Cln2j .framer-1p3h7fm, .framer-Cln2j .framer-d9basx, .framer-Cln2j .framer-12lw0nd, .framer-Cln2j .framer-82v6cg, .framer-Cln2j .framer-ruyknd { height: var(--framer-aspect-ratio-supported, 310px); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Cln2j.framer-72rtr7 { width: 810px; } .framer-Cln2j .framer-oy7vrw { height: var(--framer-aspect-ratio-supported, 529px); } .framer-Cln2j .framer-1yo3v8y { order: 1; } .framer-Cln2j .framer-10q3z0p { width: auto; } .framer-Cln2j .framer-vk59jg { order: 0; } .framer-Cln2j .framer-quj0d1 { height: 155px; width: 100%; } .framer-Cln2j .framer-109y3ci { height: 105px; width: 777px; } .framer-Cln2j .framer-1ycksk4 { height: var(--framer-aspect-ratio-supported, 324px); } .framer-Cln2j .framer-1e5ad7 { height: 43px; left: calc(49.93757802746569% - 160px / 2); top: calc(51.674641148325385% - 43px / 2); width: 160px; } .framer-Cln2j .framer-f0pmyc, .framer-Cln2j .framer-1g2ra4t { left: calc(49.93757802746569% - 234px / 2); top: calc(51.674641148325385% - 76px / 2); width: 234px; } .framer-Cln2j .framer-1c3urrw { height: var(--framer-aspect-ratio-supported, 323px); } .framer-Cln2j .framer-ft37n2 { height: 67px; left: calc(49.93757802746569% - 198px / 2); top: calc(49.760765550239256% - 67px / 2); width: 198px; } .framer-Cln2j .framer-bw2g5x, .framer-Cln2j .framer-1841amn, .framer-Cln2j .framer-1b4shib { height: var(--framer-aspect-ratio-supported, 34px); } .framer-Cln2j .framer-12x2fde, .framer-Cln2j .framer-11rcbjb { height: var(--framer-aspect-ratio-supported, 216px); } .framer-Cln2j .framer-1czm6uv { height: var(--framer-aspect-ratio-supported, 459px); } .framer-Cln2j .framer-dimmqy { height: var(--framer-aspect-ratio-supported, 405px); } .framer-Cln2j .framer-mjgv84 { flex: 1 0 0px; padding: 65px 40px 65px 40px; width: 1px; } .framer-Cln2j .framer-1z0ahyt { height: 420px; } .framer-Cln2j .framer-1vupb7e-container { height: var(--framer-aspect-ratio-supported, 432px); } .framer-Cln2j .framer-4997t6 { height: auto; white-space: pre; width: auto; } .framer-Cln2j .framer-l7rmmb { max-width: 100%; padding: 20px 0px 40px 0px; width: min-content; } .framer-Cln2j .framer-7ns8w6 { gap: 9px; grid-template-columns: repeat(3, minmax(200px, 1fr)); width: 797px; } .framer-Cln2j .framer-pat361, .framer-Cln2j .framer-nmejhs, .framer-Cln2j .framer-1ts5t9q, .framer-Cln2j .framer-1p3h7fm, .framer-Cln2j .framer-d9basx, .framer-Cln2j .framer-12lw0nd, .framer-Cln2j .framer-82v6cg, .framer-Cln2j .framer-ruyknd { height: var(--framer-aspect-ratio-supported, 260px); }}\",\"@media (min-width: 1600px) { .framer-Cln2j.framer-72rtr7 { width: 1600px; } .framer-Cln2j .framer-oy7vrw { height: var(--framer-aspect-ratio-supported, 1046px); padding: 64px; } .framer-Cln2j .framer-1yo3v8y { bottom: 411px; top: unset; transform: translateX(-50%); } .framer-Cln2j .framer-10q3z0p { order: 0; } .framer-Cln2j .framer-al7908 { order: 1; } .framer-Cln2j .framer-1ycksk4, .framer-Cln2j .framer-1c3urrw { height: var(--framer-aspect-ratio-supported, 639px); } .framer-Cln2j .framer-1e5ad7 { left: calc(50.09416195856876% - 294px / 2); top: calc(50.75576770087512% - 82px / 2); } .framer-Cln2j .framer-f0pmyc { height: 69px; left: calc(49.96861268047711% - 349px / 2); top: calc(42.32299124900559% - 69px / 2); width: 349px; } .framer-Cln2j .framer-ft37n2 { height: 69px; left: calc(49.96861268047711% - 349px / 2); top: calc(45.186953062848076% - 69px / 2); width: 349px; } .framer-Cln2j .framer-1g2ra4t { height: 69px; left: calc(49.96861268047711% - 349px / 2); top: calc(44.391408114558494% - 69px / 2); width: 349px; } .framer-Cln2j .framer-bw2g5x, .framer-Cln2j .framer-1841amn, .framer-Cln2j .framer-1b4shib { height: var(--framer-aspect-ratio-supported, 67px); } .framer-Cln2j .framer-12x2fde, .framer-Cln2j .framer-11rcbjb { height: var(--framer-aspect-ratio-supported, 427px); } .framer-Cln2j .framer-1czm6uv { height: var(--framer-aspect-ratio-supported, 907px); } .framer-Cln2j .framer-dimmqy { height: var(--framer-aspect-ratio-supported, 800px); } .framer-Cln2j .framer-mjgv84 { width: 654px; } .framer-Cln2j .framer-1vupb7e-container { height: var(--framer-aspect-ratio-supported, 854px); } .framer-Cln2j .framer-7ns8w6 { grid-template-columns: repeat(5, minmax(200px, 1fr)); } .framer-Cln2j .framer-pat361, .framer-Cln2j .framer-nmejhs, .framer-Cln2j .framer-1ts5t9q, .framer-Cln2j .framer-1p3h7fm, .framer-Cln2j .framer-d9basx, .framer-Cln2j .framer-12lw0nd, .framer-Cln2j .framer-82v6cg, .framer-Cln2j .framer-ruyknd { height: var(--framer-aspect-ratio-supported, 200px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7281\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IfGV6SX3_\":{\"layout\":[\"fixed\",\"auto\"]},\"TTR6UeJFm\":{\"layout\":[\"fixed\",\"auto\"]},\"c4FE2yZNb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"b_ps555Br\":{\"pattern\":\":b_ps555Br\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Cln2j\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7281,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:\"Playfair Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v39/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDVZNLo_U2r.woff2\",weight:\"700\"},{family:\"Lato\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswXiWrFCbw7A.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"}]},...NavbarFonts,...EmbedFonts,...FaithFormationFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"b_ps555Br\\\":{\\\"pattern\\\":\\\":b_ps555Br\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IfGV6SX3_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TTR6UeJFm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c4FE2yZNb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"7281\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}