{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/l9nMLlVLx6CeCxnJcgPV/JmKABD1Mrau0t6IQuV10/ct20CDXcX.js", "ssg:https://framerusercontent.com/modules/UfqNUKhHWd7N5edOHvLP/DTSgD0QminH8VQTXhnf5/componentPresets.js", "ssg:https://framerusercontent.com/modules/IS0gif6h9iY2ZpstgQDE/ESx53i84lY03x38cqu4P/DmZ72atav.js", "ssg:https://framerusercontent.com/modules/fiifqnsO1uiEvmACiaL6/rELtDpQyBovZWYu4jxxv/G38TVrr7k.js", "ssg:https://framerusercontent.com/modules/1KDrLw594LjFNVBxPSbW/bliy6Bjgy2JrSGRToWqX/hcWBRhByS.js", "ssg:https://framerusercontent.com/modules/clhV4Rof7V843TZEvSs4/fVzEdOQF1OIsrp3cmYs9/i2_LnZcRi.js", "ssg:https://framerusercontent.com/modules/67Gvs2PMNzLppfawsCoV/RcMJ8MJldnhvTcz3FoWL/SFRin66cN.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (3b859b3)\nimport{jsx as e}from\"react/jsx-runtime\";import{addFonts as r,addPropertyControls as i,ControlType as t,cx as a,getFonts as n,getPropertyControls as o,Link as l,useLocaleInfo as d,useVariantState as f,withCSS as s}from\"framer\";import{LayoutGroup as h,motion as m,MotionConfigContext as c}from\"framer-motion\";import*as p from\"react\";import{Icon as u}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";let b=n(u),x=o(u),g={BL0fhDi73:{hover:!0}},v=[\"BL0fhDi73\",\"HMPilhdHy\"],y=\"framer-hixHD\",D={BL0fhDi73:\"framer-v-fjb0zg\",HMPilhdHy:\"framer-v-9f04fm\"};function H(e,...r){let i={};return null==r||r.forEach(r=>r&&Object.assign(i,e[r])),i;}let w={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},j=({value:r,children:i})=>{let t=p.useContext(c),a=null!=r?r:t.transition,n=p.useMemo(()=>({...t,transition:a}),[JSON.stringify(a)]);return /*#__PURE__*/e(c.Provider,{value:n,children:i});},L={\"Variant 2\":\"HMPilhdHy\",Default:\"BL0fhDi73\"},M=({height:e,iconName:r,id:i,link:t,width:a,...n})=>{var o,l,d;return{...n,p0RxbxAsM:null!=t?t:n.p0RxbxAsM,variant:null!==(l=null!==(o=L[n.variant])&&void 0!==o?o:n.variant)&&void 0!==l?l:\"BL0fhDi73\",wqIMlKjz5:null!==(d=null!=r?r:n.wqIMlKjz5)&&void 0!==d?d:\"Facebook\"};},z=(e,r)=>r.join(\"-\")+e.layoutDependency,B=/*#__PURE__*/p.forwardRef(function(r,i){let{activeLocale:t}=d(),{style:n,className:o,layoutId:s,variant:c,p0RxbxAsM:b,wqIMlKjz5:x,...y}=M(r),{baseVariant:L,classNames:B,gestureVariant:P,setGestureState:k,setVariant:I,transition:S,variants:T}=f({cycleOrder:v,defaultVariant:\"BL0fhDi73\",enabledGestures:g,transitions:w,variant:c,variantClassNames:D}),R=z(r,T),N=p.useRef(null),V=p.useId();return /*#__PURE__*/e(h,{id:null!=s?s:V,children:/*#__PURE__*/e(m.div,{initial:c,animate:T,onHoverStart:()=>k({isHovered:!0}),onHoverEnd:()=>k({isHovered:!1}),onTapStart:()=>k({isPressed:!0}),onTap:()=>k({isPressed:!1}),onTapCancel:()=>k({isPressed:!1}),className:a(\"framer-hixHD\",...[],B),style:{display:\"contents\"},children:/*#__PURE__*/e(j,{value:S,children:/*#__PURE__*/e(l,{href:b,openInNewTab:!0,children:/*#__PURE__*/e(m.a,{...y,className:`${a(\"framer-fjb0zg\",o)} framer-ol48c`,\"data-framer-name\":\"Default\",layoutDependency:R,layoutId:\"BL0fhDi73\",ref:null!=i?i:N,style:{...n},...H({\"BL0fhDi73-hover\":{\"data-framer-name\":void 0},HMPilhdHy:{\"data-framer-name\":\"Variant 2\"}},L,P),children:/*#__PURE__*/e(m.div,{className:\"framer-lihh89-container\",layoutDependency:R,layoutId:\"RgcLKjTbA-container\",children:/*#__PURE__*/e(u,{color:\"rgb(85, 85, 85)\",height:\"100%\",iconSearch:\"Home\",iconSelection:x,iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"RgcLKjTbA\",layoutId:\"RgcLKjTbA\",mirrored:!1,selectByList:!0,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...H({\"BL0fhDi73-hover\":{color:'var(--token-a27b33fd-23d6-4455-a4ed-babc370c9101, rgb(174, 25, 93)) /* {\"name\":\"Primary / Maroon\"} */'}},L,P)})})})})})})});}),P=['.framer-hixHD [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; } }\",\".framer-hixHD .framer-ol48c { display: block; }\",\".framer-hixHD .framer-fjb0zg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-hixHD .framer-lihh89-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hixHD .framer-fjb0zg { gap: 0px; } .framer-hixHD .framer-fjb0zg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hixHD .framer-fjb0zg > :first-child { margin-left: 0px; } .framer-hixHD .framer-fjb0zg > :last-child { margin-right: 0px; } }\",\".framer-hixHD.framer-v-9f04fm .framer-fjb0zg { cursor: unset; }\"],k=s(B,P,\"framer-hixHD\");export default k;k.displayName=\"Social Link\",k.defaultProps={height:16,width:16},i(k,{variant:{options:[\"BL0fhDi73\",\"HMPilhdHy\"],optionTitles:[\"Default\",\"Variant 2\"],title:\"Variant\",type:t.Enum},p0RxbxAsM:{title:\"Link\",type:t.Link},wqIMlKjz5:(null==x?void 0:x.iconSelection)&&{...x.iconSelection,defaultValue:\"Facebook\",hidden:void 0,title:\"Icon Name\"}}),r(k,[...b]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerct20CDXcX\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"16\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HMPilhdHy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pKWZrgGur\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"16\",\"framerVariables\":\"{\\\"p0RxbxAsM\\\":\\\"link\\\",\\\"wqIMlKjz5\\\":\\\"iconName\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ct20CDXcX.map", "// Generated by Framer (12ecc5e)\nexport const props={BcuUIwsn6:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0},CR2F1u88A:{background:\"rgb(0, 153, 255)\",borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Dynamic\",topLeftRadius:15,topRightRadius:15}};export const fonts={CR2F1u88A:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0b5b7f5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-4VUmj .framer-styles-preset-50k82y:not(.rich-text-wrapper), .framer-4VUmj .framer-styles-preset-50k82y.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-7fd6de4b-cd80-44e2-b1f2-df8b6268f6cc, #211008) /* {\"name\":\"Gray / 800\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-a3ec36e1-caf5-4911-935d-af46d2796f14, #ff691f); --framer-link-text-decoration: underline; }'];export const className=\"framer-4VUmj\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (90417e1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-GyAEL .framer-styles-preset-1drhcar:not(.rich-text-wrapper), .framer-GyAEL .framer-styles-preset-1drhcar.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1388px) and (min-width: 1080px) { .framer-GyAEL .framer-styles-preset-1drhcar:not(.rich-text-wrapper), .framer-GyAEL .framer-styles-preset-1drhcar.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1079px) and (min-width: 768px) { .framer-GyAEL .framer-styles-preset-1drhcar:not(.rich-text-wrapper), .framer-GyAEL .framer-styles-preset-1drhcar.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-GyAEL .framer-styles-preset-1drhcar:not(.rich-text-wrapper), .framer-GyAEL .framer-styles-preset-1drhcar.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-GyAEL\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-UTbsu .framer-styles-preset-1evs24d { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-UTbsu\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (90417e1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-fe2tI .framer-styles-preset-16nd49c:not(.rich-text-wrapper), .framer-fe2tI .framer-styles-preset-16nd49c.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-fe2tI\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68888f7)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import CtaSection from\"#framer/local/canvasComponent/BDLfiGOtX/BDLfiGOtX.js\";import SocialLink from\"#framer/local/canvasComponent/ct20CDXcX/ct20CDXcX.js\";import NewsletterSignup from\"#framer/local/canvasComponent/dJRrEvpIc/dJRrEvpIc.js\";import ButtonLink from\"#framer/local/canvasComponent/h2Bfi1leS/h2Bfi1leS.js\";import FooterSection from\"#framer/local/canvasComponent/IyrzIS4nO/IyrzIS4nO.js\";import Header from\"#framer/local/canvasComponent/paT0f_U0o/paT0f_U0o.js\";import Authors from\"#framer/local/collection/DBAyF9hpw/DBAyF9hpw.js\";import Resources,{enumToDisplayNameFunctions}from\"#framer/local/collection/UVNsBi96_/UVNsBi96_.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle1 from\"#framer/local/css/bnMARxdZo/bnMARxdZo.js\";import*as sharedStyle14 from\"#framer/local/css/C1DY95pma/C1DY95pma.js\";import*as sharedStyle10 from\"#framer/local/css/C92z6TNGk/C92z6TNGk.js\";import*as sharedStyle12 from\"#framer/local/css/DmZ72atav/DmZ72atav.js\";import*as sharedStyle11 from\"#framer/local/css/EMDzpXhRj/EMDzpXhRj.js\";import*as sharedStyle7 from\"#framer/local/css/G38TVrr7k/G38TVrr7k.js\";import*as sharedStyle13 from\"#framer/local/css/hcWBRhByS/hcWBRhByS.js\";import*as sharedStyle3 from\"#framer/local/css/hNd4xEm0l/hNd4xEm0l.js\";import*as sharedStyle8 from\"#framer/local/css/i2_LnZcRi/i2_LnZcRi.js\";import*as sharedStyle4 from\"#framer/local/css/J3136TmB6/J3136TmB6.js\";import*as sharedStyle from\"#framer/local/css/q7wEvvCna/q7wEvvCna.js\";import*as sharedStyle2 from\"#framer/local/css/QGaIMx1qm/QGaIMx1qm.js\";import*as sharedStyle5 from\"#framer/local/css/qMYJrzKT0/qMYJrzKT0.js\";import*as sharedStyle9 from\"#framer/local/css/vk0whTAgF/vk0whTAgF.js\";import*as sharedStyle6 from\"#framer/local/css/ZMHbHT8GY/ZMHbHT8GY.js\";import metadataProvider from\"#framer/local/webPageMetadata/SFRin66cN/SFRin66cN.js\";const ButtonLinkFonts=getFonts(ButtonLink);const NewsletterSignupFonts=getFonts(NewsletterSignup);const SocialLinkFonts=getFonts(SocialLink);const YouTubeFonts=getFonts(YouTube);const CtaSectionFonts=getFonts(CtaSection);const FooterSectionFonts=getFonts(FooterSection);const HeaderFonts=getFonts(Header);const breakpoints={b7uOetJT7:\"(min-width: 1080px) and (max-width: 1388px)\",BFyeIYsAj:\"(max-width: 767px)\",dSZJmFDwz:\"(min-width: 1389px)\",QQT5w6e_6:\"(min-width: 768px) and (max-width: 1079px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-crwe9\";const variantClassNames={b7uOetJT7:\"framer-v-1btw8ix\",BFyeIYsAj:\"framer-v-1bzr5ub\",dSZJmFDwz:\"framer-v-qcpnpc\",QQT5w6e_6:\"framer-v-dxsf17\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const metadata=metadataProvider();const humanReadableVariantMap={\"Large Desktop\":\"dSZJmFDwz\",Desktop:\"b7uOetJT7\",Phone:\"BFyeIYsAj\",Tablet:\"QQT5w6e_6\"};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:\"dSZJmFDwz\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _enumToDisplayNameFunctions_HN3xvyyrP;const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"SFRin66cN\",data:Resources,type:\"Collection\"},select:[{collection:\"SFRin66cN\",name:\"HN3xvyyrP\",type:\"Identifier\"},{collection:\"SFRin66cN\",name:\"B6VJXH105\",type:\"Identifier\"},{collection:\"SFRin66cN\",name:\"J_IXTyuNY\",type:\"Identifier\"},{collection:\"SFRin66cN\",name:\"htgl1vLD4\",type:\"Identifier\"},{collection:\"SFRin66cN\",name:\"cbH5EJRUP\",type:\"Identifier\"},{collection:\"SFRin66cN\",name:\"bTFRpKwzv\",type:\"Identifier\"},{collection:\"SFRin66cN\",name:\"bZjCJskZX\",type:\"Identifier\"},{collection:\"SFRin66cN\",name:\"tzftLl8nr\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"SFRin66cN\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3;const{style,className,layoutId,variant,B6VJXH105=(_getFromCurrentRouteData=getFromCurrentRouteData(\"B6VJXH105\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",HN3xvyyrP=getFromCurrentRouteData(\"HN3xvyyrP\"),pMbXmwecaDUd8QqwkQ,lcOmEUu5BDUd8QqwkQ,idDUd8QqwkQ,bTFRpKwzv=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"bTFRpKwzv\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",J_IXTyuNY=getFromCurrentRouteData(\"J_IXTyuNY\"),tzftLl8nr=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"tzftLl8nr\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",bZjCJskZX=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"bZjCJskZX\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,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);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-crwe9`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-crwe9`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const textContent=(_enumToDisplayNameFunctions_HN3xvyyrP=enumToDisplayNameFunctions[\"HN3xvyyrP\"])===null||_enumToDisplayNameFunctions_HN3xvyyrP===void 0?void 0:_enumToDisplayNameFunctions_HN3xvyyrP.call(enumToDisplayNameFunctions,HN3xvyyrP,activeLocale);const activeLocaleCode=useLocaleCode();const textContent1=toDateString(J_IXTyuNY,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const visible=isSet(bZjCJskZX);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"dSZJmFDwz\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qcpnpc\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l7odde\",\"data-framer-name\":\"Banner Section\",name:\"Banner Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8tamay\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ydj6jq\",\"data-framer-name\":\"Banner Content Wrapper\",name:\"Banner Content Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b3s1gy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b7uOetJT7:{y:undefined},BFyeIYsAj:{y:undefined},QQT5w6e_6:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sawoj4-container\",children:/*#__PURE__*/_jsx(ButtonLink,{fLKsdoHr7:\"var(--token-7fd6de4b-cd80-44e2-b1f2-df8b6268f6cc, rgb(33, 16, 8))\",foHqXRqBR:\"Back\",height:\"100%\",id:\"BiLFDUDCA\",layoutId:\"BiLFDUDCA\",mcB3UC9XN:\"javascript:history.back(-1)\",variant:\"k7TzUrKLi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ah0vor\",\"data-styles-preset\":\"q7wEvvCna\",children:\"MOVEit Data Breach: Regulatory and Litigation Repercussions\"})}),className:\"framer-xbt8r1\",\"data-framer-name\":\"Banner Title\",fonts:[\"Inter\"],name:\"Banner Title\",text:B6VJXH105,verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ronao7\",\"data-framer-name\":\"Case Details Section\",name:\"Case Details Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9jht88\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wtikf0\",\"data-framer-name\":\"Case Details Wrapper\",name:\"Case Details Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k95c87\",\"data-framer-name\":\"Sidebar Wrapper\",name:\"Sidebar Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3cq2bp\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-112wdub\",\"data-framer-name\":\"Author Details\",name:\"Author Details\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14zfcan\",\"data-framer-name\":\"Badge\",name:\"Badge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yfuhw0\",\"data-styles-preset\":\"bnMARxdZo\",children:\"Content\"})}),className:\"framer-1oe8h0s\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oczxld\",\"data-framer-name\":\"Author Details\",name:\"Author Details\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l1b6kb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17nnym2\",\"data-styles-preset\":\"QGaIMx1qm\",style:{\"--framer-text-color\":\"var(--token-a3ec36e1-caf5-4911-935d-af46d2796f14, rgb(255, 105, 31))\"},children:\"Written By \"})}),className:\"framer-v7i7h7\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],name:\"Author\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15dyde5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"DUd8QqwkQ\",data:Authors,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"DUd8QqwkQ\",name:\"pMbXmweca\",type:\"Identifier\"},{collection:\"DUd8QqwkQ\",name:\"lcOmEUu5B\",type:\"Identifier\"},{collection:\"DUd8QqwkQ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"DUd8QqwkQ\",name:\"pMbXmweca\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:bTFRpKwzv},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"pMbXmweca\":pMbXmwecaDUd8QqwkQ,\"lcOmEUu5B\":lcOmEUu5BDUd8QqwkQ,\"id\":idDUd8QqwkQ},i)=>{pMbXmwecaDUd8QqwkQ!==null&&pMbXmwecaDUd8QqwkQ!==void 0?pMbXmwecaDUd8QqwkQ:pMbXmwecaDUd8QqwkQ=\"\";lcOmEUu5BDUd8QqwkQ!==null&&lcOmEUu5BDUd8QqwkQ!==void 0?lcOmEUu5BDUd8QqwkQ:lcOmEUu5BDUd8QqwkQ=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DUd8QqwkQ-${idDUd8QqwkQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pMbXmweca:pMbXmwecaDUd8QqwkQ},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-iuotyb\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fctbuk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yfuhw0\",\"data-styles-preset\":\"bnMARxdZo\",style:{\"--framer-text-color\":\"var(--token-88eac5df-1e41-4722-8e66-87ccd09583d4, rgb(76, 73, 71))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{pMbXmweca:pMbXmwecaDUd8QqwkQ},webPageId:\"rgRmEzEVl\"},nodeId:\"gek2gsTRk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-15ff5bu\",\"data-styles-preset\":\"hNd4xEm0l\",children:\"Supply Wisdom Team\"})})})}),className:\"framer-tvc14i\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],name:\"Author\",text:lcOmEUu5BDUd8QqwkQ,verticalAlignment:\"top\",withExternalLayout:true})})})})},idDUd8QqwkQ);})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yfuhw0\",\"data-styles-preset\":\"bnMARxdZo\",style:{\"--framer-text-color\":\"var(--token-4b60c6a0-d9cf-48f2-b068-10864f8ce7dc, rgb(166, 161, 159))\"},children:\"Sep 5, 2024\"})}),className:\"framer-150u3ai\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],name:\"Author\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-78gkhi\",\"data-framer-name\":\"Sidebar Top\",name:\"Sidebar Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5g6to3\",\"data-framer-name\":\"Sidebar Text Block\",name:\"Sidebar Text Block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qeyte3\",\"data-styles-preset\":\"J3136TmB6\",children:\"Stay in the know\"})}),className:\"framer-1bo9xba\",\"data-framer-name\":\"Sidebar Title\",fonts:[\"Inter\"],name:\"Sidebar Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dijfdt\",\"data-styles-preset\":\"qMYJrzKT0\",children:\"Get the latest news & insights straight to your inbox. \"})}),className:\"framer-1udlayq\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nx1itw-container\",children:/*#__PURE__*/_jsx(NewsletterSignup,{height:\"100%\",id:\"RO3CL5qjj\",layoutId:\"RO3CL5qjj\",style:{width:\"100%\"},variant:\"NN4kUjQUY\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-156kk6\",\"data-framer-name\":\"Share On\",name:\"Share On\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ld2h3j\",\"data-styles-preset\":\"ZMHbHT8GY\",children:\"Share On\"})}),className:\"framer-19cdtgl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v0ow3x\",\"data-framer-name\":\"Social Link Block\",name:\"Social Link Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ogjep9-container\",children:/*#__PURE__*/_jsx(SocialLink,{height:\"100%\",id:\"wJMxaMoeH\",layoutId:\"wJMxaMoeH\",p0RxbxAsM:\"twitter.cpm\",variant:\"BL0fhDi73\",width:\"100%\",wqIMlKjz5:\"Twitter\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m9k0by-container\",children:/*#__PURE__*/_jsx(SocialLink,{height:\"100%\",id:\"lQXEJM3Nw\",layoutId:\"lQXEJM3Nw\",p0RxbxAsM:\"linkedin.com\",variant:\"BL0fhDi73\",width:\"100%\",wqIMlKjz5:\"LinkedIn\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n2edie-container\",children:/*#__PURE__*/_jsx(SocialLink,{height:\"100%\",id:\"iTCxu2Yri\",layoutId:\"iTCxu2Yri\",p0RxbxAsM:\"facebook.com\",variant:\"BL0fhDi73\",width:\"100%\",wqIMlKjz5:\"Facebook\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q2rvlh\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"BcuUIwsn6\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"CR2F1u88A\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:tzftLl8nr,className:\"framer-1kft86z\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-50k82y\",code:\"framer-styles-preset-1evs24d\",h1:\"framer-styles-preset-ah0vor\",h2:\"framer-styles-preset-1drhcar\",h3:\"framer-styles-preset-16nd49c\",h4:\"framer-styles-preset-gq4nu1\",h5:\"framer-styles-preset-1usu5xb\",h6:\"framer-styles-preset-1ctqx9x\",img:\"framer-styles-preset-1cnnw1s\",p:\"framer-styles-preset-dijfdt\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-om3aa7-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"Ga0LpeKJh\",isMixedBorderRadius:false,isRed:true,layoutId:\"Ga0LpeKJh\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:bZjCJskZX,width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b7uOetJT7:{y:undefined},BFyeIYsAj:{y:undefined},QQT5w6e_6:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:355,width:\"100vw\",y:1286.99996,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1isig19-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b7uOetJT7:{variant:\"TlvM9vhOt\"},BFyeIYsAj:{variant:\"A09gTIMJ3\"},QQT5w6e_6:{variant:\"QhmmKXosJ\"}},children:/*#__PURE__*/_jsx(CtaSection,{height:\"100%\",id:\"f1phpXLYx\",layoutId:\"f1phpXLYx\",style:{width:\"100%\"},variant:\"tpG9HEEee\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b7uOetJT7:{y:undefined},BFyeIYsAj:{y:undefined},QQT5w6e_6:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:988,width:\"100vw\",y:1641.99996,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x2dl1c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b7uOetJT7:{variant:\"L8SYpnJ8L\"},BFyeIYsAj:{variant:\"XPpuWMhCI\"},QQT5w6e_6:{variant:\"RkZBWMaL9\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"kOo89r8NA\",layoutId:\"kOo89r8NA\",style:{width:\"100%\"},variant:\"Kl4pHJJmE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n5w101-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{b7uOetJT7:{variant:\"u1oWm_Jru\"},BFyeIYsAj:{variant:\"xw4JWHz40\"},QQT5w6e_6:{variant:\"MwKn_q5hP\"}},children:/*#__PURE__*/_jsx(Header,{EOacbFPln:\"var(--token-41021a71-5462-4a28-9a38-0b5fbf879160, rgb(255, 255, 255))\",height:\"100%\",id:\"C9pMyrRUc\",layoutId:\"C9pMyrRUc\",style:{width:\"100%\"},variant:\"yQa7sNKHz\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-crwe9 { background: white; }`,\".framer-crwe9.framer-h7gscu, .framer-crwe9 .framer-h7gscu { display: block; }\",\".framer-crwe9.framer-qcpnpc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1389px; }\",\".framer-crwe9 .framer-l7odde { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-8tamay, .framer-crwe9 .framer-9jht88 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; }\",\".framer-crwe9 .framer-1ydj6jq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-1b3s1gy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-sawoj4-container, .framer-crwe9 .framer-1ogjep9-container, .framer-crwe9 .framer-1m9k0by-container, .framer-crwe9 .framer-n2edie-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-crwe9 .framer-xbt8r1, .framer-crwe9 .framer-1bo9xba, .framer-crwe9 .framer-1udlayq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-crwe9 .framer-ronao7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-wtikf0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 134px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-1k95c87 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 306px; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-crwe9 .framer-3cq2bp { --border-bottom-width: 1px; --border-color: var(--token-c09de5af-5714-40d9-9cfc-e13481120f65, #f2f1f1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-crwe9 .framer-112wdub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-crwe9 .framer-14zfcan { align-content: center; align-items: center; background-color: var(--token-a27b33fd-23d6-4455-a4ed-babc370c9101, #ae195d); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 2px 6px 2px 6px; position: relative; width: min-content; }\",\".framer-crwe9 .framer-1oe8h0s, .framer-crwe9 .framer-v7i7h7, .framer-crwe9 .framer-19cdtgl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-crwe9 .framer-oczxld { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-crwe9 .framer-l1b6kb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-crwe9 .framer-15dyde5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-crwe9 .framer-iuotyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-crwe9 .framer-1fctbuk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-crwe9 .framer-tvc14i { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 263px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-crwe9 .framer-150u3ai { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-crwe9 .framer-78gkhi { align-content: flex-start; align-items: flex-start; background-color: var(--token-9c4ec76b-c019-4288-8ff1-3c8537ed4128, #f6f7f2); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-5g6to3 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-1nx1itw-container, .framer-crwe9 .framer-1isig19-container, .framer-crwe9 .framer-1x2dl1c-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-crwe9 .framer-156kk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-1v0ow3x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 80px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-crwe9 .framer-1q2rvlh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-crwe9 .framer-1kft86z { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-crwe9 .framer-om3aa7-container { flex: none; height: 481px; position: relative; width: 100%; }\",\".framer-crwe9 .framer-1n5w101-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-crwe9.framer-qcpnpc, .framer-crwe9 .framer-l7odde, .framer-crwe9 .framer-8tamay, .framer-crwe9 .framer-1ydj6jq, .framer-crwe9 .framer-1b3s1gy, .framer-crwe9 .framer-ronao7, .framer-crwe9 .framer-9jht88, .framer-crwe9 .framer-wtikf0, .framer-crwe9 .framer-1k95c87, .framer-crwe9 .framer-3cq2bp, .framer-crwe9 .framer-112wdub, .framer-crwe9 .framer-14zfcan, .framer-crwe9 .framer-oczxld, .framer-crwe9 .framer-l1b6kb, .framer-crwe9 .framer-15dyde5, .framer-crwe9 .framer-iuotyb, .framer-crwe9 .framer-1fctbuk, .framer-crwe9 .framer-78gkhi, .framer-crwe9 .framer-5g6to3, .framer-crwe9 .framer-156kk6, .framer-crwe9 .framer-1v0ow3x, .framer-crwe9 .framer-1q2rvlh { gap: 0px; } .framer-crwe9.framer-qcpnpc > *, .framer-crwe9 .framer-8tamay > *, .framer-crwe9 .framer-9jht88 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-crwe9.framer-qcpnpc > :first-child, .framer-crwe9 .framer-8tamay > :first-child, .framer-crwe9 .framer-1ydj6jq > :first-child, .framer-crwe9 .framer-1b3s1gy > :first-child, .framer-crwe9 .framer-9jht88 > :first-child, .framer-crwe9 .framer-1k95c87 > :first-child, .framer-crwe9 .framer-3cq2bp > :first-child, .framer-crwe9 .framer-15dyde5 > :first-child, .framer-crwe9 .framer-78gkhi > :first-child, .framer-crwe9 .framer-5g6to3 > :first-child, .framer-crwe9 .framer-1q2rvlh > :first-child { margin-top: 0px; } .framer-crwe9.framer-qcpnpc > :last-child, .framer-crwe9 .framer-8tamay > :last-child, .framer-crwe9 .framer-1ydj6jq > :last-child, .framer-crwe9 .framer-1b3s1gy > :last-child, .framer-crwe9 .framer-9jht88 > :last-child, .framer-crwe9 .framer-1k95c87 > :last-child, .framer-crwe9 .framer-3cq2bp > :last-child, .framer-crwe9 .framer-15dyde5 > :last-child, .framer-crwe9 .framer-78gkhi > :last-child, .framer-crwe9 .framer-5g6to3 > :last-child, .framer-crwe9 .framer-1q2rvlh > :last-child { margin-bottom: 0px; } .framer-crwe9 .framer-l7odde > *, .framer-crwe9 .framer-ronao7 > *, .framer-crwe9 .framer-1fctbuk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-crwe9 .framer-l7odde > :first-child, .framer-crwe9 .framer-ronao7 > :first-child, .framer-crwe9 .framer-wtikf0 > :first-child, .framer-crwe9 .framer-112wdub > :first-child, .framer-crwe9 .framer-14zfcan > :first-child, .framer-crwe9 .framer-oczxld > :first-child, .framer-crwe9 .framer-l1b6kb > :first-child, .framer-crwe9 .framer-iuotyb > :first-child, .framer-crwe9 .framer-1fctbuk > :first-child, .framer-crwe9 .framer-156kk6 > :first-child, .framer-crwe9 .framer-1v0ow3x > :first-child { margin-left: 0px; } .framer-crwe9 .framer-l7odde > :last-child, .framer-crwe9 .framer-ronao7 > :last-child, .framer-crwe9 .framer-wtikf0 > :last-child, .framer-crwe9 .framer-112wdub > :last-child, .framer-crwe9 .framer-14zfcan > :last-child, .framer-crwe9 .framer-oczxld > :last-child, .framer-crwe9 .framer-l1b6kb > :last-child, .framer-crwe9 .framer-iuotyb > :last-child, .framer-crwe9 .framer-1fctbuk > :last-child, .framer-crwe9 .framer-156kk6 > :last-child, .framer-crwe9 .framer-1v0ow3x > :last-child { margin-right: 0px; } .framer-crwe9 .framer-1ydj6jq > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-crwe9 .framer-1b3s1gy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-crwe9 .framer-wtikf0 > * { margin: 0px; margin-left: calc(134px / 2); margin-right: calc(134px / 2); } .framer-crwe9 .framer-1k95c87 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-crwe9 .framer-3cq2bp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-crwe9 .framer-112wdub > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-crwe9 .framer-14zfcan > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-crwe9 .framer-oczxld > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-crwe9 .framer-l1b6kb > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-crwe9 .framer-15dyde5 > *, .framer-crwe9 .framer-78gkhi > *, .framer-crwe9 .framer-1q2rvlh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-crwe9 .framer-iuotyb > *, .framer-crwe9 .framer-156kk6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-crwe9 .framer-5g6to3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-crwe9 .framer-1v0ow3x > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",`@media (min-width: 1080px) and (max-width: 1388px) { .${metadata.bodyClassName}-framer-crwe9 { background: white; } .framer-crwe9.framer-qcpnpc { width: 1080px; }}`,`@media (min-width: 768px) and (max-width: 1079px) { .${metadata.bodyClassName}-framer-crwe9 { background: white; } .framer-crwe9.framer-qcpnpc { width: 768px; } .framer-crwe9 .framer-wtikf0 { flex-direction: column; } .framer-crwe9 .framer-1k95c87 { flex: none; order: 0; width: 100%; } .framer-crwe9 .framer-1q2rvlh { flex: none; order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-crwe9 .framer-wtikf0 { gap: 0px; } .framer-crwe9 .framer-wtikf0 > * { margin: 0px; margin-bottom: calc(134px / 2); margin-top: calc(134px / 2); } .framer-crwe9 .framer-wtikf0 > :first-child { margin-top: 0px; } .framer-crwe9 .framer-wtikf0 > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-crwe9 { background: white; } .framer-crwe9.framer-qcpnpc { width: 390px; } .framer-crwe9 .framer-l7odde, .framer-crwe9 .framer-ronao7, .framer-crwe9 .framer-wtikf0 { flex-direction: column; } .framer-crwe9 .framer-8tamay, .framer-crwe9 .framer-9jht88 { flex: none; width: 100%; } .framer-crwe9 .framer-1k95c87 { flex: none; order: 0; width: 100%; } .framer-crwe9 .framer-1q2rvlh { flex: none; order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-crwe9 .framer-l7odde, .framer-crwe9 .framer-ronao7, .framer-crwe9 .framer-wtikf0 { gap: 0px; } .framer-crwe9 .framer-l7odde > *, .framer-crwe9 .framer-ronao7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-crwe9 .framer-l7odde > :first-child, .framer-crwe9 .framer-ronao7 > :first-child, .framer-crwe9 .framer-wtikf0 > :first-child { margin-top: 0px; } .framer-crwe9 .framer-l7odde > :last-child, .framer-crwe9 .framer-ronao7 > :last-child, .framer-crwe9 .framer-wtikf0 > :last-child { margin-bottom: 0px; } .framer-crwe9 .framer-wtikf0 > * { margin: 0px; margin-bottom: calc(134px / 2); margin-top: calc(134px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,'.framer-crwe9[data-border=\"true\"]::after, .framer-crwe9 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5809\n * @framerIntrinsicWidth 1389\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"b7uOetJT7\":{\"layout\":[\"fixed\",\"auto\"]},\"QQT5w6e_6\":{\"layout\":[\"fixed\",\"auto\"]},\"BFyeIYsAj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerSFRin66cN=withCSS(Component,css,\"framer-crwe9\");export default FramerSFRin66cN;FramerSFRin66cN.displayName=\"Page\";FramerSFRin66cN.defaultProps={height:5809,width:1389};addFonts(FramerSFRin66cN,[{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\"}]},...ButtonLinkFonts,...NewsletterSignupFonts,...SocialLinkFonts,...YouTubeFonts,...CtaSectionFonts,...FooterSectionFonts,...HeaderFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"BcuUIwsn6\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"BcuUIwsn6\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"CR2F1u88A\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"CR2F1u88A\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSFRin66cN\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1389\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5809\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b7uOetJT7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QQT5w6e_6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BFyeIYsAj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "b", "getFonts", "Icon", "x", "getPropertyControls", "g", "v", "D", "H", "e", "r", "i", "w", "j", "t", "re", "MotionConfigContext", "n", "se", "p", "L", "M", "a", "o", "l", "d", "z", "B", "Y", "useLocaleInfo", "s", "c", "b", "x", "y", "P", "k", "I", "S", "T", "useVariantState", "v", "g", "R", "N", "pe", "V", "ae", "LayoutGroup", "motion", "cx", "Link", "Icon", "withCSS", "ct20CDXcX_default", "addPropertyControls", "ControlType", "addFonts", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "ButtonLinkFonts", "getFonts", "h2Bfi1leS_default", "NewsletterSignupFonts", "dJRrEvpIc_default", "SocialLinkFonts", "ct20CDXcX_default", "YouTubeFonts", "Youtube", "CtaSectionFonts", "BDLfiGOtX_default", "FooterSectionFonts", "IyrzIS4nO_default", "HeaderFonts", "paT0f_U0o_default", "breakpoints", "serializationHash", "variantClassNames", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "isSet", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "_enumToDisplayNameFunctions_HN3xvyyrP", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "UVNsBi96_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "style", "className", "layoutId", "variant", "B6VJXH105", "HN3xvyyrP", "pMbXmwecaDUd8QqwkQ", "lcOmEUu5BDUd8QqwkQ", "idDUd8QqwkQ", "bTFRpKwzv", "J_IXTyuNY", "tzftLl8nr", "bZjCJskZX", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "textContent", "enumToDisplayNameFunctions", "activeLocaleCode", "useLocaleCode", "textContent1", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "h2Bfi1leS_default", "RichText2", "x", "ChildrenCanSuspend", "DBAyF9hpw_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Link", "dJRrEvpIc_default", "ct20CDXcX_default", "ComponentPresetsProvider", "Youtube", "BDLfiGOtX_default", "IyrzIS4nO_default", "paT0f_U0o_default", "css", "FramerSFRin66cN", "withCSS", "SFRin66cN_default", "addFonts", "ButtonLinkFonts", "NewsletterSignupFonts", "SocialLinkFonts", "YouTubeFonts", "CtaSectionFonts", "FooterSectionFonts", "HeaderFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "getFontsFromComponentPreset", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "__FramerMetadata__"]
}
