{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js", "ssg:https://framerusercontent.com/modules/lQacqh1AB9JVbunI9cTQ/soTrHUIAjwDDZY3T0D3B/neNIPdUv8.js", "ssg:https://framerusercontent.com/modules/BYu3eLFeobWgyajjIkae/phOpILAs9bjLnuk8E1nL/VHbAQD2de.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={}));/**\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)}) 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://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// 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){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";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}`;}}// 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\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (c105afa)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-h5J5D .framer-styles-preset-aewsbu:not(.rich-text-wrapper), .framer-h5J5D .framer-styles-preset-aewsbu.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, #d6d3ce); --framer-link-text-decoration: none; }\"];export const className=\"framer-h5J5D\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0c03719)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import Navigation from\"#framer/local/canvasComponent/AkvygMZNu/AkvygMZNu.js\";import Footer from\"#framer/local/canvasComponent/Cmj4wuCA9/Cmj4wuCA9.js\";import CTA from\"#framer/local/canvasComponent/FyNC7h2nb/FyNC7h2nb.js\";import*as sharedStyle2 from\"#framer/local/css/neNIPdUv8/neNIPdUv8.js\";import*as sharedStyle from\"#framer/local/css/rRufawvTi/rRufawvTi.js\";import*as sharedStyle1 from\"#framer/local/css/W8hrE0Hsg/W8hrE0Hsg.js\";import metadataProvider from\"#framer/local/webPageMetadata/VHbAQD2de/VHbAQD2de.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const YouTubeFonts=getFonts(YouTube);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={pFTes_e2h:\"(min-width: 1500px)\",pOq_2czLV:\"(min-width: 590px) and (max-width: 1023px)\",s08XsYZIA:\"(min-width: 1024px) and (max-width: 1499px)\",T64fECFjA:\"(max-width: 589px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-rRFIo\";const variantClassNames={pFTes_e2h:\"framer-v-q65xa3\",pOq_2czLV:\"framer-v-lj67o4\",s08XsYZIA:\"framer-v-xle8gw\",T64fECFjA:\"framer-v-riybyv\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={lg:\"s08XsYZIA\",md:\"pOq_2czLV\",Phone:\"T64fECFjA\",xl:\"pFTes_e2h\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pFTes_e2h\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pFTes_e2h\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-02b0d0af-7092-49a0-9842-ed7be58a3e88, rgb(5, 4, 5)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-q65xa3\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lw55ex-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aUTk1zB2G\",scopeId:\"VHbAQD2de\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"aUTk1zB2G\",intensity:15,layoutId:\"aUTk1zB2G\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vwqtwb-container\",nodeId:\"b0efDolP2\",scopeId:\"VHbAQD2de\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{variant:\"MkSmgSICB\"},T64fECFjA:{variant:\"MkSmgSICB\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"b0efDolP2\",layoutId:\"b0efDolP2\",style:{width:\"100%\"},variant:\"RfP2VbhvP\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uy13ye\",\"data-framer-name\":\"Projects\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lerjuv\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gsersq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-5g9k0d\",\"data-styles-preset\":\"rRufawvTi\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Crater\"})}),className:\"framer-11ejxls\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Identyfikacja wizualna dla konferencji naukowej na temat fizyki optycznej.\"})}),className:\"framer-12iru4z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+373.6),pixelHeight:1296,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg\",srcSet:\"https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg 1920w\"}},T64fECFjA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+373.6),pixelHeight:1296,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg\",srcSet:\"https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+128+437.6),pixelHeight:1296,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg\",srcSet:\"https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kPtzNI4m5ts33HvzHWh8ByDSCl0.jpg 1920w\"},className:\"framer-qe5ufe\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18r86c6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zyeykd\",\"data-framer-name\":\"Frame 30\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wobyj3\",\"data-framer-name\":\"Frame 20\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Crater Conference to wydarzenie po\u015Bwi\u0119cone najnowszym osi\u0105gni\u0119ciom w dziedzinie translacyjnych bada\u0144 nad wzrokiem. Konferencja skupia si\u0119 na innowacyjnych rozwi\u0105zaniach, wymianie wiedzy i wspieraniu wsp\\xf3\u0142pracy pomi\u0119dzy naukowcami, lekarzami i specjalistami z ca\u0142ego \u015Bwiata.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Dla Crater Conference stworzyli\u015Bmy identyfikacj\u0119 wizualn\u0105, kt\\xf3ra odzwierciedla nowoczesny charakter wydarzenia i jego zaanga\u017Cowanie w rozw\\xf3j nauki. System wizualny podkre\u015Bla motyw oka i precyzji, wzmacniaj\u0105c wizerunek konferencji jako przestrzeni dla prze\u0142omowych bada\u0144 i interdyscyplinarnego dialogu. Sp\\xf3jna, dynamiczna koncepcja wspiera komunikacj\u0119 marki i nadaje wydarzeniu wyrazist\u0105 to\u017Csamo\u015B\u0107.\"})]}),className:\"framer-1il8by8\",\"data-framer-name\":\"LearnHow is an educational platform offering a wide range of creative and motivational learning aids. They specialize in diplomas, stickers, educational posters, and custom decorations designed to inspire and engage learners of all ages. For\\xa0LearnHow I've created visual identity that reflects the high quality of the educational materials produced by LearnHow. This branding system enhances the brand\u2019s professional image while making future graphic design projects more efficient and consistent. The cohesive visual identity emphasizes creativity and approachability, supporting the company\u2019s mission to inspire and engage learners.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://crater.icter.pl/\",motionChild:true,nodeId:\"WSfXn3NUa\",openInNewTab:true,scopeId:\"VHbAQD2de\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-aewsbu\",\"data-styles-preset\":\"neNIPdUv8\",children:\"Strona www \u2192\"})})})}),className:\"framer-1bbza4m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129cx0j\",\"data-framer-name\":\"Frame 21\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8lnj0f\",\"data-border\":true,\"data-framer-name\":\"Frame 20\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Projektowanie logo\"})}),className:\"framer-11d87x\",\"data-framer-name\":\"Redesign logo\\xa0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uy5xha\",\"data-border\":true,\"data-framer-name\":\"Frame 21\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Identyfikacja wizualna\"})}),className:\"framer-5icg1t\",\"data-framer-name\":\"Brandbook\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sjkgy4\",\"data-border\":true,\"data-framer-name\":\"Frame 22\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Materia\u0142y konferencyjne\"})}),className:\"framer-1qbhufu\",\"data-framer-name\":\"Design of identification elements\\xa0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b5at76\",\"data-border\":true,\"data-framer-name\":\"Frame 23\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Szablony social media\"})}),className:\"framer-599f3e\",\"data-framer-name\":\"Social media templates\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k4vkit\",\"data-border\":true,\"data-framer-name\":\"Frame 24\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Projekt i wdro\u017Cenie strony internetowej\"})}),className:\"framer-11bio1r\",\"data-framer-name\":\"Manual for\\xa0creating dedicated illustrations\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1233y9k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"W2uw0YZ79\",scopeId:\"VHbAQD2de\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"W2uw0YZ79\",isMixedBorderRadius:false,isRed:true,layoutId:\"W2uw0YZ79\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=5o2ekqTSF1U\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"G\u0142\\xf3wnym kolorem jest intensywny, energetyczny pomara\u0144czowy \u2013 symbolizuj\u0105cy kreatywno\u015B\u0107 i entuzjazm. Uzupe\u0142niaj\u0105 go czer\u0144 i biel, kt\\xf3re wprowadzaj\u0105 do projektu elegancj\u0119 i przejrzysto\u015B\u0107, zapewniaj\u0105c jednocze\u015Bnie nowoczesny charakter i wysok\u0105 czytelno\u015B\u0107.\"})}),className:\"framer-100frm4\",\"data-framer-name\":\"LearnHow is an educational platform offering a wide range of creative and motivational learning aids. They specialize in diplomas, stickers, educational posters, and custom decorations designed to inspire and engage learners of all ages. For\\xa0LearnHow I've created visual identity that reflects the high quality of the educational materials produced by LearnHow. This branding system enhances the brand\u2019s professional image while making future graphic design projects more efficient and consistent. The cohesive visual identity emphasizes creativity and approachability, supporting the company\u2019s mission to inspire and engage learners.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+3647.6),pixelHeight:1350,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg\",srcSet:\"https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg 2000w\"}},T64fECFjA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+3647.6),pixelHeight:1350,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg\",srcSet:\"https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+128+3371.6),pixelHeight:1350,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg\",srcSet:\"https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QzTmcIMNLSVllCUjiPuHPshLvWE.jpg 2000w\"},className:\"framer-1exsxyq\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w81h9t\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Litera \u201EA\u201D w logo Crater Conference zosta\u0142a zaprojektowana w unikalny spos\\xf3b, przypominaj\u0105cy kszta\u0142t ludzkiego oka \u2013 co symbolizuje zaanga\u017Cowanie konferencji w badania nad wzrokiem oraz d\u0105\u017Cenie do prze\u0142omowych odkry\u0107 w tej dziedzinie.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Podstawowy kr\\xf3j pisma to nowoczesny font bezszeryfowy, wybrany ze wzgl\u0119du na swoj\u0105 czytelno\u015B\u0107 i elegancki wygl\u0105d. W identyfikacji wykorzystywana jest jedna grubo\u015B\u0107 pisma we wszystkich materia\u0142ach, co upraszcza samodzielne tworzenie projekt\\xf3w przez klienta.\"})]}),className:\"framer-32jc9k\",\"data-framer-name\":\"LearnHow is an educational platform offering a wide range of creative and motivational learning aids. They specialize in diplomas, stickers, educational posters, and custom decorations designed to inspire and engage learners of all ages. For\\xa0LearnHow I've created visual identity that reflects the high quality of the educational materials produced by LearnHow. This branding system enhances the brand\u2019s professional image while making future graphic design projects more efficient and consistent. The cohesive visual identity emphasizes creativity and approachability, supporting the company\u2019s mission to inspire and engage learners.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+4511.6+0+420),pixelHeight:681,pixelWidth:1997,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 48px)`,src:\"https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg\",srcSet:\"https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg 1997w\"}},T64fECFjA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+4511.6+0+420),pixelHeight:681,pixelWidth:1997,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 48px)`,src:\"https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg\",srcSet:\"https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg 1997w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+128+4299.6+0+452),pixelHeight:681,pixelWidth:1997,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 192px)`,src:\"https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg\",srcSet:\"https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WP1twNyxFHlsnOOPQXj4J7TwI.jpg 1997w\"},className:\"framer-1sm22bf\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13lw6pq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+5441.6+0+0),pixelHeight:1296,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg\",srcSet:\"https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg 1920w\"}},T64fECFjA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+5441.6+0+0),pixelHeight:1296,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg\",srcSet:\"https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+128+5325.6+0+0),pixelHeight:1296,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg\",srcSet:\"https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JKKnYE0OeOdXMInYC1OrtDfYJM.jpg 1920w\"},className:\"framer-gur4nc\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ic76vd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+6430.6+0+0),pixelHeight:1402,pixelWidth:1920,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 48px)`,src:\"https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg\",srcSet:\"https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg 1920w\"}},s08XsYZIA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+128+6378.6+0+484),pixelHeight:1402,pixelWidth:1920,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 256px)`,src:\"https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg\",srcSet:\"https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg 1920w\"}},T64fECFjA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+6430.6+0+0),pixelHeight:1402,pixelWidth:1920,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 48px)`,src:\"https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg\",srcSet:\"https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+128+6378.6+0+0),pixelHeight:1402,pixelWidth:1920,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 256px)`,src:\"https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg\",srcSet:\"https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FDdOpYynNHCrLjh4Ti2HehgjVaE.jpg 1920w\"},className:\"framer-oj7vut\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"W projekcie zastosowano abstrakcyjne ilustracje struktur oka i wzor\\xf3w naukowych. Grafiki te dodaj\u0105 g\u0142\u0119bi i intryguj\u0105cego charakteru, zachowuj\u0105c jednocze\u015Bnie profesjonalny ton. Powtarzaj\u0105ce si\u0119 motywy ko\u0142a nawi\u0105zuj\u0105 do tematu widzenia i bada\u0144, wzmacniaj\u0105c przekaz konferencji.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-19omfrb\",\"data-styles-preset\":\"W8hrE0Hsg\",style:{\"--framer-text-color\":\"var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, rgb(214, 211, 206))\"},children:\"Identyfikacja wizualna Crater Conference jest wyrazem jej zaanga\u017Cowania w innowacje i doskona\u0142o\u015B\u0107 w badaniach nad wzrokiem. Nowoczesne i sp\\xf3jne elementy graficzne we wszystkich materia\u0142ach zapewniaj\u0105 siln\u0105, zapadaj\u0105c\u0105 w pami\u0119\u0107 obecno\u015B\u0107 marki, przyci\u0105gaj\u0105c czo\u0142owych specjalist\\xf3w i wspieraj\u0105c budowanie spo\u0142eczno\u015Bci skupionej wok\\xf3\u0142 post\u0119pu naukowego.\"})]}),className:\"framer-2s2tqw\",\"data-framer-name\":\"LearnHow is an educational platform offering a wide range of creative and motivational learning aids. They specialize in diplomas, stickers, educational posters, and custom decorations designed to inspire and engage learners of all ages. For\\xa0LearnHow I've created visual identity that reflects the high quality of the educational materials produced by LearnHow. This branding system enhances the brand\u2019s professional image while making future graphic design projects more efficient and consistent. The cohesive visual identity emphasizes creativity and approachability, supporting the company\u2019s mission to inspire and engage learners.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+6430.6+0+1229),pixelHeight:3005,pixelWidth:1762,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 48px)`,src:\"https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg\",srcSet:\"https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg?scale-down-to=1024 600w,https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg?scale-down-to=2048 1200w,https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg 1762w\"}},T64fECFjA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+6430.6+0+1229),pixelHeight:3005,pixelWidth:1762,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 48px)`,src:\"https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg\",srcSet:\"https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg?scale-down-to=1024 600w,https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg?scale-down-to=2048 1200w,https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg 1762w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+128+6378.6+0+1357),pixelHeight:3005,pixelWidth:1762,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 2112px) - 256px)`,src:\"https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg\",srcSet:\"https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg?scale-down-to=1024 600w,https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg?scale-down-to=2048 1200w,https://framerusercontent.com/images/0YLg2voIe8AlNP8JGnLehxuZcfs.jpg 1762w\"},className:\"framer-1jy8gaz\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-verdgh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+9845.6+0+0),pixelHeight:648,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg\",srcSet:\"https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg 1920w\"}},T64fECFjA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+64+9845.6+0+0),pixelHeight:648,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg\",srcSet:\"https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+328+128+9985.6+0+0),pixelHeight:648,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg\",srcSet:\"https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/lqmPJs8vqqaE5sCFG1P4kLMRqyg.jpg 1920w\"},className:\"framer-bema1g\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16v6dba\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{y:(componentViewport?.y||0)+0+10791.6+0+0},T64fECFjA:{y:(componentViewport?.y||0)+0+10791.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:728,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10995.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xj2d9o-container\",nodeId:\"sbf1i_Gie\",scopeId:\"VHbAQD2de\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{variant:\"M9hbzqhYi\"},T64fECFjA:{variant:\"L_v2uIGCC\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"sbf1i_Gie\",layoutId:\"sbf1i_Gie\",style:{width:\"100%\"},variant:\"Khk1LWVTU\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{y:(componentViewport?.y||0)+0+10791.6+0+728},T64fECFjA:{y:(componentViewport?.y||0)+0+10791.6+0+728}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10995.6+0+728,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5iqeh4-container\",nodeId:\"abyacsLar\",scopeId:\"VHbAQD2de\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pOq_2czLV:{variant:\"QblcAagn9\"},T64fECFjA:{variant:\"QblcAagn9\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"abyacsLar\",layoutId:\"abyacsLar\",style:{height:\"100%\",width:\"100%\"},variant:\"XOIs6zb7O\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rRFIo.framer-5k2ez3, .framer-rRFIo .framer-5k2ez3 { display: block; }\",\".framer-rRFIo.framer-q65xa3 { align-content: center; align-items: center; background-color: var(--token-02b0d0af-7092-49a0-9842-ed7be58a3e88, #050405); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1500px; }\",\".framer-rRFIo .framer-lw55ex-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rRFIo .framer-vwqtwb-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-rRFIo .framer-1uy13ye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: flex-start; overflow: visible; padding: 128px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-rRFIo .framer-1lerjuv, .framer-rRFIo .framer-w81h9t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 2112px; overflow: hidden; padding: 0px 96px 0px 96px; position: relative; width: 100%; }\",\".framer-rRFIo .framer-1gsersq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rRFIo .framer-11ejxls { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rRFIo .framer-12iru4z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-rRFIo .framer-qe5ufe { flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-18r86c6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; max-width: 2112px; overflow: hidden; padding: 0px 96px 0px 96px; position: relative; width: 100%; }\",\".framer-rRFIo .framer-zyeykd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rRFIo .framer-wobyj3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rRFIo .framer-1il8by8, .framer-rRFIo .framer-100frm4, .framer-rRFIo .framer-32jc9k, .framer-rRFIo .framer-2s2tqw { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rRFIo .framer-1bbza4m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-rRFIo .framer-129cx0j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rRFIo .framer-8lnj0f, .framer-rRFIo .framer-1uy5xha, .framer-rRFIo .framer-1sjkgy4, .framer-rRFIo .framer-b5at76, .framer-rRFIo .framer-1k4vkit { --border-bottom-width: 2px; --border-color: var(--token-df7c9ae4-fa1c-4817-9a68-0139a2a01dc7, #d6d3ce); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-rRFIo .framer-11d87x, .framer-rRFIo .framer-5icg1t, .framer-rRFIo .framer-1qbhufu, .framer-rRFIo .framer-599f3e, .framer-rRFIo .framer-11bio1r { --framer-paragraph-spacing: 24px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-rRFIo .framer-1233y9k-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 736px); position: relative; width: 100%; }\",\".framer-rRFIo .framer-1exsxyq { aspect-ratio: 1.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-1sm22bf { aspect-ratio: 2.9327354260089686 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 446px); overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-13lw6pq, .framer-rRFIo .framer-verdgh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rRFIo .framer-gur4nc { aspect-ratio: 1.6216216216216217 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 925px); overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-1ic76vd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: center; max-width: 2112px; overflow: hidden; padding: 0px 128px 0px 128px; position: relative; width: 100%; }\",\".framer-rRFIo .framer-oj7vut { aspect-ratio: 1.7557046979865771 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 708px); overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-1jy8gaz { aspect-ratio: 0.586239396795476 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2122px); overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-bema1g { aspect-ratio: 2.707581227436823 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 554px); overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-16v6dba { align-content: flex-start; align-items: flex-start; background-color: var(--token-02b0d0af-7092-49a0-9842-ed7be58a3e88, #0d0d0b); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-1xj2d9o-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-rRFIo .framer-5iqeh4-container { flex: none; height: 100vh; position: relative; width: 100%; z-index: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rRFIo.framer-q65xa3, .framer-rRFIo .framer-1uy13ye, .framer-rRFIo .framer-1lerjuv, .framer-rRFIo .framer-1gsersq, .framer-rRFIo .framer-18r86c6, .framer-rRFIo .framer-zyeykd, .framer-rRFIo .framer-wobyj3, .framer-rRFIo .framer-129cx0j, .framer-rRFIo .framer-8lnj0f, .framer-rRFIo .framer-1uy5xha, .framer-rRFIo .framer-1sjkgy4, .framer-rRFIo .framer-b5at76, .framer-rRFIo .framer-1k4vkit, .framer-rRFIo .framer-w81h9t, .framer-rRFIo .framer-13lw6pq, .framer-rRFIo .framer-1ic76vd, .framer-rRFIo .framer-verdgh, .framer-rRFIo .framer-16v6dba { gap: 0px; } .framer-rRFIo.framer-q65xa3 > *, .framer-rRFIo .framer-13lw6pq > *, .framer-rRFIo .framer-verdgh > *, .framer-rRFIo .framer-16v6dba > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rRFIo.framer-q65xa3 > :first-child, .framer-rRFIo .framer-1uy13ye > :first-child, .framer-rRFIo .framer-1lerjuv > :first-child, .framer-rRFIo .framer-1gsersq > :first-child, .framer-rRFIo .framer-18r86c6 > :first-child, .framer-rRFIo .framer-wobyj3 > :first-child, .framer-rRFIo .framer-129cx0j > :first-child, .framer-rRFIo .framer-w81h9t > :first-child, .framer-rRFIo .framer-13lw6pq > :first-child, .framer-rRFIo .framer-1ic76vd > :first-child, .framer-rRFIo .framer-verdgh > :first-child, .framer-rRFIo .framer-16v6dba > :first-child { margin-top: 0px; } .framer-rRFIo.framer-q65xa3 > :last-child, .framer-rRFIo .framer-1uy13ye > :last-child, .framer-rRFIo .framer-1lerjuv > :last-child, .framer-rRFIo .framer-1gsersq > :last-child, .framer-rRFIo .framer-18r86c6 > :last-child, .framer-rRFIo .framer-wobyj3 > :last-child, .framer-rRFIo .framer-129cx0j > :last-child, .framer-rRFIo .framer-w81h9t > :last-child, .framer-rRFIo .framer-13lw6pq > :last-child, .framer-rRFIo .framer-1ic76vd > :last-child, .framer-rRFIo .framer-verdgh > :last-child, .framer-rRFIo .framer-16v6dba > :last-child { margin-bottom: 0px; } .framer-rRFIo .framer-1uy13ye > *, .framer-rRFIo .framer-18r86c6 > *, .framer-rRFIo .framer-1ic76vd > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-rRFIo .framer-1lerjuv > *, .framer-rRFIo .framer-w81h9t > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-rRFIo .framer-1gsersq > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-rRFIo .framer-zyeykd > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-rRFIo .framer-zyeykd > :first-child, .framer-rRFIo .framer-8lnj0f > :first-child, .framer-rRFIo .framer-1uy5xha > :first-child, .framer-rRFIo .framer-1sjkgy4 > :first-child, .framer-rRFIo .framer-b5at76 > :first-child, .framer-rRFIo .framer-1k4vkit > :first-child { margin-left: 0px; } .framer-rRFIo .framer-zyeykd > :last-child, .framer-rRFIo .framer-8lnj0f > :last-child, .framer-rRFIo .framer-1uy5xha > :last-child, .framer-rRFIo .framer-1sjkgy4 > :last-child, .framer-rRFIo .framer-b5at76 > :last-child, .framer-rRFIo .framer-1k4vkit > :last-child { margin-right: 0px; } .framer-rRFIo .framer-wobyj3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-rRFIo .framer-129cx0j > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-rRFIo .framer-8lnj0f > *, .framer-rRFIo .framer-1uy5xha > *, .framer-rRFIo .framer-1sjkgy4 > *, .framer-rRFIo .framer-b5at76 > *, .framer-rRFIo .framer-1k4vkit > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-rRFIo[data-border=\"true\"]::after, .framer-rRFIo [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; }',\"@media (min-width: 590px) and (max-width: 1023px) { .framer-rRFIo.framer-q65xa3 { width: 590px; } .framer-rRFIo .framer-1uy13ye { gap: 64px; padding: 64px 0px 0px 0px; } .framer-rRFIo .framer-1lerjuv { padding: 0px 24px 0px 24px; } .framer-rRFIo .framer-12iru4z { width: 100%; } .framer-rRFIo .framer-18r86c6, .framer-rRFIo .framer-w81h9t, .framer-rRFIo .framer-1ic76vd { gap: 64px; padding: 0px 24px 0px 24px; } .framer-rRFIo .framer-zyeykd { flex-direction: column; gap: 48px; } .framer-rRFIo .framer-wobyj3, .framer-rRFIo .framer-129cx0j { flex: none; width: 100%; } .framer-rRFIo .framer-1233y9k-container { height: var(--framer-aspect-ratio-supported, 305px); } .framer-rRFIo .framer-1exsxyq { height: var(--framer-aspect-ratio-supported, 314px); } .framer-rRFIo .framer-1sm22bf { height: var(--framer-aspect-ratio-supported, 185px); } .framer-rRFIo .framer-gur4nc { height: var(--framer-aspect-ratio-supported, 364px); } .framer-rRFIo .framer-oj7vut { height: var(--framer-aspect-ratio-supported, 309px); } .framer-rRFIo .framer-1jy8gaz { height: var(--framer-aspect-ratio-supported, 924px); } .framer-rRFIo .framer-bema1g { height: var(--framer-aspect-ratio-supported, 218px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rRFIo .framer-1uy13ye, .framer-rRFIo .framer-18r86c6, .framer-rRFIo .framer-zyeykd, .framer-rRFIo .framer-w81h9t, .framer-rRFIo .framer-1ic76vd { gap: 0px; } .framer-rRFIo .framer-1uy13ye > *, .framer-rRFIo .framer-18r86c6 > *, .framer-rRFIo .framer-w81h9t > *, .framer-rRFIo .framer-1ic76vd > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-rRFIo .framer-1uy13ye > :first-child, .framer-rRFIo .framer-18r86c6 > :first-child, .framer-rRFIo .framer-zyeykd > :first-child, .framer-rRFIo .framer-w81h9t > :first-child, .framer-rRFIo .framer-1ic76vd > :first-child { margin-top: 0px; } .framer-rRFIo .framer-1uy13ye > :last-child, .framer-rRFIo .framer-18r86c6 > :last-child, .framer-rRFIo .framer-zyeykd > :last-child, .framer-rRFIo .framer-w81h9t > :last-child, .framer-rRFIo .framer-1ic76vd > :last-child { margin-bottom: 0px; } .framer-rRFIo .framer-zyeykd > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\",\"@media (max-width: 589px) { .framer-rRFIo.framer-q65xa3 { width: 390px; } .framer-rRFIo .framer-1uy13ye { gap: 64px; padding: 64px 0px 0px 0px; } .framer-rRFIo .framer-1lerjuv { padding: 0px 24px 0px 24px; } .framer-rRFIo .framer-12iru4z { width: 100%; } .framer-rRFIo .framer-18r86c6, .framer-rRFIo .framer-w81h9t, .framer-rRFIo .framer-1ic76vd { gap: 64px; padding: 0px 24px 0px 24px; } .framer-rRFIo .framer-zyeykd { flex-direction: column; gap: 48px; } .framer-rRFIo .framer-wobyj3, .framer-rRFIo .framer-129cx0j { flex: none; width: 100%; } .framer-rRFIo .framer-1233y9k-container { height: var(--framer-aspect-ratio-supported, 113px); } .framer-rRFIo .framer-1exsxyq { height: var(--framer-aspect-ratio-supported, 107px); } .framer-rRFIo .framer-1sm22bf { height: var(--framer-aspect-ratio-supported, 68px); } .framer-rRFIo .framer-gur4nc { height: var(--framer-aspect-ratio-supported, 123px); } .framer-rRFIo .framer-oj7vut { height: var(--framer-aspect-ratio-supported, 114px); } .framer-rRFIo .framer-1jy8gaz { height: var(--framer-aspect-ratio-supported, 341px); } .framer-rRFIo .framer-bema1g { height: var(--framer-aspect-ratio-supported, 74px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-rRFIo .framer-1uy13ye, .framer-rRFIo .framer-18r86c6, .framer-rRFIo .framer-zyeykd, .framer-rRFIo .framer-w81h9t, .framer-rRFIo .framer-1ic76vd { gap: 0px; } .framer-rRFIo .framer-1uy13ye > *, .framer-rRFIo .framer-18r86c6 > *, .framer-rRFIo .framer-w81h9t > *, .framer-rRFIo .framer-1ic76vd > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-rRFIo .framer-1uy13ye > :first-child, .framer-rRFIo .framer-18r86c6 > :first-child, .framer-rRFIo .framer-zyeykd > :first-child, .framer-rRFIo .framer-w81h9t > :first-child, .framer-rRFIo .framer-1ic76vd > :first-child { margin-top: 0px; } .framer-rRFIo .framer-1uy13ye > :last-child, .framer-rRFIo .framer-18r86c6 > :last-child, .framer-rRFIo .framer-zyeykd > :last-child, .framer-rRFIo .framer-w81h9t > :last-child, .framer-rRFIo .framer-1ic76vd > :last-child { margin-bottom: 0px; } .framer-rRFIo .framer-zyeykd > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\",\"@media (min-width: 1024px) and (max-width: 1499px) { .framer-rRFIo.framer-q65xa3 { width: 1024px; } .framer-rRFIo .framer-1233y9k-container { height: var(--framer-aspect-ratio-supported, 468px); } .framer-rRFIo .framer-1exsxyq { height: var(--framer-aspect-ratio-supported, 546px); } .framer-rRFIo .framer-1sm22bf { height: var(--framer-aspect-ratio-supported, 284px); } .framer-rRFIo .framer-gur4nc { height: var(--framer-aspect-ratio-supported, 632px); } .framer-rRFIo .framer-oj7vut { height: var(--framer-aspect-ratio-supported, 437px); order: 1; } .framer-rRFIo .framer-2s2tqw { order: 0; } .framer-rRFIo .framer-1jy8gaz { height: var(--framer-aspect-ratio-supported, 1310px); order: 2; } .framer-rRFIo .framer-bema1g { height: var(--framer-aspect-ratio-supported, 379px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11716\n * @framerIntrinsicWidth 1500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pOq_2czLV\":{\"layout\":[\"fixed\",\"auto\"]},\"T64fECFjA\":{\"layout\":[\"fixed\",\"auto\"]},\"s08XsYZIA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerVHbAQD2de=withCSS(Component,css,\"framer-rRFIo\");export default FramerVHbAQD2de;FramerVHbAQD2de.displayName=\"Projekty / Learnhow\";FramerVHbAQD2de.defaultProps={height:11716,width:1500};addFonts(FramerVHbAQD2de,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...NavigationFonts,...YouTubeFonts,...CTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVHbAQD2de\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"11716\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pOq_2czLV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T64fECFjA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s08XsYZIA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1500\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "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", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavigationFonts", "AkvygMZNu_default", "YouTubeFonts", "Youtube", "CTAFonts", "FyNC7h2nb_default", "FooterFonts", "Cmj4wuCA9_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "SmoothScroll", "PropertyOverrides2", "AkvygMZNu_default", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "Youtube", "FyNC7h2nb_default", "Cmj4wuCA9_default", "css", "FramerVHbAQD2de", "withCSS", "VHbAQD2de_default", "addFonts", "SmoothScrollFonts", "NavigationFonts", "YouTubeFonts", "CTAFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
