{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/gvWLXzJNGFSjLmOz1uYn/kKkKfTicvHDH4tbejvbh/SlTCc2sEt.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,optimizeAppear,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import LightNavigationBar from\"#framer/local/canvasComponent/di6sZ9S2S/di6sZ9S2S.js\";import WorkCard from\"#framer/local/canvasComponent/jowu50ke_/jowu50ke_.js\";import LightOverlayMenu from\"#framer/local/canvasComponent/prYmlzexr/prYmlzexr.js\";import LightFooter from\"#framer/local/canvasComponent/XK_Cy5AdA/XK_Cy5AdA.js\";import metadataProvider from\"#framer/local/webPageMetadata/SlTCc2sEt/SlTCc2sEt.js\";const LightNavigationBarFonts=getFonts(LightNavigationBar);const LightOverlayMenuFonts=getFonts(LightOverlayMenu);const EmbedFonts=getFonts(Embed);const TickerFonts=getFonts(Ticker);const WorkCardFonts=getFonts(WorkCard);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const LightFooterFonts=getFonts(LightFooter);const cycleOrder=[\"CYlKkCsH7\",\"FbA8AHZN_\",\"ugPOt4Mgx\"];const breakpoints={CYlKkCsH7:\"(min-width: 1200px)\",FbA8AHZN_:\"(min-width: 810px) and (max-width: 1199px)\",ugPOt4Mgx:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-30OnC\";const variantClassNames={CYlKkCsH7:\"framer-v-dls8ay\",FbA8AHZN_:\"framer-v-1gc6p1x\",ugPOt4Mgx:\"framer-v-1yelujj\"};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:160};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:160};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:70};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:70};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"CYlKkCsH7\",Phone:\"ugPOt4Mgx\",Tablet:\"FbA8AHZN_\"};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:\"CYlKkCsH7\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);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);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-30OnC`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-30OnC`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const XcMLW4DAJ42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const Wo69oBM8Ezn6atv=overlay=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ugPOt4Mgx\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"FbA8AHZN_\",\"ugPOt4Mgx\"].includes(baseVariant))return false;return true;};const id=useRouteElementId(\"Znpd_WWWM\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"FbA8AHZN_\")return true;return false;};const id1=useRouteElementId(\"uDxQ8j_Bf\");const ref3=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"CYlKkCsH7\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-dls8ay\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/89dVZFtPCJQcxmWfXE7r243v4.jpg\"},className:\"framer-p38odh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sy2xh1\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ftvc7k hidden-dls8ay hidden-1gc6p1x\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(100vw, 1200px) - 200px)\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1a9nk74-container hidden-1gc6p1x hidden-1yelujj\",id:id,ref:ref2,children:[/*#__PURE__*/_jsx(LightNavigationBar,{height:\"100%\",id:\"Znpd_WWWM\",layoutId:\"Znpd_WWWM\",style:{width:\"100%\"},variant:overlay.visible?\"zPO_Rs6g_\":\"zPO_Rs6g_\",width:\"100%\",XcMLW4DAJ:XcMLW4DAJ42m929(overlay)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-etd4fv\",\"data-framer-portal-id\":id,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"hYOovLKHb\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p27lri-container\",\"data-framer-portal-id\":id,children:/*#__PURE__*/_jsx(LightOverlayMenu,{height:\"100%\",id:\"F7U5bKf5R\",layoutId:\"F7U5bKf5R\",style:{height:\"100%\",width:\"100%\"},variant:\"ha2VWu8x6\",width:\"100%\",Wo69oBM8E:Wo69oBM8Ezn6atv(overlay)})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ugPOt4Mgx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(82, 82, 82)\",\"--framer-text-transform\":\"uppercase\"},children:\"GRADUATION PHOTOS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(82, 82, 82)\",\"--framer-text-transform\":\"uppercase\"},children:\"GRADUATION PHOTOS\"})}),className:\"framer-15x0aud\",fonts:[\"GF;Instrument Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-60njlc\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{\"data-framer-appear-id\":\"1qq8pdp\",animate:optimizeAppear(\"animate\",\"1qq8pdp\",animation1,\"1gc6p1x\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"70px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"GRADUATIONS\"})}),exit:animation3,initial:optimizeAppear(\"initial\",\"1qq8pdp\",animation4,\"1gc6p1x\")},ugPOt4Mgx:{\"data-framer-appear-id\":\"1h48lkt\",animate:optimizeAppear(\"animate\",\"1h48lkt\",animation1,\"1yelujj\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"GRADUATIONS\"})}),initial:optimizeAppear(\"initial\",\"1h48lkt\",animation2,\"1yelujj\")}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"rh3mmh\",animation1,\"dls8ay\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-5px\",\"--framer-line-height\":\"110px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"GRADUATIONS\"})}),className:\"framer-rh3mmh\",\"data-framer-appear-id\":\"rh3mmh\",\"data-framer-name\":\"Text 1\",exit:animation,fonts:[\"GF;Instrument Sans-700\"],initial:optimizeAppear(\"initial\",\"rh3mmh\",animation2,\"dls8ay\"),name:\"Text 1\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19jvbug-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe style=\"border-radius:12px\" src=\"https://open.spotify.com/embed/playlist/4C3b5yG1e52Y9dMqn89Dkx?utm_source=generator\" width=\"100%\" height=\"352\" frameBorder=\"0\" allowfullscreen=\"\" allow=\"autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture\" loading=\"lazy\"></iframe>',id:\"WwdnzFo2q\",layoutId:\"WwdnzFo2q\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wwrb29-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ugPOt4Mgx:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"e33KLGL6c\",layoutId:\"e33KLGL6c\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hpzwk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7952,intrinsicWidth:5304,pixelHeight:723,pixelWidth:964,sizes:\"600px\",src:\"https://framerusercontent.com/images/ZCA8cpBUwPAdI3Ah4y5wgpDq1M.jpg\",srcSet:\"https://framerusercontent.com/images/ZCA8cpBUwPAdI3Ah4y5wgpDq1M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZCA8cpBUwPAdI3Ah4y5wgpDq1M.jpg 964w\"},className:\"framer-40tbdn\",\"data-framer-name\":\"Frame 65\",name:\"Frame 65\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k4xkjs\",\"data-framer-name\":\"txt\",name:\"txt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4aoqqc\",\"data-framer-name\":\"Headlines\",name:\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Several Clients\"})}),className:\"framer-a3snkl\",\"data-framer-name\":\"Heading3\",fonts:[\"GF;Instrument Sans-regular\"],name:\"Heading3\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-162k7j4\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"With different specifications\"})}),className:\"framer-1iu5kat\",\"data-framer-name\":\"Body1\",fonts:[\"GF;Instrument Sans-regular\"],name:\"Body1\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1324,intrinsicWidth:1774,pixelHeight:4e3,pixelWidth:6e3,sizes:\"302px\",src:\"https://framerusercontent.com/images/dd6PrEAwzDv8JXIqoyirEbvL6ik.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dd6PrEAwzDv8JXIqoyirEbvL6ik.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dd6PrEAwzDv8JXIqoyirEbvL6ik.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dd6PrEAwzDv8JXIqoyirEbvL6ik.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dd6PrEAwzDv8JXIqoyirEbvL6ik.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dd6PrEAwzDv8JXIqoyirEbvL6ik.jpeg 6000w\"},className:\"framer-3y203s\",\"data-framer-name\":\"Frame 64\",name:\"Frame 64\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:2996,pixelHeight:1365,pixelWidth:2048,sizes:\"600px\",src:\"https://framerusercontent.com/images/dQC4T26cJhMpgW3paExzoAtZz4.jpg\",srcSet:\"https://framerusercontent.com/images/dQC4T26cJhMpgW3paExzoAtZz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dQC4T26cJhMpgW3paExzoAtZz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dQC4T26cJhMpgW3paExzoAtZz4.jpg 2048w\"},className:\"framer-1jdjm2i\",\"data-framer-name\":\"Frame 65\",name:\"Frame 65\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1904,intrinsicWidth:2850,pixelHeight:667,pixelWidth:1e3,sizes:\"392px\",src:\"https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg\",srcSet:\"https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg 1000w\"},className:\"framer-1xhcfcn\",\"data-framer-name\":\"Frame 63\",name:\"Frame 63\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i7wx0q\",\"data-framer-name\":\"txt\",name:\"txt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-u07hde\",\"data-framer-name\":\"Headlines\",name:\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Open to all graduation themes\"})}),className:\"framer-1sit3c8\",\"data-framer-name\":\"Heading3\",fonts:[\"GF;Instrument Sans-regular\"],name:\"Heading3\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qqvgrc\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9f4f7756-77c2-4608-a166-124db0297b9f, rgb(254, 255, 254))\"},children:\"Parties / Celebrations / Ceremonies / Private Shoots\"})}),className:\"framer-1uetg4t\",\"data-framer-name\":\"Body1\",fonts:[\"GF;Instrument Sans-regular\"],name:\"Body1\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1166,intrinsicWidth:1766,pixelHeight:667,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"517px\",src:\"https://framerusercontent.com/images/UrzeUxA6MtiFT0GWJU5Vd5IbtP8.jpg\",srcSet:\"https://framerusercontent.com/images/UrzeUxA6MtiFT0GWJU5Vd5IbtP8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UrzeUxA6MtiFT0GWJU5Vd5IbtP8.jpg 1000w\"},className:\"framer-vt1r17\",\"data-framer-name\":\"Frame 65\",name:\"Frame 65\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7952,intrinsicWidth:5304,pixelHeight:1500,pixelWidth:1e3,sizes:\"600px\",src:\"https://framerusercontent.com/images/rty0fW9zNQfT87Ok75zxqhQupw.jpg\",srcSet:\"https://framerusercontent.com/images/rty0fW9zNQfT87Ok75zxqhQupw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/rty0fW9zNQfT87Ok75zxqhQupw.jpg 1000w\"},className:\"framer-qy8wce\",\"data-framer-name\":\"Frame 65\",name:\"Frame 65\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1324,intrinsicWidth:1774,pixelHeight:1500,pixelWidth:1e3,sizes:\"302px\",src:\"https://framerusercontent.com/images/oH9xo5QqCcU2CLDMBrFTRCQvdk.jpg\",srcSet:\"https://framerusercontent.com/images/oH9xo5QqCcU2CLDMBrFTRCQvdk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/oH9xo5QqCcU2CLDMBrFTRCQvdk.jpg 1000w\"},className:\"framer-q7p78r\",\"data-framer-name\":\"Frame 64\",name:\"Frame 64\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:2996,pixelHeight:1365,pixelWidth:2048,sizes:\"697px\",src:\"https://framerusercontent.com/images/9VZC9LCStRyFfxR8qnfSDReMTU.jpg\",srcSet:\"https://framerusercontent.com/images/9VZC9LCStRyFfxR8qnfSDReMTU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9VZC9LCStRyFfxR8qnfSDReMTU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9VZC9LCStRyFfxR8qnfSDReMTU.jpg 2048w\"},className:\"framer-27so5x\",\"data-framer-name\":\"Frame 65\",name:\"Frame 65\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:2996,pixelHeight:667,pixelWidth:1e3,sizes:\"697px\",src:\"https://framerusercontent.com/images/YF6tVV4OgT4HQSY7L77roFRfGI.jpg\",srcSet:\"https://framerusercontent.com/images/YF6tVV4OgT4HQSY7L77roFRfGI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YF6tVV4OgT4HQSY7L77roFRfGI.jpg 1000w\"},className:\"framer-v0n5hd\",\"data-framer-name\":\"Frame 65\",name:\"Frame 65\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1324,intrinsicWidth:1774,pixelHeight:667,pixelWidth:1e3,sizes:\"462px\",src:\"https://framerusercontent.com/images/wAj99FIiW4ATrKmhJutkklDiD3M.jpg\",srcSet:\"https://framerusercontent.com/images/wAj99FIiW4ATrKmhJutkklDiD3M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wAj99FIiW4ATrKmhJutkklDiD3M.jpg 1000w\"},className:\"framer-tn4jn0\",\"data-framer-name\":\"Frame 64\",name:\"Frame 64\"})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"746px\",src:\"https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg\",srcSet:\"https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg 1000w\"}},ugPOt4Mgx:{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"340px\",src:\"https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg\",srcSet:\"https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"983px\",src:\"https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg\",srcSet:\"https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iUrLctJJh7kZhaQQILleCsJ6zYk.jpg 1000w\"},className:\"framer-yw69q4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{background:{alt:\"\",fit:\"fill\",pixelHeight:6e3,pixelWidth:4e3,sizes:\"746px\",src:\"https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg\",srcSet:\"https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg 4000w\"}},ugPOt4Mgx:{background:{alt:\"\",fit:\"fill\",pixelHeight:6e3,pixelWidth:4e3,sizes:\"340px\",src:\"https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg\",srcSet:\"https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:6e3,pixelWidth:4e3,sizes:\"785px\",src:\"https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg\",srcSet:\"https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/RJUyJdrWMAj2cdF0i1quksUsWj0.jpeg 4000w\"},className:\"framer-603gya\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"746px\",src:\"https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg\",srcSet:\"https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg 1000w\"}},ugPOt4Mgx:{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"340px\",src:\"https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg\",srcSet:\"https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"1147px\",src:\"https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg\",srcSet:\"https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DCw2piZYfcTIRiiDksjr7QvhI4.jpg 1000w\"},className:\"framer-oa2rtq\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{background:{alt:\"\",fit:\"fill\",pixelHeight:1365,pixelWidth:2048,sizes:\"746px\",src:\"https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg\",srcSet:\"https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg 2048w\"}},ugPOt4Mgx:{background:{alt:\"\",fit:\"fill\",pixelHeight:1365,pixelWidth:2048,sizes:\"340px\",src:\"https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg\",srcSet:\"https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1365,pixelWidth:2048,sizes:\"1147px\",src:\"https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg\",srcSet:\"https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ie3YzYllycOm5TFCCG2HckuWnp0.jpg 2048w\"},className:\"framer-pitway\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"746px\",src:\"https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg\",srcSet:\"https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg 1000w\"}},ugPOt4Mgx:{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"340px\",src:\"https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg\",srcSet:\"https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:667,pixelWidth:1e3,sizes:\"1147px\",src:\"https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg\",srcSet:\"https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1jWEvZBhpm3VHU4hxJmdfK0exY.jpg 1000w\"},className:\"framer-s1vb6a\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-370nh5 hidden-dls8ay hidden-1yelujj\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3t4p5s\",\"data-framer-name\":\"4\",name:\"4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z6h4wk\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"32px\",\"--framer-text-transform\":\"uppercase\"},children:\"SEE MORE \u2026\"})}),className:\"framer-qluwpr\",fonts:[\"GF;Instrument Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fywv9q\",\"data-framer-name\":\"7 & 8\",name:\"7 & 8\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fMYd3gCog\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-3bo3wq framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"576px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lucemt-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"AOD Series 1\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg\",srcSet:\"https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg 2500w\"},\"\"),height:\"100%\",id:\"B5eWq6L_t\",klCb2H3dQ:\"2023\",layoutId:\"B5eWq6L_t\",oqjxocZJb:\"Photography (AFA)\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rri8a2\",\"data-framer-name\":\"9 & 10\",name:\"9 & 10\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u4yetGdDh\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-11yivzk framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"586px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fkjs2s-container\",style:{transformPerspective:500},children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"AOD Series 4\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg\",srcSet:\"https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg 5658w\"},\"\"),height:\"100%\",id:\"ES6HhQGWo\",klCb2H3dQ:\"2023\",layoutId:\"ES6HhQGWo\",oqjxocZJb:\"Photography (AFA)\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kx8cWewuZ\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-17i873r framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"584px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bd84sx-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"AOD Series 3\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg\",srcSet:\"https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg 2500w\"},\"\"),height:\"100%\",id:\"gTwGxo9ek\",klCb2H3dQ:\"2023\",layoutId:\"gTwGxo9ek\",oqjxocZJb:\"Photography (AFA)\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-67kmbw\",\"data-framer-name\":\"11 & 12\",name:\"11 & 12\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SlTCc2sEt\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1iiec75 framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"576px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sxvyc6-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"Graduation\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/dQC4T26cJhMpgW3paExzoAtZz4.jpg\",srcSet:\"https://framerusercontent.com/images/dQC4T26cJhMpgW3paExzoAtZz4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dQC4T26cJhMpgW3paExzoAtZz4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dQC4T26cJhMpgW3paExzoAtZz4.jpg 2048w\"},\"\"),height:\"100%\",id:\"O10bRH26U\",klCb2H3dQ:\"2023\",layoutId:\"O10bRH26U\",oqjxocZJb:\"Photography \",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AHQbZkCgl\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-17tl4tu framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"576px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kqpbjj-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"Tanzania in HK\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg\",srcSet:\"https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg 2500w\"},\"\"),height:\"100%\",id:\"cS3snTCpX\",klCb2H3dQ:\"2022\",layoutId:\"cS3snTCpX\",oqjxocZJb:\"Photography\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OAcg_cYrR\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1i3oko3 framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"579px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-7lji3g-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"The Shoot\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg\",srcSet:\"https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg 2500w\"},\"\"),height:\"100%\",id:\"ay79SrwQa\",klCb2H3dQ:\"2023\",layoutId:\"ay79SrwQa\",oqjxocZJb:\"Photography\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B0mLxNRKk\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1c4e1qo framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"576px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lqs3cp-container\",children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"Africans Of The Diaspora Series 2\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg\",srcSet:\"https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg 2500w\"},\"\"),height:\"100%\",id:\"g7eUwjwOv\",klCb2H3dQ:\"2023\",layoutId:\"g7eUwjwOv\",oqjxocZJb:\"Photography (AFA)\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gzbtZvbNt\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1xcaoz3 hidden-dls8ay hidden-1gc6p1x framer-1y9j1ir\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"SEE MORE \u2026\"})}),className:\"framer-fw13d\",fonts:[\"GF;Instrument Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pm9v4k hidden-dls8ay hidden-1yelujj\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{width:\"798px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-dq9b7e-container\",id:id1,ref:ref3,children:[/*#__PURE__*/_jsx(LightNavigationBar,{height:\"100%\",id:\"uDxQ8j_Bf\",layoutId:\"uDxQ8j_Bf\",style:{width:\"100%\"},variant:overlay1.visible?\"zPO_Rs6g_\":\"zPO_Rs6g_\",width:\"100%\",XcMLW4DAJ:XcMLW4DAJ42m929(overlay1)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-q1lts3\",\"data-framer-portal-id\":id1,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"lKda89sov\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yrmls-container\",\"data-framer-portal-id\":id1,children:/*#__PURE__*/_jsx(LightOverlayMenu,{height:\"100%\",id:\"czDSY65nB\",layoutId:\"czDSY65nB\",style:{height:\"100%\",width:\"100%\"},variant:\"m_bYF799C\",width:\"100%\",Wo69oBM8E:Wo69oBM8Ezn6atv(overlay1)})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-1sw3b48 hidden-1gc6p1x hidden-1yelujj\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ljl5r\",\"data-framer-name\":\"4\",name:\"4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1hr3c\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"133px\",\"--framer-text-transform\":\"uppercase\"},children:\"SEE MORE \u2026\"})}),className:\"framer-i9mqxe\",fonts:[\"GF;Instrument Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mg6h59\",\"data-framer-name\":\"7 & 8\",name:\"7 & 8\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fMYd3gCog\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-gftgsm framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(100vw - 80px, 1px) - 105px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i8umit-container\",children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"Africans Of The Diaspora Series 1\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg\",srcSet:\"https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LfNfjbQLTMl9ta44CRljkvoV4oo.jpg 2500w\"},\"\"),height:\"100%\",id:\"zTDjyG4eI\",klCb2H3dQ:\"2023\",layoutId:\"zTDjyG4eI\",oqjxocZJb:\"Photography (AFA)\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"B0mLxNRKk\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-591p64 framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(100vw - 80px, 1px) - 105px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gjgo3d-container\",children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"Africans Of The Diaspora Series 2\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg\",srcSet:\"https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/y9qOQVG4qJCk3qK5bb5QiGRS6Q.jpeg 2500w\"},\"\"),height:\"100%\",id:\"UIFykZiZm\",klCb2H3dQ:\"2023\",layoutId:\"UIFykZiZm\",oqjxocZJb:\"Photography (AFA)\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u16vyw\",\"data-framer-name\":\"9 & 10\",name:\"9 & 10\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kx8cWewuZ\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1t8iqt5 framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(100vw - 80px, 1px) - 109px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-chybqe-container\",children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"Africans Of The Diaspora Series 3\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg\",srcSet:\"https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZtNbdrLsVFDnXWaPddW0y6DufY.jpg 2500w\"},\"\"),height:\"100%\",id:\"mWHQemmFe\",klCb2H3dQ:\"2023\",layoutId:\"mWHQemmFe\",oqjxocZJb:\"Photography (AFA)\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u4yetGdDh\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-18b4d88 framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(100vw - 80px, 1px) - 109px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h3pd6-container\",children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"Africans Of The Diaspora Series 4\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg\",srcSet:\"https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/RrlZyOmEvOMXmQ1UMKRb92BBXKo.jpg 5658w\"},\"\"),height:\"100%\",id:\"fTGC4OlJd\",klCb2H3dQ:\"2023\",layoutId:\"fTGC4OlJd\",oqjxocZJb:\"Photography (AFA)\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m44yco\",\"data-framer-name\":\"11 & 12\",name:\"11 & 12\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OAcg_cYrR\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-z8cf0x framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(max(100vw - 80px, 1px) - 50px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nfuhaz-container\",children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"THE SHOOT - IRELAND\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg\",srcSet:\"https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2bd8aBM0Nhxu9Ci2Js2fQPq4ixI.jpg 2500w\"},\"\"),height:\"100%\",id:\"VVla6rExm\",klCb2H3dQ:\"2023\",layoutId:\"VVla6rExm\",oqjxocZJb:\"Photography\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9i31sh\",\"data-framer-name\":\"5 & 6\",name:\"5 & 6\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AHQbZkCgl\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1ttjzlb framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(100vw - 80px, 1px) - 99px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tyn3ot-container\",children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"TANZANIA IN HONG KONG\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg\",srcSet:\"https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mUVvuYBkrvfY8cYFCHc19GuAJXY.jpg 2500w\"},\"\"),height:\"100%\",id:\"LAucpFYHi\",klCb2H3dQ:\"2022\",layoutId:\"LAucpFYHi\",oqjxocZJb:\"Photography\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"c4wPRj4ad\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1e950cr framer-1y9j1ir\",\"data-framer-name\":\"Link\",name:\"Link\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(100vw - 80px, 1px) - 99px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-m33ig7-container\",children:/*#__PURE__*/_jsx(WorkCard,{aNRV2ptSs:\"Hong Kong\",fOIGac3_Y:addImageAlt({src:\"https://framerusercontent.com/images/gPSZc37bgrwlKBLBn20XDOnUVY.jpg\",srcSet:\"https://framerusercontent.com/images/gPSZc37bgrwlKBLBn20XDOnUVY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gPSZc37bgrwlKBLBn20XDOnUVY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gPSZc37bgrwlKBLBn20XDOnUVY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gPSZc37bgrwlKBLBn20XDOnUVY.jpg 2500w\"},\"\"),height:\"100%\",id:\"A13gXxujO\",klCb2H3dQ:\"2022\",layoutId:\"A13gXxujO\",oqjxocZJb:\"Photography\",style:{height:\"100%\",width:\"100%\"},variant:\"miSoTsuVP\",width:\"100%\"})})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-nekew8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"98px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"150px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"KAMDI OKONJO\"})})},ugPOt4Mgx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"150px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"KAMDI OKONJO\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:140}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"121px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"150px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"KAMDI OKONJO\"})}),className:\"framer-qh2l0d\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6jvrhl\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Znpd_WWWM\",webPageId:\"SlTCc2sEt\"},implicitPathVariables:undefined},{href:{hash:\":Znpd_WWWM\",webPageId:\"SlTCc2sEt\"},implicitPathVariables:undefined},{href:{hash:\":Znpd_WWWM\",webPageId:\"SlTCc2sEt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{width:\"752px\"},ugPOt4Mgx:{width:\"315px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"943px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k2z2nw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FbA8AHZN_:{V4AKsldnT:resolvedLinks[1]},ugPOt4Mgx:{V4AKsldnT:resolvedLinks[2],variant:\"KA6ilXxrI\"}},children:/*#__PURE__*/_jsx(LightFooter,{height:\"100%\",id:\"s5GmLQEhg\",layoutId:\"s5GmLQEhg\",style:{width:\"100%\"},V4AKsldnT:resolvedLinks[0],variant:\"cJsuhy05P\",width:\"100%\",xCM9ctcRi:\"\\xa92024 KAMDI OKONJO\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-30OnC { background: white; }`,\".framer-30OnC.framer-1y9j1ir, .framer-30OnC .framer-1y9j1ir { display: block; }\",\".framer-30OnC.framer-dls8ay { 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: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-30OnC .framer-p38odh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-30OnC .framer-1sy2xh1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-30OnC .framer-ftvc7k { flex: none; height: 123px; overflow: hidden; position: sticky; top: 0px; width: 379px; will-change: transform; z-index: 1; }\",\".framer-30OnC .framer-1a9nk74-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-30OnC .framer-etd4fv, .framer-30OnC .framer-q1lts3 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-30OnC .framer-p27lri-container { flex: none; height: 100vh; left: 0px; position: fixed; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 1; }\",\".framer-30OnC .framer-15x0aud, .framer-30OnC .framer-a3snkl, .framer-30OnC .framer-1iu5kat, .framer-30OnC .framer-1sit3c8, .framer-30OnC .framer-1uetg4t, .framer-30OnC .framer-fw13d { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-30OnC .framer-60njlc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 222px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 983px; }\",\".framer-30OnC .framer-rh3mmh { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-30OnC .framer-19jvbug-container { flex: none; height: 192px; position: relative; width: 510px; }\",\".framer-30OnC .framer-1wwrb29-container { flex: none; height: 689px; position: relative; width: 100%; }\",\".framer-30OnC .framer-1hpzwk { height: 711px; overflow: hidden; position: relative; width: 5365px; }\",\".framer-30OnC .framer-40tbdn { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 593px; left: 1906px; overflow: visible; position: absolute; top: calc(51.89873417721521% - 593px / 2); width: 600px; }\",\".framer-30OnC .framer-k4xkjs { align-content: center; align-items: center; background-color: #cfab42; 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: 0px; height: 212px; justify-content: center; left: 50px; overflow: visible; padding: 20px; position: absolute; top: 73px; width: 302px; }\",\".framer-30OnC .framer-4aoqqc, .framer-30OnC .framer-u07hde { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-30OnC .framer-162k7j4, .framer-30OnC .framer-qqvgrc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-30OnC .framer-3y203s { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 45px; flex: none; height: 370px; left: 50px; overflow: visible; position: absolute; width: 302px; }\",\".framer-30OnC .framer-1jdjm2i { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 589px; left: 362px; overflow: visible; position: absolute; top: calc(52.18002812939524% - 589px / 2); width: 600px; }\",\".framer-30OnC .framer-1xhcfcn { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 359px; left: 972px; overflow: visible; position: absolute; top: 73px; width: 392px; }\",\".framer-30OnC .framer-1i7wx0q { align-content: center; align-items: center; background-color: #0b6f7e; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 45px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 225px; justify-content: center; left: 972px; overflow: visible; padding: 20px; position: absolute; width: 922px; }\",\".framer-30OnC .framer-vt1r17 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 359px; left: 1377px; overflow: visible; position: absolute; top: 73px; width: 517px; }\",\".framer-30OnC .framer-qy8wce { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 593px; left: 2516px; overflow: visible; position: absolute; top: calc(51.89873417721521% - 593px / 2); width: 600px; }\",\".framer-30OnC .framer-q7p78r { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 593px; left: 3125px; overflow: visible; position: absolute; top: calc(51.89873417721521% - 593px / 2); width: 302px; }\",\".framer-30OnC .framer-27so5x { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 589px; left: 3444px; overflow: visible; position: absolute; top: calc(51.61744022503518% - 589px / 2); width: 697px; }\",\".framer-30OnC .framer-v0n5hd { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 589px; left: 4158px; overflow: visible; position: absolute; top: calc(51.61744022503518% - 589px / 2); width: 697px; }\",\".framer-30OnC .framer-tn4jn0 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 593px; left: 4872px; overflow: visible; position: absolute; top: calc(51.89873417721521% - 593px / 2); width: 462px; }\",\".framer-30OnC .framer-yw69q4 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 606px; position: relative; width: 983px; }\",\".framer-30OnC .framer-603gya { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 662px; position: relative; width: 785px; }\",\".framer-30OnC .framer-oa2rtq, .framer-30OnC .framer-pitway, .framer-30OnC .framer-s1vb6a { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; flex: none; height: 639px; position: relative; width: 1147px; }\",\".framer-30OnC .framer-370nh5 { flex: none; height: 4046px; overflow: hidden; position: relative; width: 791px; }\",\".framer-30OnC .framer-3t4p5s { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 3942px; justify-content: center; left: calc(49.936788874841994% - 723px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(49.18437963420665% - 3942px / 2); width: 723px; }\",\".framer-30OnC .framer-z6h4wk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 616px; z-index: 1; }\",\".framer-30OnC .framer-qluwpr, .framer-30OnC .framer-i9mqxe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-30OnC .framer-fywv9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-30OnC .framer-3bo3wq, .framer-30OnC .framer-11yivzk, .framer-30OnC .framer-17i873r, .framer-30OnC .framer-1iiec75, .framer-30OnC .framer-17tl4tu, .framer-30OnC .framer-1c4e1qo { 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: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-30OnC .framer-1lucemt-container { flex: 1 0 0px; height: 468px; position: relative; width: 1px; }\",\".framer-30OnC .framer-rri8a2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-30OnC .framer-1fkjs2s-container { flex: none; height: 504px; position: relative; width: 102%; z-index: 1; }\",\".framer-30OnC .framer-1bd84sx-container { flex: none; height: 446px; position: relative; width: 584px; }\",\".framer-30OnC .framer-67kmbw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-30OnC .framer-1sxvyc6-container { flex: 1 0 0px; height: 480px; position: relative; width: 1px; }\",\".framer-30OnC .framer-1kqpbjj-container { flex: 1 0 0px; height: 482px; position: relative; width: 1px; }\",\".framer-30OnC .framer-1i3oko3 { 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: visible; padding: 16px 0px 16px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-30OnC .framer-7lji3g-container { flex: none; height: 439px; position: relative; width: 579px; }\",\".framer-30OnC .framer-lqs3cp-container { flex: 1 0 0px; height: 461px; position: relative; width: 1px; }\",\".framer-30OnC .framer-1xcaoz3 { align-content: center; align-items: center; background-color: #d1f3ff; border-bottom-left-radius: 51px; border-bottom-right-radius: 51px; border-top-left-radius: 51px; border-top-right-radius: 51px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 57px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 229px; will-change: var(--framer-will-change-override, transform); }\",\".framer-30OnC .framer-1pm9v4k { flex: none; height: 120px; overflow: hidden; position: relative; width: 798px; }\",\".framer-30OnC .framer-dq9b7e-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-30OnC .framer-1yrmls-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-30OnC .framer-1sw3b48 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 2770px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-30OnC .framer-18ljl5r { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2657px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-30OnC .framer-i1hr3c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 67px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1px; z-index: 1; }\",\".framer-30OnC .framer-mg6h59 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 55px; height: 550px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-30OnC .framer-gftgsm, .framer-30OnC .framer-591p64, .framer-30OnC .framer-1t8iqt5, .framer-30OnC .framer-18b4d88, .framer-30OnC .framer-z8cf0x, .framer-30OnC .framer-1ttjzlb, .framer-30OnC .framer-1e950cr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-30OnC .framer-1i8umit-container, .framer-30OnC .framer-gjgo3d-container, .framer-30OnC .framer-chybqe-container, .framer-30OnC .framer-h3pd6-container, .framer-30OnC .framer-1nfuhaz-container, .framer-30OnC .framer-tyn3ot-container, .framer-30OnC .framer-m33ig7-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-30OnC .framer-u16vyw, .framer-30OnC .framer-m44yco { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 59px; height: 550px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-30OnC .framer-9i31sh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: 550px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-30OnC .framer-nekew8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 50px 50px 50px; position: relative; width: 1012px; }\",\".framer-30OnC .framer-qh2l0d { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-30OnC .framer-6jvrhl { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 100%; overflow: visible; padding: 50px; position: relative; width: 1000px; }\",\".framer-30OnC .framer-1k2z2nw-container { flex: none; height: auto; position: relative; width: 943px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-30OnC.framer-dls8ay, .framer-30OnC .framer-p38odh, .framer-30OnC .framer-1sy2xh1, .framer-30OnC .framer-60njlc, .framer-30OnC .framer-k4xkjs, .framer-30OnC .framer-4aoqqc, .framer-30OnC .framer-162k7j4, .framer-30OnC .framer-1i7wx0q, .framer-30OnC .framer-u07hde, .framer-30OnC .framer-qqvgrc, .framer-30OnC .framer-3t4p5s, .framer-30OnC .framer-z6h4wk, .framer-30OnC .framer-fywv9q, .framer-30OnC .framer-3bo3wq, .framer-30OnC .framer-rri8a2, .framer-30OnC .framer-11yivzk, .framer-30OnC .framer-17i873r, .framer-30OnC .framer-67kmbw, .framer-30OnC .framer-1iiec75, .framer-30OnC .framer-17tl4tu, .framer-30OnC .framer-1i3oko3, .framer-30OnC .framer-1c4e1qo, .framer-30OnC .framer-1xcaoz3, .framer-30OnC .framer-1sw3b48, .framer-30OnC .framer-18ljl5r, .framer-30OnC .framer-i1hr3c, .framer-30OnC .framer-mg6h59, .framer-30OnC .framer-gftgsm, .framer-30OnC .framer-591p64, .framer-30OnC .framer-u16vyw, .framer-30OnC .framer-1t8iqt5, .framer-30OnC .framer-18b4d88, .framer-30OnC .framer-m44yco, .framer-30OnC .framer-z8cf0x, .framer-30OnC .framer-9i31sh, .framer-30OnC .framer-1ttjzlb, .framer-30OnC .framer-1e950cr, .framer-30OnC .framer-nekew8 { gap: 0px; } .framer-30OnC.framer-dls8ay > *, .framer-30OnC .framer-p38odh > *, .framer-30OnC .framer-k4xkjs > *, .framer-30OnC .framer-1i7wx0q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-30OnC.framer-dls8ay > :first-child, .framer-30OnC .framer-p38odh > :first-child, .framer-30OnC .framer-1sy2xh1 > :first-child, .framer-30OnC .framer-60njlc > :first-child, .framer-30OnC .framer-k4xkjs > :first-child, .framer-30OnC .framer-1i7wx0q > :first-child, .framer-30OnC .framer-z6h4wk > :first-child, .framer-30OnC .framer-fywv9q > :first-child, .framer-30OnC .framer-rri8a2 > :first-child, .framer-30OnC .framer-67kmbw > :first-child, .framer-30OnC .framer-1sw3b48 > :first-child, .framer-30OnC .framer-i1hr3c > :first-child, .framer-30OnC .framer-nekew8 > :first-child { margin-top: 0px; } .framer-30OnC.framer-dls8ay > :last-child, .framer-30OnC .framer-p38odh > :last-child, .framer-30OnC .framer-1sy2xh1 > :last-child, .framer-30OnC .framer-60njlc > :last-child, .framer-30OnC .framer-k4xkjs > :last-child, .framer-30OnC .framer-1i7wx0q > :last-child, .framer-30OnC .framer-z6h4wk > :last-child, .framer-30OnC .framer-fywv9q > :last-child, .framer-30OnC .framer-rri8a2 > :last-child, .framer-30OnC .framer-67kmbw > :last-child, .framer-30OnC .framer-1sw3b48 > :last-child, .framer-30OnC .framer-i1hr3c > :last-child, .framer-30OnC .framer-nekew8 > :last-child { margin-bottom: 0px; } .framer-30OnC .framer-1sy2xh1 > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } .framer-30OnC .framer-60njlc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-30OnC .framer-4aoqqc > *, .framer-30OnC .framer-162k7j4 > *, .framer-30OnC .framer-u07hde > *, .framer-30OnC .framer-qqvgrc > *, .framer-30OnC .framer-3t4p5s > *, .framer-30OnC .framer-3bo3wq > *, .framer-30OnC .framer-11yivzk > *, .framer-30OnC .framer-17i873r > *, .framer-30OnC .framer-1iiec75 > *, .framer-30OnC .framer-17tl4tu > *, .framer-30OnC .framer-1i3oko3 > *, .framer-30OnC .framer-1c4e1qo > *, .framer-30OnC .framer-1xcaoz3 > *, .framer-30OnC .framer-18ljl5r > *, .framer-30OnC .framer-gftgsm > *, .framer-30OnC .framer-591p64 > *, .framer-30OnC .framer-1t8iqt5 > *, .framer-30OnC .framer-18b4d88 > *, .framer-30OnC .framer-z8cf0x > *, .framer-30OnC .framer-1ttjzlb > *, .framer-30OnC .framer-1e950cr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-30OnC .framer-4aoqqc > :first-child, .framer-30OnC .framer-162k7j4 > :first-child, .framer-30OnC .framer-u07hde > :first-child, .framer-30OnC .framer-qqvgrc > :first-child, .framer-30OnC .framer-3t4p5s > :first-child, .framer-30OnC .framer-3bo3wq > :first-child, .framer-30OnC .framer-11yivzk > :first-child, .framer-30OnC .framer-17i873r > :first-child, .framer-30OnC .framer-1iiec75 > :first-child, .framer-30OnC .framer-17tl4tu > :first-child, .framer-30OnC .framer-1i3oko3 > :first-child, .framer-30OnC .framer-1c4e1qo > :first-child, .framer-30OnC .framer-1xcaoz3 > :first-child, .framer-30OnC .framer-18ljl5r > :first-child, .framer-30OnC .framer-mg6h59 > :first-child, .framer-30OnC .framer-gftgsm > :first-child, .framer-30OnC .framer-591p64 > :first-child, .framer-30OnC .framer-u16vyw > :first-child, .framer-30OnC .framer-1t8iqt5 > :first-child, .framer-30OnC .framer-18b4d88 > :first-child, .framer-30OnC .framer-m44yco > :first-child, .framer-30OnC .framer-z8cf0x > :first-child, .framer-30OnC .framer-9i31sh > :first-child, .framer-30OnC .framer-1ttjzlb > :first-child, .framer-30OnC .framer-1e950cr > :first-child { margin-left: 0px; } .framer-30OnC .framer-4aoqqc > :last-child, .framer-30OnC .framer-162k7j4 > :last-child, .framer-30OnC .framer-u07hde > :last-child, .framer-30OnC .framer-qqvgrc > :last-child, .framer-30OnC .framer-3t4p5s > :last-child, .framer-30OnC .framer-3bo3wq > :last-child, .framer-30OnC .framer-11yivzk > :last-child, .framer-30OnC .framer-17i873r > :last-child, .framer-30OnC .framer-1iiec75 > :last-child, .framer-30OnC .framer-17tl4tu > :last-child, .framer-30OnC .framer-1i3oko3 > :last-child, .framer-30OnC .framer-1c4e1qo > :last-child, .framer-30OnC .framer-1xcaoz3 > :last-child, .framer-30OnC .framer-18ljl5r > :last-child, .framer-30OnC .framer-mg6h59 > :last-child, .framer-30OnC .framer-gftgsm > :last-child, .framer-30OnC .framer-591p64 > :last-child, .framer-30OnC .framer-u16vyw > :last-child, .framer-30OnC .framer-1t8iqt5 > :last-child, .framer-30OnC .framer-18b4d88 > :last-child, .framer-30OnC .framer-m44yco > :last-child, .framer-30OnC .framer-z8cf0x > :last-child, .framer-30OnC .framer-9i31sh > :last-child, .framer-30OnC .framer-1ttjzlb > :last-child, .framer-30OnC .framer-1e950cr > :last-child { margin-right: 0px; } .framer-30OnC .framer-z6h4wk > * { margin: 0px; margin-bottom: calc(71px / 2); margin-top: calc(71px / 2); } .framer-30OnC .framer-fywv9q > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-30OnC .framer-rri8a2 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-30OnC .framer-67kmbw > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-30OnC .framer-1sw3b48 > *, .framer-30OnC .framer-nekew8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-30OnC .framer-i1hr3c > * { margin: 0px; margin-bottom: calc(67px / 2); margin-top: calc(67px / 2); } .framer-30OnC .framer-mg6h59 > * { margin: 0px; margin-left: calc(55px / 2); margin-right: calc(55px / 2); } .framer-30OnC .framer-u16vyw > *, .framer-30OnC .framer-m44yco > * { margin: 0px; margin-left: calc(59px / 2); margin-right: calc(59px / 2); } .framer-30OnC .framer-9i31sh > * { margin: 0px; margin-left: calc(49px / 2); margin-right: calc(49px / 2); } }\",\"@media (min-width: 1200px) { .framer-30OnC .hidden-dls8ay { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-30OnC .hidden-1gc6p1x { display: none !important; } .${metadata.bodyClassName}-framer-30OnC { background: white; } .framer-30OnC.framer-dls8ay { width: 810px; } .framer-30OnC .framer-1sy2xh1 { gap: 103px; order: 0; padding: 24px 80px 24px 80px; } .framer-30OnC .framer-15x0aud { order: 3; } .framer-30OnC .framer-60njlc { height: min-content; order: 4; } .framer-30OnC .framer-19jvbug-container { order: 5; } .framer-30OnC .framer-1wwrb29-container { order: 6; } .framer-30OnC .framer-yw69q4 { order: 7; width: 746px; } .framer-30OnC .framer-603gya { order: 8; width: 746px; } .framer-30OnC .framer-oa2rtq { order: 9; width: 746px; } .framer-30OnC .framer-pitway { order: 10; width: 746px; } .framer-30OnC .framer-s1vb6a { order: 11; width: 746px; } .framer-30OnC .framer-370nh5 { order: 12; } .framer-30OnC .framer-qluwpr { order: 0; } .framer-30OnC .framer-1c4e1qo { order: 4; } .framer-30OnC .framer-1pm9v4k { order: 1; } .framer-30OnC .framer-nekew8 { padding: 0px 40px 40px 40px; } .framer-30OnC .framer-1k2z2nw-container { width: 752px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-30OnC .framer-1sy2xh1 { gap: 0px; } .framer-30OnC .framer-1sy2xh1 > * { margin: 0px; margin-bottom: calc(103px / 2); margin-top: calc(103px / 2); } .framer-30OnC .framer-1sy2xh1 > :first-child { margin-top: 0px; } .framer-30OnC .framer-1sy2xh1 > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-30OnC .hidden-1yelujj { display: none !important; } .${metadata.bodyClassName}-framer-30OnC { background: white; } .framer-30OnC.framer-dls8ay { width: 390px; } .framer-30OnC .framer-p38odh, .framer-30OnC .framer-ftvc7k, .framer-30OnC .framer-qh2l0d { order: 0; } .framer-30OnC .framer-1sy2xh1 { padding: 0px 50px 0px 50px; } .framer-30OnC .framer-15x0aud { order: 1; } .framer-30OnC .framer-60njlc { height: 108px; order: 2; width: 100%; } .framer-30OnC .framer-19jvbug-container { height: 70px; order: 3; width: 327px; } .framer-30OnC .framer-1wwrb29-container { height: 651px; order: 4; } .framer-30OnC .framer-yw69q4 { height: 262px; order: 5; width: 340px; } .framer-30OnC .framer-603gya { height: 262px; order: 6; width: 340px; } .framer-30OnC .framer-oa2rtq { height: 262px; order: 7; width: 340px; } .framer-30OnC .framer-pitway { height: 262px; order: 8; width: 340px; } .framer-30OnC .framer-s1vb6a { height: 262px; order: 9; width: 340px; } .framer-30OnC .framer-1xcaoz3 { order: 11; } .framer-30OnC .framer-nekew8 { order: 2; padding: 0px 30px 30px 30px; } .framer-30OnC .framer-6jvrhl { flex-direction: column; gap: 10px; justify-content: flex-start; order: 3; padding: 30px; } .framer-30OnC .framer-1k2z2nw-container { width: 315px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-30OnC .framer-6jvrhl { gap: 0px; } .framer-30OnC .framer-6jvrhl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-30OnC .framer-6jvrhl > :first-child { margin-top: 0px; } .framer-30OnC .framer-6jvrhl > :last-child { margin-bottom: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8040\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FbA8AHZN_\":{\"layout\":[\"fixed\",\"auto\"]},\"ugPOt4Mgx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerSlTCc2sEt=withCSS(Component,css,\"framer-30OnC\");export default FramerSlTCc2sEt;FramerSlTCc2sEt.displayName=\"Blog Grid\";FramerSlTCc2sEt.defaultProps={height:8040,width:1200};addFonts(FramerSlTCc2sEt,[{explicitInter:true,fonts:[{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gfwmS0v3_7Y.woff2\",weight:\"600\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"}]},...LightNavigationBarFonts,...LightOverlayMenuFonts,...EmbedFonts,...TickerFonts,...WorkCardFonts,...LightFooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSlTCc2sEt\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8040\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FbA8AHZN_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ugPOt4Mgx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "LightNavigationBarFonts", "getFonts", "di6sZ9S2S_default", "LightOverlayMenuFonts", "prYmlzexr_default", "EmbedFonts", "Embed", "TickerFonts", "Ticker", "WorkCardFonts", "jowu50ke_default", "ContainerWithFX", "withFX", "Container", "RichTextWithFX", "RichText", "LightFooterFonts", "XK_Cy5AdA_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "XcMLW4DAJ42m929", "overlay", "args", "Wo69oBM8Ezn6atv", "ref1", "pe", "isDisplayed", "isDisplayed1", "useRouteElementId", "ref2", "isDisplayed2", "id1", "ref3", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "l", "ComponentViewportProvider", "Container", "di6sZ9S2S_default", "AnimatePresence", "Ga", "x", "prYmlzexr_default", "PropertyOverrides", "RichText", "optimizeAppear", "Embed", "Ticker", "Image2", "Link", "ContainerWithFX", "jowu50ke_default", "overlay1", "RichTextWithFX", "ResolveLinks", "resolvedLinks", "XK_Cy5AdA_default", "css", "FramerSlTCc2sEt", "withCSS", "SlTCc2sEt_default", "addFonts", "LightNavigationBarFonts", "LightOverlayMenuFonts", "EmbedFonts", "TickerFonts", "WorkCardFonts", "LightFooterFonts", "__FramerMetadata__"]
}
