{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/iaf0qjJxR09dAj9mfgsH/GrQVko8kIHdDyzHjymRZ/g7VJdbC4w.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (5ac62b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,removeHiddenBreakpointLayers,RichText,SVG,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/f8erlkekvAMtKdye4V5u/FTukyRDYAFxCwesGYOUy/g6rxWMBIP.js\";import metadataProvider from\"https://framerusercontent.com/modules/lMnecO8ayoDrgl0gzQFq/ex7amJ2H405yln7oxtkJ/g7VJdbC4w.js\";const DownloadFonts=getFonts(Download);const cycleOrder=[\"x3KiL2E8g\",\"hDdVrD81v\",\"USGCbZvep\"];const breakpoints={hDdVrD81v:\"(min-width: 810px) and (max-width: 1439px)\",USGCbZvep:\"(max-width: 809px)\",x3KiL2E8g:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oK0M7\";const variantClassNames={hDdVrD81v:\"framer-v-1a7iu7q\",USGCbZvep:\"framer-v-1phofk0\",x3KiL2E8g:\"framer-v-dbn1ge\"};if(isBrowser()){removeHiddenBreakpointLayers(\"x3KiL2E8g\",breakpoints,variantClassNames);}const transitions={default:{duration:0}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"x3KiL2E8g\",Phone:\"USGCbZvep\",Tablet:\"hDdVrD81v\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"x3KiL2E8g\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(metadata1.bodyClassName);return()=>{document.body.classList.remove(metadata1.bodyClassName);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"hDdVrD81v\")return true;return!isBrowser();};const isDisplayed1=()=>{if(baseVariant===\"hDdVrD81v\")return!isBrowser();return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"x3KiL2E8g\",variantClassNames},children:/*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsxs(motion.div,{className:cx(\"framer-oK0M7\",...sharedStyleClassNames),style:{display:\"contents\"},children:[/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-dbn1ge\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15ykwf6\",\"data-framer-name\":\"Pricing\",name:\"Pricing\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hwp43n hidden-dbn1ge hidden-1phofk0\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ppm9t2\",\"data-framer-name\":\"Frame 22\",name:\"Frame 22\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vcfch7\",\"data-framer-name\":\"Frame 17\",name:\"Frame 17\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Features\"})}),className:\"framer-zbgavu\",\"data-framer-name\":\"Features\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"Features\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"g7VJdbC4w\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-6zy8wz\",\"data-styles-preset\":\"g6rxWMBIP\",children:\"Plans\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://sidequestvr.com/user/2903510\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-6zy8wz\",\"data-styles-preset\":\"g6rxWMBIP\",children:\"Games\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"VR Tech\"})]}),className:\"framer-1hw7dg6\",\"data-framer-name\":\"Plans Games VR Tech\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Plans Games VR Tech\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hyo6r3\",\"data-framer-name\":\"Frame 18\",name:\"Frame 18\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SUPPORT\"})}),className:\"framer-vt69vx\",\"data-framer-name\":\"SUPPORT\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"SUPPORT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"Help center\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"FAQ\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zPh6HXP6j\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-6zy8wz\",\"data-styles-preset\":\"g6rxWMBIP\",children:\"Contact us\"})})})]}),className:\"framer-1txmhc1\",\"data-framer-name\":\"Help center FAQ Contact us\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Help center FAQ Contact us\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ql7cd\",\"data-framer-name\":\"Frame 21\",name:\"Frame 21\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nysy06\",\"data-framer-name\":\"Frame 19\",name:\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Social\"})}),className:\"framer-o93vop\",\"data-framer-name\":\"Social\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"Social\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lvef1k\",\"data-framer-name\":\"Frame 20\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:96,name:\"Frame 20\",svg:'<svg width=\"96\" height=\"40\" viewBox=\"0 0 96 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.5309 16.9167C15.9975 16.9615 15.5004 17.205 15.1381 17.5991C14.7758 17.9931 14.5747 18.5089 14.5747 19.0442C14.5747 19.5794 14.7758 20.0952 15.1381 20.4892C15.5004 20.8833 15.9975 21.1268 16.5309 21.1717C17.0643 21.1268 17.5614 20.8833 17.9237 20.4892C18.286 20.0952 18.4871 19.5794 18.4871 19.0442C18.4871 18.5089 18.286 17.9931 17.9237 17.5991C17.5614 17.205 17.0643 16.9615 16.5309 16.9167ZM23.5309 16.9167C23.1025 16.8804 22.6731 16.9744 22.299 17.1862C21.9249 17.398 21.6234 17.7179 21.4341 18.1039C21.2447 18.4899 21.1764 18.924 21.2379 19.3495C21.2994 19.7751 21.4879 20.1721 21.7789 20.4887C22.0698 20.8052 22.4495 21.0266 22.8683 21.1238C23.2871 21.221 23.7255 21.1895 24.1261 21.0334C24.5267 20.8773 24.8708 20.6039 25.1134 20.2489C25.3561 19.894 25.4859 19.4741 25.4859 19.0442C25.4974 18.7757 25.4558 18.5076 25.3635 18.2553C25.2712 18.003 25.13 17.7713 24.948 17.5737C24.766 17.376 24.5467 17.2163 24.3029 17.1035C24.059 16.9908 23.7952 16.9273 23.5267 16.9167H23.5309Z\" fill=\"#9E9E9E\"/>\\n<path d=\"M32.8416 0.833374H7.15831C6.10272 0.890343 5.11138 1.35829 4.39649 2.13703C3.6816 2.91578 3.29998 3.94344 3.33331 5.00004V30.8334C3.32303 31.3378 3.41506 31.8391 3.60383 32.307C3.79261 32.7749 4.07423 33.1996 4.43169 33.5557C4.78915 33.9118 5.21504 34.1917 5.68366 34.3786C6.15229 34.5656 6.65393 34.6556 7.15831 34.6434H28.8933L27.8775 31.0975L30.3333 33.3784L32.65 35.525L36.6666 39.1667V5.00004C36.7 3.94344 36.3184 2.91578 35.6035 2.13703C34.8886 1.35829 33.8972 0.890343 32.8416 0.833374ZM25.4433 25.865C25.4433 25.865 24.7533 25.0409 24.1783 24.3125C25.5676 23.9854 26.7964 23.1775 27.6475 22.0317C26.958 22.4921 26.2186 22.8729 25.4433 23.1667C24.5517 23.5473 23.6191 23.8239 22.6641 23.9909C21.0226 24.2931 19.3391 24.2866 17.7 23.9717C16.7377 23.7834 15.7946 23.5075 14.8825 23.1475C14.1139 22.8541 13.3809 22.4747 12.6975 22.0167C13.5177 23.1385 14.7041 23.9385 16.0516 24.2784C15.4766 25.0067 14.7675 25.8692 14.7675 25.8692C10.5316 25.735 8.92165 22.9525 8.92165 22.9525C8.98385 19.0669 9.92758 15.2461 11.6816 11.7784C13.2252 10.5661 15.1071 9.86289 17.0675 9.76587L17.2591 9.99587C15.4148 10.4523 13.6937 11.3096 12.2183 12.5067C12.2183 12.5067 12.64 12.2767 13.3491 11.9509C14.7269 11.322 16.1952 10.9145 17.7 10.7434C17.8073 10.7212 17.9163 10.7083 18.0258 10.705C19.3102 10.5377 20.61 10.5248 21.8975 10.6667C23.9221 10.8977 25.8819 11.5225 27.6666 12.5059C26.2661 11.3658 24.6394 10.5361 22.8941 10.0717L23.1625 9.76504C25.1228 9.86205 27.0047 10.5652 28.5483 11.7775C30.3024 15.2453 31.2461 19.0661 31.3083 22.9517C31.3083 22.9517 29.6791 25.7309 25.4433 25.865Z\" fill=\"#9E9E9E\"/>\\n<path d=\"M76 5.65313C80.6725 5.65313 81.2262 5.67125 83.0712 5.755C84.1811 5.76848 85.2803 5.97227 86.3213 6.3575C87.0758 6.64889 87.7611 7.0949 88.3331 7.66688C88.9051 8.23886 89.3511 8.92416 89.6425 9.67875C90.0277 10.7197 90.2315 11.8189 90.245 12.9288C90.3288 14.7738 90.3469 15.3275 90.3469 20C90.3469 24.6725 90.3288 25.2262 90.245 27.0712C90.2315 28.1811 90.0277 29.2803 89.6425 30.3213C89.3511 31.0758 88.9051 31.7611 88.3331 32.3331C87.7611 32.9051 87.0758 33.3511 86.3213 33.6425C85.2803 34.0277 84.1811 34.2315 83.0712 34.245C81.2262 34.3288 80.6731 34.3469 76 34.3469C71.3269 34.3469 70.7738 34.3288 68.9288 34.245C67.8189 34.2315 66.7197 34.0277 65.6788 33.6425C64.9242 33.3511 64.2389 32.9051 63.6669 32.3331C63.0949 31.7611 62.6489 31.0758 62.3575 30.3213C61.9723 29.2803 61.7685 28.1811 61.755 27.0712C61.6713 25.2262 61.6531 24.6725 61.6531 20C61.6531 15.3275 61.6713 14.7738 61.755 12.9288C61.7685 11.8189 61.9723 10.7197 62.3575 9.67875C62.6489 8.92416 63.0949 8.23886 63.6669 7.66688C64.2389 7.0949 64.9242 6.64889 65.6788 6.3575C66.7197 5.97227 67.8189 5.76848 68.9288 5.755C70.7738 5.67125 71.3275 5.65313 76 5.65313ZM76 2.5C71.25 2.5 70.6512 2.52 68.785 2.605C67.3326 2.63357 65.8955 2.9083 64.535 3.4175C63.3728 3.86769 62.3175 4.55557 61.4365 5.43711C60.5555 6.31865 59.8682 7.37444 59.4187 8.53688C58.9096 9.89741 58.6348 11.3345 58.6063 12.7869C58.52 14.6512 58.5 15.25 58.5 20C58.5 24.75 58.52 25.3487 58.605 27.215C58.6336 28.6674 58.9083 30.1045 59.4175 31.465C59.8673 32.6274 60.5549 33.683 61.4363 34.5644C62.3176 35.4457 63.3732 36.1333 64.5356 36.5831C65.8962 37.0923 67.3332 37.3671 68.7856 37.3956C70.6513 37.48 71.25 37.5 76 37.5C80.75 37.5 81.3487 37.48 83.215 37.395C84.6674 37.3664 86.1045 37.0917 87.465 36.5825C88.6274 36.1327 89.683 35.4451 90.5644 34.5637C91.4457 33.6824 92.1333 32.6268 92.5831 31.4644C93.0923 30.1038 93.3671 28.6668 93.3956 27.2144C93.48 25.3487 93.5 24.75 93.5 20C93.5 15.25 93.48 14.6512 93.395 12.785C93.3664 11.3326 93.0917 9.89553 92.5825 8.535C92.1323 7.37284 91.4444 6.31747 90.5629 5.43647C89.6813 4.55546 88.6256 3.86823 87.4631 3.41875C86.1026 2.90955 84.6655 2.63482 83.2131 2.60625C81.3488 2.52 80.75 2.5 76 2.5Z\" fill=\"#9E9E9E\"/>\\n<path d=\"M75.9999 11.0138C74.2226 11.0138 72.4852 11.5408 71.0074 12.5283C69.5297 13.5157 68.3779 14.9191 67.6977 16.5612C67.0176 18.2032 66.8396 20.01 67.1863 21.7532C67.5331 23.4963 68.3889 25.0975 69.6457 26.3543C70.9024 27.611 72.5036 28.4669 74.2468 28.8136C75.99 29.1604 77.7968 28.9824 79.4388 28.3023C81.0808 27.6221 82.4843 26.4703 83.4717 24.9925C84.4591 23.5148 84.9862 21.7774 84.9862 20C84.9862 17.6167 84.0394 15.3311 82.3542 13.6458C80.6689 11.9606 78.3832 11.0138 75.9999 11.0138ZM75.9999 25.8332C74.8462 25.8332 73.7185 25.4911 72.7592 24.8501C71.8 24.2092 71.0523 23.2981 70.6108 22.2323C70.1693 21.1664 70.0538 19.9936 70.2789 18.8621C70.504 17.7305 71.0595 16.6912 71.8753 15.8754C72.6911 15.0596 73.7304 14.5041 74.8619 14.279C75.9935 14.0539 77.1663 14.1694 78.2322 14.6109C79.298 15.0524 80.209 15.8001 80.85 16.7593C81.4909 17.7186 81.8331 18.8464 81.8331 20C81.8331 20.7661 81.6823 21.5246 81.3892 22.2324C81.0961 22.9401 80.6664 23.5832 80.1248 24.1249C79.5831 24.6665 78.94 25.0962 78.2323 25.3893C77.5245 25.6824 76.766 25.8333 75.9999 25.8332Z\" fill=\"#9E9E9E\"/>\\n<path d=\"M85.3412 12.7587C86.501 12.7587 87.4412 11.8185 87.4412 10.6587C87.4412 9.49892 86.501 8.55872 85.3412 8.55872C84.1814 8.55872 83.2412 9.49892 83.2412 10.6587C83.2412 11.8185 84.1814 12.7587 85.3412 12.7587Z\" fill=\"#9E9E9E\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"\\xa9 2023 VirtuaSports. All rights reserved.\"})}),className:\"framer-25en74\",\"data-framer-name\":\"\\xa9 2023 VirtuaSports. All rights reserved.\",fonts:[\"GF;Sofia Sans-regular\"],name:\"\\xa9 2023 VirtuaSports. All rights reserved.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mal9i4\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/RbIuocLfLhLz9Jn8XRTRI3V1GEI.png\"},className:\"framer-19a9xk0 framer-1lo7k2x\",\"data-framer-name\":\"image_480 1\",name:\"image_480 1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-neyft5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", \"Futura Extra Black Italic Placeholder\", sans-serif',\"--framer-font-size\":\"59px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(25, 53, 230)\"},children:\"Choose Your Plan\"})})},USGCbZvep:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", \"Futura Extra Black Italic Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(25, 53, 230)\"},children:\"Choose Your Plan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", \"Futura Extra Black Italic Placeholder\", sans-serif',\"--framer-font-size\":\"73px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(25, 53, 230)\"},children:\"Choose Your Plan\"})}),className:\"framer-13m2eu0\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99w361\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qcpza5\",\"data-framer-name\":\"Frame 5\",name:\"Frame 5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:\"lazy\",pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/Wuik1Dsbt45vyghg2D4wVKTxdh8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/Wuik1Dsbt45vyghg2D4wVKTxdh8.png\"},className:\"framer-6xbr8p\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qf59vr\",\"data-framer-name\":\"Frame 23\",name:\"Frame 23\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", \"Futura Extra Black Italic Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"VIRTUASPORTS FREE SIGN UP\"})}),className:\"framer-trbzap\",\"data-framer-name\":\"VIRTUASPORTS FREE SIGN UP\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"VIRTUASPORTS FREE SIGN UP\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 118, 13) 0%, rgb(253, 64, 64) 100%)\"},children:\"FREE\"})})}),className:\"framer-1h074sb\",\"data-framer-name\":\"FREE\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"FREE\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gi3amt\",\"data-framer-name\":\"Frame 27\",name:\"Frame 27\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7fsfu\",\"data-framer-name\":\"Frame 26\",name:\"Frame 26\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qkbea1\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-1shqnlj\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Basic Access to VIRTUASPORTS\"})}),className:\"framer-agzify\",\"data-framer-name\":\"Basic Access VIRTUASPORTS\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Basic Access VIRTUASPORTS\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jayx54\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-uwi88f\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Run, Ride, Row\"})}),className:\"framer-aj8abr\",\"data-framer-name\":\"Weekly Challenges\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Weekly Challenges\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d040l\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-1qnbbe9\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Track Progress\"})}),className:\"framer-1opj7q8\",\"data-framer-name\":\"Engaging Community\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Engaging Community\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w1sitc\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-14s706f\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join our Community!\"})}),className:\"framer-h2muom\",\"data-framer-name\":\"Exercise Tracking, Progress Tracking\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Exercise Tracking, Progress Tracking\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://virtuasports.virtuagym.com/signup?signup_code=adventure\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-xb5jae framer-1lo7k2x\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"JOIN NOW\"})}),className:\"framer-1mlpyfr\",\"data-framer-name\":\"JOIN NOW\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"JOIN NOW\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3n07d2\",\"data-framer-name\":\"Frame 6\",name:\"Frame 6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"209px\",src:\"https://framerusercontent.com/images/FWeD3lEqTfU7uDOfgIlxLAzgjds.png\",srcSet:\"https://framerusercontent.com/images/FWeD3lEqTfU7uDOfgIlxLAzgjds.png?scale-down-to=512 512w, https://framerusercontent.com/images/FWeD3lEqTfU7uDOfgIlxLAzgjds.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/FWeD3lEqTfU7uDOfgIlxLAzgjds.png 1536w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"209px\",src:\"https://framerusercontent.com/images/FWeD3lEqTfU7uDOfgIlxLAzgjds.png\",srcSet:\"https://framerusercontent.com/images/FWeD3lEqTfU7uDOfgIlxLAzgjds.png?scale-down-to=512 512w, https://framerusercontent.com/images/FWeD3lEqTfU7uDOfgIlxLAzgjds.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/FWeD3lEqTfU7uDOfgIlxLAzgjds.png 1536w\"},className:\"framer-ytrbz6\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0ujq\",\"data-framer-name\":\"Frame 23\",name:\"Frame 23\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", \"Futura Extra Black Italic Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"VIRTUASPORTS PRO MONTHLY\"})}),className:\"framer-1x9d1qa\",\"data-framer-name\":\"VIRTUASPORTS PRO MONTHLY\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"VIRTUASPORTS PRO MONTHLY\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j6wo9a\",\"data-framer-name\":\"Price\",name:\"Price\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 118, 13) 0%, rgb(253, 64, 64) 100%)\"},children:\"\u20AC 11.99\"})})}),className:\"framer-1y274yc\",\"data-framer-name\":\"\u20AC 14.50\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"\u20AC 14.50\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"PER MONTH\"})}),className:\"framer-s50a52\",\"data-framer-name\":\"PER MONTH\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"PER MONTH\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ba3kcx\",\"data-framer-name\":\"Frame 26\",name:\"Frame 26\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vhldkp\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-17dx31h\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Access all worlds\"})}),className:\"framer-m5e3c9\",\"data-framer-name\":\"Monthly Flexible PRO Access\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Monthly Flexible PRO Access\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-178mqaq\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-12dsw29\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Advanced Progress Tracking\"})}),className:\"framer-r9rx9n\",\"data-framer-name\":\"Weekly Challenges\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Weekly Challenges\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aozxcd\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-teakv7\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Nutrition Coaching\"})}),className:\"framer-gl9c9j\",\"data-framer-name\":\"Engaging Community\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Engaging Community\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f8p60t\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hDdVrD81v:{background:{alt:\"\",fit:\"stretch\",loading:\"lazy\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-19fpmrw\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Workouts, Challenges and more!\"})}),className:\"framer-4h4hr9\",\"data-framer-name\":\"Integrated Food App, Cardio GPS Tracking\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Integrated Food App, Cardio GPS Tracking\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://virtuasports.virtuagym.com/webshop/product?id=dae70f61c374f522692d22e7cb3b2921c5f9&club=d2pPdWdRK3o2VFQ4cFdGRDlIL1NtZz09&embedded=1\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1xpu59m framer-1lo7k2x\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"GO PRO\"})}),className:\"framer-1wcg0u9\",\"data-framer-name\":\"GO PRO\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"GO PRO\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16krshq\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-4vgxqd-container\",children:/*#__PURE__*/_jsx(Download,{fontControl:{},height:\"100%\",id:\"AU25YkAo8\",layoutId:\"AU25YkAo8\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgb(117, 0, 77)\",borderRadius:50,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"BEST VALUE!\",width:\"100%\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"209px\",src:\"https://framerusercontent.com/images/iFIJOVCVi9Wl1dSN9wnsDizstk.png\",srcSet:\"https://framerusercontent.com/images/iFIJOVCVi9Wl1dSN9wnsDizstk.png?scale-down-to=512 512w, https://framerusercontent.com/images/iFIJOVCVi9Wl1dSN9wnsDizstk.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/iFIJOVCVi9Wl1dSN9wnsDizstk.png 1536w\"},className:\"framer-74ks8f\",\"data-framer-name\":\"Image\",name:\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dt6ybv\",\"data-framer-name\":\"Frame 23\",name:\"Frame 23\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", \"Futura Extra Black Italic Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"VIRTUASPORTS PRO ANNUAL\"})}),className:\"framer-1mvi90v\",\"data-framer-name\":\"VIRTUASPORTS PRO ANNUAL\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"VIRTUASPORTS PRO ANNUAL\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zzgdea\",\"data-framer-name\":\"Price\",name:\"Price\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(255, 118, 13) 0%, rgb(253, 64, 64) 100%)\"},children:\"\u20AC 99,-\"})})}),className:\"framer-1qi2fqc\",\"data-framer-name\":\"\u20AC 119,-\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"\u20AC 119,-\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"PER YEAR\"})}),className:\"framer-z80drg\",\"data-framer-name\":\"PER YEAR\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"PER YEAR\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ye9y79\",\"data-framer-name\":\"Frame 28\",name:\"Frame 28\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gk0sse\",\"data-framer-name\":\"Frame 26\",name:\"Frame 26\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xm2jfy\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-e3h5qe\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Access all worlds\"})}),className:\"framer-19doozp\",\"data-framer-name\":\"Monthly Flexible PRO Access\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Monthly Flexible PRO Access\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rb5e5h\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-1ggcz7n\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Advanced Progress Tracking\"})}),className:\"framer-gh6232\",\"data-framer-name\":\"Weekly Challenges\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Weekly Challenges\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h0h0xk\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-1kc0q1r\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Nutrition Coaching\"})}),className:\"framer-cuv7oz\",\"data-framer-name\":\"Engaging Community\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Engaging Community\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kn2ae3\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",src:\"https://framerusercontent.com/images/RH91WabNjYezbe6WAtcBWB7Nbc8.png\"},className:\"framer-1d75yyx\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Workouts, Challenges and more!\"})}),className:\"framer-qbfn6t\",\"data-framer-name\":\"Integrated Food App, Cardio GPS Tracking\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Integrated Food App, Cardio GPS Tracking\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://virtuasports.virtuagym.com/webshop/product?id=40063b4de31943f4c107563f8c2e825095e8&club=d2pPdWdRK3o2VFQ4cFdGRDlIL1NtZz09&embedded=1\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-elm03l framer-1lo7k2x\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"BECOME ELITE\"})}),className:\"framer-3p00wu\",\"data-framer-name\":\"BECOME ELITE\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"BECOME ELITE\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jeghnc hidden-1a7iu7q\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19r08e0\",\"data-framer-name\":\"Frame 22\",name:\"Frame 22\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nwqg1c\",\"data-framer-name\":\"Frame 17\",name:\"Frame 17\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Features\"})}),className:\"framer-1pbzm8q\",\"data-framer-name\":\"Features\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"Features\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"Plans\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://sidequestvr.com/user/2903510\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-6zy8wz\",\"data-styles-preset\":\"g6rxWMBIP\",children:\"Games\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"VR Tech\"})]}),className:\"framer-1bucseb\",\"data-framer-name\":\"Plans Games VR Tech\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Plans Games VR Tech\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icfw7k\",\"data-framer-name\":\"Frame 18\",name:\"Frame 18\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"SUPPORT\"})}),className:\"framer-8dluna\",\"data-framer-name\":\"SUPPORT\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"SUPPORT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"Help center\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"FAQ\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zPh6HXP6j\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-6zy8wz\",\"data-styles-preset\":\"g6rxWMBIP\",children:\"Contact us\"})})})]}),className:\"framer-1j7ecvv\",\"data-framer-name\":\"Help center FAQ Contact us\",fonts:[\"GF;Sofia Sans-regular\"],name:\"Help center FAQ Contact us\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uri77r\",\"data-framer-name\":\"Frame 21\",name:\"Frame 21\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rocgtq\",\"data-framer-name\":\"Frame 19\",name:\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBFeHRyYSBCbGFjayBJdGFsaWM=\",\"--framer-font-family\":'\"Futura Extra Black Italic\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Social\"})}),className:\"framer-9zww8\",\"data-framer-name\":\"Social\",fonts:[\"CUSTOM;Futura Extra Black Italic\"],name:\"Social\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11mhmhm\",\"data-framer-name\":\"Frame 20\",layout:\"position\",name:\"Frame 20\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 96 40\"><path d=\"M 16.531 16.917 C 15.998 16.961 15.5 17.205 15.138 17.599 C 14.776 17.993 14.575 18.509 14.575 19.044 C 14.575 19.579 14.776 20.095 15.138 20.489 C 15.5 20.883 15.998 21.127 16.531 21.172 C 17.064 21.127 17.561 20.883 17.924 20.489 C 18.286 20.095 18.487 19.579 18.487 19.044 C 18.487 18.509 18.286 17.993 17.924 17.599 C 17.561 17.205 17.064 16.961 16.531 16.917 Z M 23.531 16.917 C 23.103 16.88 22.673 16.974 22.299 17.186 C 21.925 17.398 21.623 17.718 21.434 18.104 C 21.245 18.49 21.176 18.924 21.238 19.349 C 21.299 19.775 21.488 20.172 21.779 20.489 C 22.07 20.805 22.45 21.027 22.868 21.124 C 23.287 21.221 23.726 21.189 24.126 21.033 C 24.527 20.877 24.871 20.604 25.113 20.249 C 25.356 19.894 25.486 19.474 25.486 19.044 C 25.497 18.776 25.456 18.508 25.364 18.255 C 25.271 18.003 25.13 17.771 24.948 17.574 C 24.766 17.376 24.547 17.216 24.303 17.104 C 24.059 16.991 23.795 16.927 23.527 16.917 Z\" fill=\"rgb(158,158,158)\"></path><path d=\"M 32.842 0.833 L 7.158 0.833 C 6.103 0.89 5.111 1.358 4.396 2.137 C 3.682 2.916 3.3 3.943 3.333 5 L 3.333 30.833 C 3.323 31.338 3.415 31.839 3.604 32.307 C 3.793 32.775 4.074 33.2 4.432 33.556 C 4.789 33.912 5.215 34.192 5.684 34.379 C 6.152 34.566 6.654 34.656 7.158 34.643 L 28.893 34.643 L 27.878 31.098 L 30.333 33.378 L 32.65 35.525 L 36.667 39.167 L 36.667 5 C 36.7 3.943 36.318 2.916 35.603 2.137 C 34.889 1.358 33.897 0.89 32.842 0.833 Z M 25.443 25.865 C 25.443 25.865 24.753 25.041 24.178 24.313 C 25.568 23.985 26.796 23.178 27.647 22.032 C 26.958 22.492 26.219 22.873 25.443 23.167 C 24.552 23.547 23.619 23.824 22.664 23.991 C 21.023 24.293 19.339 24.287 17.7 23.972 C 16.738 23.783 15.795 23.508 14.882 23.148 C 14.114 22.854 13.381 22.475 12.697 22.017 C 13.518 23.139 14.704 23.939 16.052 24.278 C 15.477 25.007 14.767 25.869 14.767 25.869 C 10.532 25.735 8.922 22.953 8.922 22.953 C 8.984 19.067 9.928 15.246 11.682 11.778 C 13.225 10.566 15.107 9.863 17.067 9.766 L 17.259 9.996 C 15.415 10.452 13.694 11.31 12.218 12.507 C 12.218 12.507 12.64 12.277 13.349 11.951 C 14.727 11.322 16.195 10.915 17.7 10.743 C 17.807 10.721 17.916 10.708 18.026 10.705 C 19.31 10.538 20.61 10.525 21.897 10.667 C 23.922 10.898 25.882 11.523 27.667 12.506 C 26.266 11.366 24.639 10.536 22.894 10.072 L 23.162 9.765 C 25.123 9.862 27.005 10.565 28.548 11.778 C 30.302 15.245 31.246 19.066 31.308 22.952 C 31.308 22.952 29.679 25.731 25.443 25.865 Z\" fill=\"rgb(158,158,158)\"></path><path d=\"M 76 5.653 C 80.673 5.653 81.226 5.671 83.071 5.755 C 84.181 5.768 85.28 5.972 86.321 6.358 C 87.076 6.649 87.761 7.095 88.333 7.667 C 88.905 8.239 89.351 8.924 89.643 9.679 C 90.028 10.72 90.232 11.819 90.245 12.929 C 90.329 14.774 90.347 15.328 90.347 20 C 90.347 24.673 90.329 25.226 90.245 27.071 C 90.232 28.181 90.028 29.28 89.643 30.321 C 89.351 31.076 88.905 31.761 88.333 32.333 C 87.761 32.905 87.076 33.351 86.321 33.643 C 85.28 34.028 84.181 34.232 83.071 34.245 C 81.226 34.329 80.673 34.347 76 34.347 C 71.327 34.347 70.774 34.329 68.929 34.245 C 67.819 34.232 66.72 34.028 65.679 33.643 C 64.924 33.351 64.239 32.905 63.667 32.333 C 63.095 31.761 62.649 31.076 62.358 30.321 C 61.972 29.28 61.769 28.181 61.755 27.071 C 61.671 25.226 61.653 24.673 61.653 20 C 61.653 15.328 61.671 14.774 61.755 12.929 C 61.769 11.819 61.972 10.72 62.358 9.679 C 62.649 8.924 63.095 8.239 63.667 7.667 C 64.239 7.095 64.924 6.649 65.679 6.358 C 66.72 5.972 67.819 5.768 68.929 5.755 C 70.774 5.671 71.328 5.653 76 5.653 Z M 76 2.5 C 71.25 2.5 70.651 2.52 68.785 2.605 C 67.333 2.634 65.895 2.908 64.535 3.417 C 63.373 3.868 62.318 4.556 61.437 5.437 C 60.556 6.319 59.868 7.374 59.419 8.537 C 58.91 9.897 58.635 11.335 58.606 12.787 C 58.52 14.651 58.5 15.25 58.5 20 C 58.5 24.75 58.52 25.349 58.605 27.215 C 58.634 28.667 58.908 30.105 59.417 31.465 C 59.867 32.627 60.555 33.683 61.436 34.564 C 62.318 35.446 63.373 36.133 64.536 36.583 C 65.896 37.092 67.333 37.367 68.786 37.396 C 70.651 37.48 71.25 37.5 76 37.5 C 80.75 37.5 81.349 37.48 83.215 37.395 C 84.667 37.366 86.105 37.092 87.465 36.583 C 88.627 36.133 89.683 35.445 90.564 34.564 C 91.446 33.682 92.133 32.627 92.583 31.464 C 93.092 30.104 93.367 28.667 93.396 27.214 C 93.48 25.349 93.5 24.75 93.5 20 C 93.5 15.25 93.48 14.651 93.395 12.785 C 93.366 11.333 93.092 9.896 92.582 8.535 C 92.132 7.373 91.444 6.317 90.563 5.436 C 89.681 4.555 88.626 3.868 87.463 3.419 C 86.103 2.91 84.665 2.635 83.213 2.606 C 81.349 2.52 80.75 2.5 76 2.5 Z\" fill=\"rgb(158,158,158)\"></path><path d=\"M 76 11.014 C 74.223 11.014 72.485 11.541 71.007 12.528 C 69.53 13.516 68.378 14.919 67.698 16.561 C 67.018 18.203 66.84 20.01 67.186 21.753 C 67.533 23.496 68.389 25.098 69.646 26.354 C 70.902 27.611 72.504 28.467 74.247 28.814 C 75.99 29.16 77.797 28.982 79.439 28.302 C 81.081 27.622 82.484 26.47 83.472 24.992 C 84.459 23.515 84.986 21.777 84.986 20 C 84.986 17.617 84.039 15.331 82.354 13.646 C 80.669 11.961 78.383 11.014 76 11.014 Z M 76 25.833 C 74.846 25.833 73.718 25.491 72.759 24.85 C 71.8 24.209 71.052 23.298 70.611 22.232 C 70.169 21.166 70.054 19.994 70.279 18.862 C 70.504 17.731 71.059 16.691 71.875 15.875 C 72.691 15.06 73.73 14.504 74.862 14.279 C 75.993 14.054 77.166 14.169 78.232 14.611 C 79.298 15.052 80.209 15.8 80.85 16.759 C 81.491 17.719 81.833 18.846 81.833 20 C 81.833 20.766 81.682 21.525 81.389 22.232 C 81.096 22.94 80.666 23.583 80.125 24.125 C 79.583 24.667 78.94 25.096 78.232 25.389 C 77.524 25.682 76.766 25.833 76 25.833 Z\" fill=\"rgb(158,158,158)\"></path><path d=\"M 85.341 12.759 C 86.501 12.759 87.441 11.819 87.441 10.659 C 87.441 9.499 86.501 8.559 85.341 8.559 C 84.181 8.559 83.241 9.499 83.241 10.659 C 83.241 11.819 84.181 12.759 85.341 12.759 Z\" fill=\"rgb(158,158,158)\"></path></svg>',svgContentId:733968213,withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U29maWEgU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"Sofia Sans\", \"Sofia Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"\\xa9 2023 VirtuaSports. All rights reserved.\"})}),className:\"framer-1sobx\",\"data-framer-name\":\"\\xa9 2023 VirtuaSports. All rights reserved.\",fonts:[\"GF;Sofia Sans-regular\"],name:\"\\xa9 2023 VirtuaSports. All rights reserved.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})})});});const css=['.framer-oK0M7 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName} { background: #000000; }`,\".framer-oK0M7 .framer-1lo7k2x { display: block; }\",\".framer-oK0M7 .framer-dbn1ge { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-oK0M7 .framer-15ykwf6 { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1418px; justify-content: flex-start; overflow: visible; padding: 88px 88px 88px 88px; position: relative; width: 100%; }\",\".framer-oK0M7 .framer-1hwp43n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 402px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 737px; z-index: 1; }\",\".framer-oK0M7 .framer-1ppm9t2, .framer-oK0M7 .framer-19r08e0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 190px; height: 66%; justify-content: center; overflow: visible; padding: 57px 57px 57px 57px; position: relative; width: 99%; }\",\".framer-oK0M7 .framer-1vcfch7, .framer-oK0M7 .framer-1hyo6r3, .framer-oK0M7 .framer-nysy06, .framer-oK0M7 .framer-k7fsfu, .framer-oK0M7 .framer-1nwqg1c, .framer-oK0M7 .framer-1icfw7k, .framer-oK0M7 .framer-rocgtq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oK0M7 .framer-zbgavu, .framer-oK0M7 .framer-1hw7dg6, .framer-oK0M7 .framer-vt69vx, .framer-oK0M7 .framer-1txmhc1, .framer-oK0M7 .framer-o93vop, .framer-oK0M7 .framer-1mlpyfr, .framer-oK0M7 .framer-s50a52, .framer-oK0M7 .framer-1wcg0u9, .framer-oK0M7 .framer-z80drg, .framer-oK0M7 .framer-3p00wu, .framer-oK0M7 .framer-1pbzm8q, .framer-oK0M7 .framer-1bucseb, .framer-oK0M7 .framer-8dluna, .framer-oK0M7 .framer-1j7ecvv, .framer-oK0M7 .framer-9zww8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oK0M7 .framer-6ql7cd, .framer-oK0M7 .framer-1uri77r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oK0M7 .framer-lvef1k, .framer-oK0M7 .framer-11mhmhm { flex: none; height: 40px; position: relative; width: 96px; }\",\".framer-oK0M7 .framer-25en74, .framer-oK0M7 .framer-1sobx { --framer-paragraph-spacing: 0px; bottom: 12px; flex: none; height: auto; left: 82px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-oK0M7 .framer-mal9i4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: hidden; padding: 50px 50px 50px 50px; position: relative; width: 323px; }\",\".framer-oK0M7 .framer-19a9xk0 { align-content: center; align-items: center; aspect-ratio: 5.046875 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 38px); justify-content: center; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 190px; }\",\".framer-oK0M7 .framer-neyft5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 93px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 120px; position: relative; width: 1133px; }\",\".framer-oK0M7 .framer-13m2eu0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 59px; position: relative; white-space: pre-wrap; width: 1133px; word-break: break-word; word-wrap: break-word; }\",\".framer-oK0M7 .framer-99w361 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 745px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1217px; }\",\".framer-oK0M7 .framer-1qcpza5 { align-content: flex-start; align-items: flex-start; background-color: #212121; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 679px; justify-content: flex-start; overflow: visible; padding: 54px 52px 54px 52px; position: relative; width: 360px; }\",\".framer-oK0M7 .framer-6xbr8p { flex: none; height: 38%; position: relative; width: 82%; }\",\".framer-oK0M7 .framer-qf59vr, .framer-oK0M7 .framer-1i0ujq, .framer-oK0M7 .framer-dt6ybv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oK0M7 .framer-trbzap, .framer-oK0M7 .framer-1h074sb, .framer-oK0M7 .framer-1mvi90v { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 256px; word-break: break-word; word-wrap: break-word; }\",\".framer-oK0M7 .framer-gi3amt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oK0M7 .framer-1qkbea1, .framer-oK0M7 .framer-1jayx54, .framer-oK0M7 .framer-d040l, .framer-oK0M7 .framer-w1sitc, .framer-oK0M7 .framer-1vhldkp, .framer-oK0M7 .framer-178mqaq, .framer-oK0M7 .framer-1aozxcd, .framer-oK0M7 .framer-1xm2jfy, .framer-oK0M7 .framer-rb5e5h, .framer-oK0M7 .framer-1h0h0xk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-oK0M7 .framer-1shqnlj, .framer-oK0M7 .framer-uwi88f, .framer-oK0M7 .framer-1qnbbe9, .framer-oK0M7 .framer-14s706f, .framer-oK0M7 .framer-17dx31h, .framer-oK0M7 .framer-12dsw29, .framer-oK0M7 .framer-teakv7, .framer-oK0M7 .framer-19fpmrw, .framer-oK0M7 .framer-e3h5qe, .framer-oK0M7 .framer-1ggcz7n, .framer-oK0M7 .framer-1kc0q1r, .framer-oK0M7 .framer-1d75yyx { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\".framer-oK0M7 .framer-agzify, .framer-oK0M7 .framer-aj8abr, .framer-oK0M7 .framer-1opj7q8, .framer-oK0M7 .framer-h2muom, .framer-oK0M7 .framer-m5e3c9, .framer-oK0M7 .framer-r9rx9n, .framer-oK0M7 .framer-gl9c9j, .framer-oK0M7 .framer-19doozp, .framer-oK0M7 .framer-gh6232, .framer-oK0M7 .framer-cuv7oz { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oK0M7 .framer-xb5jae { align-content: center; align-items: center; background: linear-gradient(220.7480346119851deg, #ffffff 0%, #8535a1 32.8125%, rgba(189, 0, 170, 1) 65.625%, rgba(98, 0, 176, 1) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0px 20px 0px rgba(170, 0, 230, 0.4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 20px 20px 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-oK0M7 .framer-3n07d2, .framer-oK0M7 .framer-16krshq { align-content: flex-start; align-items: flex-start; background-color: #212121; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 680px; justify-content: flex-start; overflow: visible; padding: 62px 52px 62px 52px; position: relative; width: 360px; }\",\".framer-oK0M7 .framer-ytrbz6, .framer-oK0M7 .framer-74ks8f { flex: none; height: 39%; position: relative; width: 82%; }\",\".framer-oK0M7 .framer-1x9d1qa { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 278px; word-break: break-word; word-wrap: break-word; }\",\".framer-oK0M7 .framer-1j6wo9a, .framer-oK0M7 .framer-zzgdea { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oK0M7 .framer-1y274yc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 175px; word-break: break-word; word-wrap: break-word; }\",\".framer-oK0M7 .framer-ba3kcx, .framer-oK0M7 .framer-1gk0sse { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oK0M7 .framer-f8p60t, .framer-oK0M7 .framer-1kn2ae3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oK0M7 .framer-4h4hr9, .framer-oK0M7 .framer-qbfn6t { --framer-paragraph-spacing: 12px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 223px; word-break: break-word; word-wrap: break-word; }\",\".framer-oK0M7 .framer-1xpu59m, .framer-oK0M7 .framer-elm03l { align-content: center; align-items: center; background: linear-gradient(220.7480346119851deg, #75004d 0%, rgba(133, 53, 161, 1) 32.8125%, rgba(189, 0, 170, 1) 65.625%, rgba(98, 0, 176, 1) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0px 20px 0px rgba(170, 0, 230, 0.4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 20px 20px 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-oK0M7 .framer-4vgxqd-container { flex: none; height: auto; left: 36px; position: absolute; top: 22px; width: auto; z-index: 1; }\",\".framer-oK0M7 .framer-1qi2fqc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 192px; word-break: break-word; word-wrap: break-word; }\",\".framer-oK0M7 .framer-ye9y79 { 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: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oK0M7 .framer-jeghnc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 402px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1217px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oK0M7 .framer-dbn1ge, .framer-oK0M7 .framer-15ykwf6, .framer-oK0M7 .framer-1hwp43n, .framer-oK0M7 .framer-1ppm9t2, .framer-oK0M7 .framer-1vcfch7, .framer-oK0M7 .framer-1hyo6r3, .framer-oK0M7 .framer-6ql7cd, .framer-oK0M7 .framer-nysy06, .framer-oK0M7 .framer-mal9i4, .framer-oK0M7 .framer-19a9xk0, .framer-oK0M7 .framer-neyft5, .framer-oK0M7 .framer-99w361, .framer-oK0M7 .framer-1qcpza5, .framer-oK0M7 .framer-qf59vr, .framer-oK0M7 .framer-gi3amt, .framer-oK0M7 .framer-k7fsfu, .framer-oK0M7 .framer-1qkbea1, .framer-oK0M7 .framer-1jayx54, .framer-oK0M7 .framer-d040l, .framer-oK0M7 .framer-w1sitc, .framer-oK0M7 .framer-xb5jae, .framer-oK0M7 .framer-3n07d2, .framer-oK0M7 .framer-1i0ujq, .framer-oK0M7 .framer-ba3kcx, .framer-oK0M7 .framer-1vhldkp, .framer-oK0M7 .framer-178mqaq, .framer-oK0M7 .framer-1aozxcd, .framer-oK0M7 .framer-f8p60t, .framer-oK0M7 .framer-1xpu59m, .framer-oK0M7 .framer-16krshq, .framer-oK0M7 .framer-dt6ybv, .framer-oK0M7 .framer-ye9y79, .framer-oK0M7 .framer-1gk0sse, .framer-oK0M7 .framer-1xm2jfy, .framer-oK0M7 .framer-rb5e5h, .framer-oK0M7 .framer-1h0h0xk, .framer-oK0M7 .framer-1kn2ae3, .framer-oK0M7 .framer-elm03l, .framer-oK0M7 .framer-jeghnc, .framer-oK0M7 .framer-19r08e0, .framer-oK0M7 .framer-1nwqg1c, .framer-oK0M7 .framer-1icfw7k, .framer-oK0M7 .framer-1uri77r, .framer-oK0M7 .framer-rocgtq { gap: 0px; } .framer-oK0M7 .framer-dbn1ge > *, .framer-oK0M7 .framer-15ykwf6 > *, .framer-oK0M7 .framer-1hwp43n > *, .framer-oK0M7 .framer-jeghnc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oK0M7 .framer-dbn1ge > :first-child, .framer-oK0M7 .framer-15ykwf6 > :first-child, .framer-oK0M7 .framer-1hwp43n > :first-child, .framer-oK0M7 .framer-1vcfch7 > :first-child, .framer-oK0M7 .framer-1hyo6r3 > :first-child, .framer-oK0M7 .framer-6ql7cd > :first-child, .framer-oK0M7 .framer-nysy06 > :first-child, .framer-oK0M7 .framer-1qcpza5 > :first-child, .framer-oK0M7 .framer-qf59vr > :first-child, .framer-oK0M7 .framer-gi3amt > :first-child, .framer-oK0M7 .framer-k7fsfu > :first-child, .framer-oK0M7 .framer-3n07d2 > :first-child, .framer-oK0M7 .framer-1i0ujq > :first-child, .framer-oK0M7 .framer-ba3kcx > :first-child, .framer-oK0M7 .framer-16krshq > :first-child, .framer-oK0M7 .framer-dt6ybv > :first-child, .framer-oK0M7 .framer-ye9y79 > :first-child, .framer-oK0M7 .framer-1gk0sse > :first-child, .framer-oK0M7 .framer-jeghnc > :first-child, .framer-oK0M7 .framer-1nwqg1c > :first-child, .framer-oK0M7 .framer-1icfw7k > :first-child, .framer-oK0M7 .framer-1uri77r > :first-child, .framer-oK0M7 .framer-rocgtq > :first-child { margin-top: 0px; } .framer-oK0M7 .framer-dbn1ge > :last-child, .framer-oK0M7 .framer-15ykwf6 > :last-child, .framer-oK0M7 .framer-1hwp43n > :last-child, .framer-oK0M7 .framer-1vcfch7 > :last-child, .framer-oK0M7 .framer-1hyo6r3 > :last-child, .framer-oK0M7 .framer-6ql7cd > :last-child, .framer-oK0M7 .framer-nysy06 > :last-child, .framer-oK0M7 .framer-1qcpza5 > :last-child, .framer-oK0M7 .framer-qf59vr > :last-child, .framer-oK0M7 .framer-gi3amt > :last-child, .framer-oK0M7 .framer-k7fsfu > :last-child, .framer-oK0M7 .framer-3n07d2 > :last-child, .framer-oK0M7 .framer-1i0ujq > :last-child, .framer-oK0M7 .framer-ba3kcx > :last-child, .framer-oK0M7 .framer-16krshq > :last-child, .framer-oK0M7 .framer-dt6ybv > :last-child, .framer-oK0M7 .framer-ye9y79 > :last-child, .framer-oK0M7 .framer-1gk0sse > :last-child, .framer-oK0M7 .framer-jeghnc > :last-child, .framer-oK0M7 .framer-1nwqg1c > :last-child, .framer-oK0M7 .framer-1icfw7k > :last-child, .framer-oK0M7 .framer-1uri77r > :last-child, .framer-oK0M7 .framer-rocgtq > :last-child { margin-bottom: 0px; } .framer-oK0M7 .framer-1ppm9t2 > *, .framer-oK0M7 .framer-19r08e0 > * { margin: 0px; margin-left: calc(190px / 2); margin-right: calc(190px / 2); } .framer-oK0M7 .framer-1ppm9t2 > :first-child, .framer-oK0M7 .framer-mal9i4 > :first-child, .framer-oK0M7 .framer-19a9xk0 > :first-child, .framer-oK0M7 .framer-neyft5 > :first-child, .framer-oK0M7 .framer-99w361 > :first-child, .framer-oK0M7 .framer-1qkbea1 > :first-child, .framer-oK0M7 .framer-1jayx54 > :first-child, .framer-oK0M7 .framer-d040l > :first-child, .framer-oK0M7 .framer-w1sitc > :first-child, .framer-oK0M7 .framer-xb5jae > :first-child, .framer-oK0M7 .framer-1vhldkp > :first-child, .framer-oK0M7 .framer-178mqaq > :first-child, .framer-oK0M7 .framer-1aozxcd > :first-child, .framer-oK0M7 .framer-f8p60t > :first-child, .framer-oK0M7 .framer-1xpu59m > :first-child, .framer-oK0M7 .framer-1xm2jfy > :first-child, .framer-oK0M7 .framer-rb5e5h > :first-child, .framer-oK0M7 .framer-1h0h0xk > :first-child, .framer-oK0M7 .framer-1kn2ae3 > :first-child, .framer-oK0M7 .framer-elm03l > :first-child, .framer-oK0M7 .framer-19r08e0 > :first-child { margin-left: 0px; } .framer-oK0M7 .framer-1ppm9t2 > :last-child, .framer-oK0M7 .framer-mal9i4 > :last-child, .framer-oK0M7 .framer-19a9xk0 > :last-child, .framer-oK0M7 .framer-neyft5 > :last-child, .framer-oK0M7 .framer-99w361 > :last-child, .framer-oK0M7 .framer-1qkbea1 > :last-child, .framer-oK0M7 .framer-1jayx54 > :last-child, .framer-oK0M7 .framer-d040l > :last-child, .framer-oK0M7 .framer-w1sitc > :last-child, .framer-oK0M7 .framer-xb5jae > :last-child, .framer-oK0M7 .framer-1vhldkp > :last-child, .framer-oK0M7 .framer-178mqaq > :last-child, .framer-oK0M7 .framer-1aozxcd > :last-child, .framer-oK0M7 .framer-f8p60t > :last-child, .framer-oK0M7 .framer-1xpu59m > :last-child, .framer-oK0M7 .framer-1xm2jfy > :last-child, .framer-oK0M7 .framer-rb5e5h > :last-child, .framer-oK0M7 .framer-1h0h0xk > :last-child, .framer-oK0M7 .framer-1kn2ae3 > :last-child, .framer-oK0M7 .framer-elm03l > :last-child, .framer-oK0M7 .framer-19r08e0 > :last-child { margin-right: 0px; } .framer-oK0M7 .framer-1vcfch7 > *, .framer-oK0M7 .framer-1hyo6r3 > *, .framer-oK0M7 .framer-nysy06 > *, .framer-oK0M7 .framer-k7fsfu > *, .framer-oK0M7 .framer-ba3kcx > *, .framer-oK0M7 .framer-1gk0sse > *, .framer-oK0M7 .framer-1nwqg1c > *, .framer-oK0M7 .framer-1icfw7k > *, .framer-oK0M7 .framer-rocgtq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-oK0M7 .framer-6ql7cd > *, .framer-oK0M7 .framer-1uri77r > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-oK0M7 .framer-mal9i4 > *, .framer-oK0M7 .framer-19a9xk0 > *, .framer-oK0M7 .framer-neyft5 > *, .framer-oK0M7 .framer-99w361 > *, .framer-oK0M7 .framer-xb5jae > *, .framer-oK0M7 .framer-1xpu59m > *, .framer-oK0M7 .framer-elm03l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oK0M7 .framer-1qcpza5 > *, .framer-oK0M7 .framer-3n07d2 > *, .framer-oK0M7 .framer-16krshq > *, .framer-oK0M7 .framer-ye9y79 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-oK0M7 .framer-qf59vr > *, .framer-oK0M7 .framer-1i0ujq > *, .framer-oK0M7 .framer-dt6ybv > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-oK0M7 .framer-gi3amt > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-oK0M7 .framer-1qkbea1 > *, .framer-oK0M7 .framer-1jayx54 > *, .framer-oK0M7 .framer-d040l > *, .framer-oK0M7 .framer-w1sitc > *, .framer-oK0M7 .framer-1vhldkp > *, .framer-oK0M7 .framer-178mqaq > *, .framer-oK0M7 .framer-1aozxcd > *, .framer-oK0M7 .framer-f8p60t > *, .framer-oK0M7 .framer-1xm2jfy > *, .framer-oK0M7 .framer-rb5e5h > *, .framer-oK0M7 .framer-1h0h0xk > *, .framer-oK0M7 .framer-1kn2ae3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\"@media (min-width: 1440px) { .framer-oK0M7 .hidden-dbn1ge { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1439px) { .framer-oK0M7 .hidden-1a7iu7q { display: none !important; } .${metadata.bodyClassName} { background: #000000; } .framer-oK0M7 .framer-dbn1ge { width: 810px; } .framer-oK0M7 .framer-15ykwf6 { height: 2841px; padding: 50px 50px 50px 50px; } .framer-oK0M7 .framer-1hwp43n { order: 4; } .framer-oK0M7 .framer-mal9i4 { height: 142px; order: 1; padding: 71px 71px 71px 71px; width: 726px; } .framer-oK0M7 .framer-neyft5 { order: 2; width: 702px; } .framer-oK0M7 .framer-13m2eu0 { height: 80px; width: 443px; } .framer-oK0M7 .framer-99w361 { flex-direction: column; height: 2096px; order: 3; width: 742px; } .framer-oK0M7 .framer-1qcpza5 { order: 2; } .framer-oK0M7 .framer-3n07d2 { order: 1; } .framer-oK0M7 .framer-16krshq { order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oK0M7 .framer-99w361 { gap: 0px; } .framer-oK0M7 .framer-99w361 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oK0M7 .framer-99w361 > :first-child { margin-top: 0px; } .framer-oK0M7 .framer-99w361 > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-oK0M7 .hidden-1phofk0 { display: none !important; } .${metadata.bodyClassName} { background: #000000; } .framer-oK0M7 .framer-dbn1ge { width: 390px; } .framer-oK0M7 .framer-15ykwf6 { height: 3039px; padding: 20px 20px 20px 20px; } .framer-oK0M7 .framer-mal9i4 { height: 100px; order: 1; width: 352px; } .framer-oK0M7 .framer-19a9xk0 { height: var(--framer-aspect-ratio-supported, 46px); order: 0; width: 228px; } .framer-oK0M7 .framer-neyft5 { order: 2; width: 338px; } .framer-oK0M7 .framer-13m2eu0 { order: 0; width: 360px; } .framer-oK0M7 .framer-99w361 { flex-direction: column; height: 2167px; order: 3; width: 365px; } .framer-oK0M7 .framer-1qcpza5 { order: 2; } .framer-oK0M7 .framer-3n07d2 { order: 1; } .framer-oK0M7 .framer-16krshq { order: 0; } .framer-oK0M7 .framer-jeghnc { align-content: center; align-items: center; height: 627px; order: 4; width: 360px; } .framer-oK0M7 .framer-19r08e0 { flex-direction: column; gap: 0px; height: 63%; width: 99%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oK0M7 .framer-99w361, .framer-oK0M7 .framer-19r08e0 { gap: 0px; } .framer-oK0M7 .framer-99w361 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oK0M7 .framer-99w361 > :first-child, .framer-oK0M7 .framer-19r08e0 > :first-child { margin-top: 0px; } .framer-oK0M7 .framer-99w361 > :last-child, .framer-oK0M7 .framer-19r08e0 > :last-child { margin-bottom: 0px; } .framer-oK0M7 .framer-19r08e0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1418\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hDdVrD81v\":{\"layout\":[\"fixed\",\"auto\"]},\"USGCbZvep\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerResponsiveScreen\n */const Framerg7VJdbC4w=withCSS(Component,css,\"framer-oK0M7\");export default Framerg7VJdbC4w;Framerg7VJdbC4w.displayName=\"GETPRO\";Framerg7VJdbC4w.defaultProps={height:1418,width:1440};addFonts(Framerg7VJdbC4w,[{family:\"Futura Extra Black Italic\",moduleAsset:{localModuleIdentifier:\"local-module:screen/g7VJdbC4w:default\",url:\"https://framerusercontent.com/assets/1wgwFuuuLyEmUPPjqAEJkRgwcU.ttf\"},url:\"https://framerusercontent.com/assets/1wgwFuuuLyEmUPPjqAEJkRgwcU.ttf\"},{family:\"Sofia Sans\",moduleAsset:{localModuleIdentifier:\"local-module:screen/g7VJdbC4w:default\",url:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/sofiasans/v16/Yq6E-LCVXSLy9uPBwlAThu1SY8Cx8rlT69B6sK3trvKCXl8k.ttf\",weight:\"400\"},...DownloadFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg7VJdbC4w\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hDdVrD81v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"USGCbZvep\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"1418\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "DownloadFonts", "getFonts", "Download", "breakpoints", "isBrowser", "variantClassNames", "isBrowser", "transitions", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "RichText2", "x", "Link", "SVG", "Image2", "PropertyOverrides2", "Container", "Download", "css", "Framerg7VJdbC4w", "withCSS", "g7VJdbC4w_default", "addFonts", "DownloadFonts", "fonts", "__FramerMetadata__"]
}
