{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/Pz99LwJqzcOhULpwosh7/lFq8LeaihTREXQnMe7DG/SwlAPRX4C.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 (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import metadataProvider from\"#framer/local/webPageMetadata/SwlAPRX4C/SwlAPRX4C.js\";const VideoFonts=getFonts(Video);const YouTubeFonts=getFonts(YouTube);const cycleOrder=[\"VShe4_6LH\",\"reMGh1fS4\",\"XP5myiaFC\"];const breakpoints={reMGh1fS4:\"(min-width: 810px) and (max-width: 1439px)\",VShe4_6LH:\"(min-width: 1440px)\",XP5myiaFC:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-inoRN\";const variantClassNames={reMGh1fS4:\"framer-v-1ipypw0\",VShe4_6LH:\"framer-v-3yb2ij\",XP5myiaFC:\"framer-v-1b8ys5g\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"VShe4_6LH\",Phone:\"XP5myiaFC\",Tablet:\"reMGh1fS4\"};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:\"VShe4_6LH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,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);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{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);}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-inoRN`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-inoRN`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"VShe4_6LH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3yb2ij\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ij95ke\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h0d3q7-container\",\"data-framer-name\":\"TEASER\",name:\"TEASER\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"QNN6MB9Z9\",isMixedBorderRadius:false,layoutId:\"QNN6MB9Z9\",loop:true,muted:true,name:\"TEASER\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/659yq1FZg05c6z8YY9Yi4GDBjk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7vlrjc\",\"data-framer-name\":\"COLLECTION\",name:\"COLLECTION\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14x7cdh-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"kRQ8SLqNw\",isMixedBorderRadius:false,isRed:false,layoutId:\"kRQ8SLqNw\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/1t79U6KH2sQ?si=tuXGJbXsIu3VntL9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XP5myiaFC:{background:{alt:\"\",fit:\"fill\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/SIeML582UMpdpMu7ylnYjXYgk6w.jpg\",srcSet:\"https://framerusercontent.com/images/SIeML582UMpdpMu7ylnYjXYgk6w.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/SIeML582UMpdpMu7ylnYjXYgk6w.jpg?scale-down-to=2048 1636w,https://framerusercontent.com/images/SIeML582UMpdpMu7ylnYjXYgk6w.jpg 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/SIeML582UMpdpMu7ylnYjXYgk6w.jpg\",srcSet:\"https://framerusercontent.com/images/SIeML582UMpdpMu7ylnYjXYgk6w.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/SIeML582UMpdpMu7ylnYjXYgk6w.jpg?scale-down-to=2048 1636w,https://framerusercontent.com/images/SIeML582UMpdpMu7ylnYjXYgk6w.jpg 2880w\"},className:\"framer-a1oai6\",\"data-framer-name\":\"01 - the dew drop dress\",name:\"01 - the dew drop dress\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/dMvOZaw6GdOkFMcO3fYvPECQ.jpg\",srcSet:\"https://framerusercontent.com/images/dMvOZaw6GdOkFMcO3fYvPECQ.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/dMvOZaw6GdOkFMcO3fYvPECQ.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/dMvOZaw6GdOkFMcO3fYvPECQ.jpg 2880w\"},className:\"framer-nddqv6\",\"data-framer-name\":\"02 - the marilyn\",name:\"02 - the marilyn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/e5Txd05lZAykQE6xI1C6PtPRY.jpg\",srcSet:\"https://framerusercontent.com/images/e5Txd05lZAykQE6xI1C6PtPRY.jpg?scale-down-to=1024 821w,https://framerusercontent.com/images/e5Txd05lZAykQE6xI1C6PtPRY.jpg?scale-down-to=2048 1643w,https://framerusercontent.com/images/e5Txd05lZAykQE6xI1C6PtPRY.jpg 2880w\"},className:\"framer-at7a1x\",\"data-framer-name\":\"03 - the naked dress\",name:\"03 - the naked dress\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/hz5DcTzLJzcnHSjS8ABOkK2bO8.jpg\",srcSet:\"https://framerusercontent.com/images/hz5DcTzLJzcnHSjS8ABOkK2bO8.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/hz5DcTzLJzcnHSjS8ABOkK2bO8.jpg?scale-down-to=2048 1636w,https://framerusercontent.com/images/hz5DcTzLJzcnHSjS8ABOkK2bO8.jpg 2880w\"},className:\"framer-1h2408q\",\"data-framer-name\":\"04 - the inspector\",name:\"04 - the inspector\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/Rdr31JwsabaEj6EwnHgtKBV10c.jpg\",srcSet:\"https://framerusercontent.com/images/Rdr31JwsabaEj6EwnHgtKBV10c.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/Rdr31JwsabaEj6EwnHgtKBV10c.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/Rdr31JwsabaEj6EwnHgtKBV10c.jpg 2880w\"},className:\"framer-8afht3\",\"data-framer-name\":\"05 - the blade\",name:\"05 - the blade\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/6hASsmCLMqwiJ4Aa2jpQ4O4w5pQ.jpg\",srcSet:\"https://framerusercontent.com/images/6hASsmCLMqwiJ4Aa2jpQ4O4w5pQ.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/6hASsmCLMqwiJ4Aa2jpQ4O4w5pQ.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/6hASsmCLMqwiJ4Aa2jpQ4O4w5pQ.jpg 2880w\"},className:\"framer-1jb6ucw\",\"data-framer-name\":\"06 - the boyfriend\",name:\"06 - the boyfriend\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/dabpEzwfQc0VhkUnLmWiLcs.jpg\",srcSet:\"https://framerusercontent.com/images/dabpEzwfQc0VhkUnLmWiLcs.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/dabpEzwfQc0VhkUnLmWiLcs.jpg?scale-down-to=2048 1636w,https://framerusercontent.com/images/dabpEzwfQc0VhkUnLmWiLcs.jpg 2880w\"},className:\"framer-vw467m\",\"data-framer-name\":\"07 - the ducati\",name:\"07 - the ducati\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/ogGJskTMdP6DTPA2Iqv9RlgQkjg.jpg\",srcSet:\"https://framerusercontent.com/images/ogGJskTMdP6DTPA2Iqv9RlgQkjg.jpg?scale-down-to=1024 826w,https://framerusercontent.com/images/ogGJskTMdP6DTPA2Iqv9RlgQkjg.jpg?scale-down-to=2048 1653w,https://framerusercontent.com/images/ogGJskTMdP6DTPA2Iqv9RlgQkjg.jpg 2880w\"},className:\"framer-12f1iv0\",\"data-framer-name\":\"08 - the ceo\",name:\"08 - the ceo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/SqK9GrOwlwLaOtrmpyGxmnuVfc.jpg\",srcSet:\"https://framerusercontent.com/images/SqK9GrOwlwLaOtrmpyGxmnuVfc.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/SqK9GrOwlwLaOtrmpyGxmnuVfc.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/SqK9GrOwlwLaOtrmpyGxmnuVfc.jpg 2880w\"},className:\"framer-1s1vvhy\",\"data-framer-name\":\"09 - the tidal\",name:\"09 - the tidal\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/pb3UkRcKt5zu5UpBUbxST2iXFGU.jpg\",srcSet:\"https://framerusercontent.com/images/pb3UkRcKt5zu5UpBUbxST2iXFGU.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/pb3UkRcKt5zu5UpBUbxST2iXFGU.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/pb3UkRcKt5zu5UpBUbxST2iXFGU.jpg 2880w\"},className:\"framer-3w4b3p\",\"data-framer-name\":\"10 - the celosia\",name:\"10 - the celosia\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{reMGh1fS4:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100.0617vw\",src:\"https://framerusercontent.com/images/EcmETSwVPytIDgqKZdrtYX97t2Q.jpg\",srcSet:\"https://framerusercontent.com/images/EcmETSwVPytIDgqKZdrtYX97t2Q.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/EcmETSwVPytIDgqKZdrtYX97t2Q.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/EcmETSwVPytIDgqKZdrtYX97t2Q.jpg 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/EcmETSwVPytIDgqKZdrtYX97t2Q.jpg\",srcSet:\"https://framerusercontent.com/images/EcmETSwVPytIDgqKZdrtYX97t2Q.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/EcmETSwVPytIDgqKZdrtYX97t2Q.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/EcmETSwVPytIDgqKZdrtYX97t2Q.jpg 2880w\"},className:\"framer-1meua5d\",\"data-framer-name\":\"11 - the prey\",name:\"11 - the prey\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/f3ruasKzMOTrCc8ssPjET4vNvw.jpg\",srcSet:\"https://framerusercontent.com/images/f3ruasKzMOTrCc8ssPjET4vNvw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/f3ruasKzMOTrCc8ssPjET4vNvw.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/f3ruasKzMOTrCc8ssPjET4vNvw.jpg 2880w\"},className:\"framer-2n16v3\",\"data-framer-name\":\"12 - the fosse\",name:\"12 - the fosse\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/OdPdU6JBlMxZJcEs9GXLi608Dtw.jpg\",srcSet:\"https://framerusercontent.com/images/OdPdU6JBlMxZJcEs9GXLi608Dtw.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/OdPdU6JBlMxZJcEs9GXLi608Dtw.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/OdPdU6JBlMxZJcEs9GXLi608Dtw.jpg 2880w\"},className:\"framer-hrz3r6\",\"data-framer-name\":\"13 - the charisse\",name:\"13 - the charisse\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{reMGh1fS4:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100.0617vw\",src:\"https://framerusercontent.com/images/hsV2uQTDVLn77tX2tjOEprU8NA.jpg\",srcSet:\"https://framerusercontent.com/images/hsV2uQTDVLn77tX2tjOEprU8NA.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/hsV2uQTDVLn77tX2tjOEprU8NA.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/hsV2uQTDVLn77tX2tjOEprU8NA.jpg 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/hsV2uQTDVLn77tX2tjOEprU8NA.jpg\",srcSet:\"https://framerusercontent.com/images/hsV2uQTDVLn77tX2tjOEprU8NA.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/hsV2uQTDVLn77tX2tjOEprU8NA.jpg?scale-down-to=2048 1639w,https://framerusercontent.com/images/hsV2uQTDVLn77tX2tjOEprU8NA.jpg 2880w\"},className:\"framer-xvaujy\",\"data-framer-name\":\"14 - the trophy\",name:\"14 - the trophy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{reMGh1fS4:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"99.9383vw\",src:\"https://framerusercontent.com/images/CtXgHaWlBW6CYN1xozcojtf8sU.jpg\",srcSet:\"https://framerusercontent.com/images/CtXgHaWlBW6CYN1xozcojtf8sU.jpg?scale-down-to=1024 821w,https://framerusercontent.com/images/CtXgHaWlBW6CYN1xozcojtf8sU.jpg?scale-down-to=2048 1642w,https://framerusercontent.com/images/CtXgHaWlBW6CYN1xozcojtf8sU.jpg 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/CtXgHaWlBW6CYN1xozcojtf8sU.jpg\",srcSet:\"https://framerusercontent.com/images/CtXgHaWlBW6CYN1xozcojtf8sU.jpg?scale-down-to=1024 821w,https://framerusercontent.com/images/CtXgHaWlBW6CYN1xozcojtf8sU.jpg?scale-down-to=2048 1642w,https://framerusercontent.com/images/CtXgHaWlBW6CYN1xozcojtf8sU.jpg 2880w\"},className:\"framer-fx19kv\",\"data-framer-name\":\"15 - the bride\",name:\"15 - the bride\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8rcs8y\",\"data-framer-name\":\"Social Icons\",name:\"Social Icons\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@gigigoode7014\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1m1qiyj framer-1ba5ewo\",\"data-framer-name\":\"YT Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,name:\"YT Icon\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.0337 14.3764C27.8087 14.5838 28.4177 15.1928 28.6251 15.9677H28.6236C29 17.3709 29 20.3003 29 20.3003C29 20.3003 29 23.2297 28.6236 24.6329C28.4162 25.4078 27.8072 26.0168 27.0323 26.2242C25.6291 26.6006 20 26.6006 20 26.6006C20 26.6006 14.3709 26.6006 12.9677 26.2242C12.1928 26.0168 11.5838 25.4078 11.3764 24.6329C11 23.2297 11 20.3003 11 20.3003C11 20.3003 11 17.3709 11.3764 15.9677C11.5838 15.1928 12.1928 14.5838 12.9677 14.3764C14.3709 14 20 14 20 14C20 14 25.6291 14 27.0337 14.3764ZM22.8775 20.3003L18.1997 23V17.6006L22.8775 20.3003Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/gigigoode/\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1xurck3 framer-1ba5ewo\",\"data-framer-name\":\"IG Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,name:\"IG Icon\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_155_130)\">\\n<path d=\"M16.2726 11.0636C15.315 11.1088 14.661 11.2616 14.0894 11.4863C13.4977 11.7169 12.9962 12.0263 12.4973 12.527C11.9983 13.0278 11.691 13.5296 11.4621 14.1222C11.2405 14.6951 11.0904 15.3496 11.0481 16.3078C11.0058 17.2659 10.9964 17.5739 11.0011 20.0179C11.0058 22.462 11.0166 22.7683 11.063 23.7284C11.1087 24.6859 11.261 25.3396 11.4857 25.9115C11.7166 26.5031 12.0257 27.0044 12.5266 27.5036C13.0275 28.0027 13.529 28.3093 14.123 28.5386C14.6954 28.7598 15.3501 28.9106 16.308 28.9526C17.266 28.9945 17.5743 29.0042 20.0177 28.9996C22.461 28.9949 22.7686 28.9841 23.7285 28.9385C24.6885 28.893 25.3388 28.7396 25.9109 28.5161C26.5025 28.2846 27.0042 27.9761 27.503 27.475C28.0017 26.9738 28.3088 26.4716 28.5376 25.8787C28.7593 25.3063 28.91 24.6517 28.9516 23.6944C28.9935 22.7338 29.0034 22.427 28.9987 19.9834C28.9941 17.5397 28.9831 17.2333 28.9376 16.2736C28.892 15.3138 28.7395 14.662 28.5151 14.0898C28.2838 13.4981 27.9751 12.9972 27.4743 12.4977C26.9736 11.9982 26.471 11.6913 25.8783 11.4631C25.3055 11.2415 24.6512 11.0905 23.6933 11.0491C22.7353 11.0077 22.427 10.997 19.9827 11.0017C17.5385 11.0064 17.2325 11.0168 16.2726 11.0636ZM16.3777 27.3335C15.5002 27.2953 15.0237 27.1495 14.7062 27.0275C14.2857 26.8655 13.9862 26.6696 13.6698 26.3563C13.3533 26.0429 13.1589 25.7423 12.9948 25.3227C12.8715 25.0052 12.723 24.5293 12.6819 23.6518C12.6373 22.7033 12.6279 22.4186 12.6227 20.0158C12.6175 17.6129 12.6267 17.3285 12.6683 16.3798C12.7057 15.503 12.8524 15.026 12.9743 14.7086C13.1363 14.2876 13.3314 13.9886 13.6455 13.6724C13.9596 13.3561 14.2593 13.1614 14.6792 12.9972C14.9964 12.8734 15.4723 12.7261 16.3494 12.6844C17.2986 12.6394 17.583 12.6304 19.9854 12.6251C22.3879 12.6199 22.673 12.6289 23.6225 12.6707C24.4993 12.7088 24.9765 12.8541 25.2935 12.9767C25.7141 13.1387 26.0135 13.3333 26.3297 13.6479C26.646 13.9625 26.8409 14.2612 27.0051 14.682C27.1291 14.9983 27.2763 15.474 27.3177 16.3517C27.3629 17.3008 27.3732 17.5854 27.3775 19.9877C27.3818 22.39 27.3734 22.6753 27.3318 23.6237C27.2934 24.5012 27.148 24.9778 27.0258 25.2957C26.8638 25.716 26.6685 26.0157 26.3542 26.3318C26.0399 26.6479 25.7406 26.8426 25.3205 27.0068C25.0037 27.1304 24.5272 27.278 23.6508 27.3198C22.7016 27.3644 22.4172 27.3738 20.0139 27.379C17.6105 27.3842 17.327 27.3745 16.3779 27.3335M23.7147 15.1905C23.715 15.4041 23.7787 15.6128 23.8977 15.7903C24.0167 15.9677 24.1856 16.1058 24.3831 16.1872C24.5806 16.2686 24.7978 16.2896 25.0073 16.2476C25.2167 16.2055 25.409 16.1023 25.5597 15.951C25.7105 15.7996 25.813 15.607 25.8543 15.3974C25.8956 15.1878 25.8738 14.9707 25.7917 14.7735C25.7095 14.5763 25.5708 14.4079 25.3929 14.2895C25.2151 14.1712 25.0061 14.1083 24.7925 14.1087C24.5061 14.1093 24.2317 14.2236 24.0296 14.4264C23.8275 14.6293 23.7142 14.9041 23.7147 15.1905ZM15.3789 20.0096C15.3839 22.562 17.4568 24.6265 20.0087 24.6216C22.5605 24.6167 24.6264 22.544 24.6215 19.9916C24.6167 17.4392 22.5432 15.3743 19.991 15.3793C17.4388 15.3844 15.374 17.4576 15.3789 20.0096ZM17 20.0064C16.9988 19.4131 17.1736 18.8327 17.5023 18.3387C17.8309 17.8447 18.2987 17.4592 18.8465 17.2311C19.3942 17.0029 19.9973 16.9423 20.5795 17.0569C21.1616 17.1715 21.6968 17.4562 22.1172 17.8749C22.5376 18.2936 22.8243 18.8276 22.9413 19.4094C23.0582 19.9911 22.9999 20.5944 22.774 21.1431C22.548 21.6917 22.1644 22.161 21.6717 22.4916C21.179 22.8223 20.5993 22.9993 20.006 23.0005C19.612 23.0014 19.2217 22.9246 18.8574 22.7745C18.4931 22.6245 18.1619 22.4042 17.8827 22.1261C17.6036 21.8481 17.382 21.5178 17.2305 21.1541C17.079 20.7904 17.0007 20.4004 17 20.0064Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_155_130\">\\n<rect width=\"18\" height=\"18\" fill=\"white\" transform=\"translate(11 11)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@thegigigoode\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-e7dh1r framer-1ba5ewo\",\"data-framer-name\":\"TT Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,name:\"TT Icon\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.5369 25.7563C21.4802 27.3078 20.1645 28.5535 18.5652 28.5535C18.2023 28.5535 17.8507 28.4856 17.5217 28.3723C17.8507 28.4969 18.2023 28.5535 18.5652 28.5535C20.1758 28.5535 21.4802 27.3078 21.5369 25.7563V11.8833H24.1456C24.3951 13.197 25.2004 14.3295 26.3119 15.043C27.0832 15.5299 28.0132 15.8244 29 15.8244V16.5945V19.2898C27.1626 19.2898 25.4612 18.7122 24.0662 17.7383V24.771C24.0662 28.2817 21.1399 31.1469 17.5331 31.1469C16.138 31.1469 14.8563 30.7166 13.7902 29.9918C12.1115 28.8366 11 26.9341 11 24.771C11 21.2603 13.9263 18.3951 17.5331 18.3951C17.828 18.3951 18.1229 18.4178 18.4178 18.4518V19.2671C15.1285 19.3464 12.4405 21.7926 12.0775 24.9296C12.4405 21.8039 15.1285 19.3464 18.4178 19.2671V21.9851C18.1342 21.8945 17.8393 21.8492 17.5331 21.8492C15.8885 21.8492 14.5501 23.1516 14.5501 24.7597C14.5501 25.8809 15.1966 26.8435 16.1493 27.3304C16.5577 27.5456 17.034 27.6702 17.5331 27.6702C19.1437 27.6702 20.448 26.4244 20.5047 24.8729V11H24.0548C24.0548 11.2944 24.0888 11.5889 24.1342 11.8833H21.5369V25.7563Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/thegigigoode/\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-uq7830 framer-1ba5ewo\",\"data-framer-name\":\"FB Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,name:\"FB Icon\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29 20C29 15.0295 24.9705 11 20 11C15.0295 11 11 15.0295 11 20C11 24.2206 13.9059 27.7623 17.826 28.735V22.7504H15.9702V20H17.826V18.8149C17.826 15.7516 19.2123 14.3318 22.2198 14.3318C22.79 14.3318 23.7739 14.4438 24.1764 14.5554V17.0484C23.964 17.026 23.595 17.0149 23.1367 17.0149C21.661 17.0149 21.0908 17.574 21.0908 19.0273V20H24.0306L23.5255 22.7504H21.0908V28.9341C25.5472 28.3959 29.0004 24.6015 29.0004 20H29Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/5CYiwCyMuccqUNuqzqPHwH2JHvI.png\"},className:\"framer-1loly2l\",\"data-framer-name\":\"DISCOVER GLASSE\",name:\"DISCOVER GLASSE\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XP5myiaFC:{background:{alt:\"\",fit:\"fill\",sizes:\"176px\",src:\"https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png\",srcSet:\"https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"259px\",src:\"https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png\",srcSet:\"https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/d5GvvFwlqbc099Dqt48RYDyOATo.png 4096w\"},className:\"framer-cm553j\",\"data-framer-name\":\"GIGI GOODE - LOGO\",name:\"GIGI GOODE - LOGO\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(Link,{href:\"mailto:studio@gigigoode.com\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1vef2kk framer-1ba5ewo\",\"data-framer-name\":\"For Inquiries Contact_\\u2028studio@gigigoode.com 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:200,name:\"For Inquiries Contact_\\u2028studio@gigigoode.com 1\",svg:'<svg width=\"200\" height=\"28\" viewBox=\"0 0 200 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_217_877)\">\\n<path d=\"M0.57431 10V0.914048H5.95031V2.34205H2.08631V4.86205H5.61431V6.30405H2.08631V10H0.57431ZM12.9122 10.126C10.3222 10.126 8.25025 8.12405 8.25025 5.46405C8.25025 2.84605 10.2382 0.774048 12.9122 0.774048C15.5302 0.774048 17.5742 2.81805 17.5742 5.45005C17.5742 8.11005 15.5162 10.126 12.9122 10.126ZM9.77625 5.47805C9.77625 7.28405 11.1342 8.69805 12.9122 8.69805C14.6902 8.69805 16.0482 7.27005 16.0482 5.46405C16.0482 3.65805 14.7042 2.20205 12.9122 2.20205C11.1062 2.20205 9.77625 3.68605 9.77625 5.47805ZM20.6555 10V0.914048H23.5955C25.8635 0.914048 26.8015 2.21605 26.8015 3.68605C26.8015 4.89005 26.2275 5.92605 25.0795 6.34605L27.1515 10H25.4155L23.4695 6.54205H22.0975V10H20.6555ZM22.0975 5.35205H23.6795C24.8135 5.35205 25.3455 4.72205 25.3455 3.79805C25.3455 2.88805 24.8275 2.24405 23.6795 2.24405H22.0975V5.35205ZM39.8755 10V0.914048H41.3875V10H39.8755ZM45.0216 10V0.914048H46.4776L51.4616 7.50805V0.914048H52.9736V10H51.5456L46.5336 3.36405V10H45.0216ZM64.1391 10.574L63.1031 9.49605C62.4031 9.90205 61.5911 10.126 60.7091 10.126C58.1191 10.126 56.0471 8.12405 56.0471 5.46405C56.0471 2.84605 58.0351 0.774048 60.7091 0.774048C63.3271 0.774048 65.3711 2.81805 65.3711 5.45005C65.3711 6.66805 64.9371 7.76005 64.2091 8.58605L65.2031 9.62205L64.1391 10.574ZM57.5731 5.47805C57.5731 7.28405 58.9311 8.69805 60.7091 8.69805C61.1991 8.69805 61.6471 8.58605 62.0531 8.40405L60.4431 6.71005L61.5211 5.75805L63.1731 7.49405C63.5931 6.93405 63.8451 6.23405 63.8451 5.46405C63.8451 3.65805 62.5011 2.20205 60.7091 2.20205C58.9031 2.20205 57.5731 3.68605 57.5731 5.47805ZM72.2044 10.126C69.9224 10.126 68.3544 8.83805 68.3544 6.29005V0.914048H69.8664V6.23405C69.8664 7.95605 70.8044 8.69805 72.2044 8.69805C73.6044 8.69805 74.5424 7.95605 74.5424 6.23405V0.914048H76.0684V6.29005C76.0684 8.83805 74.5004 10.126 72.2044 10.126ZM79.6141 10V0.914048H81.1261V10H79.6141ZM84.7602 10V0.914048H87.7002C89.9682 0.914048 90.9062 2.21605 90.9062 3.68605C90.9062 4.89005 90.3322 5.92605 89.1842 6.34605L91.2562 10H89.5202L87.5742 6.54205H86.2022V10H84.7602ZM86.2022 5.35205H87.7842C88.9182 5.35205 89.4502 4.72205 89.4502 3.79805C89.4502 2.88805 88.9322 2.24405 87.7842 2.24405H86.2022V5.35205ZM94.1856 10V0.914048H95.6976V10H94.1856ZM99.3317 10V0.914048H104.792V2.34205H100.83V4.68005H104.428V6.09405H100.83V8.55805H104.834V10H99.3317ZM110.749 10.126C109.181 10.126 108.047 9.63605 107.263 8.55805L108.313 7.56405C108.985 8.40405 109.853 8.69805 110.721 8.69805C111.743 8.69805 112.513 8.32005 112.513 7.55005C112.513 5.45005 107.599 6.40205 107.599 3.26605C107.599 1.60005 109.055 0.774048 110.805 0.774048C112.093 0.774048 113.297 1.32005 113.969 2.24405L112.947 3.25205C112.457 2.60805 111.673 2.20205 110.791 2.20205C109.853 2.20205 109.125 2.55205 109.125 3.28005C109.125 5.03005 114.053 4.24605 114.053 7.45205C114.053 9.28605 112.499 10.126 110.749 10.126ZM131.013 10.126C128.241 10.126 126.351 8.05405 126.351 5.45005C126.351 2.84605 128.241 0.774048 131.013 0.774048C132.651 0.774048 134.037 1.55805 134.863 2.81805L133.575 3.61605C133.015 2.73405 132.119 2.20205 131.013 2.20205C129.207 2.20205 127.877 3.68605 127.877 5.45005C127.877 7.22805 129.207 8.69805 131.013 8.69805C132.119 8.69805 133.015 8.16605 133.575 7.28405L134.863 8.08205C134.037 9.34205 132.651 10.126 131.013 10.126ZM141.71 10.126C139.12 10.126 137.048 8.12405 137.048 5.46405C137.048 2.84605 139.036 0.774048 141.71 0.774048C144.328 0.774048 146.372 2.81805 146.372 5.45005C146.372 8.11005 144.314 10.126 141.71 10.126ZM138.574 5.47805C138.574 7.28405 139.932 8.69805 141.71 8.69805C143.488 8.69805 144.846 7.27005 144.846 5.46405C144.846 3.65805 143.502 2.20205 141.71 2.20205C139.904 2.20205 138.574 3.68605 138.574 5.47805ZM149.453 10V0.914048H150.909L155.893 7.50805V0.914048H157.405V10H155.977L150.965 3.36405V10H149.453ZM163.04 10V2.32805H160.142V0.914048H167.45V2.32805H164.552V10H163.04ZM168.227 10L171.517 0.914048H173.393L176.697 10H175.171L174.485 8.09605H170.523L169.851 10H168.227ZM171.027 6.68205H173.967L172.483 2.60805L171.027 6.68205ZM183.171 10.126C180.399 10.126 178.509 8.05405 178.509 5.45005C178.509 2.84605 180.399 0.774048 183.171 0.774048C184.809 0.774048 186.195 1.55805 187.021 2.81805L185.733 3.61605C185.173 2.73405 184.277 2.20205 183.171 2.20205C181.365 2.20205 180.035 3.68605 180.035 5.45005C180.035 7.22805 181.365 8.69805 183.171 8.69805C184.277 8.69805 185.173 8.16605 185.733 7.28405L187.021 8.08205C186.195 9.34205 184.809 10.126 183.171 10.126ZM191.836 10V2.32805H188.938V0.914048H196.246V2.32805H193.348V10H191.836ZM198.049 10V8.34805H199.743V10H198.049ZM198.049 5.19805V3.54605H199.743V5.19805H198.049ZM4.8892 26.126C3.3212 26.126 2.1872 25.6361 1.4032 24.5581L2.4532 23.564C3.1252 24.404 3.9932 24.698 4.8612 24.698C5.8832 24.698 6.6532 24.32 6.6532 23.55C6.6532 21.45 1.7392 22.4021 1.7392 19.2661C1.7392 17.6001 3.1952 16.774 4.9452 16.774C6.2332 16.774 7.4372 17.32 8.1092 18.244L7.0872 19.2521C6.5972 18.6081 5.8132 18.202 4.9312 18.202C3.9932 18.202 3.2652 18.5521 3.2652 19.2801C3.2652 21.0301 8.1932 20.246 8.1932 23.452C8.1932 25.286 6.6392 26.126 4.8892 26.126ZM13.1624 26V18.328H10.2644V16.914H17.5724V18.328H14.6744V26H13.1624ZM24.0644 26.126C21.7824 26.126 20.2144 24.8381 20.2144 22.2901V16.914H21.7264V22.234C21.7264 23.956 22.6644 24.698 24.0644 24.698C25.4644 24.698 26.4024 23.956 26.4024 22.234V16.914H27.9284V22.2901C27.9284 24.8381 26.3604 26.126 24.0644 26.126ZM31.4741 26V16.914H34.8341C37.6621 16.914 39.3421 18.9021 39.3421 21.4501C39.3421 24.0261 37.6201 26 34.8341 26H31.4741ZM32.9861 24.5721H34.8341C36.5561 24.5721 37.8161 23.4381 37.8161 21.4501C37.8161 19.4761 36.5561 18.342 34.8341 18.342H32.9861V24.5721ZM42.4307 26V16.914H43.9427V26H42.4307ZM51.6788 26.126C49.0888 26.126 47.0168 24.1241 47.0168 21.4641C47.0168 18.8461 49.0048 16.774 51.6788 16.774C54.2968 16.774 56.3408 18.8181 56.3408 21.4501C56.3408 24.1101 54.2828 26.126 51.6788 26.126ZM48.5428 21.4781C48.5428 23.2841 49.9008 24.698 51.6788 24.698C53.4568 24.698 54.8148 23.2701 54.8148 21.4641C54.8148 19.6581 53.4708 18.202 51.6788 18.202C49.8728 18.202 48.5428 19.6861 48.5428 21.4781ZM70.0761 21.0021C70.0761 21.4314 70.0248 21.8513 69.9221 22.262C69.8288 22.6727 69.6795 23.046 69.4741 23.382C69.2688 23.7087 69.0168 23.9747 68.7181 24.18C68.4195 24.376 68.0648 24.4741 67.6541 24.4741C67.2248 24.4741 66.8841 24.3528 66.6321 24.1101C66.3895 23.8581 66.2401 23.5734 66.1841 23.2561H66.1141C65.9461 23.6014 65.6988 23.8908 65.3721 24.1241C65.0455 24.3574 64.6348 24.4741 64.1401 24.4741C63.4308 24.4741 62.8801 24.236 62.4881 23.76C62.1055 23.284 61.9141 22.6541 61.9141 21.8701C61.9141 21.2541 62.0355 20.7127 62.2781 20.246C62.5208 19.77 62.8615 19.3967 63.3001 19.126C63.7481 18.8553 64.2755 18.72 64.8821 18.72C65.2928 18.72 65.6941 18.7574 66.0861 18.8321C66.4875 18.8974 66.8001 18.972 67.0241 19.056L66.8841 21.8981C66.8748 22.0661 66.8701 22.1873 66.8701 22.262C66.8701 22.3273 66.8701 22.3741 66.8701 22.4021C66.8701 22.8874 66.9541 23.2093 67.1221 23.368C67.2995 23.5267 67.5048 23.6061 67.7381 23.6061C68.0275 23.6061 68.2701 23.4894 68.4661 23.2561C68.6715 23.0134 68.8255 22.6961 68.9281 22.3041C69.0401 21.9028 69.0961 21.4641 69.0961 20.9881C69.0961 20.1201 68.9188 19.3874 68.5641 18.7901C68.2188 18.1834 67.7381 17.7213 67.1221 17.404C66.5155 17.0867 65.8248 16.928 65.0501 16.928C64.2568 16.928 63.5521 17.054 62.9361 17.306C62.3201 17.558 61.8021 17.9128 61.3821 18.3701C60.9715 18.8274 60.6588 19.3687 60.4441 19.994C60.2295 20.61 60.1221 21.2913 60.1221 22.038C60.1221 22.9527 60.2855 23.732 60.6121 24.376C60.9388 25.0107 61.4148 25.4961 62.0401 25.8321C62.6748 26.1588 63.4495 26.3221 64.3641 26.3221C64.9335 26.3221 65.4748 26.2567 65.9881 26.126C66.5108 26.0047 66.9728 25.8693 67.3741 25.72V26.6721C66.9728 26.8401 66.5201 26.9753 66.0161 27.078C65.5215 27.19 64.9708 27.246 64.3641 27.246C63.2628 27.246 62.3201 27.0407 61.5361 26.63C60.7521 26.2193 60.1501 25.6313 59.7301 24.866C59.3195 24.0913 59.1141 23.1627 59.1141 22.08C59.1141 21.212 59.2495 20.4094 59.5201 19.6721C59.7908 18.9254 60.1828 18.2813 60.6961 17.74C61.2095 17.1893 61.8301 16.7647 62.5581 16.466C63.2955 16.158 64.1261 16.004 65.0501 16.004C65.7781 16.004 66.4455 16.1207 67.0521 16.354C67.6681 16.578 68.2001 16.9093 68.6481 17.348C69.1055 17.7773 69.4555 18.3 69.6981 18.916C69.9501 19.532 70.0761 20.2274 70.0761 21.0021ZM63.0061 21.8981C63.0061 22.4954 63.1228 22.9294 63.3561 23.2001C63.5988 23.4708 63.9208 23.6061 64.3221 23.6061C64.8448 23.6061 65.2181 23.41 65.4421 23.018C65.6755 22.626 65.8108 22.1174 65.8481 21.4921L65.9321 19.7421C65.8108 19.7048 65.6568 19.672 65.4701 19.644C65.2835 19.616 65.0921 19.602 64.8961 19.602C64.4388 19.602 64.0701 19.714 63.7901 19.938C63.5101 20.162 63.3095 20.4513 63.1881 20.806C63.0668 21.1513 63.0061 21.5154 63.0061 21.8981ZM77.5159 26.126C74.7439 26.126 72.8539 24.0541 72.8539 21.4501C72.8539 18.8461 74.7439 16.774 77.5159 16.774C78.8879 16.774 80.0919 17.334 80.9319 18.244L79.8539 19.2941C79.2939 18.6221 78.4819 18.202 77.5159 18.202C75.7099 18.202 74.3799 19.6861 74.3799 21.4501C74.3799 23.2281 75.7099 24.698 77.5159 24.698C78.8599 24.698 80.1339 23.9001 80.2879 22.3461H77.7539V21.0721H81.8279C81.8559 21.2401 81.8559 21.408 81.8559 21.576C81.8559 24.152 80.1199 26.126 77.5159 26.126ZM84.7944 26V16.914H86.3064V26H84.7944ZM94.0425 26.126C91.2705 26.126 89.3805 24.0541 89.3805 21.4501C89.3805 18.8461 91.2705 16.774 94.0425 16.774C95.4145 16.774 96.6185 17.334 97.4585 18.244L96.3805 19.2941C95.8205 18.6221 95.0085 18.202 94.0425 18.202C92.2365 18.202 90.9065 19.6861 90.9065 21.4501C90.9065 23.2281 92.2365 24.698 94.0425 24.698C95.3865 24.698 96.6605 23.9001 96.8145 22.3461H94.2805V21.0721H98.3545C98.3825 21.2401 98.3825 21.408 98.3825 21.576C98.3825 24.152 96.6465 26.126 94.0425 26.126ZM101.321 26V16.914H102.833V26H101.321ZM110.569 26.126C107.797 26.126 105.907 24.0541 105.907 21.4501C105.907 18.8461 107.797 16.774 110.569 16.774C111.941 16.774 113.145 17.334 113.985 18.244L112.907 19.2941C112.347 18.6221 111.535 18.202 110.569 18.202C108.763 18.202 107.433 19.6861 107.433 21.4501C107.433 23.2281 108.763 24.698 110.569 24.698C111.913 24.698 113.187 23.9001 113.341 22.3461H110.807V21.0721H114.881C114.909 21.2401 114.909 21.408 114.909 21.576C114.909 24.152 113.173 26.126 110.569 26.126ZM121.95 26.126C119.36 26.126 117.288 24.1241 117.288 21.4641C117.288 18.8461 119.276 16.774 121.95 16.774C124.568 16.774 126.612 18.8181 126.612 21.4501C126.612 24.1101 124.554 26.126 121.95 26.126ZM118.814 21.4781C118.814 23.2841 120.172 24.698 121.95 24.698C123.728 24.698 125.086 23.2701 125.086 21.4641C125.086 19.6581 123.742 18.202 121.95 18.202C120.144 18.202 118.814 19.6861 118.814 21.4781ZM133.795 26.126C131.205 26.126 129.133 24.1241 129.133 21.4641C129.133 18.8461 131.121 16.774 133.795 16.774C136.413 16.774 138.457 18.8181 138.457 21.4501C138.457 24.1101 136.399 26.126 133.795 26.126ZM130.659 21.4781C130.659 23.2841 132.017 24.698 133.795 24.698C135.573 24.698 136.931 23.2701 136.931 21.4641C136.931 19.6581 135.587 18.202 133.795 18.202C131.989 18.202 130.659 19.6861 130.659 21.4781ZM141.538 26V16.914H144.898C147.726 16.914 149.406 18.9021 149.406 21.4501C149.406 24.0261 147.684 26 144.898 26H141.538ZM143.05 24.5721H144.898C146.62 24.5721 147.88 23.4381 147.88 21.4501C147.88 19.4761 146.62 18.342 144.898 18.342H143.05V24.5721ZM152.495 26V16.914H157.955V18.342H153.993V20.68H157.591V22.094H153.993V24.5581H157.997V26H152.495ZM160.846 26V24.348H162.54V26H160.846ZM169.569 26.126C166.797 26.126 164.907 24.0541 164.907 21.4501C164.907 18.8461 166.797 16.774 169.569 16.774C171.207 16.774 172.593 17.5581 173.419 18.8181L172.131 19.616C171.571 18.734 170.675 18.202 169.569 18.202C167.763 18.202 166.433 19.6861 166.433 21.4501C166.433 23.2281 167.763 24.698 169.569 24.698C170.675 24.698 171.571 24.1661 172.131 23.284L173.419 24.0821C172.593 25.3421 171.207 26.126 169.569 26.126ZM180.266 26.126C177.676 26.126 175.604 24.1241 175.604 21.4641C175.604 18.8461 177.592 16.774 180.266 16.774C182.884 16.774 184.928 18.8181 184.928 21.4501C184.928 24.1101 182.87 26.126 180.266 26.126ZM177.13 21.4781C177.13 23.2841 178.488 24.698 180.266 24.698C182.044 24.698 183.402 23.2701 183.402 21.4641C183.402 19.6581 182.058 18.202 180.266 18.202C178.46 18.202 177.13 19.6861 177.13 21.4781ZM192.083 26L189.521 18.972V26H188.009V16.914H190.319L192.937 24.32L195.527 16.914H197.851V26H196.339V18.8881L193.777 26H192.083Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_217_877\">\\n<rect width=\"200\" height=\"28\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-inoRN { background: rgb(5, 5, 5); }`,\".framer-inoRN.framer-1ba5ewo, .framer-inoRN .framer-1ba5ewo { display: block; }\",\".framer-inoRN.framer-3yb2ij { background-color: #050505; height: 29534px; overflow: hidden; position: relative; width: 1440px; }\",\".framer-inoRN .framer-1ij95ke { flex: none; height: 3%; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-inoRN .framer-1h0d3q7-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-inoRN .framer-7vlrjc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 805px; transform: translateX(-50%); width: 100%; }\",\".framer-inoRN .framer-14x7cdh-container { aspect-ratio: 1.8181818181818181 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 792px); position: relative; width: 100%; }\",\".framer-inoRN .framer-a1oai6, .framer-inoRN .framer-1h2408q, .framer-inoRN .framer-vw467m { aspect-ratio: 0.7991803112096669 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1802px); position: relative; width: 100%; }\",\".framer-inoRN .framer-nddqv6, .framer-inoRN .framer-8afht3, .framer-inoRN .framer-1jb6ucw, .framer-inoRN .framer-1s1vvhy, .framer-inoRN .framer-3w4b3p, .framer-inoRN .framer-2n16v3, .framer-inoRN .framer-hrz3r6, .framer-inoRN .framer-xvaujy { aspect-ratio: 0.8008213719638116 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1798px); position: relative; width: 100%; }\",\".framer-inoRN .framer-at7a1x, .framer-inoRN .framer-fx19kv { aspect-ratio: 0.802469131603324 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1795px); position: relative; width: 100%; }\",\".framer-inoRN .framer-12f1iv0 { aspect-ratio: 0.8074534033946572 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1784px); position: relative; width: 100%; }\",\".framer-inoRN .framer-1meua5d { aspect-ratio: 0.8008213719638116 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1799px); position: relative; width: 100%; }\",\".framer-inoRN .framer-8rcs8y { aspect-ratio: 4.375 / 1; bottom: 45px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 50%; overflow: hidden; position: absolute; transform: translateX(-50%); width: 175px; }\",\".framer-inoRN .framer-1m1qiyj { bottom: 0px; flex: none; left: 90px; position: absolute; text-decoration: none; top: 0px; width: 40px; }\",\".framer-inoRN .framer-1xurck3 { bottom: 0px; flex: none; left: 45px; position: absolute; text-decoration: none; top: 0px; width: 40px; }\",\".framer-inoRN .framer-e7dh1r { bottom: 0px; flex: none; position: absolute; right: 0px; text-decoration: none; top: 0px; width: 40px; }\",\".framer-inoRN .framer-uq7830 { bottom: 0px; flex: none; left: 0px; position: absolute; text-decoration: none; top: 0px; width: 40px; }\",\".framer-inoRN .framer-1loly2l { aspect-ratio: 12.392857142857142 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 50%; mix-blend-mode: difference; position: absolute; top: 395px; transform: translateX(-50%); width: 347px; }\",\".framer-inoRN .framer-cm553j { aspect-ratio: 1.48 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 175px); left: 50%; position: fixed; top: 32px; transform: translateX(-50%); width: 259px; z-index: 1; }\",\".framer-inoRN .framer-1vef2kk { flex: none; height: 28px; left: calc(50.00000000000002% - 200px / 2); position: absolute; text-decoration: none; top: 29038px; width: 200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-inoRN .framer-7vlrjc { gap: 0px; } .framer-inoRN .framer-7vlrjc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-inoRN .framer-7vlrjc > :first-child { margin-top: 0px; } .framer-inoRN .framer-7vlrjc > :last-child { margin-bottom: 0px; } }\",\"@media (min-width: 1440px) { .framer-inoRN .hidden-3yb2ij { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1439px) { .framer-inoRN .hidden-1ipypw0 { display: none !important; } .${metadata.bodyClassName}-framer-inoRN { background: rgb(5, 5, 5); } .framer-inoRN.framer-3yb2ij { height: 17009px; width: 810px; } .framer-inoRN .framer-1ij95ke { aspect-ratio: 0.9902200488997555 / 1; height: var(--framer-aspect-ratio-supported, 818px); } .framer-inoRN .framer-1h0d3q7-container { aspect-ratio: 0.9902200488997555 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 818px); left: 50%; right: unset; transform: translateX(-50%); width: 100%; } .framer-inoRN .framer-14x7cdh-container { height: var(--framer-aspect-ratio-supported, 446px); order: 0; } .framer-inoRN .framer-a1oai6 { height: var(--framer-aspect-ratio-supported, 1014px); order: 1; } .framer-inoRN .framer-nddqv6 { height: var(--framer-aspect-ratio-supported, 1012px); order: 2; } .framer-inoRN .framer-at7a1x { height: var(--framer-aspect-ratio-supported, 1010px); order: 3; } .framer-inoRN .framer-1h2408q { height: var(--framer-aspect-ratio-supported, 1014px); order: 4; } .framer-inoRN .framer-8afht3 { height: var(--framer-aspect-ratio-supported, 1012px); order: 5; } .framer-inoRN .framer-1jb6ucw { height: var(--framer-aspect-ratio-supported, 1012px); order: 6; } .framer-inoRN .framer-vw467m { height: var(--framer-aspect-ratio-supported, 1014px); order: 7; } .framer-inoRN .framer-12f1iv0 { height: var(--framer-aspect-ratio-supported, 1003px); order: 8; } .framer-inoRN .framer-1s1vvhy { height: var(--framer-aspect-ratio-supported, 1012px); order: 9; } .framer-inoRN .framer-3w4b3p { height: var(--framer-aspect-ratio-supported, 1012px); order: 10; } .framer-inoRN .framer-1meua5d { height: var(--framer-aspect-ratio-supported, 1012px); order: 11; width: 100%; } .framer-inoRN .framer-2n16v3 { height: var(--framer-aspect-ratio-supported, 1012px); order: 12; } .framer-inoRN .framer-hrz3r6 { height: var(--framer-aspect-ratio-supported, 1012px); order: 13; } .framer-inoRN .framer-xvaujy { height: var(--framer-aspect-ratio-supported, 1012px); order: 14; width: 100%; } .framer-inoRN .framer-fx19kv { height: var(--framer-aspect-ratio-supported, 1009px); order: 15; width: 100%; } .framer-inoRN .framer-8rcs8y { bottom: unset; top: 16933px; } .framer-inoRN .framer-1loly2l { height: var(--framer-aspect-ratio-supported, 21px); left: 50%; top: 390px; width: 260px; } .framer-inoRN .framer-1vef2kk { top: 16689px; }}`,`@media (max-width: 809px) { .framer-inoRN .hidden-1b8ys5g { display: none !important; } .${metadata.bodyClassName}-framer-inoRN { background: rgb(5, 5, 5); } .framer-inoRN.framer-3yb2ij { height: 8606px; width: 390px; } .framer-inoRN .framer-1ij95ke { height: 699px; left: calc(50.00000000000002% - 100% / 2); right: unset; width: 100%; } .framer-inoRN .framer-1h0d3q7-container { bottom: unset; height: 100%; right: unset; width: 100%; } .framer-inoRN .framer-7vlrjc { padding: 11px 0px 11px 0px; top: 672px; } .framer-inoRN .framer-14x7cdh-container { height: var(--framer-aspect-ratio-supported, 215px); } .framer-inoRN .framer-a1oai6, .framer-inoRN .framer-1h2408q, .framer-inoRN .framer-vw467m { aspect-ratio: unset; height: 488px; } .framer-inoRN .framer-nddqv6, .framer-inoRN .framer-8afht3, .framer-inoRN .framer-1jb6ucw, .framer-inoRN .framer-1s1vvhy, .framer-inoRN .framer-3w4b3p, .framer-inoRN .framer-1meua5d, .framer-inoRN .framer-2n16v3, .framer-inoRN .framer-hrz3r6, .framer-inoRN .framer-xvaujy { aspect-ratio: unset; height: 487px; } .framer-inoRN .framer-at7a1x, .framer-inoRN .framer-fx19kv { aspect-ratio: unset; height: 486px; } .framer-inoRN .framer-12f1iv0 { aspect-ratio: unset; height: 483px; } .framer-inoRN .framer-8rcs8y { bottom: unset; top: 8533px; } .framer-inoRN .framer-1loly2l { height: var(--framer-aspect-ratio-supported, 18px); left: 50%; top: 350px; width: 223px; } .framer-inoRN .framer-cm553j { height: var(--framer-aspect-ratio-supported, 119px); left: 50%; top: 31px; width: 176px; } .framer-inoRN .framer-1vef2kk { top: 8377px; }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 29534\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"reMGh1fS4\":{\"layout\":[\"fixed\",\"fixed\"]},\"XP5myiaFC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerSwlAPRX4C=withCSS(Component,css,\"framer-inoRN\");export default FramerSwlAPRX4C;FramerSwlAPRX4C.displayName=\"Glasse\";FramerSwlAPRX4C.defaultProps={height:29534,width:1440};addFonts(FramerSwlAPRX4C,[{explicitInter:true,fonts:[]},...VideoFonts,...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSwlAPRX4C\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"reMGh1fS4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XP5myiaFC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"29534\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\"}},\"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", "VideoFonts", "getFonts", "Video", "YouTubeFonts", "Youtube", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "Video", "Youtube", "PropertyOverrides2", "Image2", "Link", "SVG", "css", "FramerSwlAPRX4C", "withCSS", "SwlAPRX4C_default", "addFonts", "VideoFonts", "YouTubeFonts", "__FramerMetadata__"]
}
