{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/cpJ3TTOdLBvvjMhJYebI/nvsjaIqh94wl7qeX1umh/DPh2pvuwz.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import BGColor from\"#framer/local/canvasComponent/dvyiAGTPx/dvyiAGTPx.js\";import Topbar from\"#framer/local/canvasComponent/hjWxNcAKE/hjWxNcAKE.js\";import Footer from\"#framer/local/canvasComponent/yTIhkKggf/yTIhkKggf.js\";import*as sharedStyle from\"#framer/local/css/BOhPml2UK/BOhPml2UK.js\";import*as sharedStyle2 from\"#framer/local/css/C5OnAVXEi/C5OnAVXEi.js\";import*as sharedStyle1 from\"#framer/local/css/weOK2rO8w/weOK2rO8w.js\";import*as sharedStyle3 from\"#framer/local/css/YtBfwFCIM/YtBfwFCIM.js\";import metadataProvider from\"#framer/local/webPageMetadata/DPh2pvuwz/DPh2pvuwz.js\";const TopbarFonts=getFonts(Topbar);const DownloadFonts=getFonts(Download);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const MotionAWithFX=withFX(motion.a);const FooterFonts=getFonts(Footer);const BGColorFonts=getFonts(BGColor);const BGColorWithVariantAppearEffect=withVariantAppearEffect(BGColor);const breakpoints={K9vTi8plC:\"(min-width: 1600px)\",KcStpuLvf:\"(max-width: 809px)\",MxTgHdAMf:\"(min-width: 1200px) and (max-width: 1599px)\",nYwbYw05J:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WcH8p\";const variantClassNames={K9vTi8plC:\"framer-v-1yw4rzu\",KcStpuLvf:\"framer-v-1g1bg3b\",MxTgHdAMf:\"framer-v-platze\",nYwbYw05J:\"framer-v-yaon2i\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:150};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const transition3={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:150};const transition4={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:150};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop Large\":\"K9vTi8plC\",Desktop:\"MxTgHdAMf\",Phone:\"KcStpuLvf\",Tablet:\"nYwbYw05J\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"MxTgHdAMf\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gKxacJIrVxJGQ63fIp,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-WcH8p`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-WcH8p`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"BHMV28ZsB\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"LFjgAOFcT\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MxTgHdAMf\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-platze\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6i5q7x-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KcStpuLvf:{variant:\"Rj1dTB5dT\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"h0CBBS_Zx\",layoutId:\"h0CBBS_Zx\",style:{height:\"100%\",width:\"100%\"},TBpcCoEjY:\"DVK8LF5am\",variant:\"Uc7PcK_k5\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jz3as0\",\"data-framer-name\":\"Top\",id:elementId,name:\"Top\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n5vlgo\",\"data-framer-name\":\"Backgroundtexture\",name:\"Backgroundtexture\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9vTi8plC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:973,loading:getLoadingLazyAtYPosition(-198.5),pixelHeight:1074,pixelWidth:1946,sizes:\"calc(100vw + 270px)\",src:\"https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=512 512w,https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png 1946w\"}},KcStpuLvf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:973,loading:getLoadingLazyAtYPosition(131),pixelHeight:1074,pixelWidth:1946,sizes:\"calc(100vw + 479px)\",src:\"https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=512 512w,https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png 1946w\"}},nYwbYw05J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:973,loading:getLoadingLazyAtYPosition(-134.10000000000002),pixelHeight:1074,pixelWidth:1946,sizes:\"calc(100vw + 269px)\",src:\"https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=512 512w,https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png 1946w\"}}},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:537,intrinsicWidth:973,loading:getLoadingLazyAtYPosition(-174.10000000000002),pixelHeight:1074,pixelWidth:1946,sizes:\"calc(100vw + 269px)\",src:\"https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=512 512w,https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tpwoHqKj8XK6AdsjVzNQkt30.png 1946w\"},className:\"framer-d153zv\",\"data-framer-name\":\"image\",name:\"image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m33z94\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-pq03sy\",\"data-styles-preset\":\"BOhPml2UK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-104d6668-6232-4004-afa0-8dca4626863d, rgb(30, 10, 45))\"},children:\"OUR FINANCIALS\"})}),className:\"framer-12n7viq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nYwbYw05J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-49o1uh\",\"data-styles-preset\":\"C5OnAVXEi\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-104d6668-6232-4004-afa0-8dca4626863d, rgb(30, 10, 45))\"},children:\"We\u2019re poised to triple our impact in the coming school year. Your investment empowers the next generation of leaders with something simple. Access and opportunity.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ybtxvy\",\"data-styles-preset\":\"weOK2rO8w\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-104d6668-6232-4004-afa0-8dca4626863d, rgb(30, 10, 45))\"},children:\"We\u2019re poised to triple our impact in the coming school year. Your investment empowers the next generation of leaders with something simple. Access and opportunity.\"})}),className:\"framer-190egav\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12slnzh\",\"data-framer-name\":\"Financial Statements\",id:elementId1,name:\"Financial Statements\",ref:ref3,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nv37et\",\"data-framer-name\":\"Financials\",name:\"Financials\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19a77d7\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nYwbYw05J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-osngi5\",\"data-styles-preset\":\"YtBfwFCIM\",style:{\"--framer-text-color\":\"var(--token-104d6668-6232-4004-afa0-8dca4626863d, rgb(30, 10, 45))\"},children:\"FINANCIAL STATEMENTS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-osngi5\",\"data-styles-preset\":\"YtBfwFCIM\",style:{\"--framer-text-color\":\"var(--variable-reference-gKxacJIrV-xJGQ63fIp)\"},children:\"FINANCIAL STATEMENTS\"})}),className:\"framer-1fogu7a\",fonts:[\"Inter\"],style:{\"--variable-reference-gKxacJIrV-xJGQ63fIp\":gKxacJIrVxJGQ63fIp},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KcStpuLvf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ybtxvy\",\"data-styles-preset\":\"weOK2rO8w\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-104d6668-6232-4004-afa0-8dca4626863d, rgb(30, 10, 45))\"},children:\"To learn more about our financials, you can check out our yearly reports below.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ybtxvy\",\"data-styles-preset\":\"weOK2rO8w\",style:{\"--framer-text-color\":\"var(--token-104d6668-6232-4004-afa0-8dca4626863d, rgb(30, 10, 45))\"},children:\"To learn more about our financials, you can check out our yearly reports below.\"})}),className:\"framer-yh59x6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfkc4h\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-43yom0\",\"data-framer-name\":\"File\",name:\"File\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ot73m8-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Barlow Condensed\", \"Barlow Condensed Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-de1b5464-0e19-4aa9-9a51-2d067ad74cf7, rgb(246, 244, 239))\",color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",scale:1.1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"end\",color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",size:24,type:\"Default\"},id:\"HZp3tusVU\",layoutId:\"HZp3tusVU\",srcFile:\"https://framerusercontent.com/assets/v8EMvBj2CnfTCbp1WuG7uOnoE.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, rgb(255, 255, 255))\",borderRadius:50,color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"2020\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pvx55g\",\"data-framer-name\":\"File\",name:\"File\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11b4792-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Barlow Condensed\", \"Barlow Condensed Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-de1b5464-0e19-4aa9-9a51-2d067ad74cf7, rgb(246, 244, 239))\",color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",scale:1.1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"end\",color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",size:24,type:\"Default\"},id:\"d7vG2E_6S\",layoutId:\"d7vG2E_6S\",srcFile:\"https://framerusercontent.com/assets/b6Zb9lZRNb2EHWRmqBCsSpfCSk.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, rgb(255, 255, 255))\",borderRadius:50,color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"2021\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cz6jbc\",\"data-framer-name\":\"File\",name:\"File\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15i2a8u-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Barlow Condensed\", \"Barlow Condensed Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-de1b5464-0e19-4aa9-9a51-2d067ad74cf7, rgb(246, 244, 239))\",color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",scale:1.1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"end\",color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",size:24,type:\"Default\"},id:\"RwxqIqOzQ\",layoutId:\"RwxqIqOzQ\",srcFile:\"https://framerusercontent.com/assets/thCb6lst8IXBHLrkjvVljbOY3I.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, rgb(255, 255, 255))\",borderRadius:50,color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"2022\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1712co8\",\"data-framer-name\":\"File\",name:\"File\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f1h1qk-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Barlow Condensed\", \"Barlow Condensed Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-de1b5464-0e19-4aa9-9a51-2d067ad74cf7, rgb(246, 244, 239))\",color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",scale:1.1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"end\",color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",size:24,type:\"Default\"},id:\"iZrxK4nCc\",layoutId:\"iZrxK4nCc\",srcFile:\"https://framerusercontent.com/assets/Q6D1oh9SjMAiBDxFVxiFYQSrgE.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, rgb(255, 255, 255))\",borderRadius:50,color:\"var(--token-018d6609-a428-4475-b207-db2560142a6e, rgb(130, 131, 254))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"2023\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9bl0e0\",\"data-framer-name\":\"Donors\",name:\"Donors\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hvukk6\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KcStpuLvf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-pq03sy\",\"data-styles-preset\":\"BOhPml2UK\",style:{\"--framer-text-color\":\"var(--variable-reference-gKxacJIrV-xJGQ63fIp)\"},children:\"Our Donors\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-osngi5\",\"data-styles-preset\":\"YtBfwFCIM\",style:{\"--framer-text-color\":\"var(--variable-reference-gKxacJIrV-xJGQ63fIp)\"},children:\"Our Donors\"})}),className:\"framer-1ejaugs\",fonts:[\"Inter\"],style:{\"--variable-reference-gKxacJIrV-xJGQ63fIp\":gKxacJIrVxJGQ63fIp},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KcStpuLvf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ybtxvy\",\"data-styles-preset\":\"weOK2rO8w\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-104d6668-6232-4004-afa0-8dca4626863d, rgb(30, 10, 45))\"},children:\"The 318 Foundation's positive impact is made possible by the philanthropic support of our donors. Thank you for supporting our vision of creating a world where all girls have the audacity to dream without limits or boundaries.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ybtxvy\",\"data-styles-preset\":\"weOK2rO8w\",style:{\"--framer-text-color\":\"var(--token-104d6668-6232-4004-afa0-8dca4626863d, rgb(30, 10, 45))\"},children:\"The 318 Foundation's positive impact is made possible by the philanthropic support of our donors. Thank you for supporting our vision of creating a world where all girls have the audacity to dream without limits or boundaries.\"})}),className:\"framer-34433q\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-100pcyw\",\"data-framer-name\":\"Donors Stack 1\",name:\"Donors Stack 1\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://agassifoundation.org/\",nodeId:\"CNWvM22KQ\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-il7jty framer-yprbku\",\"data-framer-name\":\"AGASSI Logo\",name:\"AGASSI Logo\",style:{transformPerspective:1200},whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9vTi8plC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63,intrinsicWidth:280,loading:getLoadingLazyAtYPosition(1488.1),pixelHeight:126,pixelWidth:560,sizes:\"280px\",src:\"https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png 560w\"}},KcStpuLvf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63,intrinsicWidth:280,loading:getLoadingLazyAtYPosition(1958.1999999999998),pixelHeight:126,pixelWidth:560,sizes:\"280px\",src:\"https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png 560w\"}},nYwbYw05J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63,intrinsicWidth:280,loading:getLoadingLazyAtYPosition(1613.4999999999998),pixelHeight:126,pixelWidth:560,sizes:\"calc(max((100vw - 160px) / 3, 1px) - 40px)\",src:\"https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png 560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:63,intrinsicWidth:280,loading:getLoadingLazyAtYPosition(1581.4999999999998),pixelHeight:126,pixelWidth:560,sizes:\"280px\",src:\"https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4wqvPw6SnzrHt0ZU0jnWVIGhs.png 560w\"},className:\"framer-ah61nc\",\"data-framer-name\":\"image\",name:\"image\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://engelstadfoundation.com/esf/\",nodeId:\"dYN7oZGrU\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ovl2cy framer-yprbku\",\"data-framer-name\":\"ENGELSTAD Logo\",name:\"ENGELSTAD Logo\",style:{transformPerspective:1200},whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9vTi8plC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:149,loading:getLoadingLazyAtYPosition(1461.6),pixelHeight:232,pixelWidth:298,src:\"https://framerusercontent.com/images/C8t9KITaN775VlYLafx7sMhIZ5o.png\"}},KcStpuLvf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:149,loading:getLoadingLazyAtYPosition(2093.2),pixelHeight:232,pixelWidth:298,src:\"https://framerusercontent.com/images/C8t9KITaN775VlYLafx7sMhIZ5o.png\"}},nYwbYw05J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:149,loading:getLoadingLazyAtYPosition(1586.9999999999998),pixelHeight:232,pixelWidth:298,src:\"https://framerusercontent.com/images/C8t9KITaN775VlYLafx7sMhIZ5o.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:149,loading:getLoadingLazyAtYPosition(1554.9999999999998),pixelHeight:232,pixelWidth:298,src:\"https://framerusercontent.com/images/C8t9KITaN775VlYLafx7sMhIZ5o.png\"},className:\"framer-b5xmje\",\"data-framer-name\":\"image\",name:\"image\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://howardcondaylaw.com/\",nodeId:\"xY4zKidhV\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cab9so framer-yprbku\",\"data-framer-name\":\"CONDAY Logo\",name:\"CONDAY Logo\",style:{transformPerspective:1200},whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9vTi8plC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:210,loading:getLoadingLazyAtYPosition(1461.6),pixelHeight:232,pixelWidth:420,src:\"https://framerusercontent.com/images/vB9LQqB1JoJmwghN0qllhjMDY.png\"}},KcStpuLvf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:210,loading:getLoadingLazyAtYPosition(2281.2),pixelHeight:232,pixelWidth:420,src:\"https://framerusercontent.com/images/vB9LQqB1JoJmwghN0qllhjMDY.png\"}},nYwbYw05J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:210,loading:getLoadingLazyAtYPosition(1586.9999999999998),pixelHeight:232,pixelWidth:420,src:\"https://framerusercontent.com/images/vB9LQqB1JoJmwghN0qllhjMDY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:210,loading:getLoadingLazyAtYPosition(1554.9999999999998),pixelHeight:232,pixelWidth:420,src:\"https://framerusercontent.com/images/vB9LQqB1JoJmwghN0qllhjMDY.png\"},className:\"framer-phhend\",\"data-framer-name\":\"image\",name:\"image\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cnaps1\",\"data-framer-name\":\"Donors Stack 2\",name:\"Donors Stack 2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.humana.com/\",nodeId:\"AScbxlgEU\",openInNewTab:true,children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aaue9b framer-yprbku\",\"data-framer-name\":\"Logo\",name:\"Logo\",style:{transformPerspective:1200},whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9vTi8plC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:63,intrinsicWidth:280,loading:getLoadingLazyAtYPosition(1649.6),pixelHeight:573,pixelWidth:870,positionX:\"center\",positionY:\"center\",sizes:\"693.3333px\",src:\"https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png 870w\"}},KcStpuLvf:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:63,intrinsicWidth:280,loading:getLoadingLazyAtYPosition(2469.2),pixelHeight:573,pixelWidth:870,positionX:\"center\",positionY:\"center\",sizes:\"280px\",src:\"https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png 870w\"}},nYwbYw05J:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:63,intrinsicWidth:280,loading:getLoadingLazyAtYPosition(1774.9999999999998),pixelHeight:573,pixelWidth:870,positionX:\"center\",positionY:\"center\",sizes:\"calc(max((100vw - 112px) / 2, 1px) - 40px)\",src:\"https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png 870w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:63,intrinsicWidth:280,loading:getLoadingLazyAtYPosition(1742.9999999999998),pixelHeight:573,pixelWidth:870,positionX:\"center\",positionY:\"center\",sizes:\"515.5556px\",src:\"https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/1vxYcGWBTkAvmTSBVFtuqb7Bhuw.png 870w\"},className:\"framer-1t7xhgi\",\"data-framer-name\":\"image\",name:\"image\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://nbafoundation.nba.com/\",nodeId:\"KiN523tC6\",openInNewTab:true,children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xq0820 framer-yprbku\",\"data-framer-name\":\"Logo\",name:\"Logo\",style:{transformPerspective:1200},whileHover:animation5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9vTi8plC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:116,intrinsicWidth:149,loading:getLoadingLazyAtYPosition(1649.6),pixelHeight:591,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"200.3793px\",src:\"https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png 2400w\"}},KcStpuLvf:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:116,intrinsicWidth:149,loading:getLoadingLazyAtYPosition(2604.2),pixelHeight:591,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"200.3793px\",src:\"https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png 2400w\"}},nYwbYw05J:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:116,intrinsicWidth:149,loading:getLoadingLazyAtYPosition(1774.9999999999998),pixelHeight:591,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"calc(max((100vw - 112px) / 2, 1px) - 40px)\",src:\"https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:116,intrinsicWidth:149,loading:getLoadingLazyAtYPosition(1722.9999999999998),pixelHeight:591,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"200.3793px\",src:\"https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=512 512w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XunWj7mYS7n1VJYT3BKeaBp2rmg.png 2400w\"},className:\"framer-70a878\",\"data-framer-name\":\"image\",name:\"image\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K9vTi8plC:{y:1945.6},KcStpuLvf:{y:2900.2},nYwbYw05J:{y:2071}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:425,width:\"100vw\",y:1998.9999999999998,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tnashs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KcStpuLvf:{variant:\"Hja9POfZc\"},nYwbYw05J:{variant:\"bHd5UHvdE\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"q4RuEzB6Z\",layoutId:\"q4RuEzB6Z\",style:{width:\"100%\"},variant:\"pQnk8tNYQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i7p9lr-container\",\"data-framer-name\":\"BG Color\",name:\"BG Color\",children:/*#__PURE__*/_jsx(BGColorWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"bd4xnLJQc\"},{offset:100,ref:ref3,target:\"gvakAxvkS\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"TNZRJkb5y\",layoutId:\"TNZRJkb5y\",name:\"BG Color\",style:{height:\"100%\",width:\"100%\"},variant:\"bd4xnLJQc\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WcH8p.framer-yprbku, .framer-WcH8p .framer-yprbku { display: block; }\",\".framer-WcH8p.framer-platze { align-content: center; align-items: center; 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-WcH8p .framer-6i5q7x-container { flex: none; height: 160px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-WcH8p .framer-jz3as0 { align-content: center; align-items: center; background-color: var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 209px 0px 80px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-WcH8p .framer-n5vlgo { aspect-ratio: 1.8119180633147114 / 1; background: linear-gradient(180deg, #ffffff 62.656230241701294%, rgb(223, 216, 254) 84.62485923423424%); bottom: -95px; flex: none; height: var(--framer-aspect-ratio-supported, 811px); left: -134px; overflow: visible; position: absolute; right: -134px; z-index: 0; }\",\".framer-WcH8p .framer-d153zv { aspect-ratio: 1.8119180633147114 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 811px); left: 0px; opacity: 0.46; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-WcH8p .framer-1m33z94 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 48px 0px 48px; position: relative; width: 1px; }\",\".framer-WcH8p .framer-12n7viq, .framer-WcH8p .framer-yh59x6, .framer-WcH8p .framer-34433q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WcH8p .framer-190egav { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WcH8p .framer-12slnzh { align-content: center; align-items: center; background-color: var(--token-61ccb1f2-f8da-4428-9e2b-61c2dd267fd4, #dfd8fe); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px 75px 80px 75px; position: relative; scroll-margin-top: 100px; width: 100%; z-index: 2; }\",\".framer-WcH8p .framer-1nv37et { align-content: flex-start; align-items: flex-start; background-color: var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-WcH8p .framer-19a77d7, .framer-WcH8p .framer-hvukk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WcH8p .framer-1fogu7a, .framer-WcH8p .framer-1ejaugs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --variable-reference-gKxacJIrV-xJGQ63fIp: var(--km44j4); flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WcH8p .framer-1mfkc4h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WcH8p .framer-43yom0, .framer-WcH8p .framer-1pvx55g, .framer-WcH8p .framer-cz6jbc, .framer-WcH8p .framer-1712co8 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 60px 8px 60px; pointer-events: auto; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-WcH8p .framer-ot73m8-container, .framer-WcH8p .framer-11b4792-container, .framer-WcH8p .framer-15i2a8u-container, .framer-WcH8p .framer-f1h1qk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-WcH8p .framer-9bl0e0 { align-content: center; align-items: center; background-color: var(--token-de1b5464-0e19-4aa9-9a51-2d067ad74cf7, #f6f4ef); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 80px 48px 120px 48px; position: relative; width: 100%; z-index: 2; }\",\".framer-WcH8p .framer-100pcyw, .framer-WcH8p .framer-1cnaps1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1104px; }\",\".framer-WcH8p .framer-il7jty, .framer-WcH8p .framer-1cab9so, .framer-WcH8p .framer-1aaue9b { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 20px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WcH8p .framer-ah61nc { aspect-ratio: 4.444444444444445 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 280px; }\",\".framer-WcH8p .framer-1ovl2cy { align-content: center; align-items: center; background-color: var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WcH8p .framer-b5xmje { aspect-ratio: 1.2844827586206897 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 116px); overflow: visible; position: relative; width: 149px; }\",\".framer-WcH8p .framer-phhend { aspect-ratio: 1.8103448275862069 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 116px); overflow: visible; position: relative; width: 210px; }\",\".framer-WcH8p .framer-1t7xhgi { aspect-ratio: 4.444444444444445 / 1; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 516px); }\",\".framer-WcH8p .framer-xq0820 { align-content: center; align-items: center; background-color: var(--token-e8c7cc95-bdfb-4ac6-a2ee-3279b4828d67, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 156px; justify-content: center; overflow: hidden; padding: 20px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WcH8p .framer-70a878 { aspect-ratio: 1.2844827586206897 / 1; flex: none; height: 156px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-WcH8p .framer-1tnashs-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-WcH8p .framer-i7p9lr-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WcH8p.framer-platze, .framer-WcH8p .framer-1m33z94, .framer-WcH8p .framer-12slnzh, .framer-WcH8p .framer-1nv37et, .framer-WcH8p .framer-19a77d7, .framer-WcH8p .framer-1mfkc4h, .framer-WcH8p .framer-43yom0, .framer-WcH8p .framer-1pvx55g, .framer-WcH8p .framer-cz6jbc, .framer-WcH8p .framer-1712co8, .framer-WcH8p .framer-9bl0e0, .framer-WcH8p .framer-hvukk6, .framer-WcH8p .framer-100pcyw, .framer-WcH8p .framer-il7jty, .framer-WcH8p .framer-1ovl2cy, .framer-WcH8p .framer-1cab9so, .framer-WcH8p .framer-1cnaps1, .framer-WcH8p .framer-1aaue9b, .framer-WcH8p .framer-xq0820 { gap: 0px; } .framer-WcH8p.framer-platze > *, .framer-WcH8p .framer-il7jty > *, .framer-WcH8p .framer-1ovl2cy > *, .framer-WcH8p .framer-1cab9so > *, .framer-WcH8p .framer-1aaue9b > *, .framer-WcH8p .framer-xq0820 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WcH8p.framer-platze > :first-child, .framer-WcH8p .framer-1m33z94 > :first-child, .framer-WcH8p .framer-12slnzh > :first-child, .framer-WcH8p .framer-1nv37et > :first-child, .framer-WcH8p .framer-19a77d7 > :first-child, .framer-WcH8p .framer-43yom0 > :first-child, .framer-WcH8p .framer-1pvx55g > :first-child, .framer-WcH8p .framer-cz6jbc > :first-child, .framer-WcH8p .framer-1712co8 > :first-child, .framer-WcH8p .framer-9bl0e0 > :first-child, .framer-WcH8p .framer-hvukk6 > :first-child, .framer-WcH8p .framer-il7jty > :first-child, .framer-WcH8p .framer-1ovl2cy > :first-child, .framer-WcH8p .framer-1cab9so > :first-child, .framer-WcH8p .framer-1aaue9b > :first-child, .framer-WcH8p .framer-xq0820 > :first-child { margin-top: 0px; } .framer-WcH8p.framer-platze > :last-child, .framer-WcH8p .framer-1m33z94 > :last-child, .framer-WcH8p .framer-12slnzh > :last-child, .framer-WcH8p .framer-1nv37et > :last-child, .framer-WcH8p .framer-19a77d7 > :last-child, .framer-WcH8p .framer-43yom0 > :last-child, .framer-WcH8p .framer-1pvx55g > :last-child, .framer-WcH8p .framer-cz6jbc > :last-child, .framer-WcH8p .framer-1712co8 > :last-child, .framer-WcH8p .framer-9bl0e0 > :last-child, .framer-WcH8p .framer-hvukk6 > :last-child, .framer-WcH8p .framer-il7jty > :last-child, .framer-WcH8p .framer-1ovl2cy > :last-child, .framer-WcH8p .framer-1cab9so > :last-child, .framer-WcH8p .framer-1aaue9b > :last-child, .framer-WcH8p .framer-xq0820 > :last-child { margin-bottom: 0px; } .framer-WcH8p .framer-1m33z94 > *, .framer-WcH8p .framer-19a77d7 > *, .framer-WcH8p .framer-hvukk6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WcH8p .framer-12slnzh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WcH8p .framer-1nv37et > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-WcH8p .framer-1mfkc4h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WcH8p .framer-1mfkc4h > :first-child, .framer-WcH8p .framer-100pcyw > :first-child, .framer-WcH8p .framer-1cnaps1 > :first-child { margin-left: 0px; } .framer-WcH8p .framer-1mfkc4h > :last-child, .framer-WcH8p .framer-100pcyw > :last-child, .framer-WcH8p .framer-1cnaps1 > :last-child { margin-right: 0px; } .framer-WcH8p .framer-43yom0 > *, .framer-WcH8p .framer-1pvx55g > *, .framer-WcH8p .framer-cz6jbc > *, .framer-WcH8p .framer-1712co8 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-WcH8p .framer-9bl0e0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-WcH8p .framer-100pcyw > *, .framer-WcH8p .framer-1cnaps1 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-WcH8p.framer-platze { overflow: visible; width: 810px; } .framer-WcH8p .framer-jz3as0 { padding: 209px 0px 120px 0px; } .framer-WcH8p .framer-n5vlgo { height: var(--framer-aspect-ratio-supported, 596px); order: 0; } .framer-WcH8p .framer-d153zv { height: var(--framer-aspect-ratio-supported, 596px); } .framer-WcH8p .framer-1m33z94 { order: 1; padding: 0px 32px 0px 32px; } .framer-WcH8p .framer-12slnzh { padding: 80px 32px 80px 32px; } .framer-WcH8p .framer-19a77d7, .framer-WcH8p .framer-hvukk6 { gap: 12px; } .framer-WcH8p .framer-9bl0e0 { padding: 80px 32px 120px 32px; } .framer-WcH8p .framer-100pcyw, .framer-WcH8p .framer-1cnaps1 { width: 100%; } .framer-WcH8p .framer-ah61nc { height: var(--framer-aspect-ratio-supported, 40px); width: 100%; } .framer-WcH8p .framer-b5xmje { height: var(--framer-aspect-ratio-supported, 138px); width: 100%; } .framer-WcH8p .framer-phhend { height: var(--framer-aspect-ratio-supported, 98px); width: 100%; } .framer-WcH8p .framer-1t7xhgi { flex: none; height: var(--framer-aspect-ratio-supported, 70px); width: 100%; } .framer-WcH8p .framer-xq0820 { height: min-content; } .framer-WcH8p .framer-70a878 { height: var(--framer-aspect-ratio-supported, 241px); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WcH8p .framer-19a77d7, .framer-WcH8p .framer-hvukk6 { gap: 0px; } .framer-WcH8p .framer-19a77d7 > *, .framer-WcH8p .framer-hvukk6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-WcH8p .framer-19a77d7 > :first-child, .framer-WcH8p .framer-hvukk6 > :first-child { margin-top: 0px; } .framer-WcH8p .framer-19a77d7 > :last-child, .framer-WcH8p .framer-hvukk6 > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-WcH8p.framer-platze { width: 390px; } .framer-WcH8p .framer-6i5q7x-container { height: 115px; } .framer-WcH8p .framer-jz3as0 { flex-direction: column; gap: 0px; height: 556px; justify-content: center; padding: 80px 0px 0px 0px; } .framer-WcH8p .framer-n5vlgo { aspect-ratio: unset; bottom: -40px; height: 436px; order: 0; right: -99px; } .framer-WcH8p .framer-d153zv { bottom: unset; height: var(--framer-aspect-ratio-supported, 480px); left: -122px; right: -123px; top: -29px; } .framer-WcH8p .framer-1m33z94 { flex: none; gap: 28px; order: 1; padding: 0px 16px 0px 16px; width: 100%; } .framer-WcH8p .framer-12n7viq { order: 0; } .framer-WcH8p .framer-190egav { order: 1; } .framer-WcH8p .framer-12slnzh { padding: 0px 20px 91px 20px; } .framer-WcH8p .framer-1nv37et { gap: 32px; padding: 32px 25px 32px 25px; } .framer-WcH8p .framer-19a77d7 { gap: 12px; order: 0; } .framer-WcH8p .framer-1mfkc4h { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; order: 1; } .framer-WcH8p .framer-43yom0, .framer-WcH8p .framer-1pvx55g, .framer-WcH8p .framer-cz6jbc, .framer-WcH8p .framer-1712co8 { width: 100%; } .framer-WcH8p .framer-9bl0e0 { padding: 80px 20px 120px 20px; } .framer-WcH8p .framer-hvukk6 { gap: 12px; } .framer-WcH8p .framer-100pcyw, .framer-WcH8p .framer-1cnaps1 { flex-direction: column; gap: 32px; width: 100%; } .framer-WcH8p .framer-il7jty, .framer-WcH8p .framer-1aaue9b { align-self: unset; flex: none; height: 103px; width: 100%; } .framer-WcH8p .framer-1ovl2cy { flex: none; width: 100%; } .framer-WcH8p .framer-1cab9so { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-WcH8p .framer-1t7xhgi { width: var(--framer-aspect-ratio-supported, 280px); } .framer-WcH8p .framer-xq0820 { flex: none; height: min-content; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WcH8p .framer-jz3as0, .framer-WcH8p .framer-1m33z94, .framer-WcH8p .framer-1nv37et, .framer-WcH8p .framer-19a77d7, .framer-WcH8p .framer-1mfkc4h, .framer-WcH8p .framer-hvukk6, .framer-WcH8p .framer-100pcyw, .framer-WcH8p .framer-1cnaps1 { gap: 0px; } .framer-WcH8p .framer-jz3as0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WcH8p .framer-jz3as0 > :first-child, .framer-WcH8p .framer-1m33z94 > :first-child, .framer-WcH8p .framer-1nv37et > :first-child, .framer-WcH8p .framer-19a77d7 > :first-child, .framer-WcH8p .framer-1mfkc4h > :first-child, .framer-WcH8p .framer-hvukk6 > :first-child, .framer-WcH8p .framer-100pcyw > :first-child, .framer-WcH8p .framer-1cnaps1 > :first-child { margin-top: 0px; } .framer-WcH8p .framer-jz3as0 > :last-child, .framer-WcH8p .framer-1m33z94 > :last-child, .framer-WcH8p .framer-1nv37et > :last-child, .framer-WcH8p .framer-19a77d7 > :last-child, .framer-WcH8p .framer-1mfkc4h > :last-child, .framer-WcH8p .framer-hvukk6 > :last-child, .framer-WcH8p .framer-100pcyw > :last-child, .framer-WcH8p .framer-1cnaps1 > :last-child { margin-bottom: 0px; } .framer-WcH8p .framer-1m33z94 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-WcH8p .framer-1nv37et > *, .framer-WcH8p .framer-100pcyw > *, .framer-WcH8p .framer-1cnaps1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-WcH8p .framer-19a77d7 > *, .framer-WcH8p .framer-hvukk6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-WcH8p .framer-1mfkc4h > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\",\"@media (min-width: 1600px) { .framer-WcH8p.framer-platze { width: 1600px; } .framer-WcH8p .framer-jz3as0 { height: 528px; } .framer-WcH8p .framer-n5vlgo { height: var(--framer-aspect-ratio-supported, 1032px); } .framer-WcH8p .framer-d153zv { aspect-ratio: unset; bottom: 31px; height: 791px; right: -1px; } .framer-WcH8p .framer-1m33z94 { justify-content: center; } .framer-WcH8p .framer-12slnzh { padding: 40px 180px 40px 180px; } .framer-WcH8p .framer-1fogu7a, .framer-WcH8p .framer-1ejaugs { order: 0; } .framer-WcH8p .framer-yh59x6, .framer-WcH8p .framer-34433q { order: 1; } .framer-WcH8p .framer-9bl0e0 { padding: 80px 180px 120px 180px; } .framer-WcH8p .framer-100pcyw, .framer-WcH8p .framer-1cnaps1 { width: 100%; } .framer-WcH8p .framer-1cab9so { align-self: unset; height: min-content; } .framer-WcH8p .framer-1t7xhgi { width: var(--framer-aspect-ratio-supported, 693px); } .framer-WcH8p .framer-xq0820 { height: min-content; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2097\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nYwbYw05J\":{\"layout\":[\"fixed\",\"auto\"]},\"KcStpuLvf\":{\"layout\":[\"fixed\",\"auto\"]},\"K9vTi8plC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerDPh2pvuwz=withCSS(Component,css,\"framer-WcH8p\");export default FramerDPh2pvuwz;FramerDPh2pvuwz.displayName=\"Our Financials\";FramerDPh2pvuwz.defaultProps={height:2097,width:1200};addFonts(FramerDPh2pvuwz,[{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:\"Barlow Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xPZ23n3pKg.woff2\",weight:\"400\"}]},...TopbarFonts,...DownloadFonts,...FooterFonts,...BGColorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDPh2pvuwz\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nYwbYw05J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KcStpuLvf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K9vTi8plC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"2097\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "TopbarFonts", "getFonts", "hjWxNcAKE_default", "DownloadFonts", "Download", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "MotionAWithFX", "FooterFonts", "yTIhkKggf_default", "BGColorFonts", "dvyiAGTPx_default", "BGColorWithVariantAppearEffect", "withVariantAppearEffect", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "transition3", "animation6", "transition4", "animation7", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gKxacJIrVxJGQ63fIp", "restProps", "ue", "metadata1", "robotsTag", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "hjWxNcAKE_default", "getLoadingLazyAtYPosition", "RichText2", "x", "MotionDivWithFX", "Download", "RichTextWithFX", "Link", "MotionAWithFX", "Image2", "yTIhkKggf_default", "BGColorWithVariantAppearEffect", "css", "FramerDPh2pvuwz", "withCSS", "DPh2pvuwz_default", "addFonts", "TopbarFonts", "DownloadFonts", "FooterFonts", "BGColorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
