{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/LbfyNKjmoEsUNmmvdFOc/Countdown.js", "ssg:https://framerusercontent.com/modules/UmM1PYBZUdMB3zgNH5iK/YKRD1L33dc22LAiQbniH/OSRsXOj8r.js", "ssg:https://framerusercontent.com/modules/r1LuUKa1OAFGXfsgnRjL/60U5ovdTxlV667DV5Z2a/pBQt4MS4U.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{startTransition,useCallback,useEffect,useRef,useState}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;const calculateTimeLeft=(difference,digitCount)=>{if(difference>0){return{days:minTwoDigits(Math.floor(difference/(1e3*60*60*24)),digitCount),hours:minTwoDigits(Math.floor(difference/(1e3*60*60)%24),digitCount),minutes:minTwoDigits(Math.floor(difference/1e3/60%60),digitCount),seconds:minTwoDigits(Math.floor(difference/1e3%60),digitCount)};}return{days:0,hours:0,minutes:0,seconds:0};};function useForceRender(){const[_,set]=useState(0);return useCallback(()=>startTransition(()=>set(v=>v+1)),[]);}function minTwoDigits(number,digitCount){if(digitCount)return number;else return(number<10?\"0\":\"\")+number;}function wrapInSpan(colorValue,string){return /*#__PURE__*/_jsx(\"span\",{style:{color:colorValue},children:string});}function createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor){// Dots as default labels\nlet days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,space,showHours?wrapInSpan(labelColor,`:`):``]});let hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,space,showMinutes?wrapInSpan(labelColor,`:`):``]}):``;let minutes=showHours&&showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,space,showSeconds?wrapInSpan(labelColor,`:`):``]}):``;let seconds=showHours&&showMinutes&&showSeconds?timeLeft.seconds:``;// Custom labels have different logic\n// Dots you want to hide depending on the next item, but labels you do not\n// For example, 20D 4H is a common notation, but you do not want 20:4:, you want 20:4\nif(!labelType){days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,spaceForLabel,wrapInSpan(labelColor,dayLabel)]});hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,spaceForLabel,wrapInSpan(labelColor,hourLabel)]}):``;minutes=showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,spaceForLabel,wrapInSpan(labelColor,minuteLabel)]}):``;seconds=showSeconds?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.seconds,spaceForLabel,wrapInSpan(labelColor,secondLabel)]}):``;}return /*#__PURE__*/_jsxs(_Fragment,{children:[days,space,hours,space,minutes,space,seconds]});}/**\n * COUNTDOWN\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function CountdownTimer(props){const{date,pickTime,font,color,labelColor,displayProps,onComplete}=props;const{digitCount,labelType,numberSpace,labelSpace,dayLabel,hourLabel,minuteLabel,secondLabel,showHours,showMinutes,showSeconds,tabularFont}=displayProps;const[visible,setIsVisible]=useState(false);const difference=+new Date(date).setUTCHours(pickTime)-+new Date;const timeoutRef=useRef(0);if(difference<=0){onComplete===null||onComplete===void 0?void 0:onComplete();clearTimeout(timeoutRef.current);}const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();useEffect(()=>{startTransition(()=>setIsVisible(true));// Don\u2019t want real time on Canvas\nif(isCanvas)return;function tick(){const date=new Date;const next=new Date().setSeconds(date.getSeconds()+1,0)-+date;timeoutRef.current=setTimeout(tick,next);render();}tick();return()=>clearTimeout(timeoutRef.current);},[isCanvas,render]);const timeLeft=calculateTimeLeft(difference,digitCount);const space=numberSpace?\"\":\" \";const spaceForLabel=labelSpace?\"\":\" \";const emptyString=`00:00:00:00`;const timeString=createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,...font,margin:0,padding:0,visibility:visible?\"visible\":\"hidden\",fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:difference>0?timeString:emptyString});}CountdownTimer.displayName=\"Countdown\";const defaultDate=new Date;defaultDate.setDate(defaultDate.getDate()+2);/* Property Controls */addPropertyControls(CountdownTimer,{date:{type:ControlType.Date,title:\"Date\",defaultValue:defaultDate.toISOString()},pickTime:{type:ControlType.Number,min:0,max:24,defaultValue:0,step:1,displayStepper:true,title:\"UTC\",unit:\":00\"},displayProps:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Dots, Labels\",icon:\"boolean\",controls:{digitCount:{title:\"Digits\",type:ControlType.Boolean,enabledTitle:\"One\",disabledTitle:\"Two\",defaultValue:false},labelType:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Dots\",disabledTitle:\"Custom\",defaultValue:true},numberSpace:{type:ControlType.Boolean,title:\"Number\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:false},labelSpace:{type:ControlType.Boolean,title:\"Label\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:true,hidden:props=>props.labelType},dayLabel:{type:ControlType.String,title:\"Days\",defaultValue:\"D\",placeholder:\"D\",hidden:props=>props.labelType},showHours:{title:\"Hours\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},hourLabel:{type:ControlType.String,title:\" \",defaultValue:\"H\",placeholder:\"H\",hidden:props=>props.labelType||!props.showHours},showMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours},minuteLabel:{type:ControlType.String,title:\" \",defaultValue:\"M\",placeholder:\"M\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours||!props.showMinutes},secondLabel:{type:ControlType.String,title:\" \",defaultValue:\"S\",placeholder:\"S\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes||!props.showSeconds},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true}}},font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#999\"},labelColor:{title:\"Label\",type:ControlType.Color,defaultValue:\"rgba(153,153,153,0.5)\"},onComplete:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimer\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countdown.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/yRwSUO5CTfgr4zGMa9pW/LX6DlvRbWzWcWdY13QGY/KFsANTFIO.js\";const cycleOrder=[\"MRSn1Gita\",\"noLRaue0s\"];const serializationHash=\"framer-uRU5a\";const variantClassNames={MRSn1Gita:\"framer-v-1e3vxss\",noLRaue0s:\"framer-v-4klyok\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"MRSn1Gita\",Mobile:\"noLRaue0s\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MRSn1Gita\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MRSn1Gita\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1e3vxss\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"MRSn1Gita\",ref:refBinding,style:{...style},...addPropertyOverrides({noLRaue0s:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3ntb1y\",\"data-styles-preset\":\"KFsANTFIO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"In Partnership with\"})}),className:\"framer-b7vkuk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GMKfY0Fqm\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1udkvmt\",\"data-framer-name\":\"Adobe Corporate_logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CG6TA73AA\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 103 27\"><path d=\"M 11.437 0 L 0 0 L 0 27.656 Z M 19.484 0 L 30.906 0 L 30.906 27.656 Z M 15.46 10.193 L 22.74 27.656 L 17.964 27.656 L 15.79 22.096 L 10.458 22.096 Z M 49.564 17.589 L 50.913 21.498 C 50.958 21.594 51.025 21.64 51.143 21.64 L 53.737 21.64 C 53.879 21.64 53.901 21.573 53.879 21.428 L 48.521 6.385 C 48.5 6.264 48.477 6.241 48.357 6.241 L 45.139 6.241 C 45.049 6.241 44.998 6.31 44.998 6.407 C 44.952 7.197 44.885 7.44 44.788 7.674 L 40.012 21.405 C 39.991 21.573 40.042 21.64 40.176 21.64 L 42.493 21.64 C 42.634 21.64 42.703 21.594 42.755 21.451 L 44.029 17.587 Z M 44.767 15.031 C 45.467 12.891 46.39 10.15 46.764 8.582 L 46.785 8.582 C 47.246 10.225 48.336 13.481 48.826 15.031 Z M 60.766 21.874 C 62.273 21.877 63.764 21.566 65.148 20.962 C 65.266 20.917 65.289 20.865 65.289 20.75 C 65.233 20.253 65.2 19.753 65.191 19.253 L 65.191 5.09 C 65.191 4.999 65.191 4.955 65.079 4.955 L 62.553 4.955 C 62.458 4.955 62.412 4.999 62.412 5.118 L 62.412 9.919 C 62.081 9.876 61.748 9.853 61.415 9.851 C 57.339 9.851 54.834 12.57 54.834 15.967 C 54.834 19.907 57.405 21.874 60.766 21.874 Z M 62.412 19.251 C 61.995 19.386 61.533 19.44 61.064 19.44 C 59.215 19.44 57.703 18.385 57.703 15.824 C 57.703 13.556 59.261 12.218 61.325 12.218 C 61.741 12.218 62.107 12.262 62.412 12.381 Z M 73.346 9.851 C 69.866 9.851 67.713 12.547 67.713 15.878 C 67.713 18.852 69.428 21.874 73.294 21.874 C 76.565 21.874 78.86 19.44 78.86 15.801 C 78.86 12.592 76.914 9.851 73.347 9.851 Z M 73.204 12.216 C 75.171 12.216 76.006 13.926 76.006 15.878 C 76.006 18.289 74.776 19.484 73.346 19.484 C 71.581 19.484 70.538 17.986 70.538 15.824 C 70.538 13.602 71.648 12.217 73.204 12.217 Z M 81.471 4.953 C 81.376 4.953 81.307 4.999 81.307 5.118 L 81.307 21.151 C 81.307 21.218 81.374 21.34 81.471 21.363 C 82.596 21.708 83.767 21.88 84.943 21.874 C 88.378 21.874 91.716 19.72 91.716 15.38 C 91.716 12.237 89.585 9.851 86.247 9.851 C 85.531 9.846 84.819 9.958 84.138 10.181 L 84.109 5.142 C 84.109 4.976 84.063 4.953 83.899 4.953 Z M 88.862 15.666 C 88.862 18.265 87.104 19.484 85.204 19.484 C 84.809 19.484 84.46 19.463 84.138 19.365 L 84.138 12.524 C 84.504 12.381 84.943 12.262 85.755 12.262 C 87.588 12.262 88.862 13.436 88.862 15.666 Z M 101.142 16.509 C 102.275 16.509 103.206 16.487 103.526 16.412 C 103.647 16.389 103.69 16.345 103.713 16.246 C 103.78 15.99 103.809 15.456 103.809 14.8 C 103.809 12.57 102.483 9.851 99.055 9.851 C 95.553 9.851 93.61 12.736 93.61 15.99 C 93.61 18.875 95.115 21.872 99.332 21.872 C 100.911 21.872 101.932 21.617 102.811 21.197 C 102.901 21.151 102.945 21.075 102.945 20.94 L 102.945 18.989 C 102.945 18.875 102.878 18.854 102.811 18.898 C 101.934 19.274 100.98 19.463 99.935 19.463 C 97.573 19.463 96.501 18.144 96.433 16.511 Z M 96.433 14.491 C 96.62 13.346 97.335 12.102 98.937 12.102 C 100.703 12.102 101.165 13.602 101.165 14.281 L 101.165 14.468 C 101.068 14.491 100.77 14.491 99.891 14.491 Z M 96.433 14.491\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9424380963,withExternalLayout:true,...addPropertyOverrides({noLRaue0s:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76 20\"><path d=\"M 8.439 0 L 0 0 L 0 20.486 Z M 14.377 0 L 22.804 0 L 22.804 20.486 Z M 11.407 7.55 L 16.779 20.486 L 13.255 20.486 L 11.651 16.367 L 7.717 16.367 Z M 36.571 13.029 L 37.567 15.924 C 37.6 15.996 37.65 16.03 37.737 16.03 L 39.651 16.03 C 39.755 16.03 39.772 15.98 39.755 15.873 L 35.802 4.73 C 35.786 4.64 35.769 4.623 35.681 4.623 L 33.306 4.623 C 33.24 4.623 33.202 4.674 33.202 4.746 C 33.168 5.331 33.119 5.511 33.047 5.684 L 29.523 15.856 C 29.508 15.98 29.546 16.03 29.644 16.03 L 31.354 16.03 C 31.458 16.03 31.509 15.996 31.547 15.89 L 32.487 13.027 Z M 33.032 11.134 C 33.548 9.549 34.23 7.519 34.505 6.357 L 34.521 6.357 C 34.861 7.574 35.665 9.986 36.027 11.134 Z M 44.837 16.203 C 45.949 16.205 47.049 15.975 48.07 15.527 C 48.157 15.494 48.174 15.456 48.174 15.37 C 48.133 15.002 48.109 14.632 48.102 14.261 L 48.102 3.77 C 48.102 3.703 48.102 3.67 48.019 3.67 L 46.156 3.67 C 46.086 3.67 46.052 3.703 46.052 3.791 L 46.052 7.347 C 45.808 7.315 45.562 7.299 45.316 7.297 C 42.308 7.297 40.46 9.311 40.46 11.827 C 40.46 14.746 42.357 16.203 44.837 16.203 Z M 46.052 14.26 C 45.744 14.36 45.403 14.4 45.057 14.4 C 43.693 14.4 42.577 13.619 42.577 11.721 C 42.577 10.041 43.727 9.05 45.25 9.05 C 45.556 9.05 45.827 9.083 46.052 9.171 Z M 54.119 7.297 C 51.552 7.297 49.963 9.294 49.963 11.761 C 49.963 13.964 51.228 16.203 54.081 16.203 C 56.495 16.203 58.188 14.4 58.188 11.704 C 58.188 9.327 56.752 7.297 54.12 7.297 Z M 54.015 9.049 C 55.466 9.049 56.082 10.316 56.082 11.761 C 56.082 13.547 55.175 14.433 54.119 14.433 C 52.817 14.433 52.047 13.323 52.047 11.721 C 52.047 10.076 52.866 9.05 54.015 9.05 Z M 60.115 3.669 C 60.044 3.669 59.994 3.703 59.994 3.791 L 59.994 15.667 C 59.994 15.717 60.043 15.807 60.115 15.824 C 60.945 16.08 61.808 16.207 62.676 16.203 C 65.211 16.203 67.674 14.607 67.674 11.393 C 67.674 9.064 66.102 7.297 63.639 7.297 C 63.11 7.294 62.585 7.376 62.082 7.541 L 62.061 3.809 C 62.061 3.686 62.027 3.669 61.906 3.669 Z M 65.568 11.604 C 65.568 13.53 64.271 14.433 62.869 14.433 C 62.578 14.433 62.32 14.417 62.082 14.344 L 62.082 9.277 C 62.352 9.171 62.676 9.083 63.276 9.083 C 64.628 9.083 65.568 9.953 65.568 11.604 Z M 74.629 12.229 C 75.465 12.229 76.152 12.213 76.388 12.157 C 76.477 12.14 76.509 12.107 76.526 12.034 C 76.576 11.844 76.597 11.449 76.597 10.963 C 76.597 9.311 75.619 7.297 73.089 7.297 C 70.505 7.297 69.071 9.434 69.071 11.844 C 69.071 13.981 70.182 16.201 73.294 16.201 C 74.459 16.201 75.212 16.013 75.861 15.701 C 75.927 15.667 75.959 15.611 75.959 15.511 L 75.959 14.066 C 75.959 13.981 75.91 13.966 75.861 13.999 C 75.213 14.277 74.51 14.417 73.738 14.417 C 71.996 14.417 71.205 13.44 71.154 12.23 Z M 71.154 10.734 C 71.292 9.886 71.82 8.964 73.002 8.964 C 74.305 8.964 74.646 10.076 74.646 10.579 L 74.646 10.717 C 74.574 10.734 74.355 10.734 73.706 10.734 Z M 71.154 10.734\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10847680042}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uRU5a.framer-1id4weh, .framer-uRU5a .framer-1id4weh { display: block; }\",\".framer-uRU5a.framer-1e3vxss { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 562px; }\",\".framer-uRU5a .framer-b7vkuk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uRU5a .framer-1udkvmt { flex: none; height: 27px; position: relative; width: 103px; }\",\".framer-uRU5a.framer-v-4klyok .framer-1udkvmt { height: 20px; width: 76px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 562\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"noLRaue0s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOSRsXOj8r=withCSS(Component,css,\"framer-uRU5a\");export default FramerOSRsXOj8r;FramerOSRsXOj8r.displayName=\"Partnership\";FramerOSRsXOj8r.defaultProps={height:200,width:562};addPropertyControls(FramerOSRsXOj8r,{variant:{options:[\"MRSn1Gita\",\"noLRaue0s\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOSRsXOj8r,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOSRsXOj8r\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"562\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"noLRaue0s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OSRsXOj8r.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Countdown from\"https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/LbfyNKjmoEsUNmmvdFOc/Countdown.js\";import Footer2 from\"#framer/local/canvasComponent/cueDTjJIy/cueDTjJIy.js\";import Subtitle from\"#framer/local/canvasComponent/iktmtj8Sb/iktmtj8Sb.js\";import BGImages from\"#framer/local/canvasComponent/lvwHtL4eT/lvwHtL4eT.js\";import Partnership from\"#framer/local/canvasComponent/OSRsXOj8r/OSRsXOj8r.js\";import metadataProvider from\"#framer/local/webPageMetadata/pBQt4MS4U/pBQt4MS4U.js\";const BGImagesFonts=getFonts(BGImages);const SubtitleFonts=getFonts(Subtitle);const PartnershipFonts=getFonts(Partnership);const CountdownFonts=getFonts(Countdown);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const Footer2Fonts=getFonts(Footer2);const breakpoints={IpebTVe7c:\"(max-width: 619px)\",kct2qQOuV:\"(min-width: 620px) and (max-width: 963px)\",KsZkFlspl:\"(min-width: 1280px)\",ZZW3dp2FP:\"(min-width: 964px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Y37EY\";const variantClassNames={IpebTVe7c:\"framer-v-mok7mt\",kct2qQOuV:\"framer-v-l0mej4\",KsZkFlspl:\"framer-v-3d3d5x\",ZZW3dp2FP:\"framer-v-90nd6k\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:60,delay:.4,mass:1,stiffness:300,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Breakpoint:\"ZZW3dp2FP\",Desktop:\"KsZkFlspl\",Phone:\"IpebTVe7c\",Tablet:\"kct2qQOuV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KsZkFlspl\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"BETHyZAuF\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KsZkFlspl\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-3d3d5x\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{height:1648.7},kct2qQOuV:{height:1462.5},ZZW3dp2FP:{height:1957}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2174,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cqvcx3-container\",nodeId:\"jJP34ONR0\",scopeId:\"pBQt4MS4U\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{variant:\"HAq7Wf3TF\"},kct2qQOuV:{variant:\"HAq7Wf3TF\"}},children:/*#__PURE__*/_jsx(BGImages,{height:\"100%\",id:\"jJP34ONR0\",layoutId:\"jJP34ONR0\",style:{height:\"100%\",width:\"100%\"},variant:\"lW9eInl60\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jby81u\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mcq1b2\",\"data-framer-name\":\"Featured Videos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2v8ekw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-klr78\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{y:(componentViewport?.y||0)+0+0+0+0+0+0+24+0+0+0},kct2qQOuV:{y:(componentViewport?.y||0)+0+0+0+0+0+0+24+0+0+0},ZZW3dp2FP:{y:(componentViewport?.y||0)+0+0+0+0+0+0+24+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,y:(componentViewport?.y||0)+0+0+0+0+0+0+24+0+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nfh9ai-container\",nodeId:\"pQDWFYf8D\",scopeId:\"pBQt4MS4U\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{variant:\"HY1ZSTJIz\"}},children:/*#__PURE__*/_jsx(Subtitle,{height:\"100%\",id:\"pQDWFYf8D\",layoutId:\"pQDWFYf8D\",variant:\"uvHYYa7dZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvi343\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05FWFRTVEVQIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NEXTSTEP Regular\", \"NEXTSTEP Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SUPER-STREAM\"})})},kct2qQOuV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05FWFRTVEVQIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NEXTSTEP Regular\", \"NEXTSTEP Regular Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SUPER-STREAM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO05FWFRTVEVQIFJlZ3VsYXI=\",\"--framer-font-family\":'\"NEXTSTEP Regular\", \"NEXTSTEP Regular Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"0.2em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SUPER-STREAM\"})}),className:\"framer-15fsf4j\",fonts:[\"CUSTOM;NEXTSTEP Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{width:`calc(${componentViewport?.width||\"100vw\"} - 98px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+24+0+0+42+0+32},kct2qQOuV:{y:(componentViewport?.y||0)+0+0+0+0+0+0+24+0+0+42+0+50},ZZW3dp2FP:{y:(componentViewport?.y||0)+0+0+0+0+0+0+24+0+0+42+0+72}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`calc(${componentViewport?.width||\"100vw\"} - 108px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+24+0+24+42+0+72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cxnoyl-container\",nodeId:\"on87H3cdl\",scopeId:\"pBQt4MS4U\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{variant:\"noLRaue0s\"},kct2qQOuV:{variant:\"noLRaue0s\"}},children:/*#__PURE__*/_jsx(Partnership,{height:\"100%\",id:\"on87H3cdl\",layoutId:\"on87H3cdl\",style:{width:\"100%\"},variant:\"MRSn1Gita\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q1tlni\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Starts in\"})})},kct2qQOuV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Starts in\"})})},ZZW3dp2FP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Starts in\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Starts in\"})}),className:\"framer-kpf2ix\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ktti8r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"f_KKHKMEb\",scopeId:\"pBQt4MS4U\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{font:{fontFamily:'\"NEXTSTEP Regular\", \"NEXTSTEP Regular Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},kct2qQOuV:{font:{fontFamily:'\"NEXTSTEP Regular\", \"NEXTSTEP Regular Placeholder\", sans-serif',fontSize:\"50px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(Countdown,{color:\"rgb(255, 255, 255)\",date:\"2025-01-08T00:00:00.000Z\",displayProps:{dayLabel:\"D\",digitCount:false,hourLabel:\"H\",labelSpace:true,labelType:true,minuteLabel:\"M\",numberSpace:false,secondLabel:\"S\",showHours:true,showMinutes:true,showSeconds:true,tabularFont:true},font:{fontFamily:'\"NEXTSTEP Regular\", \"NEXTSTEP Regular Placeholder\", sans-serif',fontSize:\"85px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"f_KKHKMEb\",labelColor:\"rgba(255, 0, 0, 0.5)\",layoutId:\"f_KKHKMEb\",pickTime:19,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k4nevs\",\"data-framer-name\":\"Feature Bottom Block\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tp6o2k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xaI4Rtfv3\",scopeId:\"pBQt4MS4U\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"xaI4Rtfv3\",isMixedBorderRadius:false,isRed:true,layoutId:\"xaI4Rtfv3\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/_LLPMYi9A-c\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{y:(componentViewport?.y||0)+0+822.7},kct2qQOuV:{y:(componentViewport?.y||0)+0+636},ZZW3dp2FP:{y:(componentViewport?.y||0)+0+783}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:826,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1e3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pd85dw-container\",id:elementId,nodeId:\"BETHyZAuF\",ref:ref1,scopeId:\"pBQt4MS4U\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IpebTVe7c:{variant:\"fduTYrpzt\"},kct2qQOuV:{variant:\"GdZ2MHT1M\"}},children:/*#__PURE__*/_jsx(Footer2,{f9BQeghSx:\"Back to top\",Gm7IacYzT:false,height:\"100%\",id:\"BETHyZAuF\",layoutId:\"BETHyZAuF\",style:{width:\"100%\"},variant:\"FezecA8yQ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y37EY.framer-110lzix, .framer-Y37EY .framer-110lzix { display: block; }\",\".framer-Y37EY.framer-3d3d5x { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-Y37EY .framer-1cqvcx3-container { bottom: -348px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: -1; }\",\".framer-Y37EY .framer-1jby81u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Y37EY .framer-mcq1b2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px 30px 40px 30px; position: relative; width: 100%; }\",\".framer-Y37EY .framer-2v8ekw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 24px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-Y37EY .framer-klr78 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Y37EY .framer-1nfh9ai-container, .framer-Y37EY .framer-ktti8r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Y37EY .framer-wvi343, .framer-Y37EY .framer-1q1tlni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Y37EY .framer-15fsf4j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 0px 0px 120px #180078, 0px 2px 60px rgb(99, 15, 160), 0px 0px 8px rgb(76, 218, 238), 0px 0px 20px rgb(76, 218, 238), 0px 0px 19px rgb(76, 218, 238); white-space: pre; width: auto; }\",\".framer-Y37EY .framer-1cxnoyl-container, .framer-Y37EY .framer-pd85dw-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Y37EY .framer-kpf2ix { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Y37EY .framer-k4nevs { align-content: center; align-items: center; aspect-ratio: 2.4011976047904193 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 32px 0px rgba(17, 19, 66, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 83px); justify-content: center; max-width: 1280px; overflow: hidden; padding: 1px; position: relative; width: 66%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Y37EY .framer-tp6o2k-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@media (min-width: 620px) and (max-width: 963px) { .framer-Y37EY.framer-3d3d5x { box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); width: 620px; } .framer-Y37EY .framer-1cqvcx3-container { bottom: 0px; } .framer-Y37EY .framer-1jby81u { height: min-content; } .framer-Y37EY .framer-mcq1b2 { flex: none; gap: 29px; height: 636px; } .framer-Y37EY .framer-2v8ekw { gap: 27px; } .framer-Y37EY .framer-klr78 { padding: 0px; } .framer-Y37EY .framer-k4nevs { aspect-ratio: unset; flex: 1 0 0px; height: 1px; width: 96%; }}\",\"@media (max-width: 619px) { .framer-Y37EY.framer-3d3d5x { width: 390px; } .framer-Y37EY .framer-1cqvcx3-container { bottom: 0px; order: 0; } .framer-Y37EY .framer-1jby81u { height: min-content; order: 1; } .framer-Y37EY .framer-mcq1b2 { flex: none; height: min-content; padding: 0px 20px 40px 30px; } .framer-Y37EY .framer-2v8ekw { gap: 26px; } .framer-Y37EY .framer-klr78 { padding: 0px; } .framer-Y37EY .framer-wvi343 { gap: 6px; } .framer-Y37EY .framer-k4nevs { aspect-ratio: unset; height: 189px; padding: 0px; width: 96%; } .framer-Y37EY .framer-pd85dw-container { order: 2; }}\",\"@media (min-width: 964px) and (max-width: 1279px) { .framer-Y37EY.framer-3d3d5x { width: 964px; } .framer-Y37EY .framer-1jby81u { height: min-content; } .framer-Y37EY .framer-mcq1b2 { flex: none; height: 783px; } .framer-Y37EY .framer-2v8ekw { gap: 21px; } .framer-Y37EY .framer-klr78 { padding: 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1585\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kct2qQOuV\":{\"layout\":[\"fixed\",\"auto\"]},\"IpebTVe7c\":{\"layout\":[\"fixed\",\"auto\"]},\"ZZW3dp2FP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"BETHyZAuF\":{\"pattern\":\":BETHyZAuF\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerpBQt4MS4U=withCSS(Component,css,\"framer-Y37EY\");export default FramerpBQt4MS4U;FramerpBQt4MS4U.displayName=\"Home\";FramerpBQt4MS4U.defaultProps={height:1585,width:1280};addFonts(FramerpBQt4MS4U,[{explicitInter:true,fonts:[{family:\"NEXTSTEP Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/zk6rIpP2bEN5VSePkGmKL3nddU.woff2\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...BGImagesFonts,...SubtitleFonts,...PartnershipFonts,...CountdownFonts,...YouTubeFonts,...Footer2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpBQt4MS4U\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1585\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kct2qQOuV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IpebTVe7c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZZW3dp2FP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"BETHyZAuF\\\":{\\\"pattern\\\":\\\":BETHyZAuF\\\",\\\"name\\\":\\\"footer\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStack", "calculateTimeLeft", "difference", "digitCount", "minTwoDigits", "useForceRender", "_", "set", "ye", "te", "Z", "v", "number", "wrapInSpan", "colorValue", "string", "p", "createCountdownString", "timeLeft", "showHours", "showMinutes", "showSeconds", "dayLabel", "hourLabel", "minuteLabel", "secondLabel", "space", "spaceForLabel", "labelType", "labelColor", "days", "u", "l", "hours", "minutes", "seconds", "CountdownTimer", "props", "date", "pickTime", "font", "color", "displayProps", "onComplete", "numberSpace", "labelSpace", "tabularFont", "visible", "setIsVisible", "timeoutRef", "pe", "isCanvas", "RenderTarget", "render", "ue", "tick", "next", "emptyString", "timeString", "defaultDate", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "SVG", "css", "FramerOSRsXOj8r", "withCSS", "OSRsXOj8r_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BGImagesFonts", "getFonts", "lvwHtL4eT_default", "SubtitleFonts", "iktmtj8Sb_default", "PartnershipFonts", "OSRsXOj8r_default", "CountdownFonts", "CountdownTimer", "YouTubeFonts", "Youtube", "MotionDivWithFX", "withFX", "motion", "Footer2Fonts", "cueDTjJIy_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "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", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "lvwHtL4eT_default", "iktmtj8Sb_default", "x", "RichText2", "OSRsXOj8r_default", "CountdownTimer", "MotionDivWithFX", "Youtube", "cueDTjJIy_default", "css", "FramerpBQt4MS4U", "withCSS", "pBQt4MS4U_default", "addFonts", "BGImagesFonts", "SubtitleFonts", "PartnershipFonts", "CountdownFonts", "YouTubeFonts", "Footer2Fonts", "__FramerMetadata__"]
}
