{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js", "ssg:https://framerusercontent.com/modules/KO7QkVg1LAAUQuRFAZ4p/ouxP8PsFDn9AJOo9pjwo/a4TwLrnGb.js", "ssg:https://framerusercontent.com/modules/LYofdUgRfjwiKBxdZOUQ/9nVOgUWbqcrLz64AoxTC/JKINFIxR_.js", "ssg:https://framerusercontent.com/modules/xjnFQcRnDgDRtPngnpK3/xS9Xi5tYpa4iU8jTVuZg/n6SedjStK.js", "ssg:https://framerusercontent.com/modules/D6bKPmQg6BoBVeZ6s83H/e0r5qeZhCIqce7IgukiO/qbruzFp9x.js", "ssg:https://framerusercontent.com/modules/Ux5Xlh1oIrDgMkF7aWCX/2xuzLvfJrR5HQ7WUeRM8/kNdqhbAmw.js", "ssg:https://framerusercontent.com/modules/1cBoBeVvpxd26WMj1Kjn/jwkAsVkow72m31qV1PqH/kNdqhbAmw.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://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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-regular\",\"FS;Poppins-bold\",\"FS;Poppins-bold italic\",\"FS;Poppins-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7LLTLAW3NRWOADG4II2JGKZC6OSEMBQC/EYFXWX77PEMPU645EAWOTG22E375GULW/SSNNTU67MMJH4CSWT443B4KJ7OB4WFHF.woff2\",weight:\"400\"}]}];export const css=['.framer-IEzdF .framer-styles-preset-1lfe2s8:not(.rich-text-wrapper), .framer-IEzdF .framer-styles-preset-1lfe2s8.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 25px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-IEzdF .framer-styles-preset-1lfe2s8:not(.rich-text-wrapper), .framer-IEzdF .framer-styles-preset-1lfe2s8.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-IEzdF .framer-styles-preset-1lfe2s8:not(.rich-text-wrapper), .framer-IEzdF .framer-styles-preset-1lfe2s8.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-IEzdF\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-extrabold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/GCE3CQJHNQPET5GTQTXRVLUNQRTTGRYD/PW7XXFU476CRE7KBIKF63THLLGCBMQ4S/IX2APREQD7NDYAG5A6YIV4Q2246OG5XH.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-5q52s .framer-styles-preset-1co8zqn:not(.rich-text-wrapper), .framer-5q52s .framer-styles-preset-1co8zqn.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 35px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 800; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-5q52s .framer-styles-preset-1co8zqn:not(.rich-text-wrapper), .framer-5q52s .framer-styles-preset-1co8zqn.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 800; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-5q52s .framer-styles-preset-1co8zqn:not(.rich-text-wrapper), .framer-5q52s .framer-styles-preset-1co8zqn.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 800; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-5q52s\";\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 (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-black\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/22GWRXQXMICIWABQXFWKIWZIILKO5JDJ/2BBKMSVLV5CSDOZ7HEEECOTKPOVVJOC3/RNFY4UJD36462ZMGEIC5I7KNE73BPOAU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-YT1wI .framer-styles-preset-19035eu:not(.rich-text-wrapper), .framer-YT1wI .framer-styles-preset-19035eu.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-YT1wI .framer-styles-preset-19035eu:not(.rich-text-wrapper), .framer-YT1wI .framer-styles-preset-19035eu.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 70px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-YT1wI .framer-styles-preset-19035eu:not(.rich-text-wrapper), .framer-YT1wI .framer-styles-preset-19035eu.rich-text-wrapper h1 { --framer-font-family: \"Poppins\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 35px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-YT1wI\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-regular\",\"FS;Poppins-bold\",\"FS;Poppins-bold italic\",\"FS;Poppins-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7LLTLAW3NRWOADG4II2JGKZC6OSEMBQC/EYFXWX77PEMPU645EAWOTG22E375GULW/SSNNTU67MMJH4CSWT443B4KJ7OB4WFHF.woff2\",weight:\"400\"}]}];export const css=['.framer-WAGuW .framer-styles-preset-ztw47t:not(.rich-text-wrapper), .framer-WAGuW .framer-styles-preset-ztw47t.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-WAGuW .framer-styles-preset-ztw47t:not(.rich-text-wrapper), .framer-WAGuW .framer-styles-preset-ztw47t.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-WAGuW .framer-styles-preset-ztw47t:not(.rich-text-wrapper), .framer-WAGuW .framer-styles-preset-ztw47t.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-WAGuW\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={g5I0UuCu2:new LazyValue(()=>import(\"./kNdqhbAmw-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(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);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js\";import FramerIcon from\"https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/ADWk8PczqZRx9qyaT0Ei/FramerIcon.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import{Youtube as YouTube1}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import Button2 from\"#framer/local/canvasComponent/dI0tfENDl/dI0tfENDl.js\";import APPSTORE from\"#framer/local/canvasComponent/dqe8Y5pYp/dqe8Y5pYp.js\";import GOOGLE_PLAY from\"#framer/local/canvasComponent/KetugJDoK/KetugJDoK.js\";import NAV_ICON from\"#framer/local/canvasComponent/MLLepqIsI/MLLepqIsI.js\";import Kirjaudu from\"#framer/local/canvasComponent/OQoLTR64w/OQoLTR64w.js\";import Facebook from\"#framer/local/canvasComponent/ReIVLQq_Z/ReIVLQq_Z.js\";import Tapahtumat from\"#framer/local/collection/tE7zRAuZ5/tE7zRAuZ5.js\";import*as sharedStyle12 from\"#framer/local/css/a4TwLrnGb/a4TwLrnGb.js\";import*as sharedStyle2 from\"#framer/local/css/eIaHl1bOm/eIaHl1bOm.js\";import*as sharedStyle3 from\"#framer/local/css/eS9V11xzM/eS9V11xzM.js\";import*as sharedStyle11 from\"#framer/local/css/JKINFIxR_/JKINFIxR_.js\";import*as sharedStyle6 from\"#framer/local/css/jQhMtABJL/jQhMtABJL.js\";import*as sharedStyle1 from\"#framer/local/css/jXCXrfjY4/jXCXrfjY4.js\";import*as sharedStyle15 from\"#framer/local/css/LWwt1K5GX/LWwt1K5GX.js\";import*as sharedStyle13 from\"#framer/local/css/MXzLqy4zs/MXzLqy4zs.js\";import*as sharedStyle8 from\"#framer/local/css/MYlR0130H/MYlR0130H.js\";import*as sharedStyle from\"#framer/local/css/n6SedjStK/n6SedjStK.js\";import*as sharedStyle7 from\"#framer/local/css/qbruzFp9x/qbruzFp9x.js\";import*as sharedStyle14 from\"#framer/local/css/QetPUGkQx/QetPUGkQx.js\";import*as sharedStyle5 from\"#framer/local/css/qTx3KJjHV/qTx3KJjHV.js\";import*as sharedStyle17 from\"#framer/local/css/qyHYS4Fw0/qyHYS4Fw0.js\";import*as sharedStyle10 from\"#framer/local/css/RmZzit_Ks/RmZzit_Ks.js\";import*as sharedStyle9 from\"#framer/local/css/TxT5mcHb7/TxT5mcHb7.js\";import*as sharedStyle4 from\"#framer/local/css/uQCeknZUG/uQCeknZUG.js\";import*as sharedStyle16 from\"#framer/local/css/yvRR6BpBs/yvRR6BpBs.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/kNdqhbAmw/kNdqhbAmw.js\";import metadataProvider from\"#framer/local/webPageMetadata/kNdqhbAmw/kNdqhbAmw.js\";const VideoFonts=getFonts(Video);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithFX=withFX(motion.div);const ParticlesFonts=getFonts(Particles);const KirjauduFonts=getFonts(Kirjaudu);const LocaleSelectorFonts=getFonts(LocaleSelector);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const APPSTOREFonts=getFonts(APPSTORE);const GOOGLE_PLAYFonts=getFonts(GOOGLE_PLAY);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const YouTubeFonts=getFonts(YouTube);const FramerIconFonts=getFonts(FramerIcon);const CarouselFonts=getFonts(Carousel);const ContainerWithFX=withFX(Container);const YouTube1Fonts=getFonts(YouTube1);const FacebookFonts=getFonts(Facebook);const Button2Fonts=getFonts(Button2);const NAV_ICONFonts=getFonts(NAV_ICON);const breakpoints={eoh8U9jzp:\"(min-width: 1200px)\",nHg9NmTm_:\"(max-width: 809px)\",wRgAd8giw:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fZGiN\";const variantClassNames={eoh8U9jzp:\"framer-v-ufqhl9\",nHg9NmTm_:\"framer-v-m7a5ax\",wRgAd8giw:\"framer-v-1xtxf4t\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:0,duration:.6,ease:[.9,.19,0,.92],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:5,x:0,y:-50};const transition2={delay:.4,duration:.7,ease:[0,.74,.33,.99],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:-30,y:0};const transition3={delay:0,duration:1,ease:[.77,-.01,.17,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:10,y:0};const transition4={delay:.4,duration:.7,ease:[0,.63,.25,.92],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-30,y:0};const transition5={delay:.5,duration:.7,ease:[0,.63,.25,.92],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition6={delay:.7,duration:.6,ease:[.75,-.03,.15,1.02],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-25,y:0};const transition7={delay:0,duration:1,ease:[1,.04,0,.97],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:35};const transition8={delay:0,duration:1,ease:[.85,-.06,.13,1.05],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:35};const animation14={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition9={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation14,tokenization:\"word\",transition:transition9,trigger:\"onInView\",type:\"appear\"};const textEffect1={effect:animation14,repeat:false,startDelay:0,threshold:0,tokenization:\"word\",transition:transition9,trigger:\"onInView\",type:\"appear\"};const transition10={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation16={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"eoh8U9jzp\",Phone:\"nHg9NmTm_\",Tablet:\"wRgAd8giw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eoh8U9jzp\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"kNdqhbAmw\",data:Tapahtumat,type:\"Collection\"},select:[{collection:\"kNdqhbAmw\",name:\"JiC1DQ5F0\",type:\"Identifier\"},{collection:\"kNdqhbAmw\",name:\"xGgBlyktb\",type:\"Identifier\"},{collection:\"kNdqhbAmw\",name:\"bpk5I470c\",type:\"Identifier\"},{collection:\"kNdqhbAmw\",name:\"PBLxFtksv\",type:\"Identifier\"},{collection:\"kNdqhbAmw\",name:\"UTSKt7PHR\",type:\"Identifier\"},{collection:\"kNdqhbAmw\",name:\"XhJ3_6ZFI\",type:\"Identifier\"},{collection:\"kNdqhbAmw\",name:\"Qbzqrap_2\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"kNdqhbAmw\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,JiC1DQ5F0=getFromCurrentRouteData(\"JiC1DQ5F0\")??\"\",xGgBlyktb=getFromCurrentRouteData(\"xGgBlyktb\")??\"\",XhJ3_6ZFI=getFromCurrentRouteData(\"XhJ3_6ZFI\"),PBLxFtksv=getFromCurrentRouteData(\"PBLxFtksv\")??\"\",bpk5I470c=getFromCurrentRouteData(\"bpk5I470c\")??\"\",UTSKt7PHR=getFromCurrentRouteData(\"UTSKt7PHR\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className,sharedStyle15.className,sharedStyle16.className,sharedStyle17.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"peIHpToPW\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"nHg9NmTm_\")return false;return true;};const elementId1=useRouteElementId(\"sSDg6E_Iu\");const ref2=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"nHg9NmTm_\")return true;return false;};const elementId2=useRouteElementId(\"FTEgVjVi7\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"OB6UKm8MM\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eoh8U9jzp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-8511abbe-5346-4246-adf1-6858095020c5, rgb(16, 16, 18)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ufqhl9\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:50,__perspectiveFX:false,__targetOpacity:1,className:\"framer-91m70h\",\"data-framer-name\":\"Header VIDEO\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-10pmanp-container\",\"data-framer-appear-id\":\"10pmanp\",initial:animation1,isModuleExternal:true,nodeId:\"pRYb6_hjp\",optimized:true,rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-8511abbe-5346-4246-adf1-6858095020c5, rgb(16, 16, 18))\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"pRYb6_hjp\",isMixedBorderRadius:false,layoutId:\"pRYb6_hjp\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/sxv039QDJXWvkblnNQDzl96Po.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/0pE17URHBpMftK3sEWqFzROdtSc.mp4\",srcType:\"Upload\",srcUrl:getLocalizedValue(\"v0\",activeLocale)??\"https://www.youtube.com/watch?v=h4GXa1Xp778\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g79jrb\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Eventz.today - Logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19.5),pixelHeight:1188,pixelWidth:2600,positionX:\"center\",positionY:\"center\",sizes:\"37px\",src:\"https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png\",srcSet:\"https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png 2600w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:getLocalizedValue(\"v1\",activeLocale)??\"Eventz.today - Logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-.25+29.5),pixelHeight:1188,pixelWidth:2600,positionX:\"center\",positionY:\"center\",sizes:\"62px\",src:\"https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png\",srcSet:\"https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png?scale-down-to=512 512w,https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lFMHKIEBwuq4FnPkMOpk7k2H2M.png 2600w\"},className:\"framer-1e3ubas\",\"data-framer-appear-id\":\"1e3ubas\",initial:animation3,optimized:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1678g2f\",\"data-framer-name\":\"Gradient Blur\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-73ghqu-container\",\"data-framer-name\":\"Gradients\",isAuthoredByUser:true,isModuleExternal:true,name:\"Gradients\",nodeId:\"CQHTj6nwk\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgba(0, 0, 0, 0)\",colors:[\"rgb(3, 255, 234)\",\"rgb(0, 255, 179)\",\"rgb(255, 251, 0)\",\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:2},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:1,hoverModes:\"none\",hoverParallax:true,hoverSmooth:0},id:\"CQHTj6nwk\",layoutId:\"CQHTj6nwk\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:500,linksEnabled:false,linksOpacity:1,linksWidth:5},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:431,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:true,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:.1,moveGravityEnabled:false,moveGravityMaxSpeed:1,moveOut:\"bounce\",moveRandom:true,moveSpeed:1,moveSpinAcceleration:0,moveSpinEnabled:true,moveStraight:false,moveTrailAmount:50,moveTrailEnabled:true,moveVibrate:false},name:\"Gradients\",number:6,opacityOptions:{opacity:.1,opacityMax:.8,opacityMin:.5,opacityType:true},particlesID:getLocalizedValue(\"v3\",activeLocale)??\"1\",radius:0,rotateOptions:{rotateAnimation:true,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:getLocalizedValue(\"v2\",activeLocale)??\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:350,sizeMax:151.5,sizeMin:230,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:25,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hmutd4\",\"data-framer-name\":\"NAV\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+25,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-smvz7x-container\",\"data-framer-appear-id\":\"smvz7x\",initial:animation5,nodeId:\"XIfsTM4Oe\",optimized:true,rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{variant:\"AXVDUzmbo\"},wRgAd8giw:{variant:\"YkhrLA4n2\"}},children:/*#__PURE__*/_jsx(Kirjaudu,{height:\"100%\",id:\"XIfsTM4Oe\",layoutId:\"XIfsTM4Oe\",variant:\"kk0MhXj8_\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-10i4y97-container\",\"data-framer-appear-id\":\"10i4y97\",initial:animation5,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AsXVegnB7\",optimized:true,rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{padding:3,paddingBottom:3,paddingLeft:3,paddingRight:3,paddingTop:3},wRgAd8giw:{padding:7,paddingBottom:7,paddingLeft:7,paddingRight:7,paddingTop:7}},children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"var(--token-bdf27a98-28cf-449f-8533-c30727c8273f, rgb(255, 255, 255))\",size:12,type:\"default\"},fillColor:\"rgba(46, 46, 46, 0.5)\",font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\",textAlign:\"right\"},height:\"100%\",icon:{color:\"var(--token-bdf27a98-28cf-449f-8533-c30727c8273f, rgb(255, 255, 255))\",size:18,type:\"default\"},id:\"AsXVegnB7\",layoutId:\"AsXVegnB7\",options:{focus:{color:\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\",offset:0,style:\"solid\",width:1},gap:5,hover:{},title:false},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,textColor:\"var(--token-bdf27a98-28cf-449f-8533-c30727c8273f, rgb(255, 255, 255))\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17be0vk\",\"data-framer-name\":\"Otsikko\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19035eu\",\"data-styles-preset\":\"n6SedjStK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Tampereen tapahtumat\"})}),className:\"framer-1xezcgd\",\"data-framer-appear-id\":\"1xezcgd\",fonts:[\"Inter\"],initial:animation7,optimized:true,text:JiC1DQ5F0,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7pnf9b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{stylesPresetsClassNames:{a:\"framer-styles-preset-1uukuxv\",code:\"framer-styles-preset-1nmv6uj\",h1:\"framer-styles-preset-rua6hq\",h2:\"framer-styles-preset-1hmauaf\",h3:\"framer-styles-preset-1ku25pz\",h4:\"framer-styles-preset-3g4bcw\",h5:\"framer-styles-preset-1r2mv4b\",h6:\"framer-styles-preset-11j7c3p\",p:\"framer-styles-preset-ztw47t\"}}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:xGgBlyktb,className:\"framer-1b0q5le\",\"data-framer-appear-id\":\"1b0q5le\",fonts:[\"Inter\"],initial:animation7,optimized:true,stylesPresetsClassNames:{a:\"framer-styles-preset-1uukuxv\",code:\"framer-styles-preset-1nmv6uj\",h1:\"framer-styles-preset-rua6hq\",h2:\"framer-styles-preset-qkdeql\",h3:\"framer-styles-preset-1ku25pz\",h4:\"framer-styles-preset-3g4bcw\",h5:\"framer-styles-preset-1r2mv4b\",h6:\"framer-styles-preset-11j7c3p\",p:\"framer-styles-preset-ztw47t\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1347,intrinsicWidth:796,pixelHeight:2694,pixelWidth:1592,sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) / 2)`,...toResponsiveImage(XhJ3_6ZFI)}},wRgAd8giw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1347,intrinsicWidth:796,pixelHeight:2694,pixelWidth:1592,sizes:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 0.4)`,...toResponsiveImage(XhJ3_6ZFI)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1347,intrinsicWidth:796,pixelHeight:2694,pixelWidth:1592,sizes:`calc((${componentViewport?.width||\"100vw\"} - 200px) * 0.4)`,...toResponsiveImage(XhJ3_6ZFI)},className:\"framer-1kjtr6y\",\"data-framer-appear-id\":\"1kjtr6y\",\"data-framer-name\":\"ETUSIVU TAMPERE\",initial:animation7,optimized:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n496j4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{animate:animation11}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-vbqvwv\",\"data-framer-appear-id\":\"vbqvwv\",\"data-framer-name\":\"Download\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w6iacc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:25.1748,width:\"90px\"},wRgAd8giw:{height:50,width:\"178.75px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"214.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-138l0yu-container\",nodeId:\"pfzjvQt2s\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(APPSTORE,{height:\"100%\",id:\"pfzjvQt2s\",layoutId:\"pfzjvQt2s\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:25,width:\"85px\"},wRgAd8giw:{height:50,width:\"168.75px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"202.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fhjatv-container\",nodeId:\"mADJDcZnh\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(GOOGLE_PLAY,{height:\"100%\",id:\"mADJDcZnh\",layoutId:\"mADJDcZnh\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7gbzw\",\"data-framer-name\":\"CONTENT\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yaibih\",\"data-framer-name\":\"Otsikko\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1co8zqn\",\"data-styles-preset\":\"JKINFIxR_\",style:{\"--framer-text-alignment\":\"left\"},children:\"L\\xf6yd\\xe4 Tampereen parhaat tapahtumat k\\xe4tev\\xe4sti yhdest\\xe4 paikasta!\"})}),className:\"framer-r2jemb\",\"data-framer-appear-id\":\"r2jemb\",fonts:[\"Inter\"],initial:animation7,optimized:true,text:PBLxFtksv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cy1li7-container\",isModuleExternal:true,nodeId:\"Yi_PkszlO\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,topLeftRadius:10,topRightRadius:10},wRgAd8giw:{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,topLeftRadius:20,topRightRadius:20}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,height:\"100%\",id:\"Yi_PkszlO\",isMixedBorderRadius:false,isRed:false,layoutId:\"Yi_PkszlO\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:25,topRightRadius:25,url:bpk5I470c,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fb3ono\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{stylesPresetsClassNames:{a:\"framer-styles-preset-1uukuxv\",code:\"framer-styles-preset-1nmv6uj\",h1:\"framer-styles-preset-rua6hq\",h2:\"framer-styles-preset-1hmauaf\",h3:\"framer-styles-preset-1ku25pz\",h4:\"framer-styles-preset-3g4bcw\",h5:\"framer-styles-preset-1r2mv4b\",h6:\"framer-styles-preset-11j7c3p\",p:\"framer-styles-preset-1lfe2s8\"}}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:UTSKt7PHR,className:\"framer-1jmaim7\",\"data-framer-appear-id\":\"1jmaim7\",fonts:[\"Inter\"],initial:animation7,optimized:true,stylesPresetsClassNames:{a:\"framer-styles-preset-1uukuxv\",code:\"framer-styles-preset-1nmv6uj\",h1:\"framer-styles-preset-rua6hq\",h2:\"framer-styles-preset-qkdeql\",h3:\"framer-styles-preset-1ku25pz\",h4:\"framer-styles-preset-3g4bcw\",h5:\"framer-styles-preset-1r2mv4b\",h6:\"framer-styles-preset-11j7c3p\",p:\"framer-styles-preset-1lfe2s8\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{animate:animation11}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-uhen1l\",\"data-framer-appear-id\":\"uhen1l\",\"data-framer-name\":\"Download\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16tabpd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:35,width:\"125.125px\"},wRgAd8giw:{height:40,width:\"143px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"178.75px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qulhfh-container\",nodeId:\"xD28CpYxH\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(APPSTORE,{height:\"100%\",id:\"xD28CpYxH\",layoutId:\"xD28CpYxH\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:35,width:\"118.125px\"},wRgAd8giw:{height:40,width:\"135px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"168.75px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jsf172-container\",nodeId:\"kCpcxziMj\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(GOOGLE_PLAY,{height:\"100%\",id:\"kCpcxziMj\",layoutId:\"kCpcxziMj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-puim10\",\"data-framer-name\":\"T\\xc4M\\xc4 ON SOVELLUS\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w42zxh\",\"data-framer-name\":\"T\\xe4m\\xe4 on sovellus\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-104gan3-container\",\"data-framer-name\":\"hand-heart\",isAuthoredByUser:true,isModuleExternal:true,name:\"hand-heart\",nodeId:\"EFAOSRCV4\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"EFAOSRCV4\",layoutId:\"EFAOSRCV4\",name:\"hand-heart\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:getLocalizedValue(\"v6\",activeLocale)??'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-app-indicator\" viewBox=\"0 0 16 16\">  <path d=\"M5.5 2A3.5 3.5 0 0 0 2 5.5v5A3.5 3.5 0 0 0 5.5 14h5a3.5 3.5 0 0 0 3.5-3.5V8a.5.5 0 0 1 1 0v2.5a4.5 4.5 0 0 1-4.5 4.5h-5A4.5 4.5 0 0 1 1 10.5v-5A4.5 4.5 0 0 1 5.5 1H8a.5.5 0 0 1 0 1z\"/>  <path d=\"M16 3a3 3 0 1 1-6 0 3 3 0 0 1 6 0\"/></svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j1lqr\",\"data-styles-preset\":\"MXzLqy4zs\",style:{\"--framer-text-alignment\":\"left\"},children:\"Tapahtumat ja liput, aina mukanasi\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-rua6hq\",\"data-styles-preset\":\"jXCXrfjY4\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Tapahtumat ja liput, aina mukanasi\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-porb7m\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{style:{originY:0,scale:.6}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1669emr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nTiwFPqrm\",rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{align:\"center\",fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},paddingRight:10,paddingTop:0,snapObject:{fluid:true,snap:true,snapEdge:\"center\"}},wRgAd8giw:{paddingRight:10}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:getLocalizedValue(\"v9\",activeLocale)??\"Eventz.today - sovellus\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:50,height:\"100%\",id:\"nTiwFPqrm\",layoutId:\"nTiwFPqrm\",padding:10,paddingBottom:10,paddingLeft:0,paddingPerSide:true,paddingRight:50,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:8,dotsInset:0,dotSize:8,dotsOpacity:.5,dotsPadding:0,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19pglz2\",\"data-framer-name\":\"ET_1_YHDESS\\xc4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Eventz.today - sovellus. Tapahtumat yhdess\\xe4 paikassa.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/haba2bWJaBX2EKgiWVcXFFU7E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/haba2bWJaBX2EKgiWVcXFFU7E.png?scale-down-to=512 512w,https://framerusercontent.com/images/haba2bWJaBX2EKgiWVcXFFU7E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/haba2bWJaBX2EKgiWVcXFFU7E.png 2000w\"},className:\"framer-773nlh\",\"data-framer-name\":\"ET 1_YHDESSA\\xcc\\x88\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zrldwn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Tapahtumat yhdess\\xe4 paikassa\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-19z7uw5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-put52g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",style:{\"--framer-text-alignment\":\"left\"},children:[\"L\\xf6yd\\xe4 tapahtumat helposti \",/*#__PURE__*/_jsx(\"br\",{}),\"ja nopeasti.\"]})}),className:\"framer-1hxx46f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d8dzx4\",\"data-framer-name\":\"FILL\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ixb1jk\",\"data-framer-name\":\"ET_2_ULKOASU\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v13\",activeLocale)??\"Eventz.today - sovellus. Selke\\xe4 ja k\\xe4ytt\\xe4j\\xe4yst\\xe4v\\xe4llinen ulkoasu.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/hQQoQpnPd1qcwYFdP6CkpqS0M.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hQQoQpnPd1qcwYFdP6CkpqS0M.png?scale-down-to=512 512w,https://framerusercontent.com/images/hQQoQpnPd1qcwYFdP6CkpqS0M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hQQoQpnPd1qcwYFdP6CkpqS0M.png 2000w\"},className:\"framer-u8f5a2\",\"data-framer-name\":\"ET 2_SISA\\xcc\\x88LTO\\xcc\\x88\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jarj1g\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",children:[\"Selke\\xe4 ja k\\xe4ytt\\xe4j\\xe4yst\\xe4v\\xe4llinen\",/*#__PURE__*/_jsx(\"br\",{}),\"ulkoasu\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-101sy62\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y5nfv9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",children:\"Suunniteltu vaivattomaan k\\xe4ytt\\xf6\\xf6n.\"})}),className:\"framer-9i86oa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-riabvg\",\"data-framer-name\":\"ET_3_PERSONOITU\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"Eventz.today - sovellus. Personoitu sis\\xe4lt\\xf6\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/NVRNzsimomKOSCURPRBfIs3KAw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NVRNzsimomKOSCURPRBfIs3KAw.png?scale-down-to=512 512w,https://framerusercontent.com/images/NVRNzsimomKOSCURPRBfIs3KAw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NVRNzsimomKOSCURPRBfIs3KAw.png 2000w\"},className:\"framer-jng819\",\"data-framer-name\":\"ET 3_ULKOASU\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ge2xqx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",children:[\"Personoitu sis\\xe4lt\\xf6\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-fqtfh9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j6ci8c\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g3bwdc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",children:\"Valitse kiinnostuksen kohteesi ja saat juuri sinulle sopivia suosituksia.\"})}),className:\"framer-v6m17g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15j0s4v\",\"data-framer-name\":\"ET_4_SY\\xd6TE\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"Eventz.today - sovellus. Oma sy\\xf6te.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/ibo9ceW14F4tMDYp0JElHJEF4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ibo9ceW14F4tMDYp0JElHJEF4.png?scale-down-to=512 512w,https://framerusercontent.com/images/ibo9ceW14F4tMDYp0JElHJEF4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ibo9ceW14F4tMDYp0JElHJEF4.png 2000w\"},className:\"framer-l9326s\",\"data-framer-name\":\"ET 4_SYO\\xcc\\x88TE\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mdj2ks\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",children:[\"Oma sy\\xf6te\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-1td8hxh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zky3wi\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8fztun\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",children:\"N\\xe4e kaikki seuraamiesi j\\xe4rjest\\xe4jien tapahtumat helposti yhdess\\xe4 paikassa.\"})}),className:\"framer-yrthtc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13a6bxl\",\"data-framer-name\":\"ET_5_TIEDOT\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v22\",activeLocale)??\"Eventz.today - sovellus. Kattavat tapahtumatiedot.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/49ozzvABiTmofJLMHqyIq4t0aCs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/49ozzvABiTmofJLMHqyIq4t0aCs.png?scale-down-to=512 512w,https://framerusercontent.com/images/49ozzvABiTmofJLMHqyIq4t0aCs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/49ozzvABiTmofJLMHqyIq4t0aCs.png 2000w\"},className:\"framer-j77dv9\",\"data-framer-name\":\"ET 5_TIEDOT\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jh1w62\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",children:[\"Kattavat tapahtumatiedot\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-i9ca5u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ubjiks\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1irkar3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",children:\"N\\xe4e tapahtumien sijainti, ajankohta, liput ja muut t\\xe4rke\\xe4t tiedot.\"})}),className:\"framer-kbpmk2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13kksr3\",\"data-framer-name\":\"ET_6_TOP_LISTAT\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v25\",activeLocale)??\"Eventz.today - sovellus. Top-listat ja kategoriat.\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/L4z1pWbeeEMzgpxXTNNQlWWgILU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/L4z1pWbeeEMzgpxXTNNQlWWgILU.png?scale-down-to=512 512w,https://framerusercontent.com/images/L4z1pWbeeEMzgpxXTNNQlWWgILU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/L4z1pWbeeEMzgpxXTNNQlWWgILU.png 2000w\"},className:\"framer-sg646n\",\"data-framer-name\":\"ET 6_TOP_LISTAT\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16s0fki\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",children:[\"Top-listat ja kategoriat\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-w4dynk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14i07mf\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vx0lz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",children:\"Tutustu suosituimpiin tapahtumiin sek\\xe4 l\\xe4hell\\xe4si ett\\xe4 ymp\\xe4ri Suomen.\"})}),className:\"framer-uft7au\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193swex\",\"data-framer-name\":\"Miss\\xe4 ja milloin tahansa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4gbhqv\",\"data-framer-name\":\"MISS\\xc4 JA MILLOIN TAHANSA\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1cn16dz\",\"data-styles-preset\":\"LWwt1K5GX\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Miss\\xe4 ja milloin tahansa\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1cn16dz\",\"data-styles-preset\":\"LWwt1K5GX\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Miss\\xe4 ja milloin tahansa\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-1kmkxff\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9sqnm2 hidden-m7a5ax\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v58xir\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sy6g0e\",\"data-framer-name\":\"KUVAUS\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1hmauaf\",\"data-styles-preset\":\"RmZzit_Ks\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Eventz.today on mobiilisovellus, joka tekee\",/*#__PURE__*/_jsx(\"br\",{}),\"tapahtumien l\\xf6yt\\xe4misest\\xe4 ja j\\xe4rjest\\xe4misest\\xe4\",/*#__PURE__*/_jsx(\"br\",{}),\"helpompaa kuin koskaan. Sovellus kokoaa tapahtumat\",/*#__PURE__*/_jsx(\"br\",{}),\"yhteen paikkaan ja tuo ne k\\xe4den ulottuville.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Miss\\xe4 ja milloin tahansa\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1hmauaf\",\"data-styles-preset\":\"RmZzit_Ks\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Eventz.today on mobiilisovellus, joka tekee\",/*#__PURE__*/_jsx(\"br\",{}),\"tapahtumien l\\xf6yt\\xe4misest\\xe4 ja j\\xe4rjest\\xe4misest\\xe4\",/*#__PURE__*/_jsx(\"br\",{}),\"helpompaa kuin koskaan. Sovellus kokoaa tapahtumat\",/*#__PURE__*/_jsx(\"br\",{}),\"yhteen paikkaan ja tuo ne k\\xe4den ulottuville.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Miss\\xe4 ja milloin tahansa\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-1eros61\",\"data-framer-appear-id\":\"1eros61\",fonts:[\"Inter\"],initial:animation7,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-185n4ec\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{background:{alt:getLocalizedValue(\"v32\",activeLocale)??\"Eventz.today - App Icon\",fit:\"fill\",intrinsicHeight:511,intrinsicWidth:472,pixelHeight:1022,pixelWidth:944,sizes:\"50px\",src:\"https://framerusercontent.com/images/qmlUiHDfJu4JomqTNkRNJ5plsI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qmlUiHDfJu4JomqTNkRNJ5plsI.png 944w\"}},wRgAd8giw:{background:{alt:getLocalizedValue(\"v32\",activeLocale)??\"Eventz.today - App Icon\",fit:\"fill\",intrinsicHeight:511,intrinsicWidth:472,pixelHeight:1022,pixelWidth:944,sizes:\"75px\",src:\"https://framerusercontent.com/images/qmlUiHDfJu4JomqTNkRNJ5plsI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qmlUiHDfJu4JomqTNkRNJ5plsI.png 944w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v32\",activeLocale)??\"Eventz.today - App Icon\",fit:\"fill\",intrinsicHeight:511,intrinsicWidth:472,pixelHeight:1022,pixelWidth:944,sizes:\"100px\",src:\"https://framerusercontent.com/images/qmlUiHDfJu4JomqTNkRNJ5plsI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qmlUiHDfJu4JomqTNkRNJ5plsI.png 944w\"},className:\"framer-sh9qf3\",\"data-framer-name\":\"APP ICON_TEXT_WHITE\"})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12mvfug\",\"data-framer-name\":\"T\\xc4M\\xc4 ON SINULLE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{__framer__threshold:0},wRgAd8giw:{__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c0iv1t\",\"data-framer-name\":\"T\\xc4M\\xc4 ON SINULLE\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hyb1tl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sxnpm8-container\",\"data-framer-name\":\"hand-heart\",isAuthoredByUser:true,isModuleExternal:true,name:\"hand-heart\",nodeId:\"Apa_x9Ss5\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"Apa_x9Ss5\",layoutId:\"Apa_x9Ss5\",name:\"hand-heart\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:getLocalizedValue(\"v33\",activeLocale)??'<svg\\n  xmlns=\"http://www.w3.org/2000/svg\"\\n  width=\"100%\"\\n  height=\"100%\"\\n  viewBox=\"0 0 24 24\"\\n  fill=\"none\"\\n  stroke=\"#ffffff\"\\n  stroke-width=\"1.5\"\\n  stroke-linecap=\"round\"\\n  stroke-linejoin=\"round\"\\n>\\n  <path d=\"M11 14h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16\" />\\n  <path d=\"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9\" />\\n  <path d=\"m2 15 6 6\" />\\n  <path d=\"M19.5 8.5c.7-.7 1.5-1.6 1.5-2.7A2.73 2.73 0 0 0 16 4a2.78 2.78 0 0 0-5 1.8c0 1.2.8 2 1.5 2.8L16 12Z\" />\\n</svg>\\n',width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j1lqr\",\"data-styles-preset\":\"MXzLqy4zs\",style:{\"--framer-text-alignment\":\"left\"},children:\"K\\xe4ytt\\xe4j\\xe4yst\\xe4v\\xe4llinen ja selke\\xe4\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-rua6hq\",\"data-styles-preset\":\"jXCXrfjY4\",style:{\"--framer-text-alignment\":\"left\"},children:[\"K\\xe4ytt\\xe4j\\xe4yst\\xe4v\\xe4llinen ja selke\\xe4\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-13ryjkl\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{style:{originX:.4,originY:0,scale:.6}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1abkldv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WiNxioiui\",rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:10},gap:25,paddingLeft:30,paddingRight:30,snapObject:{fluid:true,snap:true,snapEdge:\"center\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:getLocalizedValue(\"v9\",activeLocale)??\"Eventz.today - sovellus\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:50,height:\"100%\",id:\"WiNxioiui\",layoutId:\"WiNxioiui\",padding:10,paddingBottom:10,paddingLeft:0,paddingPerSide:true,paddingRight:50,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:8,dotsInset:0,dotSize:8,dotsOpacity:.5,dotsPadding:0,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7m3y3c\",\"data-framer-name\":\"ET_TOP_1_L\\xd6YD\\xc4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Eventz.today - sovellus. L\\xf6yd\\xe4 alueesi tapahtumat yhdest\\xe4 sovelluksesta.\",fit:\"fill\",intrinsicHeight:1418,intrinsicWidth:932,pixelHeight:2836,pixelWidth:1864,sizes:\"250px\",...getLocalizedValue(\"v36\",activeLocale)??{src:\"https://framerusercontent.com/images/xvRnJQpiCDqAbc4z5n6z7awK6U.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/xvRnJQpiCDqAbc4z5n6z7awK6U.png?scale-down-to=1024 673w,https://framerusercontent.com/images/xvRnJQpiCDqAbc4z5n6z7awK6U.png?scale-down-to=2048 1346w,https://framerusercontent.com/images/xvRnJQpiCDqAbc4z5n6z7awK6U.png 1864w\"}},className:\"framer-g69q05\",\"data-framer-name\":\"ET TOP_1_LO\\xcc\\x88YDA\\xcc\\x88\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1johctt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",style:{\"--framer-text-alignment\":\"left\"},children:[\"L\\xf6yd\\xe4 alueesi tapahtumat\",/*#__PURE__*/_jsx(\"br\",{}),\"yhdest\\xe4 sovelluksesta\"]})}),className:\"framer-10bw94v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-162rp9i\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gn0y5y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Nopeasti ja vaivattomasti.\"})}),className:\"framer-w9d1uh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15gya3y\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1axtbk3\",\"data-framer-name\":\"ET_TOP_2_SEURAA\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Eventz.today - sovellus. Seuraa suosikkij\\xe4rjest\\xe4ji\\xe4si.\",fit:\"fill\",intrinsicHeight:1418,intrinsicWidth:932,pixelHeight:2836,pixelWidth:1864,sizes:\"250px\",...getLocalizedValue(\"v39\",activeLocale)??{src:\"https://framerusercontent.com/images/oeWshajpy2vASoLJ5KdUghrpz9Y.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/oeWshajpy2vASoLJ5KdUghrpz9Y.png?scale-down-to=1024 673w,https://framerusercontent.com/images/oeWshajpy2vASoLJ5KdUghrpz9Y.png?scale-down-to=2048 1346w,https://framerusercontent.com/images/oeWshajpy2vASoLJ5KdUghrpz9Y.png 1864w\"}},className:\"framer-ge4igl\",\"data-framer-name\":\"ET TOP_2_SEURAA\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b8t3uh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",style:{\"--framer-text-alignment\":\"left\"},children:\"Seuraa suosikkij\\xe4rjest\\xe4ji\\xe4si\"})}),className:\"framer-1uhtsa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-przqfc\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rzxmzn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",style:{\"--framer-text-alignment\":\"left\"},children:[\"ja l\\xf6yd\\xe4 heid\\xe4n uudet tapahtumansa\",/*#__PURE__*/_jsx(\"br\",{}),\"k\\xe4tev\\xe4sti sy\\xf6tteest\\xe4si.\"]})}),className:\"framer-16p4ont\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-155ctnl\",\"data-framer-name\":\"ET_TOP_3_PERSONOI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Eventz.today - sovellus. Muokkaa sovellusta kiinnostuksesi mukaan.\",fit:\"fill\",intrinsicHeight:1418,intrinsicWidth:932,pixelHeight:2836,pixelWidth:1864,sizes:\"250px\",...getLocalizedValue(\"v42\",activeLocale)??{src:\"https://framerusercontent.com/images/oqZyWsK0JiYHufjz1CzR3uA8zI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/oqZyWsK0JiYHufjz1CzR3uA8zI.png?scale-down-to=1024 673w,https://framerusercontent.com/images/oqZyWsK0JiYHufjz1CzR3uA8zI.png?scale-down-to=2048 1346w,https://framerusercontent.com/images/oqZyWsK0JiYHufjz1CzR3uA8zI.png 1864w\"}},className:\"framer-3ivnk5\",\"data-framer-name\":\"ET TOP_3_PERSONOI\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qrcm95\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Muokkaa sovellusta\",/*#__PURE__*/_jsx(\"br\",{}),\"kiinnostuksesi mukaan\"]})}),className:\"framer-1m7kn6s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rrocd8\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j9i6l1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",style:{\"--framer-text-alignment\":\"left\"},children:\"ja l\\xf6yd\\xe4 juuri sinulle sopivat tapahtumat.\"})}),className:\"framer-1tbhyof\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1klptju\",\"data-framer-name\":\"ET_TOP_4_TIED\\xc4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Eventz.today - sovellus. Kaikki tarvittavat tiedot tapahtumista.\",fit:\"fill\",intrinsicHeight:1418,intrinsicWidth:932,pixelHeight:2836,pixelWidth:1864,sizes:\"250px\",...getLocalizedValue(\"v45\",activeLocale)??{src:\"https://framerusercontent.com/images/HY4g7nsoHa2K1jn0K036qgVtJ4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/HY4g7nsoHa2K1jn0K036qgVtJ4.png?scale-down-to=1024 673w,https://framerusercontent.com/images/HY4g7nsoHa2K1jn0K036qgVtJ4.png?scale-down-to=2048 1346w,https://framerusercontent.com/images/HY4g7nsoHa2K1jn0K036qgVtJ4.png 1864w\"}},className:\"framer-ih3bvc\",\"data-framer-name\":\"ET TOP_4_TIEDA\\xcc\\x88\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-29bhl0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Kaikki tarvittavat tiedot\",/*#__PURE__*/_jsx(\"br\",{}),\"tapahtumista\"]})}),className:\"framer-qqef1c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9opk64\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13j6jed\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Aina kattavasti saatavillasi.\"})}),className:\"framer-1fdmna0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gb5jm6\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sv86gz\",\"data-framer-name\":\"ET_TOP5_INSPIROIDU\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Eventz.today - sovellus. Tutustu uusimpiin tapahtumiin.\",fit:\"fill\",intrinsicHeight:1418,intrinsicWidth:932,pixelHeight:2836,pixelWidth:1864,sizes:\"250px\",...getLocalizedValue(\"v48\",activeLocale)??{src:\"https://framerusercontent.com/images/81FHf10zIBlBMAqKPHAAEENMwZw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/81FHf10zIBlBMAqKPHAAEENMwZw.png?scale-down-to=1024 673w,https://framerusercontent.com/images/81FHf10zIBlBMAqKPHAAEENMwZw.png?scale-down-to=2048 1346w,https://framerusercontent.com/images/81FHf10zIBlBMAqKPHAAEENMwZw.png 1864w\"}},className:\"framer-72smju\",\"data-framer-name\":\"ET TOP_5_INSPIROIDU\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wvu5bo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Tutustu uusimpiin\",/*#__PURE__*/_jsx(\"br\",{}),\"tapahtumiin\"]})}),className:\"framer-1i43vm0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ys1okb\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x5m38t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ld1u1t\",\"data-styles-preset\":\"QetPUGkQx\",style:{\"--framer-text-alignment\":\"left\"},children:\"ja l\\xf6yd\\xe4 uusia el\\xe4myksi\\xe4.\"})}),className:\"framer-1nfks4y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d7ww61\"})]})]})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y2ch32\",\"data-framer-name\":\"Helppoa ja hauskaa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15qw5x9\",\"data-framer-name\":\"Helppoa ja hauskaa\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1cn16dz\",\"data-styles-preset\":\"LWwt1K5GX\",children:\"Helppoa ja hauskaa.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1cn16dz\",\"data-styles-preset\":\"LWwt1K5GX\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Helppoa ja hauskaa\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"})]})}),className:\"framer-snmx7u\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rumxl1 hidden-m7a5ax\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kw4r26\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12r0up8\",\"data-framer-name\":\"KUVAUS\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1hmauaf\",\"data-styles-preset\":\"RmZzit_Ks\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Haluamme tehd\\xe4 tapahtumista l\\xf6yt\\xe4misen helppoa ja hauskaa.\",/*#__PURE__*/_jsx(\"br\",{}),\"Et tarvitse en\\xe4\\xe4 kymmeni\\xe4 sovelluksia tai verkkosivuja, sill\\xe4\",/*#__PURE__*/_jsx(\"br\",{}),\"kaikki l\\xf6ytyy nyt yhdest\\xe4 paikasta.\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1hmauaf\",\"data-styles-preset\":\"RmZzit_Ks\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Haluamme tehd\\xe4 tapahtumista l\\xf6yt\\xe4misen helppoa ja hauskaa.\",/*#__PURE__*/_jsx(\"br\",{}),\"Et tarvitse en\\xe4\\xe4 kymmeni\\xe4 sovelluksia tai verkkosivuja, sill\\xe4\",/*#__PURE__*/_jsx(\"br\",{}),\"kaikki l\\xf6ytyy nyt yhdest\\xe4 paikasta.\"]})}),className:\"framer-o5rio8\",\"data-framer-appear-id\":\"o5rio8\",fonts:[\"Inter\"],initial:animation7,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3oyhen\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16f55qv hidden-m7a5ax\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wRgAd8giw:{height:30,width:\"107px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"143px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-92m1nl-container\",nodeId:\"ll3_hXjxe\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(APPSTORE,{height:\"100%\",id:\"ll3_hXjxe\",layoutId:\"ll3_hXjxe\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wRgAd8giw:{height:30,width:\"101px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"135px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q2ywbz-container\",nodeId:\"dwSjAMBof\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(GOOGLE_PLAY,{height:\"100%\",id:\"dwSjAMBof\",layoutId:\"dwSjAMBof\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knksg4 hidden-ufqhl9 hidden-1xtxf4t\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:25.1748,width:\"90px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"143px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mqh6gq-container\",nodeId:\"zVybR6W30\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(APPSTORE,{height:\"100%\",id:\"zVybR6W30\",layoutId:\"zVybR6W30\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:25,width:\"85px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"135px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p7ptvt-container\",nodeId:\"jwiC1Zo5A\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(GOOGLE_PLAY,{height:\"100%\",id:\"jwiC1Zo5A\",layoutId:\"jwiC1Zo5A\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iantt4\",\"data-framer-name\":\"T\\xe4m\\xe4 on Eventz.today\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11lztl5\",\"data-framer-name\":\"Otsikko\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-j1lqr\",\"data-styles-preset\":\"MXzLqy4zs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bdf27a98-28cf-449f-8533-c30727c8273f, rgb(255, 255, 255))\"},children:[\"T\\xe4m\\xe4 on Eventz\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"}),\"today\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-rua6hq\",\"data-styles-preset\":\"jXCXrfjY4\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bdf27a98-28cf-449f-8533-c30727c8273f, rgb(255, 255, 255))\"},children:[\"T\\xe4m\\xe4 on Eventz\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-66f7c2eb-7748-441e-a4a1-e2779594eb7f, rgb(9, 254, 2))\"},children:\".\"}),\"today\"]})}),className:\"framer-bhwqry\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xd1zbq hidden-m7a5ax\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation15,className:\"framer-1a05zm-container\",\"data-framer-appear-id\":\"1a05zm\",initial:animation16,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"V0J4ecRKP\",optimized:true,rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(YouTube1,{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,height:\"100%\",id:\"V0J4ecRKP\",isMixedBorderRadius:false,isRed:false,layoutId:\"V0J4ecRKP\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:15,topRightRadius:15,url:getLocalizedValue(\"v57\",activeLocale)??\"https://www.youtube.com/watch?v=elqRr01pPsQ&t=9s\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5aglq6\",\"data-framer-name\":\"Social\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1839ttj-container\",\"data-framer-name\":\"Social Icons\",name:\"Social Icons\",nodeId:\"EPmCo4bDH\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{variant:\"NuVZ_fy3n\"},wRgAd8giw:{variant:\"jxQWYLMvs\"}},children:/*#__PURE__*/_jsx(Facebook,{a2xOs5MXB:\"https://www.youtube.com/@eventz.today.application\",h8gUnGifC:\"https://www.instagram.com/eventztoday.app/\",height:\"100%\",id:\"EPmCo4bDH\",j7tpxVlfd:\"https://www.tiktok.com/@eventztoday.app\",layoutId:\"EPmCo4bDH\",name:\"Social Icons\",variant:\"XN8xKqQGj\",W07vsDIu8:\"https://www.facebook.com/eventz.today.application/?locale=fi_FI\",width:\"100%\",zh94QX1mL:\"https://x.com/app_eventztoday\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p6tz-container\",\"data-framer-name\":\"Social Icons\",name:\"Social Icons\",nodeId:\"oQ5LBXlCB\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{variant:\"AumfDlmu3\"},wRgAd8giw:{variant:\"ZXMgVAdKu\"}},children:/*#__PURE__*/_jsx(Facebook,{a2xOs5MXB:\"https://www.youtube.com/@eventz.today.application\",h8gUnGifC:\"https://www.instagram.com/eventztoday.app/\",height:\"100%\",id:\"oQ5LBXlCB\",j7tpxVlfd:\"https://www.tiktok.com/@eventztoday.app\",layoutId:\"oQ5LBXlCB\",name:\"Social Icons\",variant:\"qwzuBhGzg\",W07vsDIu8:\"https://www.facebook.com/eventz.today.application/?locale=fi_FI\",width:\"100%\",zh94QX1mL:\"https://x.com/app_eventztoday\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxsvsd-container\",\"data-framer-name\":\"Social Icons\",name:\"Social Icons\",nodeId:\"fE0z7PVem\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{variant:\"cox865Jwd\"},wRgAd8giw:{variant:\"hCfbYl0Z8\"}},children:/*#__PURE__*/_jsx(Facebook,{a2xOs5MXB:\"https://www.youtube.com/@eventz.today.application\",h8gUnGifC:\"https://www.instagram.com/eventztoday.app/\",height:\"100%\",id:\"fE0z7PVem\",j7tpxVlfd:\"https://www.tiktok.com/@eventztoday.app\",layoutId:\"fE0z7PVem\",name:\"Social Icons\",variant:\"N3aPFxfDf\",W07vsDIu8:\"https://www.facebook.com/eventz.today.application/?locale=fi_FI\",width:\"100%\",zh94QX1mL:\"https://x.com/app_eventztoday\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-559o3d-container\",\"data-framer-name\":\"Social Icons\",name:\"Social Icons\",nodeId:\"zeVtHn0uA\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{variant:\"Qq5804rdM\"},wRgAd8giw:{variant:\"kfbY6NLdW\"}},children:/*#__PURE__*/_jsx(Facebook,{a2xOs5MXB:\"https://www.youtube.com/@eventz.today.application\",h8gUnGifC:\"https://www.instagram.com/eventztoday.app/\",height:\"100%\",id:\"zeVtHn0uA\",j7tpxVlfd:\"https://www.tiktok.com/@eventztoday.app\",layoutId:\"zeVtHn0uA\",name:\"Social Icons\",variant:\"yotdL8wk4\",W07vsDIu8:\"https://www.facebook.com/eventz.today.application/?locale=fi_FI\",width:\"100%\",zh94QX1mL:\"https://x.com/app_eventztoday\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5enaht-container\",\"data-framer-name\":\"Social Icons\",name:\"Social Icons\",nodeId:\"MmwW2smZd\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{variant:\"GVykU5zy8\"},wRgAd8giw:{variant:\"kor0cmAhT\"}},children:/*#__PURE__*/_jsx(Facebook,{a2xOs5MXB:\"https://www.youtube.com/@eventz.today.application\",h8gUnGifC:\"https://www.instagram.com/eventztoday.app/\",height:\"100%\",id:\"MmwW2smZd\",j7tpxVlfd:\"https://www.tiktok.com/@eventztoday.app\",layoutId:\"MmwW2smZd\",name:\"Social Icons\",variant:\"hk1DKuYaM\",W07vsDIu8:\"https://www.facebook.com/eventz.today.application/?locale=fi_FI\",width:\"100%\",zh94QX1mL:\"https://x.com/app_eventztoday\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n0todc\",\"data-framer-name\":\"Voimmeko auttaa?\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i7a1kv\",\"data-framer-name\":\"Voimmeko auttaa?\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1imclnh-container\",\"data-framer-name\":\"hand-heart\",isAuthoredByUser:true,isModuleExternal:true,name:\"hand-heart\",nodeId:\"gj_tQzMKG\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(FramerIcon,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"gj_tQzMKG\",layoutId:\"gj_tQzMKG\",name:\"hand-heart\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:getLocalizedValue(\"v58\",activeLocale)??'<svg width=\"100%\" height=\"100%\" stroke-width=\"1.5\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9 9C9 5.49997 14.5 5.5 14.5 9C14.5 11.5 12 10.9999 12 13.9999\" stroke=\"#ffffff\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 18.01L12.01 17.9989\" stroke=\"#ffffff\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 13.8214 2.48697 15.5291 3.33782 17L2.5 21.5L7 20.6622C8.47087 21.513 10.1786 22 12 22Z\" stroke=\"#ffffff\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-j1lqr\",\"data-styles-preset\":\"MXzLqy4zs\",style:{\"--framer-text-alignment\":\"left\"},children:\"Voimmeko auttaa?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-rua6hq\",\"data-styles-preset\":\"jXCXrfjY4\",style:{\"--framer-text-alignment\":\"left\"},children:\"Voimmeko auttaa?\"})}),className:\"framer-12modnx\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9dm1n1 hidden-m7a5ax\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lyj6er\",\"data-framer-name\":\"KUVAUS\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1hmauaf\",\"data-styles-preset\":\"RmZzit_Ks\",style:{\"--framer-text-alignment\":\"left\"},children:\"Haluamme kuulla sinusta! Jos sinulla on kysytt\\xe4v\\xe4\\xe4, palautetta tai haluat lis\\xe4tietoja Eventz.today-sovelluksesta, \\xe4l\\xe4 ep\\xe4r\\xf6i ottaa yhteytt\\xe4.\"})}),className:\"framer-1bct3kd\",\"data-framer-appear-id\":\"1bct3kd\",fonts:[\"Inter\"],initial:animation7,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/5d8be317-63ad-4bf5-8aab-ff21be5fef06/submit\",className:\"framer-1nxnb4f\",nodeId:\"iLyhkiheD\",redirectUrl:{webPageId:\"EtgvWIeIi\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-10kr5lp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",children:\"S\\xe4hk\\xf6posti\"})}),className:\"framer-o7ojkn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-e9s45g\",inputName:\"Email\",placeholder:getLocalizedValue(\"v63\",activeLocale)??\"app@eventztoday.app\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-k755jv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ku25pz\",\"data-styles-preset\":\"eS9V11xzM\",children:\"Viesti\"})}),className:\"framer-fasqyj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-xz75ll\",inputName:\"Viesti\",placeholder:getLocalizedValue(\"v65\",activeLocale)??\"Kirjoita viestisi t\\xe4h\\xe4n.\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:25,width:\"120px\"},wRgAd8giw:{height:30,width:\"150px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dzblz-container\",nodeId:\"h5tO5E6mE\",scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"h5tO5E6mE\",layoutId:\"h5tO5E6mE\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"v9g0BAlH5\",incomplete:\"hjCKIEs0N\",pending:\"TQPVkFfi9\",success:\"t9kDk7XCL\"},\"Aa8P1sjB_\"),width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1it1y2c\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17iaebw\",\"data-styles-preset\":\"yvRR6BpBs\",style:{\"--framer-text-alignment\":\"left\"},children:\"\\xa92025 GeoPass Company Oy. Kaikki oikeudet pid\\xe4tet\\xe4\\xe4n.\"})}),className:\"framer-p2fi2y\",\"data-framer-appear-id\":\"p2fi2y\",fonts:[\"Inter\"],initial:animation7,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11isacp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:175,intrinsicWidth:665,pixelHeight:350,pixelWidth:1330,sizes:\"100px\",...getLocalizedValue(\"v67\",activeLocale)??{src:\"https://framerusercontent.com/images/ztL55Tcwjmrin9U3zy9lSD8qg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ztL55Tcwjmrin9U3zy9lSD8qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ztL55Tcwjmrin9U3zy9lSD8qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ztL55Tcwjmrin9U3zy9lSD8qg.png 1330w\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:175,intrinsicWidth:665,pixelHeight:350,pixelWidth:1330,sizes:\"220px\",...getLocalizedValue(\"v67\",activeLocale)??{src:\"https://framerusercontent.com/images/ztL55Tcwjmrin9U3zy9lSD8qg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ztL55Tcwjmrin9U3zy9lSD8qg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ztL55Tcwjmrin9U3zy9lSD8qg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ztL55Tcwjmrin9U3zy9lSD8qg.png 1330w\"}},className:\"framer-1iyzkvh\",\"data-framer-name\":\"EU disclaimer_kestavakasvu_FI\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t5t0w7\",\"data-framer-name\":\"Tietosuoja/k\\xe4ytt\\xf6ehdot\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17iaebw\",\"data-styles-preset\":\"yvRR6BpBs\",style:{\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"R_ALPGZJZ\"},motionChild:true,nodeId:\"yogmle2tf\",openInNewTab:false,scopeId:\"kNdqhbAmw\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-196eta6\",\"data-styles-preset\":\"qyHYS4Fw0\",children:\"Tietosuojak\\xe4yt\\xe4nt\\xf6\"})})})}),className:\"framer-3r1sjl\",\"data-framer-appear-id\":\"3r1sjl\",fonts:[\"Inter\"],initial:animation7,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17iaebw\",\"data-styles-preset\":\"yvRR6BpBs\",style:{\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":DMcRCsgja\",webPageId:\"Pt1d42jJm\"},motionChild:true,nodeId:\"Izb7F9Ggr\",openInNewTab:false,scopeId:\"kNdqhbAmw\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-196eta6\",\"data-styles-preset\":\"qyHYS4Fw0\",children:\"K\\xe4ytt\\xf6ehdot\"})})})}),className:\"framer-1dv6hy5\",\"data-framer-appear-id\":\"1dv6hy5\",fonts:[\"Inter\"],initial:animation7,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:820,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-12b3xth-container hidden-m7a5ax\",\"data-framer-appear-id\":\"12b3xth\",initial:animation5,layoutScroll:true,nodeId:\"BPfMLNOk0\",optimized:true,rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(NAV_ICON,{height:\"100%\",id:\"BPfMLNOk0\",layoutId:\"BPfMLNOk0\",variant:\"AFKxlpbdv\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:770,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1h3g6fr-container hidden-m7a5ax\",\"data-framer-appear-id\":\"1h3g6fr\",initial:animation5,layoutScroll:true,nodeId:\"pofWs4ipt\",optimized:true,rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(NAV_ICON,{height:\"100%\",id:\"pofWs4ipt\",layoutId:\"pofWs4ipt\",variant:\"KVBpZDTh0\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1f9lasz hidden-ufqhl9 hidden-1xtxf4t\",\"data-framer-appear-id\":\"1f9lasz\",initial:animation5,optimized:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:40,y:797}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1rh8dbp-container hidden-ufqhl9 hidden-1xtxf4t\",\"data-framer-appear-id\":\"1rh8dbp\",initial:animation5,layoutScroll:true,nodeId:\"W3PhbiUeb\",optimized:true,rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(NAV_ICON,{height:\"100%\",id:\"W3PhbiUeb\",layoutId:\"W3PhbiUeb\",variant:\"UCMgsM7Bt\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nHg9NmTm_:{height:40,y:754}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-ax24r7-container hidden-ufqhl9 hidden-1xtxf4t\",\"data-framer-appear-id\":\"ax24r7\",initial:animation5,layoutScroll:true,nodeId:\"xu8xm7vXC\",optimized:true,rendersWithMotion:true,scopeId:\"kNdqhbAmw\",children:/*#__PURE__*/_jsx(NAV_ICON,{height:\"100%\",id:\"xu8xm7vXC\",layoutId:\"xu8xm7vXC\",variant:\"x_48UVi2t\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fZGiN.framer-x6vbzv, .framer-fZGiN .framer-x6vbzv { display: block; }\",\".framer-fZGiN.framer-ufqhl9 { align-content: center; align-items: center; background-color: var(--token-8511abbe-5346-4246-adf1-6858095020c5, #101012); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 1200px; }\",\".framer-fZGiN .framer-91m70h { align-content: center; align-items: center; background-color: var(--token-8511abbe-5346-4246-adf1-6858095020c5, #101012); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 0; }\",\".framer-fZGiN .framer-10pmanp-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fZGiN .framer-1g79jrb { background: linear-gradient(180deg, rgba(16, 16, 18, 0) 0%, rgba(16, 16, 18, 0.5) 0%, rgba(16, 16, 18, 0.66) 19.613949887387385%, rgba(16, 16, 18, 0.8) 46.68320664414414%, rgba(16, 16, 18, 0.92) 70.43391047297298%, var(--token-8511abbe-5346-4246-adf1-6858095020c5, rgb(16, 16, 18)) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fZGiN .framer-1e3ubas { flex: none; height: 25px; left: 30px; position: absolute; top: 30px; width: 62px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-fZGiN .framer-1678g2f { -webkit-filter: blur(60px); align-content: center; align-items: center; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; filter: blur(60px); flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 1080px; min-width: 1200px; opacity: 0.1; overflow: hidden; padding: 0px; position: absolute; top: 150px; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-fZGiN .framer-73ghqu-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fZGiN .framer-hmutd4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; left: 50%; overflow: hidden; padding: 25px 50px 0px 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-fZGiN .framer-smvz7x-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fZGiN .framer-10i4y97-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-fZGiN .framer-17be0vk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1xezcgd, .framer-fZGiN .framer-r2jemb, .framer-fZGiN .framer-p2fi2y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-fZGiN .framer-7pnf9b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1b0q5le, .framer-fZGiN .framer-1eros61, .framer-fZGiN .framer-o5rio8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fZGiN .framer-1kjtr6y { aspect-ratio: 0.5909428359317 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 677px); overflow: visible; position: relative; width: 40%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-fZGiN .framer-1n496j4, .framer-fZGiN .framer-1v58xir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-vbqvwv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 100px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fZGiN .framer-w6iacc, .framer-fZGiN .framer-16tabpd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fZGiN .framer-138l0yu-container { aspect-ratio: 3.575 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 215px; }\",\".framer-fZGiN .framer-fhjatv-container { aspect-ratio: 3.375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 203px; }\",\".framer-fZGiN .framer-1c7gbzw, .framer-fZGiN .framer-12mvfug, .framer-fZGiN .framer-kw4r26 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-yaibih { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 750px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-cy1li7-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 563px); position: relative; width: 100%; }\",\".framer-fZGiN .framer-1fb3ono { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1jmaim7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1001px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-fZGiN .framer-uhen1l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 100px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fZGiN .framer-qulhfh-container { aspect-ratio: 3.575 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 179px; }\",\".framer-fZGiN .framer-jsf172-container { aspect-ratio: 3.375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 169px; }\",\".framer-fZGiN .framer-puim10 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 970px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1w42zxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-104gan3-container, .framer-fZGiN .framer-sxnpm8-container, .framer-fZGiN .framer-1imclnh-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-fZGiN .framer-porb7m, .framer-fZGiN .framer-1hxx46f, .framer-fZGiN .framer-fqtfh9, .framer-fZGiN .framer-1td8hxh, .framer-fZGiN .framer-i9ca5u, .framer-fZGiN .framer-w4dynk, .framer-fZGiN .framer-1kmkxff, .framer-fZGiN .framer-13ryjkl, .framer-fZGiN .framer-10bw94v, .framer-fZGiN .framer-w9d1uh, .framer-fZGiN .framer-1uhtsa, .framer-fZGiN .framer-1m7kn6s, .framer-fZGiN .framer-qqef1c, .framer-fZGiN .framer-1fdmna0, .framer-fZGiN .framer-1i43vm0, .framer-fZGiN .framer-1nfks4y, .framer-fZGiN .framer-snmx7u, .framer-fZGiN .framer-bhwqry, .framer-fZGiN .framer-12modnx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fZGiN .framer-1669emr-container { flex: none; height: 45%; position: relative; width: 100%; }\",\".framer-fZGiN .framer-19pglz2, .framer-fZGiN .framer-1ixb1jk, .framer-fZGiN .framer-riabvg, .framer-fZGiN .framer-15j0s4v, .framer-fZGiN .framer-13a6bxl, .framer-fZGiN .framer-13kksr3, .framer-fZGiN .framer-7m3y3c, .framer-fZGiN .framer-1axtbk3, .framer-fZGiN .framer-155ctnl, .framer-fZGiN .framer-1klptju, .framer-fZGiN .framer-sv86gz { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fZGiN .framer-773nlh, .framer-fZGiN .framer-u8f5a2, .framer-fZGiN .framer-jng819, .framer-fZGiN .framer-l9326s, .framer-fZGiN .framer-j77dv9, .framer-fZGiN .framer-sg646n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 250px; }\",\".framer-fZGiN .framer-zrldwn, .framer-fZGiN .framer-put52g, .framer-fZGiN .framer-jarj1g, .framer-fZGiN .framer-1y5nfv9, .framer-fZGiN .framer-g3bwdc, .framer-fZGiN .framer-mdj2ks, .framer-fZGiN .framer-8fztun, .framer-fZGiN .framer-1jh1w62, .framer-fZGiN .framer-1irkar3, .framer-fZGiN .framer-16s0fki, .framer-fZGiN .framer-1vx0lz, .framer-fZGiN .framer-1johctt, .framer-fZGiN .framer-1gn0y5y, .framer-fZGiN .framer-b8t3uh, .framer-fZGiN .framer-rzxmzn, .framer-fZGiN .framer-1qrcm95, .framer-fZGiN .framer-j9i6l1, .framer-fZGiN .framer-29bhl0, .framer-fZGiN .framer-13j6jed, .framer-fZGiN .framer-wvu5bo, .framer-fZGiN .framer-1x5m38t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 250px; }\",\".framer-fZGiN .framer-19z7uw5, .framer-fZGiN .framer-101sy62, .framer-fZGiN .framer-9i86oa, .framer-fZGiN .framer-v6m17g, .framer-fZGiN .framer-yrthtc, .framer-fZGiN .framer-kbpmk2, .framer-fZGiN .framer-uft7au, .framer-fZGiN .framer-16p4ont, .framer-fZGiN .framer-1tbhyof { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fZGiN .framer-1d8dzx4 { align-self: stretch; background-color: rgba(51, 170, 255, 0); flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-fZGiN .framer-ge2xqx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 250px; }\",\".framer-fZGiN .framer-j6ci8c { background-color: rgba(33, 100, 255, 0); flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-fZGiN .framer-zky3wi, .framer-fZGiN .framer-9sqnm2, .framer-fZGiN .framer-rumxl1 { align-self: stretch; background-color: rgba(69, 205, 255, 0); flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-fZGiN .framer-1ubjiks, .framer-fZGiN .framer-162rp9i, .framer-fZGiN .framer-przqfc, .framer-fZGiN .framer-rrocd8, .framer-fZGiN .framer-9opk64, .framer-fZGiN .framer-1ys1okb { align-self: stretch; background-color: rgba(51, 136, 255, 0); flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-fZGiN .framer-14i07mf { align-self: stretch; background-color: rgba(255, 255, 255, 0); flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-fZGiN .framer-193swex, .framer-fZGiN .framer-y2ch32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-4gbhqv, .framer-fZGiN .framer-15qw5x9, .framer-fZGiN .framer-11isacp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-sy6g0e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 50px 0px 0px; position: relative; width: 1px; }\",\".framer-fZGiN .framer-185n4ec, .framer-fZGiN .framer-9dm1n1 { align-self: stretch; background-color: rgba(153, 238, 255, 0); flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-fZGiN .framer-sh9qf3 { align-content: center; align-items: center; aspect-ratio: 0.923679060665362 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 109px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-fZGiN .framer-c0iv1t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1hyb1tl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1abkldv-container { flex: none; height: 551px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-g69q05, .framer-fZGiN .framer-ge4igl, .framer-fZGiN .framer-3ivnk5, .framer-fZGiN .framer-ih3bvc, .framer-fZGiN .framer-72smju { aspect-ratio: 0.6572637517630465 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 381px); overflow: visible; position: relative; width: 250px; }\",\".framer-fZGiN .framer-15gya3y, .framer-fZGiN .framer-1gb5jm6, .framer-fZGiN .framer-d7ww61, .framer-fZGiN .framer-3oyhen { align-self: stretch; background-color: rgba(33, 100, 255, 0); flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-fZGiN .framer-12r0up8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 50px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-16f55qv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-92m1nl-container, .framer-fZGiN .framer-mqh6gq-container { flex: none; height: 40px; position: relative; width: 143px; }\",\".framer-fZGiN .framer-1q2ywbz-container, .framer-fZGiN .framer-1p7ptvt-container { flex: none; height: 40px; position: relative; width: 135px; }\",\".framer-fZGiN .framer-1knksg4 { 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: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1iantt4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-11lztl5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-xd1zbq { background-color: rgba(69, 205, 255, 0); flex: 1 0 0px; height: 36px; overflow: hidden; position: relative; width: 1px; }\",\".framer-fZGiN .framer-1a05zm-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 563px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fZGiN .framer-5aglq6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 35px 0px 35px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1839ttj-container, .framer-fZGiN .framer-1p6tz-container, .framer-fZGiN .framer-1oxsvsd-container, .framer-fZGiN .framer-559o3d-container, .framer-fZGiN .framer-5enaht-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fZGiN .framer-1n0todc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1i7a1kv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1lyj6er { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 50px 0px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1bct3kd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-fZGiN .framer-1nxnb4f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-10kr5lp, .framer-fZGiN .framer-k755jv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-o7ojkn, .framer-fZGiN .framer-fasqyj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-fZGiN .framer-e9s45g { --framer-input-background: var(--token-8511abbe-5346-4246-adf1-6858095020c5, #101012); --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-ffcb98ac-650c-443d-81dd-2a2bfd3826b7, #2e2e2e); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-background: var(--token-8511abbe-5346-4246-adf1-6858095020c5, #101012); --framer-input-focused-box-shadow: 0.3010936508871964px 0.6021873017743928px 0.6732658709773611px -1.3333333333333333px rgba(9, 254, 2, 0.76), 1.1442666516217286px 2.288533303243457px 2.558658017412255px -2.6666666666666665px rgba(9, 254, 2, 0.66), 5px 10px 11.180339887498949px -4px rgba(9, 254, 2, 0.2); --framer-input-focused-transition: all 0.6s cubic-bezier(0.68,0,0.1,0.99) 0s; --framer-input-font-color: var(--token-bdf27a98-28cf-449f-8533-c30727c8273f, #ffffff); --framer-input-font-family: \"Poppins\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: rgba(196, 196, 196, 0.5); flex: none; height: 40px; position: relative; width: 100%; }','.framer-fZGiN .framer-xz75ll { --framer-input-background: var(--token-8511abbe-5346-4246-adf1-6858095020c5, #101012); --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-ffcb98ac-650c-443d-81dd-2a2bfd3826b7, #2e2e2e); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-background: var(--token-8511abbe-5346-4246-adf1-6858095020c5, #101012); --framer-input-focused-box-shadow: 0.3010936508871964px 0.6021873017743928px 0.6732658709773611px -1.3333333333333333px rgba(9, 254, 2, 0.76), 1.1442666516217286px 2.288533303243457px 2.558658017412255px -2.6666666666666665px rgba(9, 254, 2, 0.66), 5px 10px 11.180339887498949px -4px rgba(9, 254, 2, 0.2); --framer-input-focused-transition: all 0.6s cubic-bezier(0.68,0,0.1,0.99) 0s; --framer-input-font-color: var(--token-bdf27a98-28cf-449f-8533-c30727c8273f, #ffffff); --framer-input-font-family: \"Poppins\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: rgba(196, 196, 196, 0.5); --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-fZGiN .framer-dzblz-container { flex: none; height: 40px; position: relative; width: 200px; }\",\".framer-fZGiN .framer-1it1y2c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 50px 150px 0px; position: relative; width: 100%; }\",\".framer-fZGiN .framer-1iyzkvh { aspect-ratio: 3.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); overflow: visible; position: relative; width: 220px; }\",\".framer-fZGiN .framer-1t5t0w7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-fZGiN .framer-3r1sjl, .framer-fZGiN .framer-1dv6hy5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-fZGiN .framer-12b3xth-container { bottom: 140px; flex: none; height: auto; position: fixed; right: 20px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-fZGiN .framer-1h3g6fr-container { bottom: 190px; flex: none; height: auto; position: fixed; right: 18px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-fZGiN .framer-1f9lasz { background-color: #141414; border-bottom-left-radius: 10px; border-top-left-radius: 10px; bottom: 164px; flex: none; height: 83px; overflow: hidden; position: fixed; right: 1px; width: 40px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-fZGiN .framer-1rh8dbp-container { bottom: 163px; flex: none; height: auto; position: fixed; right: 1px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-fZGiN .framer-ax24r7-container { bottom: 206px; flex: none; height: auto; position: fixed; right: 1px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fZGiN.framer-ufqhl9, .framer-fZGiN .framer-91m70h, .framer-fZGiN .framer-1678g2f, .framer-fZGiN .framer-hmutd4, .framer-fZGiN .framer-17be0vk, .framer-fZGiN .framer-7pnf9b, .framer-fZGiN .framer-1n496j4, .framer-fZGiN .framer-vbqvwv, .framer-fZGiN .framer-w6iacc, .framer-fZGiN .framer-1c7gbzw, .framer-fZGiN .framer-yaibih, .framer-fZGiN .framer-1fb3ono, .framer-fZGiN .framer-uhen1l, .framer-fZGiN .framer-16tabpd, .framer-fZGiN .framer-puim10, .framer-fZGiN .framer-1w42zxh, .framer-fZGiN .framer-19pglz2, .framer-fZGiN .framer-zrldwn, .framer-fZGiN .framer-put52g, .framer-fZGiN .framer-1ixb1jk, .framer-fZGiN .framer-jarj1g, .framer-fZGiN .framer-1y5nfv9, .framer-fZGiN .framer-riabvg, .framer-fZGiN .framer-ge2xqx, .framer-fZGiN .framer-g3bwdc, .framer-fZGiN .framer-15j0s4v, .framer-fZGiN .framer-mdj2ks, .framer-fZGiN .framer-8fztun, .framer-fZGiN .framer-13a6bxl, .framer-fZGiN .framer-1jh1w62, .framer-fZGiN .framer-1irkar3, .framer-fZGiN .framer-13kksr3, .framer-fZGiN .framer-16s0fki, .framer-fZGiN .framer-1vx0lz, .framer-fZGiN .framer-193swex, .framer-fZGiN .framer-4gbhqv, .framer-fZGiN .framer-1v58xir, .framer-fZGiN .framer-sy6g0e, .framer-fZGiN .framer-sh9qf3, .framer-fZGiN .framer-12mvfug, .framer-fZGiN .framer-c0iv1t, .framer-fZGiN .framer-1hyb1tl, .framer-fZGiN .framer-7m3y3c, .framer-fZGiN .framer-1johctt, .framer-fZGiN .framer-1gn0y5y, .framer-fZGiN .framer-1axtbk3, .framer-fZGiN .framer-b8t3uh, .framer-fZGiN .framer-rzxmzn, .framer-fZGiN .framer-155ctnl, .framer-fZGiN .framer-1qrcm95, .framer-fZGiN .framer-j9i6l1, .framer-fZGiN .framer-1klptju, .framer-fZGiN .framer-29bhl0, .framer-fZGiN .framer-13j6jed, .framer-fZGiN .framer-sv86gz, .framer-fZGiN .framer-wvu5bo, .framer-fZGiN .framer-1x5m38t, .framer-fZGiN .framer-y2ch32, .framer-fZGiN .framer-15qw5x9, .framer-fZGiN .framer-kw4r26, .framer-fZGiN .framer-12r0up8, .framer-fZGiN .framer-16f55qv, .framer-fZGiN .framer-1knksg4, .framer-fZGiN .framer-1iantt4, .framer-fZGiN .framer-11lztl5, .framer-fZGiN .framer-5aglq6, .framer-fZGiN .framer-1n0todc, .framer-fZGiN .framer-1i7a1kv, .framer-fZGiN .framer-1lyj6er, .framer-fZGiN .framer-1nxnb4f, .framer-fZGiN .framer-10kr5lp, .framer-fZGiN .framer-k755jv, .framer-fZGiN .framer-1it1y2c, .framer-fZGiN .framer-11isacp, .framer-fZGiN .framer-1t5t0w7 { gap: 0px; } .framer-fZGiN.framer-ufqhl9 > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-fZGiN.framer-ufqhl9 > :first-child, .framer-fZGiN .framer-1678g2f > :first-child, .framer-fZGiN .framer-17be0vk > :first-child, .framer-fZGiN .framer-vbqvwv > :first-child, .framer-fZGiN .framer-1c7gbzw > :first-child, .framer-fZGiN .framer-yaibih > :first-child, .framer-fZGiN .framer-uhen1l > :first-child, .framer-fZGiN .framer-puim10 > :first-child, .framer-fZGiN .framer-19pglz2 > :first-child, .framer-fZGiN .framer-1ixb1jk > :first-child, .framer-fZGiN .framer-riabvg > :first-child, .framer-fZGiN .framer-15j0s4v > :first-child, .framer-fZGiN .framer-13a6bxl > :first-child, .framer-fZGiN .framer-13kksr3 > :first-child, .framer-fZGiN .framer-193swex > :first-child, .framer-fZGiN .framer-sh9qf3 > :first-child, .framer-fZGiN .framer-12mvfug > :first-child, .framer-fZGiN .framer-c0iv1t > :first-child, .framer-fZGiN .framer-7m3y3c > :first-child, .framer-fZGiN .framer-1axtbk3 > :first-child, .framer-fZGiN .framer-155ctnl > :first-child, .framer-fZGiN .framer-1klptju > :first-child, .framer-fZGiN .framer-sv86gz > :first-child, .framer-fZGiN .framer-y2ch32 > :first-child, .framer-fZGiN .framer-kw4r26 > :first-child, .framer-fZGiN .framer-1iantt4 > :first-child, .framer-fZGiN .framer-1n0todc > :first-child, .framer-fZGiN .framer-1nxnb4f > :first-child, .framer-fZGiN .framer-10kr5lp > :first-child, .framer-fZGiN .framer-k755jv > :first-child, .framer-fZGiN .framer-1it1y2c > :first-child, .framer-fZGiN .framer-1t5t0w7 > :first-child { margin-top: 0px; } .framer-fZGiN.framer-ufqhl9 > :last-child, .framer-fZGiN .framer-1678g2f > :last-child, .framer-fZGiN .framer-17be0vk > :last-child, .framer-fZGiN .framer-vbqvwv > :last-child, .framer-fZGiN .framer-1c7gbzw > :last-child, .framer-fZGiN .framer-yaibih > :last-child, .framer-fZGiN .framer-uhen1l > :last-child, .framer-fZGiN .framer-puim10 > :last-child, .framer-fZGiN .framer-19pglz2 > :last-child, .framer-fZGiN .framer-1ixb1jk > :last-child, .framer-fZGiN .framer-riabvg > :last-child, .framer-fZGiN .framer-15j0s4v > :last-child, .framer-fZGiN .framer-13a6bxl > :last-child, .framer-fZGiN .framer-13kksr3 > :last-child, .framer-fZGiN .framer-193swex > :last-child, .framer-fZGiN .framer-sh9qf3 > :last-child, .framer-fZGiN .framer-12mvfug > :last-child, .framer-fZGiN .framer-c0iv1t > :last-child, .framer-fZGiN .framer-7m3y3c > :last-child, .framer-fZGiN .framer-1axtbk3 > :last-child, .framer-fZGiN .framer-155ctnl > :last-child, .framer-fZGiN .framer-1klptju > :last-child, .framer-fZGiN .framer-sv86gz > :last-child, .framer-fZGiN .framer-y2ch32 > :last-child, .framer-fZGiN .framer-kw4r26 > :last-child, .framer-fZGiN .framer-1iantt4 > :last-child, .framer-fZGiN .framer-1n0todc > :last-child, .framer-fZGiN .framer-1nxnb4f > :last-child, .framer-fZGiN .framer-10kr5lp > :last-child, .framer-fZGiN .framer-k755jv > :last-child, .framer-fZGiN .framer-1it1y2c > :last-child, .framer-fZGiN .framer-1t5t0w7 > :last-child { margin-bottom: 0px; } .framer-fZGiN .framer-91m70h > *, .framer-fZGiN .framer-7pnf9b > *, .framer-fZGiN .framer-1n496j4 > *, .framer-fZGiN .framer-1fb3ono > *, .framer-fZGiN .framer-zrldwn > *, .framer-fZGiN .framer-put52g > *, .framer-fZGiN .framer-jarj1g > *, .framer-fZGiN .framer-1y5nfv9 > *, .framer-fZGiN .framer-ge2xqx > *, .framer-fZGiN .framer-g3bwdc > *, .framer-fZGiN .framer-mdj2ks > *, .framer-fZGiN .framer-8fztun > *, .framer-fZGiN .framer-1jh1w62 > *, .framer-fZGiN .framer-1irkar3 > *, .framer-fZGiN .framer-16s0fki > *, .framer-fZGiN .framer-1vx0lz > *, .framer-fZGiN .framer-4gbhqv > *, .framer-fZGiN .framer-1v58xir > *, .framer-fZGiN .framer-1hyb1tl > *, .framer-fZGiN .framer-1johctt > *, .framer-fZGiN .framer-1gn0y5y > *, .framer-fZGiN .framer-b8t3uh > *, .framer-fZGiN .framer-rzxmzn > *, .framer-fZGiN .framer-1qrcm95 > *, .framer-fZGiN .framer-j9i6l1 > *, .framer-fZGiN .framer-29bhl0 > *, .framer-fZGiN .framer-13j6jed > *, .framer-fZGiN .framer-wvu5bo > *, .framer-fZGiN .framer-1x5m38t > *, .framer-fZGiN .framer-15qw5x9 > *, .framer-fZGiN .framer-1knksg4 > *, .framer-fZGiN .framer-11lztl5 > *, .framer-fZGiN .framer-1i7a1kv > *, .framer-fZGiN .framer-11isacp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fZGiN .framer-91m70h > :first-child, .framer-fZGiN .framer-hmutd4 > :first-child, .framer-fZGiN .framer-7pnf9b > :first-child, .framer-fZGiN .framer-1n496j4 > :first-child, .framer-fZGiN .framer-w6iacc > :first-child, .framer-fZGiN .framer-1fb3ono > :first-child, .framer-fZGiN .framer-16tabpd > :first-child, .framer-fZGiN .framer-1w42zxh > :first-child, .framer-fZGiN .framer-zrldwn > :first-child, .framer-fZGiN .framer-put52g > :first-child, .framer-fZGiN .framer-jarj1g > :first-child, .framer-fZGiN .framer-1y5nfv9 > :first-child, .framer-fZGiN .framer-ge2xqx > :first-child, .framer-fZGiN .framer-g3bwdc > :first-child, .framer-fZGiN .framer-mdj2ks > :first-child, .framer-fZGiN .framer-8fztun > :first-child, .framer-fZGiN .framer-1jh1w62 > :first-child, .framer-fZGiN .framer-1irkar3 > :first-child, .framer-fZGiN .framer-16s0fki > :first-child, .framer-fZGiN .framer-1vx0lz > :first-child, .framer-fZGiN .framer-4gbhqv > :first-child, .framer-fZGiN .framer-1v58xir > :first-child, .framer-fZGiN .framer-sy6g0e > :first-child, .framer-fZGiN .framer-1hyb1tl > :first-child, .framer-fZGiN .framer-1johctt > :first-child, .framer-fZGiN .framer-1gn0y5y > :first-child, .framer-fZGiN .framer-b8t3uh > :first-child, .framer-fZGiN .framer-rzxmzn > :first-child, .framer-fZGiN .framer-1qrcm95 > :first-child, .framer-fZGiN .framer-j9i6l1 > :first-child, .framer-fZGiN .framer-29bhl0 > :first-child, .framer-fZGiN .framer-13j6jed > :first-child, .framer-fZGiN .framer-wvu5bo > :first-child, .framer-fZGiN .framer-1x5m38t > :first-child, .framer-fZGiN .framer-15qw5x9 > :first-child, .framer-fZGiN .framer-12r0up8 > :first-child, .framer-fZGiN .framer-16f55qv > :first-child, .framer-fZGiN .framer-1knksg4 > :first-child, .framer-fZGiN .framer-11lztl5 > :first-child, .framer-fZGiN .framer-5aglq6 > :first-child, .framer-fZGiN .framer-1i7a1kv > :first-child, .framer-fZGiN .framer-1lyj6er > :first-child, .framer-fZGiN .framer-11isacp > :first-child { margin-left: 0px; } .framer-fZGiN .framer-91m70h > :last-child, .framer-fZGiN .framer-hmutd4 > :last-child, .framer-fZGiN .framer-7pnf9b > :last-child, .framer-fZGiN .framer-1n496j4 > :last-child, .framer-fZGiN .framer-w6iacc > :last-child, .framer-fZGiN .framer-1fb3ono > :last-child, .framer-fZGiN .framer-16tabpd > :last-child, .framer-fZGiN .framer-1w42zxh > :last-child, .framer-fZGiN .framer-zrldwn > :last-child, .framer-fZGiN .framer-put52g > :last-child, .framer-fZGiN .framer-jarj1g > :last-child, .framer-fZGiN .framer-1y5nfv9 > :last-child, .framer-fZGiN .framer-ge2xqx > :last-child, .framer-fZGiN .framer-g3bwdc > :last-child, .framer-fZGiN .framer-mdj2ks > :last-child, .framer-fZGiN .framer-8fztun > :last-child, .framer-fZGiN .framer-1jh1w62 > :last-child, .framer-fZGiN .framer-1irkar3 > :last-child, .framer-fZGiN .framer-16s0fki > :last-child, .framer-fZGiN .framer-1vx0lz > :last-child, .framer-fZGiN .framer-4gbhqv > :last-child, .framer-fZGiN .framer-1v58xir > :last-child, .framer-fZGiN .framer-sy6g0e > :last-child, .framer-fZGiN .framer-1hyb1tl > :last-child, .framer-fZGiN .framer-1johctt > :last-child, .framer-fZGiN .framer-1gn0y5y > :last-child, .framer-fZGiN .framer-b8t3uh > :last-child, .framer-fZGiN .framer-rzxmzn > :last-child, .framer-fZGiN .framer-1qrcm95 > :last-child, .framer-fZGiN .framer-j9i6l1 > :last-child, .framer-fZGiN .framer-29bhl0 > :last-child, .framer-fZGiN .framer-13j6jed > :last-child, .framer-fZGiN .framer-wvu5bo > :last-child, .framer-fZGiN .framer-1x5m38t > :last-child, .framer-fZGiN .framer-15qw5x9 > :last-child, .framer-fZGiN .framer-12r0up8 > :last-child, .framer-fZGiN .framer-16f55qv > :last-child, .framer-fZGiN .framer-1knksg4 > :last-child, .framer-fZGiN .framer-11lztl5 > :last-child, .framer-fZGiN .framer-5aglq6 > :last-child, .framer-fZGiN .framer-1i7a1kv > :last-child, .framer-fZGiN .framer-1lyj6er > :last-child, .framer-fZGiN .framer-11isacp > :last-child { margin-right: 0px; } .framer-fZGiN .framer-1678g2f > *, .framer-fZGiN .framer-17be0vk > *, .framer-fZGiN .framer-1c7gbzw > *, .framer-fZGiN .framer-puim10 > *, .framer-fZGiN .framer-19pglz2 > *, .framer-fZGiN .framer-1ixb1jk > *, .framer-fZGiN .framer-riabvg > *, .framer-fZGiN .framer-15j0s4v > *, .framer-fZGiN .framer-13a6bxl > *, .framer-fZGiN .framer-13kksr3 > *, .framer-fZGiN .framer-193swex > *, .framer-fZGiN .framer-sh9qf3 > *, .framer-fZGiN .framer-12mvfug > *, .framer-fZGiN .framer-7m3y3c > *, .framer-fZGiN .framer-1axtbk3 > *, .framer-fZGiN .framer-155ctnl > *, .framer-fZGiN .framer-1klptju > *, .framer-fZGiN .framer-sv86gz > *, .framer-fZGiN .framer-y2ch32 > *, .framer-fZGiN .framer-kw4r26 > *, .framer-fZGiN .framer-1iantt4 > *, .framer-fZGiN .framer-1n0todc > *, .framer-fZGiN .framer-10kr5lp > *, .framer-fZGiN .framer-k755jv > *, .framer-fZGiN .framer-1it1y2c > *, .framer-fZGiN .framer-1t5t0w7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fZGiN .framer-hmutd4 > *, .framer-fZGiN .framer-w6iacc > *, .framer-fZGiN .framer-16tabpd > *, .framer-fZGiN .framer-16f55qv > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-fZGiN .framer-vbqvwv > *, .framer-fZGiN .framer-yaibih > *, .framer-fZGiN .framer-uhen1l > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-fZGiN .framer-1w42zxh > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-fZGiN .framer-sy6g0e > *, .framer-fZGiN .framer-12r0up8 > *, .framer-fZGiN .framer-1lyj6er > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fZGiN .framer-c0iv1t > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-fZGiN .framer-5aglq6 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-fZGiN .framer-1nxnb4f > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,...sharedStyle15.css,...sharedStyle16.css,...sharedStyle17.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-fZGiN.framer-ufqhl9 { padding: 0px 50px 0px 50px; width: 810px; } .framer-fZGiN .framer-1678g2f { height: 1080px; left: calc(50.00000000000002% - 100% / 2); min-height: unset; min-width: unset; top: 125px; transform: unset; width: 100%; } .framer-fZGiN .framer-hmutd4 { gap: 20px; } .framer-fZGiN .framer-17be0vk { padding: 150px 0px 50px 0px; } .framer-fZGiN .framer-7pnf9b { padding: 10px 0px 50px 0px; } .framer-fZGiN .framer-1kjtr6y { height: var(--framer-aspect-ratio-supported, 481px); } .framer-fZGiN .framer-vbqvwv, .framer-fZGiN .framer-uhen1l { padding: 50px 0px 50px 0px; } .framer-fZGiN .framer-w6iacc, .framer-fZGiN .framer-16tabpd, .framer-fZGiN .framer-1eros61, .framer-fZGiN .framer-o5rio8, .framer-fZGiN .framer-11lztl5, .framer-fZGiN .framer-1bct3kd, .framer-fZGiN .framer-p2fi2y { order: 0; } .framer-fZGiN .framer-138l0yu-container { height: var(--framer-aspect-ratio-supported, 50px); width: 179px; } .framer-fZGiN .framer-fhjatv-container { height: var(--framer-aspect-ratio-supported, 50px); width: 169px; } .framer-fZGiN .framer-yaibih { gap: 45px; padding: 0px 0px 550px 0px; } .framer-fZGiN .framer-cy1li7-container { height: var(--framer-aspect-ratio-supported, 400px); } .framer-fZGiN .framer-1fb3ono { padding: 10px 0px 10px 0px; } .framer-fZGiN .framer-qulhfh-container { height: var(--framer-aspect-ratio-supported, 40px); width: 143px; } .framer-fZGiN .framer-jsf172-container { height: var(--framer-aspect-ratio-supported, 40px); width: 135px; } .framer-fZGiN .framer-puim10 { height: 864px; } .framer-fZGiN .framer-1669emr-container { height: 55%; } .framer-fZGiN .framer-193swex { padding: 0px 0px 100px 0px; } .framer-fZGiN .framer-sy6g0e { gap: 75px; justify-content: flex-start; padding: 5px 0px 0px 0px; } .framer-fZGiN .framer-185n4ec { align-self: unset; flex: none; height: 121px; order: 2; width: 0px; } .framer-fZGiN .framer-sh9qf3 { height: var(--framer-aspect-ratio-supported, 81px); order: 1; width: 75px; } .framer-fZGiN .framer-15qw5x9 { padding: 100px 0px 0px 0px; } .framer-fZGiN .framer-12r0up8 { padding: 5px 0px 0px 0px; } .framer-fZGiN .framer-3oyhen, .framer-fZGiN .framer-11isacp { order: 1; } .framer-fZGiN .framer-92m1nl-container { height: 30px; width: 107px; } .framer-fZGiN .framer-1q2ywbz-container { height: 30px; width: 101px; } .framer-fZGiN .framer-1iantt4 { overflow: hidden; } .framer-fZGiN .framer-1a05zm-container { height: var(--framer-aspect-ratio-supported, 399px); order: 1; } .framer-fZGiN .framer-5aglq6 { gap: 60px; order: 2; } .framer-fZGiN .framer-1lyj6er { padding: 15px 0px 0px 0px; } .framer-fZGiN .framer-1nxnb4f { gap: 30px; } .framer-fZGiN .framer-e9s45g, .framer-fZGiN .framer-xz75ll { --framer-input-font-size: 12px; } .framer-fZGiN .framer-dzblz-container { height: 30px; width: 150px; } .framer-fZGiN .framer-1it1y2c { padding: 15px 0px 150px 0px; } .framer-fZGiN .framer-12b3xth-container { right: 2px; } .framer-fZGiN .framer-1h3g6fr-container { right: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fZGiN .framer-hmutd4, .framer-fZGiN .framer-yaibih, .framer-fZGiN .framer-sy6g0e, .framer-fZGiN .framer-5aglq6, .framer-fZGiN .framer-1nxnb4f { gap: 0px; } .framer-fZGiN .framer-hmutd4 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-fZGiN .framer-hmutd4 > :first-child, .framer-fZGiN .framer-sy6g0e > :first-child, .framer-fZGiN .framer-5aglq6 > :first-child { margin-left: 0px; } .framer-fZGiN .framer-hmutd4 > :last-child, .framer-fZGiN .framer-sy6g0e > :last-child, .framer-fZGiN .framer-5aglq6 > :last-child { margin-right: 0px; } .framer-fZGiN .framer-yaibih > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-fZGiN .framer-yaibih > :first-child, .framer-fZGiN .framer-1nxnb4f > :first-child { margin-top: 0px; } .framer-fZGiN .framer-yaibih > :last-child, .framer-fZGiN .framer-1nxnb4f > :last-child { margin-bottom: 0px; } .framer-fZGiN .framer-sy6g0e > * { margin: 0px; margin-left: calc(75px / 2); margin-right: calc(75px / 2); } .framer-fZGiN .framer-5aglq6 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-fZGiN .framer-1nxnb4f > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 809px) { .framer-fZGiN.framer-ufqhl9 { padding: 0px 20px 0px 20px; width: 390px; } .framer-fZGiN .framer-91m70h { top: 0px; } .framer-fZGiN .framer-10pmanp-container { height: 180px; } .framer-fZGiN .framer-1e3ubas { height: 15px; left: 20px; top: 20px; width: 37px; } .framer-fZGiN .framer-1678g2f { min-width: unset; top: 75px; width: 100%; } .framer-fZGiN .framer-hmutd4 { gap: 15px; padding: 25px 20px 0px 0px; } .framer-fZGiN .framer-17be0vk { padding: 150px 0px 0px 0px; } .framer-fZGiN .framer-7pnf9b { gap: 5px; padding: 0px 0px 25px 0px; } .framer-fZGiN .framer-1b0q5le { flex: 1 0 0px; order: 0; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-fZGiN .framer-1kjtr6y { height: var(--framer-aspect-ratio-supported, 296px); width: 50%; } .framer-fZGiN .framer-vbqvwv, .framer-fZGiN .framer-uhen1l { gap: 35px; justify-content: center; padding: 25px 0px 0px 0px; } .framer-fZGiN .framer-w6iacc, .framer-fZGiN .framer-16tabpd { gap: 10px; width: 100%; } .framer-fZGiN .framer-138l0yu-container { height: var(--framer-aspect-ratio-supported, 26px); width: 90px; } .framer-fZGiN .framer-fhjatv-container { height: var(--framer-aspect-ratio-supported, 26px); width: 85px; } .framer-fZGiN .framer-yaibih { align-content: center; align-items: center; gap: 15px; padding: 0px 0px 575px 0px; } .framer-fZGiN .framer-cy1li7-container, .framer-fZGiN .framer-1a05zm-container { height: var(--framer-aspect-ratio-supported, 197px); } .framer-fZGiN .framer-1fb3ono { gap: 5px; padding: 0px; } .framer-fZGiN .framer-1jmaim7 { flex: 1 0 0px; order: 0; width: 1px; } .framer-fZGiN .framer-qulhfh-container { height: var(--framer-aspect-ratio-supported, 35px); width: 125px; } .framer-fZGiN .framer-jsf172-container { height: var(--framer-aspect-ratio-supported, 35px); width: 118px; } .framer-fZGiN .framer-puim10 { gap: 0px; height: min-content; justify-content: flex-start; } .framer-fZGiN .framer-1w42zxh, .framer-fZGiN .framer-193swex, .framer-fZGiN .framer-4gbhqv, .framer-fZGiN .framer-15qw5x9 { padding: 0px; } .framer-fZGiN .framer-104gan3-container, .framer-fZGiN .framer-sxnpm8-container { height: var(--framer-aspect-ratio-supported, 25px); order: 0; width: 25px; } .framer-fZGiN .framer-porb7m, .framer-fZGiN .framer-13ryjkl { flex: 1 0 0px; order: 1; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-fZGiN .framer-1669emr-container { height: 442px; width: 165%; } .framer-fZGiN .framer-1kmkxff, .framer-fZGiN .framer-snmx7u, .framer-fZGiN .framer-bhwqry, .framer-fZGiN .framer-12modnx { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-fZGiN .framer-sy6g0e { flex-direction: column; gap: 5px; padding: 5px 0px 0px 0px; } .framer-fZGiN .framer-1eros61 { height: 80px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-fZGiN .framer-185n4ec, .framer-fZGiN .framer-3oyhen { align-self: unset; flex: none; height: 0px; width: 100%; } .framer-fZGiN .framer-sh9qf3 { height: var(--framer-aspect-ratio-supported, 54px); width: 50px; } .framer-fZGiN .framer-12mvfug { gap: 50px; } .framer-fZGiN .framer-c0iv1t { gap: 0px; height: 526px; padding: 50px 0px 0px 0px; } .framer-fZGiN .framer-1hyb1tl { order: 0; } .framer-fZGiN .framer-1abkldv-container { height: 110%; order: 1; width: 150%; } .framer-fZGiN .framer-y2ch32 { gap: 0px; padding: 0px 0px 50px 0px; } .framer-fZGiN .framer-kw4r26 { flex-direction: row; } .framer-fZGiN .framer-12r0up8 { flex: 1 0 0px; flex-direction: column; order: 1; padding: 5px 0px 0px 0px; width: 1px; } .framer-fZGiN .framer-o5rio8 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-fZGiN .framer-mqh6gq-container { height: 25px; width: 90px; } .framer-fZGiN .framer-1p7ptvt-container { height: 25px; width: 85px; } .framer-fZGiN .framer-1iantt4 { padding: 50px 0px 50px 0px; } .framer-fZGiN .framer-11lztl5 { padding: 0px 0px 10px 0px; } .framer-fZGiN .framer-5aglq6 { gap: 35px; padding: 24px 0px 24px 0px; } .framer-fZGiN .framer-1i7a1kv { padding: 50px 0px 0px 0px; } .framer-fZGiN .framer-1imclnh-container { height: var(--framer-aspect-ratio-supported, 25px); width: 25px; } .framer-fZGiN .framer-1lyj6er { flex-direction: column; padding: 0px; } .framer-fZGiN .framer-1bct3kd { flex: none; width: 100%; } .framer-fZGiN .framer-1nxnb4f { gap: 15px; padding: 25px 20px 20px 20px; } .framer-fZGiN .framer-e9s45g, .framer-fZGiN .framer-xz75ll { --framer-input-border-radius-bottom-left: 5px; --framer-input-border-radius-bottom-right: 5px; --framer-input-border-radius-top-left: 5px; --framer-input-border-radius-top-right: 5px; --framer-input-font-size: 10px; } .framer-fZGiN .framer-dzblz-container { height: 25px; width: 120px; } .framer-fZGiN .framer-1it1y2c { padding: 25px 0px 100px 0px; } .framer-fZGiN .framer-11isacp { padding: 25px 0px 0px 0px; } .framer-fZGiN .framer-1iyzkvh { height: var(--framer-aspect-ratio-supported, 26px); order: 0; width: 100px; } .framer-fZGiN .framer-1t5t0w7 { gap: 5px; order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fZGiN .framer-hmutd4, .framer-fZGiN .framer-7pnf9b, .framer-fZGiN .framer-vbqvwv, .framer-fZGiN .framer-w6iacc, .framer-fZGiN .framer-yaibih, .framer-fZGiN .framer-1fb3ono, .framer-fZGiN .framer-uhen1l, .framer-fZGiN .framer-16tabpd, .framer-fZGiN .framer-puim10, .framer-fZGiN .framer-sy6g0e, .framer-fZGiN .framer-12mvfug, .framer-fZGiN .framer-c0iv1t, .framer-fZGiN .framer-y2ch32, .framer-fZGiN .framer-kw4r26, .framer-fZGiN .framer-12r0up8, .framer-fZGiN .framer-5aglq6, .framer-fZGiN .framer-1lyj6er, .framer-fZGiN .framer-1nxnb4f, .framer-fZGiN .framer-1t5t0w7 { gap: 0px; } .framer-fZGiN .framer-hmutd4 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-fZGiN .framer-hmutd4 > :first-child, .framer-fZGiN .framer-7pnf9b > :first-child, .framer-fZGiN .framer-w6iacc > :first-child, .framer-fZGiN .framer-1fb3ono > :first-child, .framer-fZGiN .framer-16tabpd > :first-child, .framer-fZGiN .framer-kw4r26 > :first-child, .framer-fZGiN .framer-5aglq6 > :first-child { margin-left: 0px; } .framer-fZGiN .framer-hmutd4 > :last-child, .framer-fZGiN .framer-7pnf9b > :last-child, .framer-fZGiN .framer-w6iacc > :last-child, .framer-fZGiN .framer-1fb3ono > :last-child, .framer-fZGiN .framer-16tabpd > :last-child, .framer-fZGiN .framer-kw4r26 > :last-child, .framer-fZGiN .framer-5aglq6 > :last-child { margin-right: 0px; } .framer-fZGiN .framer-7pnf9b > *, .framer-fZGiN .framer-1fb3ono > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-fZGiN .framer-vbqvwv > *, .framer-fZGiN .framer-uhen1l > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-fZGiN .framer-vbqvwv > :first-child, .framer-fZGiN .framer-yaibih > :first-child, .framer-fZGiN .framer-uhen1l > :first-child, .framer-fZGiN .framer-puim10 > :first-child, .framer-fZGiN .framer-sy6g0e > :first-child, .framer-fZGiN .framer-12mvfug > :first-child, .framer-fZGiN .framer-c0iv1t > :first-child, .framer-fZGiN .framer-y2ch32 > :first-child, .framer-fZGiN .framer-12r0up8 > :first-child, .framer-fZGiN .framer-1lyj6er > :first-child, .framer-fZGiN .framer-1nxnb4f > :first-child, .framer-fZGiN .framer-1t5t0w7 > :first-child { margin-top: 0px; } .framer-fZGiN .framer-vbqvwv > :last-child, .framer-fZGiN .framer-yaibih > :last-child, .framer-fZGiN .framer-uhen1l > :last-child, .framer-fZGiN .framer-puim10 > :last-child, .framer-fZGiN .framer-sy6g0e > :last-child, .framer-fZGiN .framer-12mvfug > :last-child, .framer-fZGiN .framer-c0iv1t > :last-child, .framer-fZGiN .framer-y2ch32 > :last-child, .framer-fZGiN .framer-12r0up8 > :last-child, .framer-fZGiN .framer-1lyj6er > :last-child, .framer-fZGiN .framer-1nxnb4f > :last-child, .framer-fZGiN .framer-1t5t0w7 > :last-child { margin-bottom: 0px; } .framer-fZGiN .framer-w6iacc > *, .framer-fZGiN .framer-16tabpd > *, .framer-fZGiN .framer-kw4r26 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fZGiN .framer-yaibih > *, .framer-fZGiN .framer-1nxnb4f > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-fZGiN .framer-puim10 > *, .framer-fZGiN .framer-c0iv1t > *, .framer-fZGiN .framer-y2ch32 > *, .framer-fZGiN .framer-12r0up8 > *, .framer-fZGiN .framer-1lyj6er > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fZGiN .framer-sy6g0e > *, .framer-fZGiN .framer-1t5t0w7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-fZGiN .framer-12mvfug > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-fZGiN .framer-5aglq6 > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7575.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wRgAd8giw\":{\"layout\":[\"fixed\",\"auto\"]},\"nHg9NmTm_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"peIHpToPW\":{\"pattern\":\":peIHpToPW\",\"name\":\"sovellus\"},\"sSDg6E_Iu\":{\"pattern\":\":sSDg6E_Iu\",\"name\":\"sinulle\"},\"FTEgVjVi7\":{\"pattern\":\":FTEgVjVi7\",\"name\":\"t\u00E4m\u00E4-on-eventz-today\"},\"OB6UKm8MM\":{\"pattern\":\":OB6UKm8MM\",\"name\":\"voimmeko-auttaa?\"}}\n * @framerResponsiveScreen\n */const FramerkNdqhbAmw=withCSS(Component,css,\"framer-fZGiN\");export default FramerkNdqhbAmw;FramerkNdqhbAmw.displayName=\"KEYWORDS\";FramerkNdqhbAmw.defaultProps={height:7575.5,width:1200};addFonts(FramerkNdqhbAmw,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{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\"}]},...VideoFonts,...ParticlesFonts,...KirjauduFonts,...LocaleSelectorFonts,...APPSTOREFonts,...GOOGLE_PLAYFonts,...YouTubeFonts,...FramerIconFonts,...CarouselFonts,...YouTube1Fonts,...FacebookFonts,...Button2Fonts,...NAV_ICONFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...getFontsFromSharedStyle(sharedStyle15.fonts),...getFontsFromSharedStyle(sharedStyle16.fonts),...getFontsFromSharedStyle(sharedStyle17.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkNdqhbAmw\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"peIHpToPW\\\":{\\\"pattern\\\":\\\":peIHpToPW\\\",\\\"name\\\":\\\"sovellus\\\"},\\\"sSDg6E_Iu\\\":{\\\"pattern\\\":\\\":sSDg6E_Iu\\\",\\\"name\\\":\\\"sinulle\\\"},\\\"FTEgVjVi7\\\":{\\\"pattern\\\":\\\":FTEgVjVi7\\\",\\\"name\\\":\\\"t\u00E4m\u00E4-on-eventz-today\\\"},\\\"OB6UKm8MM\\\":{\\\"pattern\\\":\\\":OB6UKm8MM\\\",\\\"name\\\":\\\"voimmeko-auttaa?\\\"}}\",\"framerIntrinsicHeight\":\"7575.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wRgAd8giw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nHg9NmTm_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"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", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "VideoFonts", "getFonts", "Video", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "ImageWithOptimizedAppearEffect", "Image2", "MotionDivWithFX", "withFX", "motion", "ParticlesFonts", "ParticleWrapper", "KirjauduFonts", "OQoLTR64w_default", "LocaleSelectorFonts", "LocaleSelector_default", "RichTextWithOptimizedAppearEffect", "RichText2", "APPSTOREFonts", "dqe8Y5pYp_default", "GOOGLE_PLAYFonts", "KetugJDoK_default", "MotionDivWithOptimizedAppearEffect", "YouTubeFonts", "Youtube", "FramerIconFonts", "FramerIcon", "CarouselFonts", "Carousel", "ContainerWithFX", "YouTube1Fonts", "FacebookFonts", "ReIVLQq_Z_default", "Button2Fonts", "dI0tfENDl_default", "NAV_ICONFonts", "MLLepqIsI_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "toResponsiveImage", "value", "transition6", "animation9", "animation10", "transition7", "animation11", "animation12", "transition8", "animation13", "animation14", "transition9", "textEffect", "textEffect1", "transition10", "animation15", "animation16", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "tE7zRAuZ5_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "JiC1DQ5F0", "xGgBlyktb", "XhJ3_6ZFI", "PBLxFtksv", "bpk5I470c", "UTSKt7PHR", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "ref2", "isDisplayed1", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLocalizedValue", "getLoadingLazyAtYPosition", "x", "FormContainer", "formState", "l", "FormPlainTextInput2", "Link", "css", "FramerkNdqhbAmw", "withCSS", "kNdqhbAmw_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
