{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/nkmv3udC7eCW2cjP8K9D/gjASKpgei77pTVq72RsL/egz9t5SLD.js", "ssg:https://framerusercontent.com/modules/1Hq7lu4jTPXhNTCZxhBS/DkXs8871z9zQz2APpTEe/rSLnAtmYp.js", "ssg:https://framerusercontent.com/modules/O0jRTYHa2PMXnshWnUs9/crEmhjTUKOKNgUaEl34r/augiA20Il.js", "ssg:https://framerusercontent.com/modules/6bqqqbdlRmlsNkiZGCDN/DPj68Wy1sB9zEwd35rFQ/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\u2019t 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\u2019t 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\u2026\"})});}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\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-7Cj34 .framer-styles-preset-1bksfaf:not(.rich-text-wrapper), .framer-7Cj34 .framer-styles-preset-1bksfaf.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #0099ff; --framer-link-text-decoration: none; }\"];export const className=\"framer-7Cj34\";\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 (2fef4c5)\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 (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import 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 sharedStyle5 from\"#framer/local/css/KsUhaAsTT/KsUhaAsTT.js\";import*as sharedStyle2 from\"#framer/local/css/Maf11HVes/Maf11HVes.js\";import*as sharedStyle4 from\"#framer/local/css/rSLnAtmYp/rSLnAtmYp.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-2MA5d\";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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];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(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(\"v4\",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(\"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\":\"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\u2026\"'}),/*#__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(\"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\":\"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\u2026\"'}),/*#__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(\"v5\",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\u2026\"'}),/*#__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.4533333333334+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(\"v8\",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.4533333333334+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(\"v9\",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:\"https://soundscatholic.com/\",motionChild:true,nodeId:\"xEsDxjtKj\",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.4533333333334+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(\"v10\",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.4533333333334+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:\"Formaci\\xf3n Hispana\"})}),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(\"v11\",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(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+2792),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+1878.4533333333334),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+2156.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+2546),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__*/_jsx(Link,{href:\"https://www.206tours.com/cms/nashville/ordination/\",motionChild:true,nodeId:\"M3xg4fGTZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3392),pixelHeight:1168,pixelWidth:3456,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png\",srcSet:\"https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=512 512w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png 3456w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2478.4533333333334),pixelHeight:1168,pixelWidth:3456,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png\",srcSet:\"https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=512 512w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png 3456w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2756.2),pixelHeight:1168,pixelWidth:3456,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png\",srcSet:\"https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=512 512w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png 3456w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3146),pixelHeight:1168,pixelWidth:3456,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png\",srcSet:\"https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=512 512w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nFnpPeM0412Di5gokofYLBny60.png 3456w\"},className:\"framer-tl2z05 framer-lux5qc\",\"data-framer-name\":\"Header Image\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CfffIiysy\"},motionChild:true,nodeId:\"y9MuxOxwU\",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+3992),pixelHeight:1024,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg\",srcSet:\"https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg 2048w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3078.4533333333334),pixelHeight:1024,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg\",srcSet:\"https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg 2048w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3356.2),pixelHeight:1024,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg\",srcSet:\"https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3506),pixelHeight:1024,pixelWidth:2048,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg\",srcSet:\"https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jdwrgLT3VUzfAS5wP8V8zNz6bfU.jpg 2048w\"},className:\"framer-k7ko82 framer-lux5qc\",\"data-framer-name\":\"Header Image\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4592),pixelHeight:1148,pixelWidth:2042,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png\",srcSet:\"https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png 2042w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3678.4533333333334),pixelHeight:1148,pixelWidth:2042,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png\",srcSet:\"https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png 2042w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3956.2),pixelHeight:1148,pixelWidth:2042,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png\",srcSet:\"https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png 2042w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4106),pixelHeight:1148,pixelWidth:2042,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png\",srcSet:\"https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png?scale-down-to=512 512w,https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kgQcd8NoxChIF4JPbP5vP90UuiU.png 2042w\"},className:\"framer-4ugc5w\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfGV6SX3_:{children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Totus Tuus Missionary \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Applications Now Being Accepted\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Totus Tuus Missionary \",/*#__PURE__*/_jsx(\"br\",{}),\"Applications Now Being Accepted\"]})}),className:\"framer-bkcqpi\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfGV6SX3_:{children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Totus Tuus is a catechetical program for children brought to parishes throughout the summer by young adult missionaries. For more information please click \",/*#__PURE__*/_jsx(Link,{href:\"https://dioceseofnashville.com/totus-tuus/\",motionChild:true,nodeId:\"MkDxveLrG\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bksfaf\",\"data-styles-preset\":\"rSLnAtmYp\",children:\"here\"})}),\" or apply below.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Totus Tuus is a catechetical program for children brought to parishes throughout the summer by young adult missionaries. \",/*#__PURE__*/_jsx(\"br\",{}),\"For more information please click \",/*#__PURE__*/_jsx(Link,{href:\"https://dioceseofnashville.com/totus-tuus/\",motionChild:true,nodeId:\"MkDxveLrG\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bksfaf\",\"data-styles-preset\":\"rSLnAtmYp\",children:\"here\"})}),\" or apply below.\"]})}),className:\"framer-zoxyd4\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5apury\",children:/*#__PURE__*/_jsx(Link,{href:\"https://form.jotform.com/242755245500048\",motionChild:true,nodeId:\"HTHdGAXwu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-nkcg76 framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IfGV6SX3_:{children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Apply Here\"})})}},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\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Apply Here\"})}),className:\"framer-144mnw3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2la81s\",\"data-framer-name\":\"Overlay\"})]})}),/*#__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(\"v19\",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(\"v19\",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(\"v18\",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(\"v20\",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(\"v21\",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+5192+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+4278.453333333333+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+4556.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+4706+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(\"v22\",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(\"v23\",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+6664+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+5792.453333333333+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+5848.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+6178+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(\"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:[\"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,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+6664+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+5792.453333333333+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+5848.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+6178+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(\"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:[\"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,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-cw8g1d\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c4FE2yZNb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3211,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6664+20+0+0+0+0+0),pixelHeight:977,pixelWidth:936,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 240px) / 5, 200px)`,src:\"https://framerusercontent.com/images/x6I3Z1ktjlPr7pkqEdYOt8KSzZA.jpg\",srcSet:\"https://framerusercontent.com/images/x6I3Z1ktjlPr7pkqEdYOt8KSzZA.jpg 936w\"}},IfGV6SX3_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3211,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5792.453333333333+20+0+0+754+0+0),pixelHeight:977,pixelWidth:936,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/x6I3Z1ktjlPr7pkqEdYOt8KSzZA.jpg\",srcSet:\"https://framerusercontent.com/images/x6I3Z1ktjlPr7pkqEdYOt8KSzZA.jpg 936w\"}},TTR6UeJFm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3211,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5848.2+20+0+0+0+0+0),pixelHeight:977,pixelWidth:936,sizes:\"259.6667px\",src:\"https://framerusercontent.com/images/x6I3Z1ktjlPr7pkqEdYOt8KSzZA.jpg\",srcSet:\"https://framerusercontent.com/images/x6I3Z1ktjlPr7pkqEdYOt8KSzZA.jpg 936w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3211,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6178+20+0+0+0+0+0),pixelHeight:977,pixelWidth:936,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 180px) / 4, 200px)`,src:\"https://framerusercontent.com/images/x6I3Z1ktjlPr7pkqEdYOt8KSzZA.jpg\",srcSet:\"https://framerusercontent.com/images/x6I3Z1ktjlPr7pkqEdYOt8KSzZA.jpg 936w\"},className:\"framer-geeifl\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k4y4ny\",\"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:\"Ian Cawthon\"})}),className:\"framer-1onplfg\",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:[\"Faith Formation Office and Event Coordinator\",/*#__PURE__*/_jsx(\"br\",{}),\"615-645-9770\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:ian.cawthon@dioceseofnashville.com\",motionChild:true,nodeId:\"nzAnaAXji\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x3yvtv\",\"data-styles-preset\":\"KsUhaAsTT\",children:\"Email\"})})]})}),className:\"framer-16l9kpm\",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+6664+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+5792.453333333333+20+0+0+1131+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+5848.2+20+0+0+363+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+6178+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(\"v27\",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 Community\",/*#__PURE__*/_jsx(\"br\",{}),\"615-760-2796\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:luis.estrada@dioceseofnashville.com\",motionChild:true,nodeId:\"E7Qd1GloJ\",openInNewTab:false,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+6664+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+5792.453333333333+20+0+0+1508+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+5848.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+6178+20+0+0+414+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(\"v28\",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,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+6664+20+0+0+414+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+5792.453333333333+20+0+0+1885+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+5848.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+6178+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(\"v29\",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,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+6664+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+5792.453333333333+20+0+0+2262+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+5848.2+20+0+0+726+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+6178+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(\"v30\",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,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+6664+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+5792.453333333333+20+0+0+2639+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+5848.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+6178+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(\"v31\",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,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+6664+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+5792.453333333333+20+0+0+3016+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+5848.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+6178+20+0+0+828+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(\"v32\",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,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+7492},IfGV6SX3_:{y:(componentViewport?.y||0)+0+9222.453333333333},TTR6UeJFm:{y:(componentViewport?.y||0)+0+6988.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:293,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7420,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-2MA5d.framer-lux5qc, .framer-2MA5d .framer-lux5qc { display: block; }\",\".framer-2MA5d.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-2MA5d .framer-m0cnbk-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .framer-vk59jg { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; opacity: 0.67; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .framer-vsyc2a, .framer-2MA5d .framer-1mcri2f, .framer-2MA5d .framer-fena8q, .framer-2MA5d .framer-zccoog { flex: 1 0 0px; height: 100%; position: relative; text-decoration: none; width: 1px; }\",\".framer-2MA5d .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-2MA5d .framer-f0pmyc, .framer-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .framer-bpxx8f, .framer-2MA5d .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-2MA5d .framer-hbwxnq, .framer-2MA5d .framer-z5hbv3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2MA5d .framer-dimmqy, .framer-2MA5d .framer-k7ko82 { 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-2MA5d .framer-tl2z05 { 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, 400px); justify-content: center; overflow: hidden; padding: 60px; position: relative; text-decoration: none; width: 100%; }\",\".framer-2MA5d .framer-4ugc5w { 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; width: 100%; }\",\".framer-2MA5d .framer-bkcqpi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; 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-2MA5d .framer-zoxyd4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 724px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-2MA5d .framer-5apury { 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; z-index: 1; }\",\".framer-2MA5d .framer-nkcg76 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 58px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-2MA5d .framer-144mnw3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2MA5d .framer-2la81s { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .framer-45p0ny, .framer-2MA5d .framer-fsdpyd, .framer-2MA5d .framer-ktsoc5, .framer-2MA5d .framer-1onplfg, .framer-2MA5d .framer-1fb4fzm, .framer-2MA5d .framer-r0tydh, .framer-2MA5d .framer-1rath2y, .framer-2MA5d .framer-cy3ya6, .framer-2MA5d .framer-wwxq0e, .framer-2MA5d .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-2MA5d .framer-1qsvb01, .framer-2MA5d .framer-1amwb16, .framer-2MA5d .framer-r7t0xy, .framer-2MA5d .framer-16l9kpm, .framer-2MA5d .framer-1aez3d8, .framer-2MA5d .framer-1fe5r1, .framer-2MA5d .framer-12q2jrd, .framer-2MA5d .framer-1qf44x7, .framer-2MA5d .framer-17mq6cv, .framer-2MA5d .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-2MA5d .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-2MA5d .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.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 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-2MA5d .framer-ad36kj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2MA5d .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-2MA5d .framer-1vupb7e-container { aspect-ratio: 1.8181818181818181 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); position: relative; width: 97%; }\",\".framer-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .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-2MA5d .framer-12kb538, .framer-2MA5d .framer-8u60uz, .framer-2MA5d .framer-cw8g1d, .framer-2MA5d .framer-qvfomk, .framer-2MA5d .framer-h3ohks, .framer-2MA5d .framer-187yfku, .framer-2MA5d .framer-u6yqcv, .framer-2MA5d .framer-vxwuzf, .framer-2MA5d .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-2MA5d .framer-pat361, .framer-2MA5d .framer-geeifl, .framer-2MA5d .framer-1ts5t9q, .framer-2MA5d .framer-12lw0nd, .framer-2MA5d .framer-82v6cg, .framer-2MA5d .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-2MA5d .framer-1wrw4ff, .framer-2MA5d .framer-h78mq9, .framer-2MA5d .framer-1k4y4ny, .framer-2MA5d .framer-wg9bdw, .framer-2MA5d .framer-yvcny5, .framer-2MA5d .framer-1082nyd, .framer-2MA5d .framer-1kgyh0w, .framer-2MA5d .framer-co5kzh, .framer-2MA5d .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-2MA5d .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-2MA5d .framer-1p3h7fm, .framer-2MA5d .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-2MA5d .framer-1ys8yea-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2MA5d.framer-72rtr7, .framer-2MA5d .framer-oy7vrw, .framer-2MA5d .framer-1yo3v8y, .framer-2MA5d .framer-jx1mmu, .framer-2MA5d .framer-quj0d1, .framer-2MA5d .framer-1ycksk4, .framer-2MA5d .framer-1c3urrw, .framer-2MA5d .framer-bpxx8f, .framer-2MA5d .framer-dimmqy, .framer-2MA5d .framer-tl2z05, .framer-2MA5d .framer-k7ko82, .framer-2MA5d .framer-4ugc5w, .framer-2MA5d .framer-5apury, .framer-2MA5d .framer-nkcg76, .framer-2MA5d .framer-10zip0g, .framer-2MA5d .framer-1mw4lj2, .framer-2MA5d .framer-mjgv84, .framer-2MA5d .framer-j64m9f, .framer-2MA5d .framer-5cha6g, .framer-2MA5d .framer-1z0ahyt, .framer-2MA5d .framer-14vpzo8, .framer-2MA5d .framer-1muu24q, .framer-2MA5d .framer-l7rmmb, .framer-2MA5d .framer-12kb538, .framer-2MA5d .framer-pat361, .framer-2MA5d .framer-1wrw4ff, .framer-2MA5d .framer-8u60uz, .framer-2MA5d .framer-nmejhs, .framer-2MA5d .framer-h78mq9, .framer-2MA5d .framer-cw8g1d, .framer-2MA5d .framer-geeifl, .framer-2MA5d .framer-1k4y4ny, .framer-2MA5d .framer-qvfomk, .framer-2MA5d .framer-1ts5t9q, .framer-2MA5d .framer-wg9bdw, .framer-2MA5d .framer-h3ohks, .framer-2MA5d .framer-1p3h7fm, .framer-2MA5d .framer-yvcny5, .framer-2MA5d .framer-187yfku, .framer-2MA5d .framer-d9basx, .framer-2MA5d .framer-1082nyd, .framer-2MA5d .framer-u6yqcv, .framer-2MA5d .framer-12lw0nd, .framer-2MA5d .framer-1kgyh0w, .framer-2MA5d .framer-vxwuzf, .framer-2MA5d .framer-82v6cg, .framer-2MA5d .framer-co5kzh, .framer-2MA5d .framer-14jsccf, .framer-2MA5d .framer-ruyknd, .framer-2MA5d .framer-pwo7go { gap: 0px; } .framer-2MA5d.framer-72rtr7 > *, .framer-2MA5d .framer-l7rmmb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2MA5d.framer-72rtr7 > :first-child, .framer-2MA5d .framer-oy7vrw > :first-child, .framer-2MA5d .framer-1yo3v8y > :first-child, .framer-2MA5d .framer-jx1mmu > :first-child, .framer-2MA5d .framer-dimmqy > :first-child, .framer-2MA5d .framer-tl2z05 > :first-child, .framer-2MA5d .framer-k7ko82 > :first-child, .framer-2MA5d .framer-4ugc5w > :first-child, .framer-2MA5d .framer-mjgv84 > :first-child, .framer-2MA5d .framer-1z0ahyt > :first-child, .framer-2MA5d .framer-l7rmmb > :first-child, .framer-2MA5d .framer-12kb538 > :first-child, .framer-2MA5d .framer-pat361 > :first-child, .framer-2MA5d .framer-1wrw4ff > :first-child, .framer-2MA5d .framer-8u60uz > :first-child, .framer-2MA5d .framer-nmejhs > :first-child, .framer-2MA5d .framer-h78mq9 > :first-child, .framer-2MA5d .framer-cw8g1d > :first-child, .framer-2MA5d .framer-geeifl > :first-child, .framer-2MA5d .framer-1k4y4ny > :first-child, .framer-2MA5d .framer-qvfomk > :first-child, .framer-2MA5d .framer-1ts5t9q > :first-child, .framer-2MA5d .framer-wg9bdw > :first-child, .framer-2MA5d .framer-h3ohks > :first-child, .framer-2MA5d .framer-1p3h7fm > :first-child, .framer-2MA5d .framer-yvcny5 > :first-child, .framer-2MA5d .framer-187yfku > :first-child, .framer-2MA5d .framer-d9basx > :first-child, .framer-2MA5d .framer-1082nyd > :first-child, .framer-2MA5d .framer-u6yqcv > :first-child, .framer-2MA5d .framer-12lw0nd > :first-child, .framer-2MA5d .framer-1kgyh0w > :first-child, .framer-2MA5d .framer-vxwuzf > :first-child, .framer-2MA5d .framer-82v6cg > :first-child, .framer-2MA5d .framer-co5kzh > :first-child, .framer-2MA5d .framer-14jsccf > :first-child, .framer-2MA5d .framer-ruyknd > :first-child, .framer-2MA5d .framer-pwo7go > :first-child { margin-top: 0px; } .framer-2MA5d.framer-72rtr7 > :last-child, .framer-2MA5d .framer-oy7vrw > :last-child, .framer-2MA5d .framer-1yo3v8y > :last-child, .framer-2MA5d .framer-jx1mmu > :last-child, .framer-2MA5d .framer-dimmqy > :last-child, .framer-2MA5d .framer-tl2z05 > :last-child, .framer-2MA5d .framer-k7ko82 > :last-child, .framer-2MA5d .framer-4ugc5w > :last-child, .framer-2MA5d .framer-mjgv84 > :last-child, .framer-2MA5d .framer-1z0ahyt > :last-child, .framer-2MA5d .framer-l7rmmb > :last-child, .framer-2MA5d .framer-12kb538 > :last-child, .framer-2MA5d .framer-pat361 > :last-child, .framer-2MA5d .framer-1wrw4ff > :last-child, .framer-2MA5d .framer-8u60uz > :last-child, .framer-2MA5d .framer-nmejhs > :last-child, .framer-2MA5d .framer-h78mq9 > :last-child, .framer-2MA5d .framer-cw8g1d > :last-child, .framer-2MA5d .framer-geeifl > :last-child, .framer-2MA5d .framer-1k4y4ny > :last-child, .framer-2MA5d .framer-qvfomk > :last-child, .framer-2MA5d .framer-1ts5t9q > :last-child, .framer-2MA5d .framer-wg9bdw > :last-child, .framer-2MA5d .framer-h3ohks > :last-child, .framer-2MA5d .framer-1p3h7fm > :last-child, .framer-2MA5d .framer-yvcny5 > :last-child, .framer-2MA5d .framer-187yfku > :last-child, .framer-2MA5d .framer-d9basx > :last-child, .framer-2MA5d .framer-1082nyd > :last-child, .framer-2MA5d .framer-u6yqcv > :last-child, .framer-2MA5d .framer-12lw0nd > :last-child, .framer-2MA5d .framer-1kgyh0w > :last-child, .framer-2MA5d .framer-vxwuzf > :last-child, .framer-2MA5d .framer-82v6cg > :last-child, .framer-2MA5d .framer-co5kzh > :last-child, .framer-2MA5d .framer-14jsccf > :last-child, .framer-2MA5d .framer-ruyknd > :last-child, .framer-2MA5d .framer-pwo7go > :last-child { margin-bottom: 0px; } .framer-2MA5d .framer-oy7vrw > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-2MA5d .framer-1yo3v8y > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-2MA5d .framer-jx1mmu > *, .framer-2MA5d .framer-dimmqy > *, .framer-2MA5d .framer-tl2z05 > *, .framer-2MA5d .framer-k7ko82 > *, .framer-2MA5d .framer-4ugc5w > *, .framer-2MA5d .framer-mjgv84 > *, .framer-2MA5d .framer-1z0ahyt > *, .framer-2MA5d .framer-pat361 > *, .framer-2MA5d .framer-nmejhs > *, .framer-2MA5d .framer-geeifl > *, .framer-2MA5d .framer-1ts5t9q > *, .framer-2MA5d .framer-1p3h7fm > *, .framer-2MA5d .framer-d9basx > *, .framer-2MA5d .framer-12lw0nd > *, .framer-2MA5d .framer-82v6cg > *, .framer-2MA5d .framer-ruyknd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-2MA5d .framer-quj0d1 > *, .framer-2MA5d .framer-1ycksk4 > *, .framer-2MA5d .framer-1c3urrw > *, .framer-2MA5d .framer-bpxx8f > *, .framer-2MA5d .framer-nkcg76 > *, .framer-2MA5d .framer-1mw4lj2 > *, .framer-2MA5d .framer-5cha6g > *, .framer-2MA5d .framer-14vpzo8 > *, .framer-2MA5d .framer-1muu24q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2MA5d .framer-quj0d1 > :first-child, .framer-2MA5d .framer-1ycksk4 > :first-child, .framer-2MA5d .framer-1c3urrw > :first-child, .framer-2MA5d .framer-bpxx8f > :first-child, .framer-2MA5d .framer-5apury > :first-child, .framer-2MA5d .framer-nkcg76 > :first-child, .framer-2MA5d .framer-10zip0g > :first-child, .framer-2MA5d .framer-1mw4lj2 > :first-child, .framer-2MA5d .framer-j64m9f > :first-child, .framer-2MA5d .framer-5cha6g > :first-child, .framer-2MA5d .framer-14vpzo8 > :first-child, .framer-2MA5d .framer-1muu24q > :first-child { margin-left: 0px; } .framer-2MA5d .framer-quj0d1 > :last-child, .framer-2MA5d .framer-1ycksk4 > :last-child, .framer-2MA5d .framer-1c3urrw > :last-child, .framer-2MA5d .framer-bpxx8f > :last-child, .framer-2MA5d .framer-5apury > :last-child, .framer-2MA5d .framer-nkcg76 > :last-child, .framer-2MA5d .framer-10zip0g > :last-child, .framer-2MA5d .framer-1mw4lj2 > :last-child, .framer-2MA5d .framer-j64m9f > :last-child, .framer-2MA5d .framer-5cha6g > :last-child, .framer-2MA5d .framer-14vpzo8 > :last-child, .framer-2MA5d .framer-1muu24q > :last-child { margin-right: 0px; } .framer-2MA5d .framer-5apury > *, .framer-2MA5d .framer-j64m9f > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-2MA5d .framer-10zip0g > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2MA5d .framer-12kb538 > *, .framer-2MA5d .framer-8u60uz > *, .framer-2MA5d .framer-cw8g1d > *, .framer-2MA5d .framer-qvfomk > *, .framer-2MA5d .framer-h3ohks > *, .framer-2MA5d .framer-187yfku > *, .framer-2MA5d .framer-u6yqcv > *, .framer-2MA5d .framer-vxwuzf > *, .framer-2MA5d .framer-14jsccf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-2MA5d .framer-1wrw4ff > *, .framer-2MA5d .framer-h78mq9 > *, .framer-2MA5d .framer-1k4y4ny > *, .framer-2MA5d .framer-wg9bdw > *, .framer-2MA5d .framer-yvcny5 > *, .framer-2MA5d .framer-1082nyd > *, .framer-2MA5d .framer-1kgyh0w > *, .framer-2MA5d .framer-co5kzh > *, .framer-2MA5d .framer-pwo7go > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-2MA5d[data-border=\"true\"]::after, .framer-2MA5d [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-2MA5d.framer-72rtr7 { width: 390px; } .framer-2MA5d .framer-oy7vrw { height: var(--framer-aspect-ratio-supported, 255px); } .framer-2MA5d .framer-1yo3v8y { gap: 5px; order: 1; } .framer-2MA5d .framer-10q3z0p { width: auto; } .framer-2MA5d .framer-vk59jg { order: 0; } .framer-2MA5d .framer-jx1mmu { width: 100%; } .framer-2MA5d .framer-quj0d1 { height: 151px; width: 99%; } .framer-2MA5d .framer-109y3ci { height: 117px; width: 351px; } .framer-2MA5d .framer-1ycksk4 { gap: 5px; height: var(--framer-aspect-ratio-supported, 156px); padding: 0px 0px 5px 0px; } .framer-2MA5d .framer-1e5ad7 { height: 45px; left: calc(49.8687664041995% - 114px / 2); top: calc(53.608247422680435% - 45px / 2); width: 114px; } .framer-2MA5d .framer-f0pmyc, .framer-2MA5d .framer-ft37n2, .framer-2MA5d .framer-1g2ra4t { height: 45px; left: calc(49.8687664041995% - 114px / 2); top: calc(50.171821305841945% - 45px / 2); width: 114px; } .framer-2MA5d .framer-1c3urrw { gap: 5px; height: var(--framer-aspect-ratio-supported, 156px); } .framer-2MA5d .framer-dimmqy, .framer-2MA5d .framer-k7ko82 { height: var(--framer-aspect-ratio-supported, 195px); } .framer-2MA5d .framer-tl2z05 { height: var(--framer-aspect-ratio-supported, 130px); } .framer-2MA5d .framer-4ugc5w { gap: 7px; height: var(--framer-aspect-ratio-supported, 195px); } .framer-2MA5d .framer-nkcg76 { height: 36px; } .framer-2MA5d .framer-10zip0g { flex-direction: column; } .framer-2MA5d .framer-1mw4lj2 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-2MA5d .framer-mjgv84 { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-2MA5d .framer-1z0ahyt { flex: none; height: 400px; order: 0; width: 100%; } .framer-2MA5d .framer-1vupb7e-container { aspect-ratio: 0.9312039312039312 / 1; height: var(--framer-aspect-ratio-supported, 407px); width: 97%; } .framer-2MA5d .framer-4997t6 { height: auto; white-space: pre; width: auto; } .framer-2MA5d .framer-7ns8w6 { gap: 23px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-2MA5d .framer-pat361, .framer-2MA5d .framer-nmejhs, .framer-2MA5d .framer-geeifl, .framer-2MA5d .framer-1ts5t9q, .framer-2MA5d .framer-1p3h7fm, .framer-2MA5d .framer-d9basx, .framer-2MA5d .framer-12lw0nd, .framer-2MA5d .framer-82v6cg, .framer-2MA5d .framer-ruyknd { height: var(--framer-aspect-ratio-supported, 310px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2MA5d .framer-1yo3v8y, .framer-2MA5d .framer-1ycksk4, .framer-2MA5d .framer-1c3urrw, .framer-2MA5d .framer-4ugc5w, .framer-2MA5d .framer-10zip0g, .framer-2MA5d .framer-7ns8w6 { gap: 0px; } .framer-2MA5d .framer-1yo3v8y > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-2MA5d .framer-1yo3v8y > :first-child, .framer-2MA5d .framer-4ugc5w > :first-child, .framer-2MA5d .framer-10zip0g > :first-child { margin-top: 0px; } .framer-2MA5d .framer-1yo3v8y > :last-child, .framer-2MA5d .framer-4ugc5w > :last-child, .framer-2MA5d .framer-10zip0g > :last-child { margin-bottom: 0px; } .framer-2MA5d .framer-1ycksk4 > *, .framer-2MA5d .framer-1c3urrw > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-2MA5d .framer-1ycksk4 > :first-child, .framer-2MA5d .framer-1c3urrw > :first-child { margin-left: 0px; } .framer-2MA5d .framer-1ycksk4 > :last-child, .framer-2MA5d .framer-1c3urrw > :last-child { margin-right: 0px; } .framer-2MA5d .framer-4ugc5w > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-2MA5d .framer-10zip0g > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2MA5d .framer-7ns8w6 > *, .framer-2MA5d .framer-7ns8w6 > :first-child, .framer-2MA5d .framer-7ns8w6 > :last-child { margin: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-2MA5d.framer-72rtr7 { width: 810px; } .framer-2MA5d .framer-oy7vrw { height: var(--framer-aspect-ratio-supported, 529px); } .framer-2MA5d .framer-1yo3v8y { order: 1; } .framer-2MA5d .framer-10q3z0p { width: auto; } .framer-2MA5d .framer-vk59jg { order: 0; } .framer-2MA5d .framer-quj0d1 { height: 155px; width: 100%; } .framer-2MA5d .framer-109y3ci { height: 105px; width: 777px; } .framer-2MA5d .framer-1ycksk4 { height: var(--framer-aspect-ratio-supported, 324px); } .framer-2MA5d .framer-1e5ad7 { height: 43px; left: calc(49.93757802746569% - 160px / 2); top: calc(51.674641148325385% - 43px / 2); width: 160px; } .framer-2MA5d .framer-f0pmyc, .framer-2MA5d .framer-1g2ra4t { left: calc(49.93757802746569% - 234px / 2); top: calc(51.674641148325385% - 76px / 2); width: 234px; } .framer-2MA5d .framer-1c3urrw { height: var(--framer-aspect-ratio-supported, 323px); } .framer-2MA5d .framer-ft37n2 { height: 67px; left: calc(49.93757802746569% - 198px / 2); top: calc(49.760765550239256% - 67px / 2); width: 198px; } .framer-2MA5d .framer-dimmqy, .framer-2MA5d .framer-k7ko82, .framer-2MA5d .framer-4ugc5w { height: var(--framer-aspect-ratio-supported, 405px); } .framer-2MA5d .framer-tl2z05 { height: var(--framer-aspect-ratio-supported, 270px); } .framer-2MA5d .framer-mjgv84 { flex: 1 0 0px; padding: 65px 40px 65px 40px; width: 1px; } .framer-2MA5d .framer-1z0ahyt { height: 420px; } .framer-2MA5d .framer-1vupb7e-container { height: var(--framer-aspect-ratio-supported, 433px); } .framer-2MA5d .framer-4997t6 { height: auto; white-space: pre; width: auto; } .framer-2MA5d .framer-l7rmmb { max-width: 100%; padding: 20px 0px 40px 0px; width: min-content; } .framer-2MA5d .framer-7ns8w6 { gap: 9px; grid-template-columns: repeat(3, minmax(200px, 1fr)); width: 797px; } .framer-2MA5d .framer-pat361, .framer-2MA5d .framer-nmejhs, .framer-2MA5d .framer-geeifl, .framer-2MA5d .framer-1ts5t9q, .framer-2MA5d .framer-1p3h7fm, .framer-2MA5d .framer-d9basx, .framer-2MA5d .framer-12lw0nd, .framer-2MA5d .framer-82v6cg, .framer-2MA5d .framer-ruyknd { height: var(--framer-aspect-ratio-supported, 260px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2MA5d .framer-7ns8w6 { gap: 0px; } .framer-2MA5d .framer-7ns8w6 > *, .framer-2MA5d .framer-7ns8w6 > :first-child, .framer-2MA5d .framer-7ns8w6 > :last-child { margin: 0px; } }}\",\"@media (min-width: 1600px) { .framer-2MA5d.framer-72rtr7 { width: 1600px; } .framer-2MA5d .framer-oy7vrw { height: var(--framer-aspect-ratio-supported, 1046px); padding: 64px; } .framer-2MA5d .framer-1yo3v8y { bottom: 411px; top: unset; transform: translateX(-50%); } .framer-2MA5d .framer-10q3z0p { order: 0; } .framer-2MA5d .framer-al7908 { order: 1; } .framer-2MA5d .framer-1ycksk4, .framer-2MA5d .framer-1c3urrw { height: var(--framer-aspect-ratio-supported, 639px); } .framer-2MA5d .framer-1e5ad7 { left: calc(50.09416195856876% - 294px / 2); top: calc(50.75576770087512% - 82px / 2); } .framer-2MA5d .framer-f0pmyc { height: 69px; left: calc(49.96861268047711% - 349px / 2); top: calc(42.32299124900559% - 69px / 2); width: 349px; } .framer-2MA5d .framer-ft37n2 { height: 69px; left: calc(49.96861268047711% - 349px / 2); top: calc(45.186953062848076% - 69px / 2); width: 349px; } .framer-2MA5d .framer-1g2ra4t { height: 69px; left: calc(49.96861268047711% - 349px / 2); top: calc(44.391408114558494% - 69px / 2); width: 349px; } .framer-2MA5d .framer-dimmqy, .framer-2MA5d .framer-k7ko82, .framer-2MA5d .framer-4ugc5w { height: var(--framer-aspect-ratio-supported, 800px); } .framer-2MA5d .framer-tl2z05 { height: var(--framer-aspect-ratio-supported, 534px); } .framer-2MA5d .framer-mjgv84 { width: 654px; } .framer-2MA5d .framer-1vupb7e-container { height: var(--framer-aspect-ratio-supported, 854px); } .framer-2MA5d .framer-7ns8w6 { grid-template-columns: repeat(5, minmax(200px, 1fr)); } .framer-2MA5d .framer-pat361, .framer-2MA5d .framer-nmejhs, .framer-2MA5d .framer-geeifl, .framer-2MA5d .framer-1ts5t9q, .framer-2MA5d .framer-1p3h7fm, .framer-2MA5d .framer-d9basx, .framer-2MA5d .framer-12lw0nd, .framer-2MA5d .framer-82v6cg, .framer-2MA5d .framer-ruyknd { height: var(--framer-aspect-ratio-supported, 200px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7892\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 * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"b_ps555Br\":{\"pattern\":\":b_ps555Br\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-2MA5d\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7892,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/v37/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/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{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),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IfGV6SX3_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TTR6UeJFm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c4FE2yZNb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7892\",\"framerScrollSections\":\"{\\\"b_ps555Br\\\":{\\\"pattern\\\":\\\":b_ps555Br\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavbarFonts", "getFonts", "wTfmOf2rD_default", "ImageWithFX", "withFX", "Image2", "EmbedFonts", "Embed", "FaithFormationFooterFonts", "bjcIYJKKa_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "wTfmOf2rD_default", "ImageWithFX", "getLoadingLazyAtYPosition", "RichText2", "getLocalizedValue", "x", "Link", "Image2", "Embed", "bjcIYJKKa_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavbarFonts", "EmbedFonts", "FaithFormationFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
