{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/hpBt921RCtb189ZVOIRs/BlK8NvhhDG3JsNAXaFN7/LHqZzIcXH.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,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.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://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// 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(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,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\"},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(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__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===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,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 embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High: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 element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,LazyValue,Link,PropertyOverrides,removeHiddenBreakpointLayers,RichText,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import PageOn_ from\"#framer/local/canvasComponent/HZrmvwgTP/HZrmvwgTP.js\";import metadataProvider from\"#framer/local/webPageMetadata/LHqZzIcXH/LHqZzIcXH.js\";const FeatherFonts=getFonts(Feather);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const YouTubeFonts=getFonts(YouTube);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const PageOn_Fonts=getFonts(PageOn_);const cycleOrder=[\"b8jJ5jQAv\",\"tWZPkEooi\",\"vGojpxOqE\"];const breakpoints={b8jJ5jQAv:\"(min-width: 1200px)\",tWZPkEooi:\"(min-width: 810px) and (max-width: 1199px)\",vGojpxOqE:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tWKGS\";const variantClassNames={b8jJ5jQAv:\"framer-v-tkkmnp\",tWZPkEooi:\"framer-v-1gbn9u0\",vGojpxOqE:\"framer-v-xc6xzc\"};if(isBrowser()){removeHiddenBreakpointLayers(\"b8jJ5jQAv\",breakpoints,variantClassNames);}const transitions={default:{duration:0}};const valuesByLocaleId={bH7JIYAO2:new LazyValue(()=>import(\"./LHqZzIcXH-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const animation={opacity:0,rotate:0,scale:1,x:-20,y:0};const transition1={damping:80,delay:.1,mass:10,stiffness:100,type:\"spring\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:-20,y:0};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const transition2={damping:80,delay:.8,mass:10,stiffness:100,type:\"spring\"};const animation2={opacity:0,rotate:0,scale:1,transition:transition2,x:-20,y:0};const animation3={opacity:0,rotate:0,scale:.5,x:0,y:0};const transition3={damping:80,delay:0,mass:10,stiffness:100,type:\"spring\"};const animation4={opacity:0,rotate:0,scale:.5,transition:transition3,x:0,y:0};const animation5={opacity:0,rotate:0,scale:1,x:0,y:50};const transition4={damping:40,delay:0,mass:6,stiffness:100,type:\"spring\"};const animation6={opacity:0,rotate:0,scale:1,transition:transition4,x:0,y:50};const animation7={opacity:0,rotate:0,scale:1,x:50,y:0};const animation8={opacity:0,rotate:0,scale:1,transition:transition4,x:50,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"b8jJ5jQAv\",Phone:\"vGojpxOqE\",Tablet:\"tWZPkEooi\"};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:\"b8jJ5jQAv\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-tWKGS`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-tWKGS`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"vGojpxOqE\")return!isBrowser();return true;};const isDisplayed1=()=>{if(baseVariant===\"vGojpxOqE\")return true;return!isBrowser();};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"b8jJ5jQAv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tkkmnp\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pet9dh\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":bCCi86Zhw\",webPageId:\"RAVt2ueZY\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-wpu4bh framer-x3x2lu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tvkc0f\"}),/*#__PURE__*/_jsx(Container,{className:\"framer-4b8yub-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-left\",id:\"WsB9QGzfI\",layoutId:\"WsB9QGzfI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ppup7\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uwxwog\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dwj6jz\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aw5kts\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:87,intrinsicWidth:948,pixelHeight:87,pixelWidth:948,sizes:\"207px\",src:\"https://framerusercontent.com/images/Immmli6xck76SBtpBizvvIfjYI8.png\",srcSet:\"https://framerusercontent.com/images/Immmli6xck76SBtpBizvvIfjYI8.png?scale-down-to=512 512w, https://framerusercontent.com/images/Immmli6xck76SBtpBizvvIfjYI8.png 948w\"},className:\"framer-edfjjy\",\"data-framer-name\":\"title\",name:\"title\",transformTemplate:transformTemplate1}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7UnViaWstcmVndWxhcg==\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"1.9em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'A brand that already works in the market and provides training spaces and equipment for rent, called \"Valhalla\".'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'The concept is based on Norse mythology, in which there is a \"Valhalla\" hall where warriors gather before going into battle.'})})]})}),className:\"framer-bncdee hidden-xc6xzc\",fonts:[\"GF;Rubik-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\"},children:\"The task: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\"},children:\"create a sub-brand to produce a line of yoga products.\"})]}),className:\"framer-1q72o54 hidden-xc6xzc\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7UnViaWstcmVndWxhcg==\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"1.9em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'A brand that already works in the market and provides training spaces and equipment for rent, called \"Valhalla\".'})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:'The concept is based on Norse mythology, in which there is a \"Valhalla\" hall where warriors gather before going into battle.'})})]})}),className:\"framer-x61yat hidden-tkkmnp hidden-1gbn9u0\",fonts:[\"GF;Rubik-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\"},children:\"The task: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\"},children:\"create a sub-brand to produce a line of yoga products.\"})]}),className:\"framer-1rmgcwd hidden-tkkmnp hidden-1gbn9u0\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4wwia2\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qeph11\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tWZPkEooi:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:481,pixelHeight:602,pixelWidth:481,positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 1200px) / 2, 0px)\",src:\"https://framerusercontent.com/images/w5JO5k8UgKZJvB5gJFGGWmuYGA.png\",srcSet:\"https://framerusercontent.com/images/w5JO5k8UgKZJvB5gJFGGWmuYGA.png 481w\"}},vGojpxOqE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:481,pixelHeight:602,pixelWidth:481,positionX:\"center\",positionY:\"center\",sizes:\"193px\",src:\"https://framerusercontent.com/images/w5JO5k8UgKZJvB5gJFGGWmuYGA.png\",srcSet:\"https://framerusercontent.com/images/w5JO5k8UgKZJvB5gJFGGWmuYGA.png 481w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}},{target:{opacity:1,rotate:15,rotateX:15,rotateY:-21,scale:.4,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:602,intrinsicWidth:481,pixelHeight:602,pixelWidth:481,positionX:\"center\",positionY:\"center\",sizes:\"max(max(min(100vw, 1200px) / 2, 0px) - 48px, 0px)\",src:\"https://framerusercontent.com/images/w5JO5k8UgKZJvB5gJFGGWmuYGA.png\",srcSet:\"https://framerusercontent.com/images/w5JO5k8UgKZJvB5gJFGGWmuYGA.png 481w\"},className:\"framer-a0skaj\",\"data-framer-name\":\"$65968\",name:\"$65968\",transformTemplate:transformTemplate1})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tfo7bp\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iddd9k-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"W7KJgUPc7\",isMixedBorderRadius:false,isRed:false,layoutId:\"W7KJgUPc7\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/s5LjMQwQmGo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vGojpxOqE:{__framer__enter:animation7,__framer__exit:animation8}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a19g1e\",\"data-framer-name\":\"Templates\",name:\"Templates\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-if4yhy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vGojpxOqE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:\"287px\",src:\"https://framerusercontent.com/images/J2xvFhVx5pVrHOBkhtAbGsdN6ic.png\",srcSet:\"https://framerusercontent.com/images/J2xvFhVx5pVrHOBkhtAbGsdN6ic.png?scale-down-to=512 512w, https://framerusercontent.com/images/J2xvFhVx5pVrHOBkhtAbGsdN6ic.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/J2xvFhVx5pVrHOBkhtAbGsdN6ic.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:\"lazy\",pixelHeight:1080,pixelWidth:1080,sizes:\"287px\",src:\"https://framerusercontent.com/images/J2xvFhVx5pVrHOBkhtAbGsdN6ic.png\",srcSet:\"https://framerusercontent.com/images/J2xvFhVx5pVrHOBkhtAbGsdN6ic.png?scale-down-to=512 512w, https://framerusercontent.com/images/J2xvFhVx5pVrHOBkhtAbGsdN6ic.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/J2xvFhVx5pVrHOBkhtAbGsdN6ic.png 1080w\"},className:\"framer-y86sfc\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18o2o42\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The problem:\"})}),className:\"framer-mibs9g\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The company's branding was based on a powerful character with sharp and crude graphic language.\"})}),className:\"framer-uryyoe\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"On the other hand, it is necessary to adapt the branding to the series of products for yoga, which is based on more peaceful and neutral values.\"})}),className:\"framer-giczof\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsvnib\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vGojpxOqE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"287px\",src:\"https://framerusercontent.com/images/YYj3iNafe3lva3SwYU8KNIofyo.png\",srcSet:\"https://framerusercontent.com/images/YYj3iNafe3lva3SwYU8KNIofyo.png?scale-down-to=512 512w, https://framerusercontent.com/images/YYj3iNafe3lva3SwYU8KNIofyo.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/YYj3iNafe3lva3SwYU8KNIofyo.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:1080,loading:\"lazy\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"287px\",src:\"https://framerusercontent.com/images/YYj3iNafe3lva3SwYU8KNIofyo.png\",srcSet:\"https://framerusercontent.com/images/YYj3iNafe3lva3SwYU8KNIofyo.png?scale-down-to=512 512w, https://framerusercontent.com/images/YYj3iNafe3lva3SwYU8KNIofyo.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/YYj3iNafe3lva3SwYU8KNIofyo.png 1080w\"},className:\"framer-gdmih8\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rpzmhq\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"the solution:\"})}),className:\"framer-157rsow\",fonts:[\"Inter-Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The rays of the powerful figure are an interesting visual opening for the conversion of the figure.\"})}),className:\"framer-yv9ad2\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"They have a great role in the role of the character, so using them allows you to play with the nature of the character easily.\"})}),className:\"framer-j70w95\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-130mea6\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10p857a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Take off the horns!\"})}),className:\"framer-1hisf1u\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-juzu1i\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vGojpxOqE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:556,intrinsicWidth:710,pixelHeight:556,pixelWidth:710,positionX:\"center\",positionY:\"center\",sizes:\"219px\",src:\"https://framerusercontent.com/images/GH9VSIYuwmtqFgvsI4ANplXEgg.png\",srcSet:\"https://framerusercontent.com/images/GH9VSIYuwmtqFgvsI4ANplXEgg.png?scale-down-to=512 512w, https://framerusercontent.com/images/GH9VSIYuwmtqFgvsI4ANplXEgg.png 710w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:6,rotateX:3,rotateY:9,scale:.7,x:-47,y:1}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:556,intrinsicWidth:710,loading:\"lazy\",pixelHeight:556,pixelWidth:710,positionX:\"center\",positionY:\"center\",sizes:\"219px\",src:\"https://framerusercontent.com/images/GH9VSIYuwmtqFgvsI4ANplXEgg.png\",srcSet:\"https://framerusercontent.com/images/GH9VSIYuwmtqFgvsI4ANplXEgg.png?scale-down-to=512 512w, https://framerusercontent.com/images/GH9VSIYuwmtqFgvsI4ANplXEgg.png 710w\"},className:\"framer-utwmq1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vGojpxOqE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:640,intrinsicWidth:663,pixelHeight:640,pixelWidth:663,positionX:\"center\",positionY:\"center\",sizes:\"202px\",src:\"https://framerusercontent.com/images/0hShOA5HZ45P8ythLDfamrj4H9c.png\",srcSet:\"https://framerusercontent.com/images/0hShOA5HZ45P8ythLDfamrj4H9c.png?scale-down-to=512 512w, https://framerusercontent.com/images/0hShOA5HZ45P8ythLDfamrj4H9c.png 663w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:6,rotateX:3,rotateY:9,scale:.7,x:-47,y:1}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:640,intrinsicWidth:663,loading:\"lazy\",pixelHeight:640,pixelWidth:663,positionX:\"center\",positionY:\"center\",sizes:\"202px\",src:\"https://framerusercontent.com/images/0hShOA5HZ45P8ythLDfamrj4H9c.png\",srcSet:\"https://framerusercontent.com/images/0hShOA5HZ45P8ythLDfamrj4H9c.png?scale-down-to=512 512w, https://framerusercontent.com/images/0hShOA5HZ45P8ythLDfamrj4H9c.png 663w\"},className:\"framer-1e1obv0\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vGojpxOqE:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:640,intrinsicWidth:591,pixelHeight:640,pixelWidth:591,positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/Qla5vmwomlmmpjYfqIvLvC92lEQ.png\",srcSet:\"https://framerusercontent.com/images/Qla5vmwomlmmpjYfqIvLvC92lEQ.png 591w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:6,rotateX:3,rotateY:9,scale:.7,x:-47,y:1}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:640,intrinsicWidth:591,loading:\"lazy\",pixelHeight:640,pixelWidth:591,positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/Qla5vmwomlmmpjYfqIvLvC92lEQ.png\",srcSet:\"https://framerusercontent.com/images/Qla5vmwomlmmpjYfqIvLvC92lEQ.png 591w\"},className:\"framer-115u2az\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"By the simple act of lowering the horns the figure represents the values of yoga.\"})}),className:\"framer-doelps\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vhsxcs\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3ct9s\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-91q6r0\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n06t5z-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,controls:false,height:\"100%\",id:\"X1O7eSNAX\",isMixedBorderRadius:false,layoutId:\"X1O7eSNAX\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/zusqEFy1HcvJOOGDsrXQbo7Jw5s.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:30,topRightRadius:30,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tWZPkEooi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-alignment\":\"left\"},children:\"In addition, the logo was given an abstract animation of a yoga mat layout, which allowed the creation of an additional dimension by monochrome black and white.\"})})},vGojpxOqE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:\"In addition, the logo was given an abstract animation of a yoga mat layout, which allowed the creation of an additional dimension by monochrome black and white.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-alignment\":\"left\"},children:\"In addition, the logo was given an abstract animation of a yoga mat layout, which allowed the creation of an additional dimension by monochrome black and white.\"})}),className:\"framer-13z8s43\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vGojpxOqE:{__framer__enter:animation7,__framer__exit:animation8}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ooylop\",\"data-framer-name\":\"Templates\",name:\"Templates\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7uqq8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tWZPkEooi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 810px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png\",srcSet:\"https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png?scale-down-to=512 512w, https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png 1746w\"}},vGojpxOqE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,pixelHeight:1659,pixelWidth:1746,sizes:\"max(min(100vw, 1200px) - 60px, 200px)\",src:\"https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png\",srcSet:\"https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png?scale-down-to=512 512w, https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png 1746w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:6,rotateX:3,rotateY:9,scale:.7,x:-47,y:1}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 1200px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png\",srcSet:\"https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png?scale-down-to=512 512w, https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/mzxRObWhBTcm4g9P6CK9bFVQiAg.png 1746w\"},className:\"framer-cvfofp\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tWZPkEooi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 810px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png\",srcSet:\"https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png?scale-down-to=512 512w, https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png 1746w\"}},vGojpxOqE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,pixelHeight:1659,pixelWidth:1746,sizes:\"max(min(100vw, 1200px) - 60px, 200px)\",src:\"https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png\",srcSet:\"https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png?scale-down-to=512 512w, https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png 1746w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:6,rotateX:3,rotateY:9,scale:.7,x:-47,y:1}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 1200px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png\",srcSet:\"https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png?scale-down-to=512 512w, https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ClWmsKDdkPu9GPjuKgJu1bUrmBw.png 1746w\"},className:\"framer-2ijyx1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tWZPkEooi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 810px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png\",srcSet:\"https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png?scale-down-to=512 512w, https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png 1746w\"}},vGojpxOqE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,pixelHeight:1659,pixelWidth:1746,sizes:\"max(min(100vw, 1200px) - 60px, 200px)\",src:\"https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png\",srcSet:\"https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png?scale-down-to=512 512w, https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png 1746w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:6,rotateX:3,rotateY:9,scale:.7,x:-47,y:1}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 1200px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png\",srcSet:\"https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png?scale-down-to=512 512w, https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/XYheo4l55Tc0BHsCq38xnAVQhI.png 1746w\"},className:\"framer-1rmg0x9\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tWZPkEooi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 810px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png\",srcSet:\"https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png?scale-down-to=512 512w, https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png 1746w\"}},vGojpxOqE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,pixelHeight:1659,pixelWidth:1746,sizes:\"max(min(100vw, 1200px) - 60px, 200px)\",src:\"https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png\",srcSet:\"https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png?scale-down-to=512 512w, https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png 1746w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:6,rotateX:3,rotateY:9,scale:.7,x:-47,y:1}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 1200px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png\",srcSet:\"https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png?scale-down-to=512 512w, https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/I74QVkg3mcWhMaWERHZdGSmG0.png 1746w\"},className:\"framer-8bmha\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tWZPkEooi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 810px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png\",srcSet:\"https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png?scale-down-to=512 512w, https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png 1746w\"}},vGojpxOqE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,pixelHeight:1659,pixelWidth:1746,sizes:\"max(min(100vw, 1200px) - 60px, 200px)\",src:\"https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png\",srcSet:\"https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png?scale-down-to=512 512w, https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png 1746w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:100,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.7,rotate:6,rotateX:3,rotateY:9,scale:.7,x:-47,y:1}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1659,intrinsicWidth:1746,loading:\"lazy\",pixelHeight:1659,pixelWidth:1746,sizes:\"max((min(100vw, 1200px) - 156px) / 3, 200px)\",src:\"https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png\",srcSet:\"https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png?scale-down-to=512 512w, https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/DwcCjHr8tC9X9dMLGP9ypu53c.png 1746w\"},className:\"framer-1474ocj\",transformTemplate:transformTemplate1})})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-djvc9f hidden-xc6xzc\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u16st8\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-a57fow-container\",children:/*#__PURE__*/_jsx(PageOn_,{BimmqK8rm:\"page on facebook\",height:\"100%\",id:\"ksuy8NU_1\",layoutId:\"ksuy8NU_1\",variant:\"FYsq2PBd4\",width:\"100%\"})}),/*#__PURE__*/_jsx(Container,{className:\"framer-11ww77q-container\",children:/*#__PURE__*/_jsx(PageOn_,{BimmqK8rm:\"page on instagram\",height:\"100%\",id:\"GeJGZwFI7\",layoutId:\"GeJGZwFI7\",variant:\"swO3IAt5U\",width:\"100%\"})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-tWKGS[data-border=\"true\"]::after, .framer-tWKGS [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-tWKGS.framer-x3x2lu, .framer-tWKGS .framer-x3x2lu { display: block; }\",\".framer-tWKGS.framer-tkkmnp { align-content: center; align-items: center; background: linear-gradient(90deg, #ffffff 0%, rgb(245, 245, 245) 100%); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-tWKGS .framer-pet9dh { flex: none; height: 54px; overflow: visible; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-tWKGS .framer-wpu4bh { flex: none; height: 34px; left: 13px; overflow: hidden; position: absolute; text-decoration: none; top: calc(50.00000000000002% - 34px / 2); width: 33px; }\",\".framer-tWKGS .framer-tvkc0f { aspect-ratio: 1 / 1; background-color: #ef6b4d; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 0px; overflow: hidden; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); will-change: var(--framer-will-change-override, transform); }\",\".framer-tWKGS .framer-4b8yub-container { flex: none; height: 25px; left: calc(48.484848484848506% - 25px / 2); position: absolute; top: calc(50.00000000000002% - 25px / 2); width: 25px; }\",\".framer-tWKGS .framer-15ppup7, .framer-tWKGS .framer-djvc9f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-tWKGS .framer-uwxwog { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 24px 24px 24px 24px; position: relative; width: 1px; }\",\".framer-tWKGS .framer-dwj6jz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: auto; justify-content: center; max-width: 2018px; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-tWKGS .framer-aw5kts { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tWKGS .framer-edfjjy { aspect-ratio: 10.89655172413793 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; transform: perspective(1200px); width: 207px; }\",\".framer-tWKGS .framer-bncdee, .framer-tWKGS .framer-1q72o54, .framer-tWKGS .framer-x61yat, .framer-tWKGS .framer-1rmgcwd { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tWKGS .framer-4wwia2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 24px 24px 24px 24px; position: relative; width: 1px; }\",\".framer-tWKGS .framer-qeph11 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tWKGS .framer-a0skaj { flex: 1 0 0px; height: 39%; overflow: visible; position: relative; transform: perspective(1200px); width: 1px; }\",\".framer-tWKGS .framer-1tfo7bp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 113px 24px; position: relative; width: 100%; }\",\".framer-tWKGS .framer-iddd9k-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 341px); position: relative; transform: perspective(1200px); width: 606px; }\",\".framer-tWKGS .framer-1a19g1e { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; box-shadow: 0px 0px 182px 0px rgba(184, 184, 184, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 32px 40px 32px 40px; position: relative; transform: perspective(1200px); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tWKGS .framer-if4yhy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: 269px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tWKGS .framer-y86sfc, .framer-tWKGS .framer-gdmih8 { flex: none; height: 200px; overflow: hidden; position: relative; width: 287px; }\",\".framer-tWKGS .framer-18o2o42, .framer-tWKGS .framer-1rpzmhq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-tWKGS .framer-mibs9g, .framer-tWKGS .framer-uryyoe, .framer-tWKGS .framer-giczof, .framer-tWKGS .framer-157rsow, .framer-tWKGS .framer-yv9ad2, .framer-tWKGS .framer-j70w95 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 496px; word-break: break-word; word-wrap: break-word; }\",\".framer-tWKGS .framer-1vsvnib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: 261px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tWKGS .framer-130mea6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-tWKGS .framer-10p857a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: center; overflow: hidden; padding: 73px 24px 73px 24px; position: relative; width: 1px; }\",\".framer-tWKGS .framer-1hisf1u, .framer-tWKGS .framer-doelps { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tWKGS .framer-juzu1i { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: 194px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 771px; }\",\".framer-tWKGS .framer-utwmq1 { flex: none; height: 172px; overflow: hidden; position: relative; transform: perspective(1200px); width: 219px; }\",\".framer-tWKGS .framer-1e1obv0 { flex: none; height: 194px; overflow: hidden; position: relative; transform: perspective(1200px); width: 202px; }\",\".framer-tWKGS .framer-115u2az { flex: none; height: 194px; overflow: hidden; position: relative; transform: perspective(1200px); width: 183px; }\",\".framer-tWKGS .framer-1vhsxcs { align-content: center; align-items: center; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tWKGS .framer-1c3ct9s { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 127px; height: 395px; justify-content: center; overflow: hidden; padding: 110px 110px 110px 110px; position: relative; width: 1px; }\",\".framer-tWKGS .framer-91q6r0 { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 11px 11px 37px 0px rgba(0, 0, 0, 0.04); flex: none; height: 136%; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 423px); will-change: var(--framer-will-change-override, transform); }\",\".framer-tWKGS .framer-1n06t5z-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-tWKGS .framer-13z8s43 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tWKGS .framer-ooylop { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; box-shadow: 0px 0px 182px 0px rgba(184, 184, 184, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 32px 40px 32px 40px; position: relative; transform: perspective(1200px); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tWKGS .framer-1c7uqq8 { aspect-ratio: 1.519674355495251 / 1; display: grid; flex: none; gap: 38px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: var(--framer-aspect-ratio-supported, 737px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tWKGS .framer-cvfofp, .framer-tWKGS .framer-2ijyx1, .framer-tWKGS .framer-1rmg0x9, .framer-tWKGS .framer-8bmha, .framer-tWKGS .framer-1474ocj { align-self: start; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: 100%; justify-self: start; overflow: hidden; position: relative; transform: perspective(1200px); width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tWKGS .framer-1u16st8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: center; overflow: hidden; padding: 73px 24px 73px 24px; position: relative; width: 1px; }\",\".framer-tWKGS .framer-a57fow-container, .framer-tWKGS .framer-11ww77q-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tWKGS.framer-tkkmnp, .framer-tWKGS .framer-15ppup7, .framer-tWKGS .framer-uwxwog, .framer-tWKGS .framer-dwj6jz, .framer-tWKGS .framer-aw5kts, .framer-tWKGS .framer-4wwia2, .framer-tWKGS .framer-qeph11, .framer-tWKGS .framer-1tfo7bp, .framer-tWKGS .framer-1a19g1e, .framer-tWKGS .framer-if4yhy, .framer-tWKGS .framer-18o2o42, .framer-tWKGS .framer-1vsvnib, .framer-tWKGS .framer-1rpzmhq, .framer-tWKGS .framer-130mea6, .framer-tWKGS .framer-10p857a, .framer-tWKGS .framer-juzu1i, .framer-tWKGS .framer-1vhsxcs, .framer-tWKGS .framer-1c3ct9s, .framer-tWKGS .framer-ooylop, .framer-tWKGS .framer-djvc9f, .framer-tWKGS .framer-1u16st8 { gap: 0px; } .framer-tWKGS.framer-tkkmnp > *, .framer-tWKGS .framer-ooylop > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tWKGS.framer-tkkmnp > :first-child, .framer-tWKGS .framer-dwj6jz > :first-child, .framer-tWKGS .framer-aw5kts > :first-child, .framer-tWKGS .framer-4wwia2 > :first-child, .framer-tWKGS .framer-1tfo7bp > :first-child, .framer-tWKGS .framer-1a19g1e > :first-child, .framer-tWKGS .framer-18o2o42 > :first-child, .framer-tWKGS .framer-1rpzmhq > :first-child, .framer-tWKGS .framer-10p857a > :first-child, .framer-tWKGS .framer-ooylop > :first-child { margin-top: 0px; } .framer-tWKGS.framer-tkkmnp > :last-child, .framer-tWKGS .framer-dwj6jz > :last-child, .framer-tWKGS .framer-aw5kts > :last-child, .framer-tWKGS .framer-4wwia2 > :last-child, .framer-tWKGS .framer-1tfo7bp > :last-child, .framer-tWKGS .framer-1a19g1e > :last-child, .framer-tWKGS .framer-18o2o42 > :last-child, .framer-tWKGS .framer-1rpzmhq > :last-child, .framer-tWKGS .framer-10p857a > :last-child, .framer-tWKGS .framer-ooylop > :last-child { margin-bottom: 0px; } .framer-tWKGS .framer-15ppup7 > *, .framer-tWKGS .framer-130mea6 > *, .framer-tWKGS .framer-1vhsxcs > *, .framer-tWKGS .framer-djvc9f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-tWKGS .framer-15ppup7 > :first-child, .framer-tWKGS .framer-uwxwog > :first-child, .framer-tWKGS .framer-qeph11 > :first-child, .framer-tWKGS .framer-if4yhy > :first-child, .framer-tWKGS .framer-1vsvnib > :first-child, .framer-tWKGS .framer-130mea6 > :first-child, .framer-tWKGS .framer-juzu1i > :first-child, .framer-tWKGS .framer-1vhsxcs > :first-child, .framer-tWKGS .framer-1c3ct9s > :first-child, .framer-tWKGS .framer-djvc9f > :first-child, .framer-tWKGS .framer-1u16st8 > :first-child { margin-left: 0px; } .framer-tWKGS .framer-15ppup7 > :last-child, .framer-tWKGS .framer-uwxwog > :last-child, .framer-tWKGS .framer-qeph11 > :last-child, .framer-tWKGS .framer-if4yhy > :last-child, .framer-tWKGS .framer-1vsvnib > :last-child, .framer-tWKGS .framer-130mea6 > :last-child, .framer-tWKGS .framer-juzu1i > :last-child, .framer-tWKGS .framer-1vhsxcs > :last-child, .framer-tWKGS .framer-1c3ct9s > :last-child, .framer-tWKGS .framer-djvc9f > :last-child, .framer-tWKGS .framer-1u16st8 > :last-child { margin-right: 0px; } .framer-tWKGS .framer-uwxwog > *, .framer-tWKGS .framer-qeph11 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tWKGS .framer-dwj6jz > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-tWKGS .framer-aw5kts > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-tWKGS .framer-4wwia2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tWKGS .framer-1tfo7bp > *, .framer-tWKGS .framer-10p857a > * { margin: 0px; margin-bottom: calc(69px / 2); margin-top: calc(69px / 2); } .framer-tWKGS .framer-1a19g1e > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-tWKGS .framer-if4yhy > *, .framer-tWKGS .framer-1vsvnib > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-tWKGS .framer-18o2o42 > *, .framer-tWKGS .framer-1rpzmhq > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-tWKGS .framer-juzu1i > * { margin: 0px; margin-left: calc(49px / 2); margin-right: calc(49px / 2); } .framer-tWKGS .framer-1c3ct9s > * { margin: 0px; margin-left: calc(127px / 2); margin-right: calc(127px / 2); } .framer-tWKGS .framer-1u16st8 > * { margin: 0px; margin-left: calc(69px / 2); margin-right: calc(69px / 2); } }\",\"@media (min-width: 1200px) { .framer-tWKGS .hidden-tkkmnp { display: none !important; } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-tWKGS .hidden-1gbn9u0 { display: none !important; } .framer-tWKGS.framer-tkkmnp { width: 810px; } .framer-tWKGS .framer-dwj6jz { flex: 1 0 0px; gap: 27px; height: 406px; padding: 40px 40px 40px 40px; width: 1px; } .framer-tWKGS .framer-aw5kts { gap: 20px; overflow: visible; } .framer-tWKGS .framer-4wwia2 { height: 500px; padding: 0px 0px 0px 0px; } .framer-tWKGS .framer-1a19g1e, .framer-tWKGS .framer-ooylop { border-bottom-left-radius: 57px; border-bottom-right-radius: 57px; border-top-left-radius: 57px; border-top-right-radius: 57px; gap: 17px; max-width: 810px; padding: 33px 40px 33px 40px; } .framer-tWKGS .framer-if4yhy, .framer-tWKGS .framer-1vsvnib { gap: 0px; } .framer-tWKGS .framer-mibs9g, .framer-tWKGS .framer-157rsow { align-self: stretch; width: auto; } .framer-tWKGS .framer-uryyoe, .framer-tWKGS .framer-giczof, .framer-tWKGS .framer-yv9ad2, .framer-tWKGS .framer-j70w95 { width: 424px; } .framer-tWKGS .framer-130mea6, .framer-tWKGS .framer-1vhsxcs { width: 100%; } .framer-tWKGS .framer-1c3ct9s { gap: 56px; height: 307px; padding: 20px 20px 20px 20px; } .framer-tWKGS .framer-91q6r0 { aspect-ratio: 1.7570621468926553 / 1; height: 66%; width: var(--framer-aspect-ratio-supported, 311px); } .framer-tWKGS .framer-1n06t5z-container { aspect-ratio: 1.7777777777777777 / 1; bottom: 2px; height: unset; top: 1px; width: var(--framer-aspect-ratio-supported, 309px); } .framer-tWKGS .framer-13z8s43 { flex: none; width: 295px; } .framer-tWKGS .framer-1c7uqq8 { height: var(--framer-aspect-ratio-supported, 480px); } .framer-tWKGS .framer-1u16st8 { gap: 37px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tWKGS .framer-dwj6jz, .framer-tWKGS .framer-aw5kts, .framer-tWKGS .framer-1a19g1e, .framer-tWKGS .framer-if4yhy, .framer-tWKGS .framer-1vsvnib, .framer-tWKGS .framer-1c3ct9s, .framer-tWKGS .framer-ooylop, .framer-tWKGS .framer-1u16st8 { gap: 0px; } .framer-tWKGS .framer-dwj6jz > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-tWKGS .framer-dwj6jz > :first-child, .framer-tWKGS .framer-aw5kts > :first-child, .framer-tWKGS .framer-1a19g1e > :first-child, .framer-tWKGS .framer-ooylop > :first-child { margin-top: 0px; } .framer-tWKGS .framer-dwj6jz > :last-child, .framer-tWKGS .framer-aw5kts > :last-child, .framer-tWKGS .framer-1a19g1e > :last-child, .framer-tWKGS .framer-ooylop > :last-child { margin-bottom: 0px; } .framer-tWKGS .framer-aw5kts > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tWKGS .framer-1a19g1e > *, .framer-tWKGS .framer-ooylop > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-tWKGS .framer-if4yhy > *, .framer-tWKGS .framer-1vsvnib > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-tWKGS .framer-if4yhy > :first-child, .framer-tWKGS .framer-1vsvnib > :first-child, .framer-tWKGS .framer-1c3ct9s > :first-child, .framer-tWKGS .framer-1u16st8 > :first-child { margin-left: 0px; } .framer-tWKGS .framer-if4yhy > :last-child, .framer-tWKGS .framer-1vsvnib > :last-child, .framer-tWKGS .framer-1c3ct9s > :last-child, .framer-tWKGS .framer-1u16st8 > :last-child { margin-right: 0px; } .framer-tWKGS .framer-1c3ct9s > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-tWKGS .framer-1u16st8 > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } }}\",\"@media (max-width: 809px) { .framer-tWKGS .hidden-xc6xzc { display: none !important; } .framer-tWKGS.framer-tkkmnp { align-content: flex-end; align-items: flex-end; width: 390px; } .framer-tWKGS .framer-pet9dh, .framer-tWKGS .framer-115u2az { order: 0; } .framer-tWKGS .framer-15ppup7 { flex-direction: column; order: 1; } .framer-tWKGS .framer-uwxwog { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-tWKGS .framer-dwj6jz { flex: 1 0 0px; order: 0; padding: 20px 20px 20px 20px; width: 1px; } .framer-tWKGS .framer-aw5kts { gap: 33px; } .framer-tWKGS .framer-4wwia2 { flex: none; height: 400px; order: 0; padding: 50px 50px 50px 50px; width: 100%; } .framer-tWKGS .framer-qeph11 { width: 193px; } .framer-tWKGS .framer-a0skaj { height: 100%; order: 0; } .framer-tWKGS .framer-1tfo7bp { order: 2; padding: 0px 24px 43px 24px; } .framer-tWKGS .framer-iddd9k-container { height: var(--framer-aspect-ratio-supported, 113px); width: 100%; } .framer-tWKGS .framer-1a19g1e { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 32px; border-bottom-right-radius: unset; border-top-left-radius: 32px; border-top-right-radius: unset; gap: 43px; order: 3; padding: 24px 30px 64px 30px; } .framer-tWKGS .framer-if4yhy { flex-direction: column; gap: 7px; height: min-content; } .framer-tWKGS .framer-18o2o42, .framer-tWKGS .framer-1rpzmhq { width: 337px; } .framer-tWKGS .framer-mibs9g, .framer-tWKGS .framer-uryyoe, .framer-tWKGS .framer-giczof, .framer-tWKGS .framer-157rsow, .framer-tWKGS .framer-yv9ad2, .framer-tWKGS .framer-j70w95 { width: 100%; } .framer-tWKGS .framer-1vsvnib { flex-direction: column; gap: 38px; height: min-content; } .framer-tWKGS .framer-130mea6 { order: 4; width: 100%; } .framer-tWKGS .framer-juzu1i { align-content: center; align-items: center; flex-direction: column; height: min-content; width: 100%; } .framer-tWKGS .framer-utwmq1 { order: 2; } .framer-tWKGS .framer-1e1obv0 { order: 1; } .framer-tWKGS .framer-1vhsxcs { border-top-right-radius: unset; order: 5; width: 100%; } .framer-tWKGS .framer-1c3ct9s { flex-direction: column; gap: 56px; height: min-content; padding: 50px 50px 50px 50px; } .framer-tWKGS .framer-91q6r0 { aspect-ratio: unset; height: 171px; order: 0; width: 310px; } .framer-tWKGS .framer-1n06t5z-container { aspect-ratio: 1.7761194029850746 / 1; bottom: -6px; height: var(--framer-aspect-ratio-supported, 192px); right: -1px; top: unset; width: unset; } .framer-tWKGS .framer-13z8s43 { flex: none; order: 1; width: 100%; } .framer-tWKGS .framer-ooylop { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 32px; border-bottom-right-radius: unset; border-top-left-radius: 32px; border-top-right-radius: unset; gap: 43px; order: 7; padding: 24px 30px 24px 30px; } .framer-tWKGS .framer-1c7uqq8 { aspect-ratio: unset; gap: 31px; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); height: 1795px; } .framer-tWKGS .framer-cvfofp, .framer-tWKGS .framer-2ijyx1, .framer-tWKGS .framer-1rmg0x9, .framer-tWKGS .framer-1474ocj { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tWKGS .framer-15ppup7, .framer-tWKGS .framer-aw5kts, .framer-tWKGS .framer-1a19g1e, .framer-tWKGS .framer-if4yhy, .framer-tWKGS .framer-1vsvnib, .framer-tWKGS .framer-juzu1i, .framer-tWKGS .framer-1c3ct9s, .framer-tWKGS .framer-ooylop, .framer-tWKGS .framer-1c7uqq8 { gap: 0px; } .framer-tWKGS .framer-15ppup7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tWKGS .framer-15ppup7 > :first-child, .framer-tWKGS .framer-aw5kts > :first-child, .framer-tWKGS .framer-1a19g1e > :first-child, .framer-tWKGS .framer-if4yhy > :first-child, .framer-tWKGS .framer-1vsvnib > :first-child, .framer-tWKGS .framer-juzu1i > :first-child, .framer-tWKGS .framer-1c3ct9s > :first-child, .framer-tWKGS .framer-ooylop > :first-child { margin-top: 0px; } .framer-tWKGS .framer-15ppup7 > :last-child, .framer-tWKGS .framer-aw5kts > :last-child, .framer-tWKGS .framer-1a19g1e > :last-child, .framer-tWKGS .framer-if4yhy > :last-child, .framer-tWKGS .framer-1vsvnib > :last-child, .framer-tWKGS .framer-juzu1i > :last-child, .framer-tWKGS .framer-1c3ct9s > :last-child, .framer-tWKGS .framer-ooylop > :last-child { margin-bottom: 0px; } .framer-tWKGS .framer-aw5kts > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-tWKGS .framer-1a19g1e > *, .framer-tWKGS .framer-ooylop > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-tWKGS .framer-if4yhy > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-tWKGS .framer-1vsvnib > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-tWKGS .framer-juzu1i > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-tWKGS .framer-1c3ct9s > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-tWKGS .framer-1c7uqq8 > *, .framer-tWKGS .framer-1c7uqq8 > :first-child, .framer-tWKGS .framer-1c7uqq8 > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3831\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tWZPkEooi\":{\"layout\":[\"fixed\",\"auto\"]},\"vGojpxOqE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerResponsiveScreen\n */const FramerLHqZzIcXH=withCSS(Component,css,\"framer-tWKGS\");export default FramerLHqZzIcXH;FramerLHqZzIcXH.displayName=\"David Osher Graphic Design / Portfolio / Marketing Ed 2\";FramerLHqZzIcXH.defaultProps={height:3831,width:1200};addFonts(FramerLHqZzIcXH,[{family:\"Rubik\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1VU80V4bVkA.woff2\",weight:\"400\"},...FeatherFonts,...YouTubeFonts,...VideoFonts,...PageOn_Fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLHqZzIcXH\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"3831\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tWZPkEooi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vGojpxOqE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"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", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "FeatherFonts", "getFonts", "Icon", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "RichText2", "YouTubeFonts", "Youtube", "ContainerWithFX", "Container", "MotionDivWithFX", "motion", "VideoFonts", "Video", "PageOn_Fonts", "HZrmvwgTP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transitions", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "animation", "transition1", "animation1", "transformTemplate1", "_", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "animation8", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "transitions", "preloadPromise", "preloadLocalizedValues", "ref1", "pe", "isDisplayed", "isBrowser", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "variantClassNames", "u", "LayoutGroup", "motion", "cx", "serializationHash", "Link", "Container", "Icon", "ImageWithFX", "RichTextWithFX", "x", "PropertyOverrides2", "ContainerWithFX", "Youtube", "MotionDivWithFX", "Image2", "RichText2", "Video", "HZrmvwgTP_default", "css", "FramerLHqZzIcXH", "withCSS", "LHqZzIcXH_default", "addFonts", "FeatherFonts", "YouTubeFonts", "VideoFonts", "PageOn_Fonts", "__FramerMetadata__"]
}
