{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/JKW9bvgl98IfdIi78dfW/k9sLdYurTp1GRlYVCsb0/Counter1.js", "ssg:https://framerusercontent.com/modules/hmfaDHrMtPta71Y4nsP6/9DDoCfgMqi7U2Q3FeTAT/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;setCount(prevCount=>{const nextCount=parseFloat((prevCount+increment).toFixed(2));return nextCount>=end?end:nextCount;});};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Navigation from\"#framer/local/canvasComponent/GB2y_NNM5/GB2y_NNM5.js\";import{Counter}from\"#framer/local/codeFile/nR73hbV/Counter1.js\";import*as sharedStyle from\"#framer/local/css/DvuDG42hg/DvuDG42hg.js\";import*as sharedStyle1 from\"#framer/local/css/IZdljOEaO/IZdljOEaO.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const CounterFonts=getFonts(Counter);const breakpoints={MH0n1OpIk:\"(min-width: 499px) and (max-width: 849px)\",ogGxHQxO0:\"(min-width: 850px) and (max-width: 1199px)\",sPPnMOCK9:\"(max-width: 498px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5WNcz\";const variantClassNames={MH0n1OpIk:\"framer-v-78aids\",ogGxHQxO0:\"framer-v-1se5com\",sPPnMOCK9:\"framer-v-1ses2y1\",WQLkyLRf1:\"framer-v-72rtr7\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Phone 2\":\"sPPnMOCK9\",Desktop:\"WQLkyLRf1\",Phone:\"MH0n1OpIk\",Tablet:\"ogGxHQxO0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wihjhv-container\",nodeId:\"Wdnsu8tkb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MH0n1OpIk:{variant:\"TNhedBrWN\"},sPPnMOCK9:{variant:\"TNhedBrWN\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Wdnsu8tkb\",layoutId:\"Wdnsu8tkb\",style:{width:\"100%\"},variant:\"yuLBWQukL\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14dsshr\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ertp4h\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dkvm7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"The Fastest Growing GenZ Media\"})}),className:\"framer-1ud68ci\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Interested in joining the fastest growing movement? Fill out the application!\"})}),className:\"framer-5bfj4s\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13q2r5c\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f8VGXScyw\"},motionChild:true,nodeId:\"o45yZcp3k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1go46yh framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apply Now\"})}),className:\"framer-hdgmzh\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MH0n1OpIk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1080,sizes:\"409px\",src:\"https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg 1080w\"}},ogGxHQxO0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1080,sizes:\"409px\",src:\"https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg 1080w\"}},sPPnMOCK9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1080,sizes:\"370px\",src:\"https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1080,pixelWidth:1080,sizes:\"566px\",src:\"https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YrWN8HSdSfJohe4piCn1kahonNY.jpeg 1080w\"},className:\"framer-15i1f52\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5qxhbs\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"By The Stats\"})}),className:\"framer-8rh0wc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vfgj81\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ko91it\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bilmds\",\"data-styles-preset\":\"DvuDG42hg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Views:\"})}),className:\"framer-1dhxop1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rnq1xt-container\",isAuthoredByUser:true,nodeId:\"SCstb8RtQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"period\",end:3,gapSize:0,height:\"100%\",id:\"SCstb8RtQ\",incrementType:\"decimal\",layoutId:\"SCstb8RtQ\",loop:false,prefixColor:\"rgb(3, 204, 0)\",prefixFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:90,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"rgb(0, 0, 0)\",suffixFont:{},suffixText:\"B\",textColor:\"rgb(0, 0, 0)\",textSize:40,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b538cj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bilmds\",\"data-styles-preset\":\"DvuDG42hg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fans:\"})}),className:\"framer-1ge6y5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wqpqks-container\",isAuthoredByUser:true,nodeId:\"z75yaP2PJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:550,gapSize:0,height:\"100%\",id:\"z75yaP2PJ\",incrementType:\"integer\",layoutId:\"z75yaP2PJ\",loop:false,prefixColor:\"rgb(3, 204, 0)\",prefixFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:4,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"rgb(0, 0, 0)\",suffixFont:{},suffixText:\"K\",textColor:\"rgb(0, 0, 0)\",textSize:40,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1up7gu8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bilmds\",\"data-styles-preset\":\"DvuDG42hg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Events:\"})}),className:\"framer-13chra0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1srshzz-container\",isAuthoredByUser:true,nodeId:\"AFwIaNJTI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:20,gapSize:0,height:\"100%\",id:\"AFwIaNJTI\",incrementType:\"integer\",layoutId:\"AFwIaNJTI\",loop:false,prefixColor:\"rgb(3, 204, 0)\",prefixFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:100,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"rgb(0, 0, 0)\",suffixFont:{},suffixText:\"+\",textColor:\"rgb(0, 0, 0)\",textSize:40,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j5dcvj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1bilmds\",\"data-styles-preset\":\"DvuDG42hg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Colleges\"})}),className:\"framer-yndqxk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l3rhqu-container\",isAuthoredByUser:true,nodeId:\"e5Qc29g7L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:100,gapSize:0,height:\"100%\",id:\"e5Qc29g7L\",incrementType:\"integer\",layoutId:\"e5Qc29g7L\",loop:false,prefixColor:\"rgb(3, 204, 0)\",prefixFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:30,start:0,startOnViewport:true,style:{width:\"100%\"},suffixColor:\"rgb(0, 0, 0)\",suffixFont:{},suffixText:\"\",textColor:\"rgb(0, 0, 0)\",textSize:40,width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18bw1i0\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ohn2sw\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149mjry\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MH0n1OpIk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1430,pixelWidth:2560,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) * 0.92)`,src:\"https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png 2560w\"}},sPPnMOCK9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1430,pixelWidth:2560,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1000px) * 0.9538)`,src:\"https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1430,pixelWidth:2560,sizes:\"460px\",src:\"https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vyo5hIVDeQyMm5V4vmGj8UwyjEo.png 2560w\"},className:\"framer-l6ckox\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-leanzw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Authentic Media\"})}),className:\"framer-cs2dsd\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"We don't play around with our media 100% authentic \"})}),className:\"framer-x991t5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10joo0h\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f8VGXScyw\"},motionChild:true,nodeId:\"Vs3zjOcBh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sto4pk framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Apply Now\"})}),className:\"framer-vyw6bz\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlde5d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwkq60\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MH0n1OpIk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Every. Single. College.\"})})},ogGxHQxO0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Every. Single. College.\"})})},sPPnMOCK9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Every. Single. College.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Every. Single. College.\"})}),className:\"framer-z32mij\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MH0n1OpIk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"We are on a mission to take over college\"})})},ogGxHQxO0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"We are on a mission to take over college\"})})},sPPnMOCK9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"We are on a mission to take over college\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"We are on a mission to take over college\"})}),className:\"framer-athzwn\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12mztdu\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f8VGXScyw\"},motionChild:true,nodeId:\"QYp5VvlVs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10t7v7f framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})}),className:\"framer-i6gy0v\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MH0n1OpIk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:8192,pixelWidth:5464,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) * 0.9218)`,src:\"https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg 5464w\"}},sPPnMOCK9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:8192,pixelWidth:5464,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1000px) * 0.9218)`,src:\"https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg 5464w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:8192,pixelWidth:5464,sizes:\"460px\",src:\"https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/yBlBwHmjIpFTgJOhWEbTCriPeI.jpg 5464w\"},className:\"framer-mfe774\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zgcg7f\",\"data-framer-name\":\"Pivot\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-av4fo3\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Join The Fastest Growing College Movement\"})}),className:\"framer-8bl00z\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q86rzl\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"f8VGXScyw\"},motionChild:true,nodeId:\"JFwpwd5wb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1raxgtu framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get Started\"})}),className:\"framer-1h2h81b\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wltp8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8ebb4457-384c-4a88-b9cb-52e778b1464e, rgb(230, 230, 230))\"},children:\"\\xa9 OneBuzz, Inc. 2025\"})}),className:\"framer-1qyd8bi\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mhtppv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-88bdf75b-d5b1-4878-8514-50bae73a787e, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/onebuzzcollege/\",motionChild:true,nodeId:\"MnhHh_q2m\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4dj8cz\",\"data-styles-preset\":\"IZdljOEaO\",children:\"Instagram\"})})})}),className:\"framer-vr0ahd\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Email\"})}),className:\"framer-19f3xq0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5WNcz.framer-lux5qc, .framer-5WNcz .framer-lux5qc { display: block; }\",\".framer-5WNcz.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-5WNcz .framer-1wihjhv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5WNcz .framer-14dsshr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 95%; }\",\".framer-5WNcz .framer-ertp4h { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-5WNcz .framer-1dkvm7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-5WNcz .framer-1ud68ci, .framer-5WNcz .framer-8bl00z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5WNcz .framer-5bfj4s { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5WNcz .framer-13q2r5c, .framer-5WNcz .framer-10joo0h, .framer-5WNcz .framer-12mztdu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5WNcz .framer-1go46yh, .framer-5WNcz .framer-sto4pk, .framer-5WNcz .framer-10t7v7f, .framer-5WNcz .framer-1raxgtu { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-5WNcz .framer-hdgmzh, .framer-5WNcz .framer-vyw6bz, .framer-5WNcz .framer-i6gy0v, .framer-5WNcz .framer-1h2h81b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5WNcz .framer-15i1f52 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 562px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 566px; }\",\".framer-5WNcz .framer-5qxhbs { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 49px 40px 49px 40px; position: relative; width: 100%; }\",\".framer-5WNcz .framer-8rh0wc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-5WNcz .framer-1vfgj81 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 19px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-5WNcz .framer-1ko91it { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-5WNcz .framer-1dhxop1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 42px; position: relative; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-5WNcz .framer-rnq1xt-container, .framer-5WNcz .framer-wqpqks-container, .framer-5WNcz .framer-1srshzz-container, .framer-5WNcz .framer-1l3rhqu-container { flex: none; height: auto; position: relative; width: 96px; }\",\".framer-5WNcz .framer-b538cj, .framer-5WNcz .framer-1up7gu8, .framer-5WNcz .framer-j5dcvj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 225px; }\",\".framer-5WNcz .framer-1ge6y5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 42px; position: relative; white-space: pre-wrap; width: 83px; word-break: break-word; word-wrap: break-word; }\",\".framer-5WNcz .framer-13chra0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 42px; position: relative; white-space: pre-wrap; width: 108px; word-break: break-word; word-wrap: break-word; }\",\".framer-5WNcz .framer-yndqxk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 42px; position: relative; white-space: pre-wrap; width: 121px; word-break: break-word; word-wrap: break-word; }\",\".framer-5WNcz .framer-18bw1i0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-5WNcz .framer-ohn2sw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5WNcz .framer-149mjry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5WNcz .framer-l6ckox, .framer-5WNcz .framer-mfe774 { 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: 20px; height: 280px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 460px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5WNcz .framer-leanzw, .framer-5WNcz .framer-iwkq60 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-5WNcz .framer-cs2dsd, .framer-5WNcz .framer-z32mij { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-5WNcz .framer-x991t5, .framer-5WNcz .framer-athzwn { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-5WNcz .framer-1hlde5d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5WNcz .framer-zgcg7f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-5WNcz .framer-av4fo3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-5WNcz .framer-q86rzl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5WNcz .framer-3wltp8 { align-content: center; align-items: center; background-color: #222222; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 100%; overflow: visible; padding: 50px; position: relative; width: 1200px; }\",\".framer-5WNcz .framer-1qyd8bi, .framer-5WNcz .framer-vr0ahd, .framer-5WNcz .framer-19f3xq0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5WNcz .framer-mhtppv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5WNcz.framer-72rtr7, .framer-5WNcz .framer-14dsshr, .framer-5WNcz .framer-ertp4h, .framer-5WNcz .framer-1dkvm7, .framer-5WNcz .framer-13q2r5c, .framer-5WNcz .framer-1go46yh, .framer-5WNcz .framer-15i1f52, .framer-5WNcz .framer-5qxhbs, .framer-5WNcz .framer-1vfgj81, .framer-5WNcz .framer-1ko91it, .framer-5WNcz .framer-b538cj, .framer-5WNcz .framer-1up7gu8, .framer-5WNcz .framer-j5dcvj, .framer-5WNcz .framer-18bw1i0, .framer-5WNcz .framer-ohn2sw, .framer-5WNcz .framer-149mjry, .framer-5WNcz .framer-l6ckox, .framer-5WNcz .framer-leanzw, .framer-5WNcz .framer-10joo0h, .framer-5WNcz .framer-sto4pk, .framer-5WNcz .framer-1hlde5d, .framer-5WNcz .framer-iwkq60, .framer-5WNcz .framer-12mztdu, .framer-5WNcz .framer-10t7v7f, .framer-5WNcz .framer-mfe774, .framer-5WNcz .framer-zgcg7f, .framer-5WNcz .framer-av4fo3, .framer-5WNcz .framer-q86rzl, .framer-5WNcz .framer-1raxgtu, .framer-5WNcz .framer-mhtppv { gap: 0px; } .framer-5WNcz.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5WNcz.framer-72rtr7 > :first-child, .framer-5WNcz .framer-1dkvm7 > :first-child, .framer-5WNcz .framer-15i1f52 > :first-child, .framer-5WNcz .framer-5qxhbs > :first-child, .framer-5WNcz .framer-ohn2sw > :first-child, .framer-5WNcz .framer-l6ckox > :first-child, .framer-5WNcz .framer-leanzw > :first-child, .framer-5WNcz .framer-iwkq60 > :first-child, .framer-5WNcz .framer-mfe774 > :first-child, .framer-5WNcz .framer-av4fo3 > :first-child { margin-top: 0px; } .framer-5WNcz.framer-72rtr7 > :last-child, .framer-5WNcz .framer-1dkvm7 > :last-child, .framer-5WNcz .framer-15i1f52 > :last-child, .framer-5WNcz .framer-5qxhbs > :last-child, .framer-5WNcz .framer-ohn2sw > :last-child, .framer-5WNcz .framer-l6ckox > :last-child, .framer-5WNcz .framer-leanzw > :last-child, .framer-5WNcz .framer-iwkq60 > :last-child, .framer-5WNcz .framer-mfe774 > :last-child, .framer-5WNcz .framer-av4fo3 > :last-child { margin-bottom: 0px; } .framer-5WNcz .framer-14dsshr > *, .framer-5WNcz .framer-1ko91it > *, .framer-5WNcz .framer-zgcg7f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5WNcz .framer-14dsshr > :first-child, .framer-5WNcz .framer-ertp4h > :first-child, .framer-5WNcz .framer-13q2r5c > :first-child, .framer-5WNcz .framer-1go46yh > :first-child, .framer-5WNcz .framer-1vfgj81 > :first-child, .framer-5WNcz .framer-1ko91it > :first-child, .framer-5WNcz .framer-b538cj > :first-child, .framer-5WNcz .framer-1up7gu8 > :first-child, .framer-5WNcz .framer-j5dcvj > :first-child, .framer-5WNcz .framer-18bw1i0 > :first-child, .framer-5WNcz .framer-149mjry > :first-child, .framer-5WNcz .framer-10joo0h > :first-child, .framer-5WNcz .framer-sto4pk > :first-child, .framer-5WNcz .framer-1hlde5d > :first-child, .framer-5WNcz .framer-12mztdu > :first-child, .framer-5WNcz .framer-10t7v7f > :first-child, .framer-5WNcz .framer-zgcg7f > :first-child, .framer-5WNcz .framer-q86rzl > :first-child, .framer-5WNcz .framer-1raxgtu > :first-child, .framer-5WNcz .framer-mhtppv > :first-child { margin-left: 0px; } .framer-5WNcz .framer-14dsshr > :last-child, .framer-5WNcz .framer-ertp4h > :last-child, .framer-5WNcz .framer-13q2r5c > :last-child, .framer-5WNcz .framer-1go46yh > :last-child, .framer-5WNcz .framer-1vfgj81 > :last-child, .framer-5WNcz .framer-1ko91it > :last-child, .framer-5WNcz .framer-b538cj > :last-child, .framer-5WNcz .framer-1up7gu8 > :last-child, .framer-5WNcz .framer-j5dcvj > :last-child, .framer-5WNcz .framer-18bw1i0 > :last-child, .framer-5WNcz .framer-149mjry > :last-child, .framer-5WNcz .framer-10joo0h > :last-child, .framer-5WNcz .framer-sto4pk > :last-child, .framer-5WNcz .framer-1hlde5d > :last-child, .framer-5WNcz .framer-12mztdu > :last-child, .framer-5WNcz .framer-10t7v7f > :last-child, .framer-5WNcz .framer-zgcg7f > :last-child, .framer-5WNcz .framer-q86rzl > :last-child, .framer-5WNcz .framer-1raxgtu > :last-child, .framer-5WNcz .framer-mhtppv > :last-child { margin-right: 0px; } .framer-5WNcz .framer-ertp4h > *, .framer-5WNcz .framer-1go46yh > *, .framer-5WNcz .framer-18bw1i0 > *, .framer-5WNcz .framer-sto4pk > *, .framer-5WNcz .framer-10t7v7f > *, .framer-5WNcz .framer-1raxgtu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5WNcz .framer-1dkvm7 > *, .framer-5WNcz .framer-15i1f52 > *, .framer-5WNcz .framer-l6ckox > *, .framer-5WNcz .framer-leanzw > *, .framer-5WNcz .framer-iwkq60 > *, .framer-5WNcz .framer-mfe774 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5WNcz .framer-13q2r5c > *, .framer-5WNcz .framer-10joo0h > *, .framer-5WNcz .framer-12mztdu > *, .framer-5WNcz .framer-mhtppv > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-5WNcz .framer-5qxhbs > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-5WNcz .framer-1vfgj81 > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-5WNcz .framer-b538cj > *, .framer-5WNcz .framer-1up7gu8 > *, .framer-5WNcz .framer-j5dcvj > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-5WNcz .framer-ohn2sw > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-5WNcz .framer-149mjry > *, .framer-5WNcz .framer-1hlde5d > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-5WNcz .framer-av4fo3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-5WNcz .framer-q86rzl > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 850px) and (max-width: 1199px) { .framer-5WNcz.framer-72rtr7 { width: 850px; } .framer-5WNcz .framer-14dsshr { height: 500px; } .framer-5WNcz .framer-ertp4h { align-self: unset; height: 100%; padding: 0px 0px 0px 10px; } .framer-5WNcz .framer-15i1f52 { height: 404px; width: 409px; } .framer-5WNcz .framer-5qxhbs { padding: 80px 40px 80px 40px; } .framer-5WNcz .framer-18bw1i0 { padding: 40px 0px 40px 0px; } .framer-5WNcz .framer-ohn2sw { gap: 15px; } .framer-5WNcz .framer-149mjry { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; height: 525px; padding: 0px 0px 0px 40px; } .framer-5WNcz .framer-l6ckox { align-content: flex-start; align-items: flex-start; justify-content: flex-start; } .framer-5WNcz .framer-leanzw { flex: none; width: 100%; } .framer-5WNcz .framer-1hlde5d { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 24px; height: 526px; padding: 0px 40px 0px 0px; } .framer-5WNcz .framer-iwkq60 { align-content: flex-end; align-items: flex-end; flex: none; height: 212px; order: 1; padding: 50px 10px 10px 0px; width: 100%; } .framer-5WNcz .framer-mfe774 { align-content: flex-end; align-items: flex-end; justify-content: flex-start; order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5WNcz .framer-ohn2sw, .framer-5WNcz .framer-149mjry, .framer-5WNcz .framer-1hlde5d { gap: 0px; } .framer-5WNcz .framer-ohn2sw > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-5WNcz .framer-ohn2sw > :first-child, .framer-5WNcz .framer-149mjry > :first-child, .framer-5WNcz .framer-1hlde5d > :first-child { margin-top: 0px; } .framer-5WNcz .framer-ohn2sw > :last-child, .framer-5WNcz .framer-149mjry > :last-child, .framer-5WNcz .framer-1hlde5d > :last-child { margin-bottom: 0px; } .framer-5WNcz .framer-149mjry > *, .framer-5WNcz .framer-1hlde5d > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 499px) and (max-width: 849px) { .framer-5WNcz.framer-72rtr7 { width: 499px; } .framer-5WNcz .framer-14dsshr { flex-direction: column; height: 800px; } .framer-5WNcz .framer-ertp4h { align-self: unset; height: 399px; order: 1; padding: 0px 0px 0px 10px; width: 98%; } .framer-5WNcz .framer-1go46yh { box-shadow: 0px 0.6021873017743928px 3.010936508871964px -1.6666666666666665px rgba(0, 0, 0, 0.19), 0px 2.288533303243457px 11.442666516217285px -3.333333333333333px rgba(0, 0, 0, 0.15423), 0px 10px 50px -5px rgba(0, 0, 0, 0); } .framer-5WNcz .framer-15i1f52 { height: 404px; order: 0; width: 409px; } .framer-5WNcz .framer-5qxhbs { padding: 55px 40px 55px 40px; } .framer-5WNcz .framer-1vfgj81, .framer-5WNcz .framer-ohn2sw { gap: 15px; } .framer-5WNcz .framer-18bw1i0 { padding: 39px 0px 39px 0px; } .framer-5WNcz .framer-149mjry { flex-direction: column; gap: 25px; height: 525px; } .framer-5WNcz .framer-l6ckox { align-content: flex-start; align-items: flex-start; height: 50%; order: 0; width: 92%; } .framer-5WNcz .framer-leanzw { flex: none; gap: 15px; height: 41%; order: 1; padding: 6px 0px 6px 25px; width: 100%; } .framer-5WNcz .framer-cs2dsd { height: 30%; width: 80%; } .framer-5WNcz .framer-x991t5 { height: 36%; width: 80%; } .framer-5WNcz .framer-10joo0h { height: 40px; width: 105px; } .framer-5WNcz .framer-sto4pk { height: 100%; width: 100%; } .framer-5WNcz .framer-1hlde5d { flex-direction: column; gap: 0px; height: 650px; } .framer-5WNcz .framer-iwkq60 { align-content: flex-end; align-items: flex-end; flex: none; gap: 15px; height: 325px; order: 1; padding: 6px 25px 6px 0px; width: 100%; } .framer-5WNcz .framer-z32mij { width: 322px; } .framer-5WNcz .framer-athzwn { height: 23%; width: 76%; } .framer-5WNcz .framer-mfe774 { align-content: flex-end; align-items: flex-end; height: 43%; justify-content: flex-start; order: 0; width: 92%; } .framer-5WNcz .framer-zgcg7f { padding: 37px 40px 37px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5WNcz .framer-14dsshr, .framer-5WNcz .framer-1vfgj81, .framer-5WNcz .framer-ohn2sw, .framer-5WNcz .framer-149mjry, .framer-5WNcz .framer-leanzw, .framer-5WNcz .framer-1hlde5d, .framer-5WNcz .framer-iwkq60 { gap: 0px; } .framer-5WNcz .framer-14dsshr > *, .framer-5WNcz .framer-1hlde5d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5WNcz .framer-14dsshr > :first-child, .framer-5WNcz .framer-ohn2sw > :first-child, .framer-5WNcz .framer-149mjry > :first-child, .framer-5WNcz .framer-leanzw > :first-child, .framer-5WNcz .framer-1hlde5d > :first-child, .framer-5WNcz .framer-iwkq60 > :first-child { margin-top: 0px; } .framer-5WNcz .framer-14dsshr > :last-child, .framer-5WNcz .framer-ohn2sw > :last-child, .framer-5WNcz .framer-149mjry > :last-child, .framer-5WNcz .framer-leanzw > :last-child, .framer-5WNcz .framer-1hlde5d > :last-child, .framer-5WNcz .framer-iwkq60 > :last-child { margin-bottom: 0px; } .framer-5WNcz .framer-1vfgj81 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-5WNcz .framer-1vfgj81 > :first-child { margin-left: 0px; } .framer-5WNcz .framer-1vfgj81 > :last-child { margin-right: 0px; } .framer-5WNcz .framer-ohn2sw > *, .framer-5WNcz .framer-leanzw > *, .framer-5WNcz .framer-iwkq60 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-5WNcz .framer-149mjry > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }}\",\"@media (max-width: 498px) { .framer-5WNcz.framer-72rtr7 { width: 390px; } .framer-5WNcz .framer-14dsshr { flex-direction: column; height: 800px; } .framer-5WNcz .framer-ertp4h { align-self: unset; height: 399px; order: 1; padding: 0px 0px 0px 10px; width: 98%; } .framer-5WNcz .framer-1dkvm7 { width: 367px; } .framer-5WNcz .framer-1ud68ci { order: 0; } .framer-5WNcz .framer-5bfj4s { order: 1; } .framer-5WNcz .framer-13q2r5c { order: 2; } .framer-5WNcz .framer-1go46yh { box-shadow: 0px 0.6021873017743928px 3.010936508871964px -1.6666666666666665px rgba(0, 0, 0, 0.19), 0px 2.288533303243457px 11.442666516217285px -3.333333333333333px rgba(0, 0, 0, 0.15423), 0px 10px 50px -5px rgba(0, 0, 0, 0); } .framer-5WNcz .framer-15i1f52 { height: 363px; order: 0; width: 370px; } .framer-5WNcz .framer-5qxhbs { padding: 55px 40px 55px 40px; } .framer-5WNcz .framer-1vfgj81 { gap: 15px; } .framer-5WNcz .framer-18bw1i0 { flex-direction: column; padding: 16px 0px 16px 0px; } .framer-5WNcz .framer-ohn2sw { flex: none; gap: 15px; width: 100%; } .framer-5WNcz .framer-149mjry { flex-direction: column; gap: 25px; height: 525px; } .framer-5WNcz .framer-l6ckox { align-content: flex-start; align-items: flex-start; height: 40%; order: 0; width: 95%; } .framer-5WNcz .framer-leanzw { flex: none; gap: 15px; height: 41%; order: 1; padding: 6px 0px 6px 25px; width: 100%; } .framer-5WNcz .framer-cs2dsd { height: 55%; width: 75%; } .framer-5WNcz .framer-x991t5 { height: 36%; width: 80%; } .framer-5WNcz .framer-10joo0h { height: 40px; width: 105px; } .framer-5WNcz .framer-sto4pk { box-shadow: unset; height: 100%; width: 100%; } .framer-5WNcz .framer-1hlde5d { flex-direction: column; gap: 0px; height: 647px; } .framer-5WNcz .framer-iwkq60 { align-content: flex-end; align-items: flex-end; flex: none; gap: 15px; height: 280px; order: 1; padding: 6px 25px 6px 0px; width: 100%; } .framer-5WNcz .framer-z32mij { width: 322px; } .framer-5WNcz .framer-athzwn { height: 26%; width: 71%; } .framer-5WNcz .framer-10t7v7f { box-shadow: unset; } .framer-5WNcz .framer-mfe774 { align-content: flex-end; align-items: flex-end; height: 43%; justify-content: flex-start; order: 0; width: 92%; } .framer-5WNcz .framer-zgcg7f { flex-direction: column; padding: 26px 40px 26px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5WNcz .framer-14dsshr, .framer-5WNcz .framer-1vfgj81, .framer-5WNcz .framer-18bw1i0, .framer-5WNcz .framer-ohn2sw, .framer-5WNcz .framer-149mjry, .framer-5WNcz .framer-leanzw, .framer-5WNcz .framer-1hlde5d, .framer-5WNcz .framer-iwkq60, .framer-5WNcz .framer-zgcg7f { gap: 0px; } .framer-5WNcz .framer-14dsshr > *, .framer-5WNcz .framer-1hlde5d > *, .framer-5WNcz .framer-zgcg7f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5WNcz .framer-14dsshr > :first-child, .framer-5WNcz .framer-18bw1i0 > :first-child, .framer-5WNcz .framer-ohn2sw > :first-child, .framer-5WNcz .framer-149mjry > :first-child, .framer-5WNcz .framer-leanzw > :first-child, .framer-5WNcz .framer-1hlde5d > :first-child, .framer-5WNcz .framer-iwkq60 > :first-child, .framer-5WNcz .framer-zgcg7f > :first-child { margin-top: 0px; } .framer-5WNcz .framer-14dsshr > :last-child, .framer-5WNcz .framer-18bw1i0 > :last-child, .framer-5WNcz .framer-ohn2sw > :last-child, .framer-5WNcz .framer-149mjry > :last-child, .framer-5WNcz .framer-leanzw > :last-child, .framer-5WNcz .framer-1hlde5d > :last-child, .framer-5WNcz .framer-iwkq60 > :last-child, .framer-5WNcz .framer-zgcg7f > :last-child { margin-bottom: 0px; } .framer-5WNcz .framer-1vfgj81 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-5WNcz .framer-1vfgj81 > :first-child { margin-left: 0px; } .framer-5WNcz .framer-1vfgj81 > :last-child { margin-right: 0px; } .framer-5WNcz .framer-18bw1i0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5WNcz .framer-ohn2sw > *, .framer-5WNcz .framer-leanzw > *, .framer-5WNcz .framer-iwkq60 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-5WNcz .framer-149mjry > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2256\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ogGxHQxO0\":{\"layout\":[\"fixed\",\"auto\"]},\"MH0n1OpIk\":{\"layout\":[\"fixed\",\"auto\"]},\"sPPnMOCK9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-5WNcz\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:2256,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"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:\"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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...NavigationFonts,...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"2256\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ogGxHQxO0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MH0n1OpIk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sPPnMOCK9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "nextCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "NavigationFonts", "getFonts", "GB2y_NNM5_default", "CounterFonts", "Counter", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "GB2y_NNM5_default", "RichText2", "x", "Link", "Image2", "Counter", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "CounterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
