{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js", "ssg:https://framerusercontent.com/modules/jTiR8zpHhgEW4MpIlVLg/7pjcZokcPgXBs7Bif9iX/Share_button.js", "ssg:https://framerusercontent.com/modules/oifoBVpKn7Wda09luzVf/Wo5VztiGtoSAPB2lTaec/componentPresets.js", "ssg:https://framerusercontent.com/modules/sQ1euH2pX83EY6dDN9E4/pJruviDlnznhjq0F1qXl/akqeQqx7q.js", "ssg:https://framerusercontent.com/modules/ahqlOctfoTnH58eQjqpD/AHLFHvcJxfFJfZSX17W9/dRhH4N9X2.js", "ssg:https://framerusercontent.com/modules/hX8b1ZUkz8EUTYtAsf3B/VMIzsZgtvFr0su3g9jro/h4GktNIFO.js", "ssg:https://framerusercontent.com/modules/p0PvYF01Bc6WK7meGbSZ/sESyEJEz76l1A6pzgnol/HspyMWkaZ.js", "ssg:https://framerusercontent.com/modules/2tarLyHBYZhfBZ9s1yPt/IR7jfO17i5b6IJKgiOFA/lw9prHbri.js", "ssg:https://framerusercontent.com/modules/wC76rM0YVxg2tZ1jKIoG/mOo0Zo09LhV9WSYRnsLf/nC0779_Ue.js", "ssg:https://framerusercontent.com/modules/6AryUiggOlEWza40GmYl/izaGHXMjHRGRrkKQwnRQ/WskJH7JRe.js", "ssg:https://framerusercontent.com/modules/ggmthpIMtSheyU4BBUMZ/Q0xmg0Q1erf9h7Pa52Bg/OgZoz06K1.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";export function Twitter_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title)// Set the page title after component mounts\n;},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://twitter.com/intent/tweet?text=${encodeURIComponent(`Check out this insightful blog post: ${pageTitle}. Read it here:`)}&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}`);}});};}export function LinkedIn_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.linkedin.com/shareArticle?mini=true&url=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&title=${encodeURIComponent(pageTitle)}&source=framer.com`);},style:{...props.style,cursor:\"pointer\"}});};}export function Facebook_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&quote=${encodeURIComponent(`Check out this awesome site \"${pageTitle}\".`)}`);}});};}export function Email_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;const subject=encodeURIComponent(`Check out this link: ${pageTitle}`);const body=encodeURIComponent(`Hi,\n\nI wanted to share this link with you: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`);window.open(`mailto:?subject=${subject}&body=${body}`);}});};}export function Clipboard_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{const textField=document.createElement(\"textarea\");textField.innerText=window.location.href;document.body.appendChild(textField);textField.select();document.execCommand(\"copy\");textField.remove();alert(\"URL copied to clipboard!\");}});};}export function Whatsapp_Share(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(`Check out this link: ${(_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href}`)}`);}});};}export function Tumblr_Share(Component){return props=>{const[pageTitle,setPageTitle]=useState(\"\");useEffect(()=>{setPageTitle(document.title);},[]);return /*#__PURE__*/_jsx(Component,{...props,onTap:()=>{var _window_location,_window;window.open(`https://www.tumblr.com/widgets/share/tool?canonicalUrl=${encodeURIComponent((_window=window)===null||_window===void 0?void 0:(_window_location=_window.location)===null||_window_location===void 0?void 0:_window_location.href)}&title=${encodeURIComponent(pageTitle)}`);}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"Clipboard_Share\":{\"type\":\"reactHoc\",\"name\":\"Clipboard_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Facebook_Share\":{\"type\":\"reactHoc\",\"name\":\"Facebook_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Email_Share\":{\"type\":\"reactHoc\",\"name\":\"Email_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Tumblr_Share\":{\"type\":\"reactHoc\",\"name\":\"Tumblr_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"LinkedIn_Share\":{\"type\":\"reactHoc\",\"name\":\"LinkedIn_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Whatsapp_Share\":{\"type\":\"reactHoc\",\"name\":\"Whatsapp_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Twitter_Share\":{\"type\":\"reactHoc\",\"name\":\"Twitter_Share\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Share_button.map", "// Generated by Framer (838580a)\nexport const props={QMq0pd9Rg:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15},rx6u8oILr:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0}};export const fonts={QMq0pd9Rg:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-NgTo1 .framer-styles-preset-1c4g0v6 {  }\"];export const className=\"framer-NgTo1\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7f5deb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-J1Klp .framer-styles-preset-18xdlrh:not(.rich-text-wrapper), .framer-J1Klp .framer-styles-preset-18xdlrh.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-J1Klp\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-700\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"}]}];export const css=['.framer-MT9V6 .framer-styles-preset-1bxhkqq:not(.rich-text-wrapper), .framer-MT9V6 .framer-styles-preset-1bxhkqq.rich-text-wrapper h6 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-MT9V6\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-700\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"}]}];export const css=['.framer-Jxf4h .framer-styles-preset-avqttb:not(.rich-text-wrapper), .framer-Jxf4h .framer-styles-preset-avqttb.rich-text-wrapper h5 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-Jxf4h\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Lato-regular\",\"GF;Lato-700\",\"GF;Lato-700italic\",\"GF;Lato-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"},{family:\"Lato\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wqPGQ3s5dwt7w.woff2\",weight:\"700\"},{family:\"Lato\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxswXiWrFCbw7A.woff2\",weight:\"400\"}]}];export const css=['.framer-RWfOg .framer-styles-preset-11bj81c:not(.rich-text-wrapper), .framer-RWfOg .framer-styles-preset-11bj81c.rich-text-wrapper p { --framer-font-family: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-family-italic: \"Lato\", \"Lato Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.8em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #a2a2b8; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-RWfOg\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-700\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"}]}];export const css=['.framer-2zRUA .framer-styles-preset-1i0s3xb:not(.rich-text-wrapper), .framer-2zRUA .framer-styles-preset-1i0s3xb.rich-text-wrapper h2 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-2zRUA\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-700\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"}]}];export const css=['.framer-ec4q1 .framer-styles-preset-54r4nq:not(.rich-text-wrapper), .framer-ec4q1 .framer-styles-preset-54r4nq.rich-text-wrapper h3 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-ec4q1\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fd8545d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,resolvePageScope,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import BlogPost from\"#framer/local/canvasComponent/eFAK34yOR/eFAK34yOR.js\";import NavLink from\"#framer/local/canvasComponent/f4RjbE3mp/f4RjbE3mp.js\";import FooterNew from\"#framer/local/canvasComponent/IR8z7Y2GH/IR8z7Y2GH.js\";import PrimaryButton from\"#framer/local/canvasComponent/knCDuo0jT/knCDuo0jT.js\";import Menu from\"#framer/local/canvasComponent/VJIo5Ji4Q/VJIo5Ji4Q.js\";import{updatedate}from\"#framer/local/codeFile/hY0Cymu/Date.js\";import{Facebook_Share,LinkedIn_Share,Twitter_Share,Whatsapp_Share}from\"#framer/local/codeFile/hVDFo51/Share_button.js\";import Blog from\"#framer/local/collection/EMPy0ERXf/EMPy0ERXf.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle8 from\"#framer/local/css/akqeQqx7q/akqeQqx7q.js\";import*as sharedStyle3 from\"#framer/local/css/dRhH4N9X2/dRhH4N9X2.js\";import*as sharedStyle5 from\"#framer/local/css/h4GktNIFO/h4GktNIFO.js\";import*as sharedStyle4 from\"#framer/local/css/HspyMWkaZ/HspyMWkaZ.js\";import*as sharedStyle6 from\"#framer/local/css/lw9prHbri/lw9prHbri.js\";import*as sharedStyle1 from\"#framer/local/css/nC0779_Ue/nC0779_Ue.js\";import*as sharedStyle from\"#framer/local/css/q7ccQO2zb/q7ccQO2zb.js\";import*as sharedStyle7 from\"#framer/local/css/schCVNbzW/schCVNbzW.js\";import*as sharedStyle2 from\"#framer/local/css/WskJH7JRe/WskJH7JRe.js\";import metadataProvider from\"#framer/local/webPageMetadata/OgZoz06K1/OgZoz06K1.js\";const MenuFonts=getFonts(Menu);const NavLinkFonts=getFonts(NavLink);const PrimaryButtonFonts=getFonts(PrimaryButton);const SearchFonts=getFonts(Search);const MotionDivWithFX=withFX(motion.div);const RichTextUpdatedate=updatedate(RichText);const MotionDivFacebook_Share=Facebook_Share(motion.div);const MotionDivWhatsapp_Share=Whatsapp_Share(motion.div);const MotionDivLinkedIn_Share=LinkedIn_Share(motion.div);const MotionDivTwitter_Share=Twitter_Share(motion.div);const BlogPostFonts=getFonts(BlogPost);const SlideshowFonts=getFonts(Slideshow);const FooterNewFonts=getFonts(FooterNew);const breakpoints={Ai3baZdeL:\"(min-width: 810px) and (max-width: 1199px)\",CLwc4uAtg:\"(min-width: 1440px)\",gYIJ3ZGPp:\"(min-width: 1200px) and (max-width: 1439px)\",v0gepbOPl:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AHIQY\";const variantClassNames={Ai3baZdeL:\"framer-v-agmjiw\",CLwc4uAtg:\"framer-v-12b7l9x\",gYIJ3ZGPp:\"framer-v-th5m72\",v0gepbOPl:\"framer-v-1p0yzqz\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:150,y:0};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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};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 animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition2={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:100};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"NgrUis7b3\";}else{return\"Zaa43_IFn\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"CLwc4uAtg\",Laptop:\"gYIJ3ZGPp\",Phone:\"v0gepbOPl\",Tablet:\"Ai3baZdeL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"CLwc4uAtg\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"OgZoz06K1\",data:Blog,type:\"Collection\"},select:[{collection:\"OgZoz06K1\",name:\"SHk_gE5LW\",type:\"Identifier\"},{collection:\"OgZoz06K1\",name:\"sPlFi5geC\",type:\"Identifier\"},{collection:\"OgZoz06K1\",name:\"C2oIV2BRH\",type:\"Identifier\"},{collection:\"OgZoz06K1\",name:\"j7KgGt3hR\",type:\"Identifier\"},{collection:\"OgZoz06K1\",name:\"ITr2vvUXv\",type:\"Identifier\"},{collection:\"OgZoz06K1\",name:\"sJtjWpzSK\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"OgZoz06K1\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,C2oIV2BRH=getFromCurrentRouteData(\"C2oIV2BRH\"),sPlFi5geC=getFromCurrentRouteData(\"sPlFi5geC\"),SHk_gE5LW=getFromCurrentRouteData(\"SHk_gE5LW\")??\"\",j7KgGt3hR=getFromCurrentRouteData(\"j7KgGt3hR\")??\"\",ITr2vvUXv=getFromCurrentRouteData(\"ITr2vvUXv\"),sJtjWpzSK=getFromCurrentRouteData(\"sJtjWpzSK\")??\"\",UC_vof_SbEk8jOFzgL,C2oIV2BRHEk8jOFzgL,sPlFi5geCEk8jOFzgL,SHk_gE5LWEk8jOFzgL,idEk8jOFzgL,UC_vof_SbKpUQbiYz2,C2oIV2BRHKpUQbiYz2,sPlFi5geCKpUQbiYz2,SHk_gE5LWKpUQbiYz2,idKpUQbiYz2,UC_vof_SbAwkb28iCF,C2oIV2BRHAwkb28iCF,sPlFi5geCAwkb28iCF,SHk_gE5LWAwkb28iCF,idAwkb28iCF,UC_vof_SbAUlUVUh2K,C2oIV2BRHAUlUVUh2K,sPlFi5geCAUlUVUh2K,SHk_gE5LWAUlUVUh2K,idAUlUVUh2K,UC_vof_SbuMkMf2O98,C2oIV2BRHuMkMf2O98,sPlFi5geCuMkMf2O98,SHk_gE5LWuMkMf2O98,iduMkMf2O98,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const JwTskbloj3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const EcyzaWDBh1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const visible=negate(isSet(C2oIV2BRH));const activeLocaleCode=useLocaleCode();const textContent=toDateString(sPlFi5geC,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible1=isSet(ITr2vvUXv);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"CLwc4uAtg\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-12b7l9x\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jqg6tn\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{width:\"88.8889vw\"},gYIJ3ZGPp:{width:\"min(88.8889vw, 1140px)\"},v0gepbOPl:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.98)`,y:(componentViewport?.y||0)+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"min(88.8889vw, 1280px)\",y:30,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1g3c7az-container\",id:\"1g3c7az\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{style:{width:\"100%\"},variant:\"NxWopLVy5\"},v0gepbOPl:{style:{width:\"100%\"},variant:\"NxWopLVy5\"}},children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"GPbkjLjfe\",JwTskbloj:JwTskbloj3bnx0g({overlay}),layoutId:\"GPbkjLjfe\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"HSqgKi29m\",width:\"100%\"})}),/*#__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:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-9alf47\"),\"data-framer-portal-id\":\"1g3c7az\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"wcdYgBcpA\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-1rrpcsk\"),\"data-framer-portal-id\":\"1g3c7az\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ssronm\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MGeGJu0pgaOVoQUGH6vTnZIQFbI.png\"},className:\"framer-12yhvfg\",\"data-framer-name\":\"white 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bx3sp\",\"data-framer-name\":\"Social Media\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/solareumchain\",nodeId:\"wj2cGUpBY\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-qqhu6p framer-1ej22tu\",\"data-framer-name\":\"Social\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/5wQd2j2mH5jluMpi7qByBDylo0.svg\"},className:\"framer-1572vw4\",\"data-framer-name\":\"website\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://t.me/SolareumChain\",nodeId:\"xeRcwcVF7\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-119l494 framer-1ej22tu\",\"data-framer-name\":\"Social\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:12,pixelWidth:12,src:\"https://framerusercontent.com/images/boNzIqSabdcbsZVASo5MPu14wE.svg\"},className:\"framer-1s0qf3h\",\"data-framer-name\":\"website\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(Link,{href:\"https://ca.linkedin.com/company/solareum-inc\",nodeId:\"od5GUhFYq\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-k4lq7a framer-1ej22tu\",\"data-framer-name\":\"Social\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:12,pixelWidth:12,src:\"https://framerusercontent.com/images/WTiVRw9ft9L8IOakxjpm25K0DI.svg\"},className:\"framer-1kucphq\",\"data-framer-name\":\"website\",transformTemplate:transformTemplate1})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mehoz2\",\"data-framer-name\":\"Nav Bar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14tmfhx\",\"data-border\":true,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":FPVO5olha\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":FPVO5olha\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":FPVO5olha\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":FPVO5olha\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-79mcl9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{WGYlC8YwA:resolvedLinks[2]},gYIJ3ZGPp:{WGYlC8YwA:resolvedLinks[1]},v0gepbOPl:{WGYlC8YwA:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(NavLink,{EcyzaWDBh:EcyzaWDBh1wnntms({overlay}),height:\"100%\",id:\"i87GWk58l\",layoutId:\"i87GWk58l\",variant:\"WuP9erUSy\",WGYlC8YwA:resolvedLinks[0],width:\"100%\",zR6sySg_c:\"How it works\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1acks4o\",\"data-border\":true,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":S2TG8d_cT\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":S2TG8d_cT\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":S2TG8d_cT\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":S2TG8d_cT\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fw3g1c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{WGYlC8YwA:resolvedLinks1[2]},gYIJ3ZGPp:{WGYlC8YwA:resolvedLinks1[1]},v0gepbOPl:{WGYlC8YwA:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(NavLink,{EcyzaWDBh:EcyzaWDBh1wnntms({overlay}),height:\"100%\",id:\"kisOiQmA3\",layoutId:\"kisOiQmA3\",variant:\"WuP9erUSy\",WGYlC8YwA:resolvedLinks1[0],width:\"100%\",zR6sySg_c:\"Why Solareum exist\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yz3owe\",\"data-border\":true,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Sc70Un8Xj\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":Sc70Un8Xj\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":Sc70Un8Xj\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined},{href:{hash:\":Sc70Un8Xj\",webPageId:\"xV2Aw5sVu\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-198vfet-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{WGYlC8YwA:resolvedLinks2[2]},gYIJ3ZGPp:{WGYlC8YwA:resolvedLinks2[1]},v0gepbOPl:{WGYlC8YwA:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(NavLink,{EcyzaWDBh:EcyzaWDBh1wnntms({overlay}),height:\"100%\",id:\"pp4DXp_Jd\",layoutId:\"pp4DXp_Jd\",variant:\"WuP9erUSy\",WGYlC8YwA:resolvedLinks2[0],width:\"100%\",zR6sySg_c:\"About us\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fyudo2\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1is6nyk-container\",children:/*#__PURE__*/_jsx(NavLink,{EcyzaWDBh:EcyzaWDBh1wnntms({overlay}),height:\"100%\",id:\"FoNrh1kuI\",layoutId:\"FoNrh1kuI\",variant:\"WuP9erUSy\",WGYlC8YwA:\"mailto:info@solareuml1.com\",width:\"100%\",zR6sySg_c:\"Contact us\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-146kvnr\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dofjbp\",\"data-framer-name\":\"Mobile Menu\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fj2np4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sc8bfr\",style:{rotate:45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-120pjvb\",style:{rotate:-45}})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uair8j\",\"data-framer-name\":\"Blured Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1d39th5\",\"data-framer-name\":\"Star 2\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1500 1500\"><g transform=\"translate(124.127 0)\" id=\"ss12776960724_1\"><path d=\"M 649.519 0 L 792.756 501.906 L 1299.035 375 L 935.993 750 L 1299.035 1125 L 792.756 998.094 L 649.519 1500 L 506.282 998.094 L 0 1125 L 363.045 750 L 0 375 L 506.282 501.906 Z\" fill=\"rgb(78, 223, 145)\"></path></g></svg>',svgContentId:12776960724,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://t.me/SolareumChain\",nodeId:\"uXYTTNR00\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-129pbi8 framer-1ej22tu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{v0gepbOPl:{width:\"260px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b3opzc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{v0gepbOPl:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"JYqVrUZ7V\",layoutId:\"JYqVrUZ7V\",Q9qhczrqT:true,t3yQtlCWi:\"Join our Telegram\",variant:\"Hp4SIBs5d\",width:\"100%\",WmRRczzk0:false})})})})})})})]})]}),getContainer())})})]})})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9hm5hq\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-ll7ytc\",\"data-styles-preset\":\"q7ccQO2zb\",style:{\"--framer-text-alignment\":\"center\"},children:[\"News From \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(78, 223, 145)\"},children:\"Solareum\"})]})}),className:\"framer-105w2rl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u2utcb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xmchae-container\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(8, 8, 8, 0.95)\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"rgb(255, 255, 255)\",iconImage:addImageAlt({src:\"https://framerusercontent.com/images/nhbAjtiaHAgJDhWzhDzmlGTkBMk.svg\"},\"\"),iconSize:1,iconType:\"custom\",id:\"pl12K98Wv\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgb(255, 255, 255)\",iconSize:18,iconType:\"default\"},inputFont:{fontFamily:'\"Lufga Regular\", \"Lufga Regular Placeholder\", sans-serif',fontSize:\"16px\"},placeholderOptions:{placeholderColor:\"rgba(255, 255, 255, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(255, 255, 255)\"},layoutId:\"pl12K98Wv\",modalOptions:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderRadius:30,heightIsStatic:false,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(255, 255, 255, 0.4)\",subtitleFont:{fontFamily:'\"Lufga Regular\", \"Lufga Regular Placeholder\", sans-serif',fontSize:\"13px\"},subtitleType:\"path\"},titleColor:\"rgb(255, 255, 255)\",titleFont:{fontFamily:'\"Lufga Medium\", \"Lufga Medium Placeholder\", sans-serif',fontSize:\"15px\"},titleType:\"h1\"},style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},urlScope:resolvePageScope({webPageId:\"JKNny58lP\"},router),width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eaxrw5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ldeuv9\",\"data-framer-name\":\"search-normal\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19o2er6\",\"data-framer-name\":\"vuesax/linear/search-normal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.66671 13.9997C11.1645 13.9997 14 11.1641 14 7.66634C14 4.16854 11.1645 1.33301 7.66671 1.33301C4.1689 1.33301 1.33337 4.16854 1.33337 7.66634C1.33337 11.1641 4.1689 13.9997 7.66671 13.9997Z\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M14.6667 14.6663L13.3334 13.333\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0x1ZmdhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Lufga Regular\", \"Lufga Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Search From Blog\"})}),className:\"framer-y0h3wx\",\"data-framer-name\":\"Search From Blog\",fonts:[\"CUSTOM;Lufga Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y78kl4\",\"data-framer-name\":\"Post\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+424+0+0),sizes:`min(${componentViewport?.width||\"100vw\"}, 790px)`,...toResponsiveImage(C2oIV2BRH)}},gYIJ3ZGPp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+424+0+0),sizes:`min(${componentViewport?.width||\"100vw\"}, 1140px)`,...toResponsiveImage(C2oIV2BRH)}},v0gepbOPl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+0+0),sizes:`min(${componentViewport?.width||\"100vw\"}, 370px)`,...toResponsiveImage(C2oIV2BRH)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+424+0+0),sizes:`min(${componentViewport?.width||\"100vw\"}, 1280px)`,...toResponsiveImage(C2oIV2BRH)},className:\"framer-15ashy6\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-euqu9q\",children:visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-146oabg\",\"data-framer-name\":\"No Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ub4w6g\",children:/*#__PURE__*/_jsx(RichTextUpdatedate,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0x1ZmdhIEJvbGQ=\",\"--framer-font-family\":'\"Lufga Bold\", \"Lufga Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(162, 162, 184)\"},children:\"Apr 8, 2022\"})}),className:\"framer-d1hfj9\",\"data-framer-name\":\"Date\",fonts:[\"CUSTOM;Lufga Bold\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9bna7l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0x1ZmdhIEJvbGQ=\",\"--framer-font-family\":'\"Lufga Bold\", \"Lufga Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Magna mattis ultrices ac iaculis in faucibus. In pharetra purus erat.\"})}),className:\"framer-6w8map\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Lufga Bold\"],text:SHk_gE5LW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0x1ZmdhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Lufga Regular\", \"Lufga Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"rgb(162, 162, 184)\"},children:\"Suspendisse etiam volutpat convallis bibendum nulla mattis elit rhoncus. Vitae egestas viverra posuere at. Dui a tempor.\"})}),className:\"framer-rk0jd7\",\"data-framer-name\":\"Suspendisse etiam volutpat convallis bibendum nulla mattis elit rhoncus. Vitae egestas viverra posuere at. Dui a tempor.\",fonts:[\"CUSTOM;Lufga Regular\"],text:j7KgGt3hR,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i56hiu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g897is\",\"data-framer-name\":\"Share icons\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0x1ZmdhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Lufga Regular\", \"Lufga Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Share\"})}),className:\"framer-eygx7d\",\"data-framer-name\":\"Share\",fonts:[\"CUSTOM;Lufga Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivFacebook_Share,{className:\"framer-pj1nrm\",\"data-framer-name\":\"Facebook\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m4k54i\",\"data-framer-name\":\"Facebook\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"15.1599\" cy=\"14.74\" r=\"14.74\" fill=\"#1877F2\"/>\\n<path d=\"M13.6825 11.6727V13.0467H12.6755V14.7267H13.6825V19.7197H15.7495V14.7272H17.137C17.137 14.7272 17.267 13.9217 17.33 13.0407H15.758V11.8917C15.758 11.7202 15.983 11.4892 16.206 11.4892H17.333V9.74023H15.801C13.631 9.74023 13.6825 11.4217 13.6825 11.6727Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWhatsapp_Share,{className:\"framer-17xgrn2\",\"data-framer-name\":\"Whatsapp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vzq2em\",\"data-framer-name\":\"Whatsapp\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:31,svg:'<svg width=\"31\" height=\"30\" viewBox=\"0 0 31 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"15.6399\" cy=\"14.74\" r=\"14.74\" fill=\"#25D366\"/>\\n<g clip-path=\"url(#clip0_398_2176)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.6401 9.74023C12.8786 9.74023 10.6401 11.9787 10.6401 14.7402C10.6401 15.6852 10.9026 16.5702 11.3591 17.3242L10.9131 18.8402C10.8875 18.9273 10.8858 19.0196 10.9083 19.1075C10.9307 19.1954 10.9764 19.2757 11.0405 19.3399C11.1047 19.404 11.1849 19.4497 11.2728 19.4721C11.3608 19.4945 11.4531 19.4928 11.5401 19.4672L13.0561 19.0212C13.8355 19.4928 14.7292 19.7415 15.6401 19.7402C18.4016 19.7402 20.6401 17.5017 20.6401 14.7402C20.6401 11.9787 18.4016 9.74023 15.6401 9.74023ZM14.5091 15.8717C15.5206 16.8827 16.4861 17.0162 16.8271 17.0287C17.3456 17.0477 17.8506 16.6517 18.0471 16.1922C18.0719 16.1351 18.0809 16.0723 18.0732 16.0105C18.0655 15.9486 18.0413 15.89 18.0031 15.8407C17.7291 15.4907 17.3586 15.2392 16.9966 14.9892C16.9211 14.937 16.8282 14.916 16.7375 14.9307C16.6468 14.9455 16.5653 14.9947 16.5101 15.0682L16.2101 15.5257C16.1944 15.5503 16.1698 15.568 16.1414 15.575C16.1131 15.5821 16.0831 15.5781 16.0576 15.5637C15.8541 15.4472 15.5576 15.2492 15.3446 15.0362C15.1316 14.8232 14.9456 14.5402 14.8411 14.3497C14.8282 14.3255 14.8244 14.2975 14.8306 14.2707C14.8368 14.2439 14.8524 14.2203 14.8746 14.2042L15.3366 13.8612C15.4026 13.8039 15.4451 13.7243 15.4562 13.6377C15.4672 13.551 15.4461 13.4633 15.3966 13.3912C15.1726 13.0632 14.9116 12.6462 14.5331 12.3697C14.4843 12.3343 14.4271 12.3123 14.3671 12.3057C14.3071 12.2991 14.2465 12.3083 14.1911 12.3322C13.7311 12.5292 13.3331 13.0342 13.3521 13.5537C13.3646 13.8947 13.4981 14.8602 14.5091 15.8717Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_398_2176\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(9.64014 8.74023)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivLinkedIn_Share,{className:\"framer-1jsgqfm\",\"data-framer-name\":\"Linkedin\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uzjo9c\",\"data-framer-name\":\"Linkedin\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:30,svg:'<svg width=\"30\" height=\"30\" viewBox=\"0 0 30 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"15.1199\" cy=\"14.74\" r=\"14.74\" fill=\"#0A66C2\"/>\\n<path d=\"M12.5896 11.2407C12.5895 11.506 12.484 11.7603 12.2964 11.9477C12.1087 12.1351 11.8543 12.2404 11.5891 12.2402C11.3239 12.2401 11.0696 12.1346 10.8821 11.947C10.6947 11.7594 10.5895 11.505 10.5896 11.2397C10.5897 10.9745 10.6952 10.7202 10.8828 10.5328C11.0705 10.3453 11.3249 10.2401 11.5901 10.2402C11.8553 10.2404 12.1096 10.3459 12.2971 10.5335C12.4845 10.7211 12.5897 10.9755 12.5896 11.2407ZM12.6196 12.9807H10.6196V19.2407H12.6196V12.9807ZM15.7796 12.9807H13.7896V19.2407H15.7596V15.9557C15.7596 14.1257 18.1446 13.9557 18.1446 15.9557V19.2407H20.1196V15.2757C20.1196 12.1907 16.5896 12.3057 15.7596 13.8207L15.7796 12.9807Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivTwitter_Share,{className:\"framer-b8ke30\",\"data-framer-name\":\"X\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qtyat3\",\"data-framer-name\":\"x\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:31,svg:'<svg width=\"31\" height=\"30\" viewBox=\"0 0 31 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"15.5999\" cy=\"14.74\" r=\"14.74\" fill=\"black\"/>\\n<path d=\"M18.7025 9.86523H20.3565L16.743 13.9952L20.994 19.6152H17.665L15.058 16.2067L12.075 19.6152H10.42L14.285 15.1977L10.2075 9.86523H13.62L15.9765 12.9807L18.7025 9.86523ZM18.122 18.6252H19.0385L13.1225 10.8032H12.139L18.122 18.6252Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cocnk5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vmrqbs\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395,intrinsicWidth:845,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+424+0+493+0+0+0+-227),pixelHeight:395,pixelWidth:845,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 790px), 845px)`,...toResponsiveImage(ITr2vvUXv)}},gYIJ3ZGPp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395,intrinsicWidth:845,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+424+0+493+0+0+-227),pixelHeight:395,pixelWidth:845,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 130px) / 2, 1px), 845px)`,...toResponsiveImage(ITr2vvUXv)}},v0gepbOPl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395,intrinsicWidth:845,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+0+729+0+0+0+-227),pixelHeight:395,pixelWidth:845,sizes:`min(${componentViewport?.width||\"100vw\"}, 370px)`,...toResponsiveImage(ITr2vvUXv)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395,intrinsicWidth:845,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60+424+0+493+0+0+-227),pixelHeight:395,pixelWidth:845,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 130px) / 2, 1px), 845px)`,...toResponsiveImage(ITr2vvUXv)},className:\"framer-160onoy\"})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"rx6u8oILr\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"QMq0pd9Rg\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:sJtjWpzSK,className:\"framer-3zmpro\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1xns1w3\",h1:\"framer-styles-preset-ll7ytc\",h2:\"framer-styles-preset-1i0s3xb\",h3:\"framer-styles-preset-54r4nq\",h4:\"framer-styles-preset-18xdlrh\",h5:\"framer-styles-preset-avqttb\",h6:\"framer-styles-preset-1bxhkqq\",img:\"framer-styles-preset-1c4g0v6\",p:\"framer-styles-preset-11bj81c\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fbd73s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k8ox9s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}},v0gepbOPl:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"egg0v8zhX\",intervalControl:3,itemAmount:1,layoutId:\"egg0v8zhX\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(78, 223, 145)\",dotsGap:8,dotsInset:10,dotSize:10,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g4984d\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Ek8jOFzgL\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Ek8jOFzgL\",name:\"UC_vof_Sb\",type:\"Identifier\"},{collection:\"Ek8jOFzgL\",name:\"C2oIV2BRH\",type:\"Identifier\"},{collection:\"Ek8jOFzgL\",name:\"sPlFi5geC\",type:\"Identifier\"},{collection:\"Ek8jOFzgL\",name:\"SHk_gE5LW\",type:\"Identifier\"},{collection:\"Ek8jOFzgL\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({C2oIV2BRH:C2oIV2BRHEk8jOFzgL,id:idEk8jOFzgL,SHk_gE5LW:SHk_gE5LWEk8jOFzgL,sPlFi5geC:sPlFi5geCEk8jOFzgL,UC_vof_Sb:UC_vof_SbEk8jOFzgL},index)=>{UC_vof_SbEk8jOFzgL??=\"\";SHk_gE5LWEk8jOFzgL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Ek8jOFzgL-${idEk8jOFzgL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{UC_vof_Sb:UC_vof_SbEk8jOFzgL},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{UC_vof_Sb:UC_vof_SbEk8jOFzgL},webPageId:\"OgZoz06K1\"},nodeId:\"XN0BLwroN\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15zks53 framer-1ej22tu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"309px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-49d3wh-container\",children:/*#__PURE__*/_jsx(BlogPost,{D_zG5QpOZ:toResponsiveImage(C2oIV2BRHEk8jOFzgL),height:\"100%\",id:\"lY_WIgno5\",layoutId:\"lY_WIgno5\",OsLN1TNJO:\"\",style:{height:\"100%\",width:\"100%\"},Ty3eG1I7d:sPlFi5geCEk8jOFzgL,variant:convertFromBoolean(isSet(C2oIV2BRHEk8jOFzgL),activeLocale),VBK4Et3pM:\"rgb(0, 0, 0)\",width:\"100%\",xq8_QLSXL:SHk_gE5LWEk8jOFzgL,XQCQJgsus:false})})})})})})},idEk8jOFzgL);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k1lrty\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KpUQbiYz2\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"KpUQbiYz2\",name:\"UC_vof_Sb\",type:\"Identifier\"},{collection:\"KpUQbiYz2\",name:\"C2oIV2BRH\",type:\"Identifier\"},{collection:\"KpUQbiYz2\",name:\"sPlFi5geC\",type:\"Identifier\"},{collection:\"KpUQbiYz2\",name:\"SHk_gE5LW\",type:\"Identifier\"},{collection:\"KpUQbiYz2\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({C2oIV2BRH:C2oIV2BRHKpUQbiYz2,id:idKpUQbiYz2,SHk_gE5LW:SHk_gE5LWKpUQbiYz2,sPlFi5geC:sPlFi5geCKpUQbiYz2,UC_vof_Sb:UC_vof_SbKpUQbiYz2},index1)=>{UC_vof_SbKpUQbiYz2??=\"\";SHk_gE5LWKpUQbiYz2??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KpUQbiYz2-${idKpUQbiYz2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{UC_vof_Sb:UC_vof_SbKpUQbiYz2},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{UC_vof_Sb:UC_vof_SbKpUQbiYz2},webPageId:\"OgZoz06K1\"},nodeId:\"SM44XhUcr\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-t2slcl framer-1ej22tu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"309px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hg49bm-container\",children:/*#__PURE__*/_jsx(BlogPost,{D_zG5QpOZ:toResponsiveImage(C2oIV2BRHKpUQbiYz2),height:\"100%\",id:\"q8QbKjfwT\",layoutId:\"q8QbKjfwT\",OsLN1TNJO:\"\",style:{height:\"100%\",width:\"100%\"},Ty3eG1I7d:sPlFi5geCKpUQbiYz2,variant:convertFromBoolean(isSet(C2oIV2BRHKpUQbiYz2),activeLocale),VBK4Et3pM:\"rgb(0, 0, 0)\",width:\"100%\",xq8_QLSXL:SHk_gE5LWKpUQbiYz2,XQCQJgsus:false})})})})})})},idKpUQbiYz2);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zbaoxh\",\"data-framer-name\":\"3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Awkb28iCF\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"Awkb28iCF\",name:\"UC_vof_Sb\",type:\"Identifier\"},{collection:\"Awkb28iCF\",name:\"C2oIV2BRH\",type:\"Identifier\"},{collection:\"Awkb28iCF\",name:\"sPlFi5geC\",type:\"Identifier\"},{collection:\"Awkb28iCF\",name:\"SHk_gE5LW\",type:\"Identifier\"},{collection:\"Awkb28iCF\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({C2oIV2BRH:C2oIV2BRHAwkb28iCF,id:idAwkb28iCF,SHk_gE5LW:SHk_gE5LWAwkb28iCF,sPlFi5geC:sPlFi5geCAwkb28iCF,UC_vof_Sb:UC_vof_SbAwkb28iCF},index2)=>{UC_vof_SbAwkb28iCF??=\"\";SHk_gE5LWAwkb28iCF??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Awkb28iCF-${idAwkb28iCF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{UC_vof_Sb:UC_vof_SbAwkb28iCF},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{UC_vof_Sb:UC_vof_SbAwkb28iCF},webPageId:\"OgZoz06K1\"},nodeId:\"z0aMFf8ku\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ghza7b framer-1ej22tu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"309px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-162gbz4-container\",children:/*#__PURE__*/_jsx(BlogPost,{D_zG5QpOZ:toResponsiveImage(C2oIV2BRHAwkb28iCF),height:\"100%\",id:\"Of4rOnc4_\",layoutId:\"Of4rOnc4_\",OsLN1TNJO:\"\",style:{height:\"100%\",width:\"100%\"},Ty3eG1I7d:sPlFi5geCAwkb28iCF,variant:convertFromBoolean(isSet(C2oIV2BRHAwkb28iCF),activeLocale),VBK4Et3pM:\"rgb(0, 0, 0)\",width:\"100%\",xq8_QLSXL:SHk_gE5LWAwkb28iCF,XQCQJgsus:false})})})})})})},idAwkb28iCF);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ghphp\",\"data-framer-name\":\"4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AUlUVUh2K\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"AUlUVUh2K\",name:\"UC_vof_Sb\",type:\"Identifier\"},{collection:\"AUlUVUh2K\",name:\"C2oIV2BRH\",type:\"Identifier\"},{collection:\"AUlUVUh2K\",name:\"sPlFi5geC\",type:\"Identifier\"},{collection:\"AUlUVUh2K\",name:\"SHk_gE5LW\",type:\"Identifier\"},{collection:\"AUlUVUh2K\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({C2oIV2BRH:C2oIV2BRHAUlUVUh2K,id:idAUlUVUh2K,SHk_gE5LW:SHk_gE5LWAUlUVUh2K,sPlFi5geC:sPlFi5geCAUlUVUh2K,UC_vof_Sb:UC_vof_SbAUlUVUh2K},index3)=>{UC_vof_SbAUlUVUh2K??=\"\";SHk_gE5LWAUlUVUh2K??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AUlUVUh2K-${idAUlUVUh2K}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{UC_vof_Sb:UC_vof_SbAUlUVUh2K},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{UC_vof_Sb:UC_vof_SbAUlUVUh2K},webPageId:\"OgZoz06K1\"},nodeId:\"hvDed1bPx\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jlrdpy framer-1ej22tu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"309px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-if9vjo-container\",children:/*#__PURE__*/_jsx(BlogPost,{D_zG5QpOZ:toResponsiveImage(C2oIV2BRHAUlUVUh2K),height:\"100%\",id:\"NlRzGzzbX\",layoutId:\"NlRzGzzbX\",OsLN1TNJO:\"\",style:{height:\"100%\",width:\"100%\"},Ty3eG1I7d:sPlFi5geCAUlUVUh2K,variant:convertFromBoolean(isSet(C2oIV2BRHAUlUVUh2K),activeLocale),VBK4Et3pM:\"rgb(0, 0, 0)\",width:\"100%\",xq8_QLSXL:SHk_gE5LWAUlUVUh2K,XQCQJgsus:false})})})})})})},idAUlUVUh2K);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w48f2t\",\"data-framer-name\":\"5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"uMkMf2O98\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"uMkMf2O98\",name:\"UC_vof_Sb\",type:\"Identifier\"},{collection:\"uMkMf2O98\",name:\"C2oIV2BRH\",type:\"Identifier\"},{collection:\"uMkMf2O98\",name:\"sPlFi5geC\",type:\"Identifier\"},{collection:\"uMkMf2O98\",name:\"SHk_gE5LW\",type:\"Identifier\"},{collection:\"uMkMf2O98\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({C2oIV2BRH:C2oIV2BRHuMkMf2O98,id:iduMkMf2O98,SHk_gE5LW:SHk_gE5LWuMkMf2O98,sPlFi5geC:sPlFi5geCuMkMf2O98,UC_vof_Sb:UC_vof_SbuMkMf2O98},index4)=>{UC_vof_SbuMkMf2O98??=\"\";SHk_gE5LWuMkMf2O98??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`uMkMf2O98-${iduMkMf2O98}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{UC_vof_Sb:UC_vof_SbuMkMf2O98},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{UC_vof_Sb:UC_vof_SbuMkMf2O98},webPageId:\"OgZoz06K1\"},nodeId:\"eRlBjrJgK\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mtbatq framer-1ej22tu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"309px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jygjvq-container\",children:/*#__PURE__*/_jsx(BlogPost,{D_zG5QpOZ:toResponsiveImage(C2oIV2BRHuMkMf2O98),height:\"100%\",id:\"oTC5sCAaS\",layoutId:\"oTC5sCAaS\",OsLN1TNJO:\"\",style:{height:\"100%\",width:\"100%\"},Ty3eG1I7d:sPlFi5geCuMkMf2O98,variant:convertFromBoolean(isSet(C2oIV2BRHuMkMf2O98),activeLocale),VBK4Et3pM:\"rgb(0, 0, 0)\",width:\"100%\",xq8_QLSXL:SHk_gE5LWuMkMf2O98,XQCQJgsus:false})})})})})})},iduMkMf2O98);})})})})})],startFrom:1,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-500),pixelHeight:2782,pixelWidth:2803,sizes:\"1219px\",src:\"https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg\",srcSet:\"https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=512 512w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg 2803w\"},className:\"framer-1p55wcr\",\"data-framer-name\":\"Blured Star\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+106.25599765945049),pixelHeight:2782,pixelWidth:2803,sizes:\"1219px\",src:\"https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg\",srcSet:\"https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=512 512w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg 2803w\"}},v0gepbOPl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+112.74517261556514),pixelHeight:2782,pixelWidth:2803,sizes:\"1219px\",src:\"https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg\",srcSet:\"https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=512 512w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg 2803w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+61.80514921006488),pixelHeight:2782,pixelWidth:2803,sizes:\"1219px\",src:\"https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg\",srcSet:\"https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=512 512w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pHFFC4EmZCpmrtijE4ojlzi519s.svg 2803w\"},className:\"framer-a7brz2\",\"data-framer-name\":\"Blured Star\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{y:(componentViewport?.y||0)+60+1664},v0gepbOPl:{y:(componentViewport?.y||0)+0+1744}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:482,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+60+1527,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1skzki8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ai3baZdeL:{variant:\"n2Q6VjzXc\"},gYIJ3ZGPp:{variant:\"F8izzpDcl\"},v0gepbOPl:{variant:\"Hu_R4Y97Z\"}},children:/*#__PURE__*/_jsx(FooterNew,{height:\"100%\",HojGyWezV:\"info@solareuml1.com\",id:\"Atfkexq99\",layoutId:\"Atfkexq99\",style:{width:\"100%\"},variant:\"P1Lmla9_x\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(8, 8, 8); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AHIQY.framer-1ej22tu, .framer-AHIQY .framer-1ej22tu { display: block; }\",\".framer-AHIQY.framer-12b7l9x { align-content: center; align-items: center; background-color: #080808; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-AHIQY .framer-jqg6tn { align-content: center; align-items: center; background: linear-gradient(0deg, rgba(8, 8, 8, 0) 0%, rgb(8, 8, 8) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 30px 0px 30px 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-AHIQY .framer-1g3c7az-container { flex: none; height: auto; max-width: 1280px; position: relative; width: 89%; z-index: 1; }\",\".framer-AHIQY.framer-9alf47 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-AHIQY.framer-1rrpcsk { align-content: center; align-items: center; background-color: #000000; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; overflow: hidden; padding: 0px 0px 40px 0px; position: fixed; right: 0px; top: 0px; width: 360px; z-index: 10; }\",\".framer-AHIQY .framer-ssronm { 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: 40px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-12yhvfg { aspect-ratio: 1.636363609712624 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); position: relative; width: 128px; }\",\".framer-AHIQY .framer-bx3sp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 30px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-qqhu6p, .framer-AHIQY .framer-119l494, .framer-AHIQY .framer-k4lq7a { aspect-ratio: 1 / 1; background-color: rgba(78, 223, 145, 0.1); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; text-decoration: none; width: 50px; }\",\".framer-AHIQY .framer-1572vw4, .framer-AHIQY .framer-1s0qf3h, .framer-AHIQY .framer-1kucphq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 20px; }\",\".framer-AHIQY .framer-mehoz2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-14tmfhx, .framer-AHIQY .framer-1acks4o, .framer-AHIQY .framer-yz3owe, .framer-AHIQY .framer-1fyudo2 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.05); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: 30px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-79mcl9-container, .framer-AHIQY .framer-fw3g1c-container, .framer-AHIQY .framer-198vfet-container, .framer-AHIQY .framer-1is6nyk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AHIQY .framer-146kvnr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: flex-end; left: 15px; overflow: visible; padding: 0px; position: absolute; right: 15px; top: 15px; z-index: 1; }\",\".framer-AHIQY .framer-1dofjbp { cursor: pointer; flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-AHIQY .framer-fj2np4 { flex: none; height: 13px; left: calc(50.00000000000002% - 20px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 13px / 2); width: 20px; }\",\".framer-AHIQY .framer-sc8bfr, .framer-AHIQY .framer-120pjvb { background-color: #ffffff; flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(46.15384615384618% - 1px / 2); }\",\".framer-AHIQY .framer-uair8j { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 800px); opacity: 0.11; overflow: visible; pointer-events: none; position: absolute; right: -500px; top: -300px; width: 800px; z-index: 0; }\",\".framer-AHIQY .framer-1d39th5 { flex: none; height: 1500px; left: calc(49.958982772764585% - 1500px / 2); position: absolute; top: calc(49.958982772764585% - 1500px / 2); width: 1500px; }\",\".framer-AHIQY .framer-129pbi8 { 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 30px 0px 30px; position: relative; text-decoration: none; width: 100%; }\",\".framer-AHIQY .framer-b3opzc-container { flex: none; height: auto; min-width: 200px; position: relative; width: auto; }\",\".framer-AHIQY .framer-9hm5hq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-105w2rl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AHIQY .framer-u2utcb { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 848px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AHIQY .framer-xmchae-container { cursor: pointer; flex: 1 0 0px; height: 56px; max-width: 848px; position: relative; width: 1px; z-index: 3; }\",\".framer-AHIQY .framer-eaxrw5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; left: 20px; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: min-content; z-index: 1; }\",\".framer-AHIQY .framer-ldeuv9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 16px; }\",\".framer-AHIQY .framer-19o2er6 { flex: none; height: 16px; left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-AHIQY .framer-y0h3wx { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.2; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-AHIQY .framer-y78kl4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 0px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-15ashy6 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 429px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-euqu9q { background: linear-gradient(223deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.89) 66.42032657657657%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: -1px; flex: none; left: -1px; overflow: hidden; position: absolute; right: -1px; top: -1px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-AHIQY .framer-146oabg { background-color: #21222c; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-AHIQY .framer-1ub4w6g { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 85px; justify-content: center; left: 20px; overflow: hidden; padding: 20px; position: absolute; top: 20px; width: 79px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AHIQY .framer-d1hfj9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-AHIQY .framer-9bna7l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 980px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-6w8map { flex: none; height: auto; max-width: 613px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-AHIQY .framer-rk0jd7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 613px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-AHIQY .framer-i56hiu { align-content: flex-start; align-items: flex-start; bottom: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; max-width: 980px; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-AHIQY .framer-1g897is { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AHIQY .framer-eygx7d { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AHIQY .framer-pj1nrm, .framer-AHIQY .framer-1jsgqfm { cursor: pointer; flex: none; height: 30px; overflow: hidden; position: relative; width: 30px; }\",\".framer-AHIQY .framer-1m4k54i, .framer-AHIQY .framer-vzq2em, .framer-AHIQY .framer-uzjo9c, .framer-AHIQY .framer-qtyat3 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-AHIQY .framer-17xgrn2, .framer-AHIQY .framer-b8ke30 { cursor: pointer; flex: none; height: 30px; overflow: hidden; position: relative; width: 31px; }\",\".framer-AHIQY .framer-1cocnk5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-AHIQY .framer-1vmrqbs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 845px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AHIQY .framer-160onoy { aspect-ratio: 2.1446700507614214 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 93px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AHIQY .framer-3zmpro { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AHIQY .framer-fbd73s { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 309px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AHIQY .framer-1k8ox9s-container { flex: none; height: 490px; position: relative; width: 100%; z-index: 1; }\",\".framer-AHIQY .framer-1g4984d, .framer-AHIQY .framer-k1lrty, .framer-AHIQY .framer-zbaoxh, .framer-AHIQY .framer-17ghphp, .framer-AHIQY .framer-1w48f2t { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 309px; }\",\".framer-AHIQY .framer-15zks53, .framer-AHIQY .framer-t2slcl, .framer-AHIQY .framer-1ghza7b, .framer-AHIQY .framer-1jlrdpy, .framer-AHIQY .framer-1mtbatq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-AHIQY .framer-49d3wh-container, .framer-AHIQY .framer-1hg49bm-container, .framer-AHIQY .framer-162gbz4-container, .framer-AHIQY .framer-if9vjo-container, .framer-AHIQY .framer-1jygjvq-container { flex: none; height: 440px; position: relative; width: 100%; }\",\".framer-AHIQY .framer-1p55wcr { -webkit-filter: blur(100px); filter: blur(100px); flex: none; height: 1219px; overflow: visible; pointer-events: none; position: absolute; right: -500px; top: -500px; width: 1219px; z-index: 0; }\",\".framer-AHIQY .framer-a7brz2 { -webkit-filter: blur(100px); filter: blur(100px); flex: none; height: 1219px; left: -300px; overflow: visible; pointer-events: none; position: absolute; top: calc(32.44587478057346% - 1219px / 2); width: 1219px; z-index: 0; }\",\".framer-AHIQY .framer-1skzki8-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AHIQY.framer-12b7l9x, .framer-AHIQY .framer-jqg6tn, .framer-AHIQY .framer-ssronm, .framer-AHIQY .framer-bx3sp, .framer-AHIQY .framer-mehoz2, .framer-AHIQY .framer-14tmfhx, .framer-AHIQY .framer-1acks4o, .framer-AHIQY .framer-yz3owe, .framer-AHIQY .framer-1fyudo2, .framer-AHIQY .framer-146kvnr, .framer-AHIQY .framer-129pbi8, .framer-AHIQY .framer-9hm5hq, .framer-AHIQY .framer-u2utcb, .framer-AHIQY .framer-eaxrw5, .framer-AHIQY .framer-y78kl4, .framer-AHIQY .framer-15ashy6, .framer-AHIQY .framer-1ub4w6g, .framer-AHIQY .framer-9bna7l, .framer-AHIQY .framer-i56hiu, .framer-AHIQY .framer-1g897is, .framer-AHIQY .framer-1cocnk5, .framer-AHIQY .framer-1vmrqbs, .framer-AHIQY .framer-fbd73s, .framer-AHIQY .framer-1g4984d, .framer-AHIQY .framer-15zks53, .framer-AHIQY .framer-k1lrty, .framer-AHIQY .framer-t2slcl, .framer-AHIQY .framer-zbaoxh, .framer-AHIQY .framer-1ghza7b, .framer-AHIQY .framer-17ghphp, .framer-AHIQY .framer-1jlrdpy, .framer-AHIQY .framer-1w48f2t, .framer-AHIQY .framer-1mtbatq { gap: 0px; } .framer-AHIQY.framer-12b7l9x > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-AHIQY.framer-12b7l9x > :first-child, .framer-AHIQY .framer-mehoz2 > :first-child, .framer-AHIQY .framer-9hm5hq > :first-child, .framer-AHIQY .framer-y78kl4 > :first-child, .framer-AHIQY .framer-15ashy6 > :first-child, .framer-AHIQY .framer-9bna7l > :first-child, .framer-AHIQY .framer-i56hiu > :first-child, .framer-AHIQY .framer-1vmrqbs > :first-child, .framer-AHIQY .framer-fbd73s > :first-child, .framer-AHIQY .framer-1g4984d > :first-child, .framer-AHIQY .framer-15zks53 > :first-child, .framer-AHIQY .framer-k1lrty > :first-child, .framer-AHIQY .framer-t2slcl > :first-child, .framer-AHIQY .framer-zbaoxh > :first-child, .framer-AHIQY .framer-1ghza7b > :first-child, .framer-AHIQY .framer-17ghphp > :first-child, .framer-AHIQY .framer-1jlrdpy > :first-child, .framer-AHIQY .framer-1w48f2t > :first-child, .framer-AHIQY .framer-1mtbatq > :first-child { margin-top: 0px; } .framer-AHIQY.framer-12b7l9x > :last-child, .framer-AHIQY .framer-mehoz2 > :last-child, .framer-AHIQY .framer-9hm5hq > :last-child, .framer-AHIQY .framer-y78kl4 > :last-child, .framer-AHIQY .framer-15ashy6 > :last-child, .framer-AHIQY .framer-9bna7l > :last-child, .framer-AHIQY .framer-i56hiu > :last-child, .framer-AHIQY .framer-1vmrqbs > :last-child, .framer-AHIQY .framer-fbd73s > :last-child, .framer-AHIQY .framer-1g4984d > :last-child, .framer-AHIQY .framer-15zks53 > :last-child, .framer-AHIQY .framer-k1lrty > :last-child, .framer-AHIQY .framer-t2slcl > :last-child, .framer-AHIQY .framer-zbaoxh > :last-child, .framer-AHIQY .framer-1ghza7b > :last-child, .framer-AHIQY .framer-17ghphp > :last-child, .framer-AHIQY .framer-1jlrdpy > :last-child, .framer-AHIQY .framer-1w48f2t > :last-child, .framer-AHIQY .framer-1mtbatq > :last-child { margin-bottom: 0px; } .framer-AHIQY .framer-jqg6tn > *, .framer-AHIQY .framer-ssronm > *, .framer-AHIQY .framer-14tmfhx > *, .framer-AHIQY .framer-1acks4o > *, .framer-AHIQY .framer-yz3owe > *, .framer-AHIQY .framer-1fyudo2 > *, .framer-AHIQY .framer-146kvnr > *, .framer-AHIQY .framer-129pbi8 > *, .framer-AHIQY .framer-u2utcb > *, .framer-AHIQY .framer-1ub4w6g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AHIQY .framer-jqg6tn > :first-child, .framer-AHIQY .framer-ssronm > :first-child, .framer-AHIQY .framer-bx3sp > :first-child, .framer-AHIQY .framer-14tmfhx > :first-child, .framer-AHIQY .framer-1acks4o > :first-child, .framer-AHIQY .framer-yz3owe > :first-child, .framer-AHIQY .framer-1fyudo2 > :first-child, .framer-AHIQY .framer-146kvnr > :first-child, .framer-AHIQY .framer-129pbi8 > :first-child, .framer-AHIQY .framer-u2utcb > :first-child, .framer-AHIQY .framer-eaxrw5 > :first-child, .framer-AHIQY .framer-1ub4w6g > :first-child, .framer-AHIQY .framer-1g897is > :first-child, .framer-AHIQY .framer-1cocnk5 > :first-child { margin-left: 0px; } .framer-AHIQY .framer-jqg6tn > :last-child, .framer-AHIQY .framer-ssronm > :last-child, .framer-AHIQY .framer-bx3sp > :last-child, .framer-AHIQY .framer-14tmfhx > :last-child, .framer-AHIQY .framer-1acks4o > :last-child, .framer-AHIQY .framer-yz3owe > :last-child, .framer-AHIQY .framer-1fyudo2 > :last-child, .framer-AHIQY .framer-146kvnr > :last-child, .framer-AHIQY .framer-129pbi8 > :last-child, .framer-AHIQY .framer-u2utcb > :last-child, .framer-AHIQY .framer-eaxrw5 > :last-child, .framer-AHIQY .framer-1ub4w6g > :last-child, .framer-AHIQY .framer-1g897is > :last-child, .framer-AHIQY .framer-1cocnk5 > :last-child { margin-right: 0px; } .framer-AHIQY .framer-bx3sp > *, .framer-AHIQY .framer-1g897is > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-AHIQY .framer-mehoz2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AHIQY .framer-9hm5hq > *, .framer-AHIQY .framer-y78kl4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-AHIQY .framer-eaxrw5 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-AHIQY .framer-15ashy6 > *, .framer-AHIQY .framer-9bna7l > *, .framer-AHIQY .framer-i56hiu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AHIQY .framer-1cocnk5 > * { margin: 0px; margin-left: calc(130px / 2); margin-right: calc(130px / 2); } .framer-AHIQY .framer-1vmrqbs > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-AHIQY .framer-fbd73s > *, .framer-AHIQY .framer-15zks53 > *, .framer-AHIQY .framer-t2slcl > *, .framer-AHIQY .framer-1ghza7b > *, .framer-AHIQY .framer-1jlrdpy > *, .framer-AHIQY .framer-1mtbatq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-AHIQY .framer-1g4984d > *, .framer-AHIQY .framer-k1lrty > *, .framer-AHIQY .framer-zbaoxh > *, .framer-AHIQY .framer-17ghphp > *, .framer-AHIQY .framer-1w48f2t > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-AHIQY[data-border=\"true\"]::after, .framer-AHIQY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-AHIQY.framer-12b7l9x { width: 1200px; } .framer-AHIQY .framer-1g3c7az-container, .framer-AHIQY .framer-y78kl4 { max-width: 1140px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-AHIQY.framer-12b7l9x { width: 810px; } .framer-AHIQY .framer-1g3c7az-container { max-width: unset; } .framer-AHIQY .framer-1572vw4 { height: var(--framer-aspect-ratio-supported, 21px); } .framer-AHIQY .framer-1s0qf3h, .framer-AHIQY .framer-1kucphq { height: var(--framer-aspect-ratio-supported, 14px); } .framer-AHIQY .framer-u2utcb { max-width: 600px; } .framer-AHIQY .framer-y78kl4 { max-width: 790px; } .framer-AHIQY .framer-1cocnk5 { flex-direction: column; } .framer-AHIQY .framer-1vmrqbs { flex: none; width: 100%; } .framer-AHIQY .framer-fbd73s { flex: none; flex-direction: row; max-width: unset; width: 100%; } .framer-AHIQY .framer-1k8ox9s-container { flex: 1 0 0px; height: 401px; max-width: 309px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AHIQY .framer-1cocnk5, .framer-AHIQY .framer-fbd73s { gap: 0px; } .framer-AHIQY .framer-1cocnk5 > * { margin: 0px; margin-bottom: calc(130px / 2); margin-top: calc(130px / 2); } .framer-AHIQY .framer-1cocnk5 > :first-child { margin-top: 0px; } .framer-AHIQY .framer-1cocnk5 > :last-child { margin-bottom: 0px; } .framer-AHIQY .framer-fbd73s > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-AHIQY .framer-fbd73s > :first-child { margin-left: 0px; } .framer-AHIQY .framer-fbd73s > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-AHIQY.framer-12b7l9x { gap: 60px; padding: 0px; width: 390px; } .framer-AHIQY .framer-jqg6tn { left: unset; padding: 0px; position: relative; top: unset; transform: unset; } .framer-AHIQY .framer-1g3c7az-container { max-width: unset; width: 98%; } .framer-AHIQY.framer-1rrpcsk { width: 320px; } .framer-AHIQY .framer-1572vw4 { height: var(--framer-aspect-ratio-supported, 21px); } .framer-AHIQY .framer-1s0qf3h, .framer-AHIQY .framer-1kucphq { height: var(--framer-aspect-ratio-supported, 14px); } .framer-AHIQY .framer-b3opzc-container { flex: 1 0 0px; width: 1px; } .framer-AHIQY .framer-9hm5hq { gap: 30px; padding: 0px; } .framer-AHIQY .framer-u2utcb, .framer-AHIQY .framer-y78kl4 { max-width: 370px; } .framer-AHIQY .framer-15ashy6 { height: 665px; } .framer-AHIQY .framer-9bna7l, .framer-AHIQY .framer-i56hiu { max-width: 350px; } .framer-AHIQY .framer-1cocnk5 { align-content: center; align-items: center; flex-direction: column; } .framer-AHIQY .framer-1vmrqbs { flex: none; max-width: 370px; width: 100%; } .framer-AHIQY .framer-fbd73s { flex: none; width: 100%; } .framer-AHIQY .framer-1k8ox9s-container { height: 401px; max-width: 309px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AHIQY.framer-12b7l9x, .framer-AHIQY .framer-9hm5hq, .framer-AHIQY .framer-1cocnk5 { gap: 0px; } .framer-AHIQY.framer-12b7l9x > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-AHIQY.framer-12b7l9x > :first-child, .framer-AHIQY .framer-9hm5hq > :first-child, .framer-AHIQY .framer-1cocnk5 > :first-child { margin-top: 0px; } .framer-AHIQY.framer-12b7l9x > :last-child, .framer-AHIQY .framer-9hm5hq > :last-child, .framer-AHIQY .framer-1cocnk5 > :last-child { margin-bottom: 0px; } .framer-AHIQY .framer-9hm5hq > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-AHIQY .framer-1cocnk5 > * { margin: 0px; margin-bottom: calc(130px / 2); margin-top: calc(130px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6534\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gYIJ3ZGPp\":{\"layout\":[\"fixed\",\"auto\"]},\"Ai3baZdeL\":{\"layout\":[\"fixed\",\"auto\"]},\"v0gepbOPl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FramerOgZoz06K1=withCSS(Component,css,\"framer-AHIQY\");export default FramerOgZoz06K1;FramerOgZoz06K1.displayName=\"Blog Detail\";FramerOgZoz06K1.defaultProps={height:6534,width:1440};addFonts(FramerOgZoz06K1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Lufga Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Pmd3rrOgadJ9iJL6yECT7ab6MY.woff2\"},{family:\"Lufga Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/dzvaXByaVQhBNtRlG4JNIOVmoBQ.woff2\"},{family:\"Lufga Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/6vjoaheudQZZ2vE9zZI7QmsG4HU.woff2\"}]},...MenuFonts,...NavLinkFonts,...PrimaryButtonFonts,...SearchFonts,...BlogPostFonts,...SlideshowFonts,...FooterNewFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...componentPresets.fonts?.[\"QMq0pd9Rg\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"QMq0pd9Rg\"]):[],...componentPresets.fonts?.[\"rx6u8oILr\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"rx6u8oILr\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOgZoz06K1\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerLayoutTemplateCompatible\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gYIJ3ZGPp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ai3baZdeL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v0gepbOPl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6534\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "Twitter_Share", "Component", "props", "pageTitle", "setPageTitle", "ye", "ue", "p", "_window_location", "_window", "window", "LinkedIn_Share", "Facebook_Share", "Whatsapp_Share", "Component", "props", "p", "_window_location", "_window", "window", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MenuFonts", "getFonts", "VJIo5Ji4Q_default", "NavLinkFonts", "f4RjbE3mp_default", "PrimaryButtonFonts", "knCDuo0jT_default", "SearchFonts", "Search_default", "MotionDivWithFX", "withFX", "motion", "RichTextUpdatedate", "updatedate", "RichText2", "MotionDivFacebook_Share", "Facebook_Share", "MotionDivWhatsapp_Share", "Whatsapp_Share", "MotionDivLinkedIn_Share", "LinkedIn_Share", "MotionDivTwitter_Share", "Twitter_Share", "BlogPostFonts", "eFAK34yOR_default", "SlideshowFonts", "Slideshow", "FooterNewFonts", "IR8z7Y2GH_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation3", "transition2", "animation4", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "isSet", "negate", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "convertFromBoolean", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "EMPy0ERXf_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "C2oIV2BRH", "sPlFi5geC", "SHk_gE5LW", "j7KgGt3hR", "ITr2vvUXv", "sJtjWpzSK", "UC_vof_SbEk8jOFzgL", "C2oIV2BRHEk8jOFzgL", "sPlFi5geCEk8jOFzgL", "SHk_gE5LWEk8jOFzgL", "idEk8jOFzgL", "UC_vof_SbKpUQbiYz2", "C2oIV2BRHKpUQbiYz2", "sPlFi5geCKpUQbiYz2", "SHk_gE5LWKpUQbiYz2", "idKpUQbiYz2", "UC_vof_SbAwkb28iCF", "C2oIV2BRHAwkb28iCF", "sPlFi5geCAwkb28iCF", "SHk_gE5LWAwkb28iCF", "idAwkb28iCF", "UC_vof_SbAUlUVUh2K", "C2oIV2BRHAUlUVUh2K", "sPlFi5geCAUlUVUh2K", "SHk_gE5LWAUlUVUh2K", "idAUlUVUh2K", "UC_vof_SbuMkMf2O98", "C2oIV2BRHuMkMf2O98", "sPlFi5geCuMkMf2O98", "SHk_gE5LWuMkMf2O98", "iduMkMf2O98", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "JwTskbloj3bnx0g", "overlay", "loadMore", "args", "EcyzaWDBh1wnntms", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "visible1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "l", "PropertyOverrides2", "ComponentViewportProvider", "Container", "VJIo5Ji4Q_default", "AnimatePresence", "Ga", "x", "Image2", "Link", "ResolveLinks", "resolvedLinks", "f4RjbE3mp_default", "resolvedLinks1", "resolvedLinks2", "SVG", "knCDuo0jT_default", "MotionDivWithFX", "RichText2", "Search_default", "resolvePageScope", "getLoadingLazyAtYPosition", "RichTextUpdatedate", "MotionDivFacebook_Share", "MotionDivWhatsapp_Share", "MotionDivLinkedIn_Share", "MotionDivTwitter_Share", "ComponentPresetsProvider", "Slideshow", "ChildrenCanSuspend", "collection", "paginationInfo", "index", "PathVariablesContext", "eFAK34yOR_default", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "IR8z7Y2GH_default", "css", "FramerOgZoz06K1", "withCSS", "OgZoz06K1_default", "addFonts", "MenuFonts", "NavLinkFonts", "PrimaryButtonFonts", "SearchFonts", "BlogPostFonts", "SlideshowFonts", "FooterNewFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
