{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js", "ssg:https://framerusercontent.com/modules/P4xNUy8ioDlC6TM59YmC/XPBPaOoMXvU6Y5B7217E/eWukn0dns.js", "ssg:https://framerusercontent.com/modules/SveoO8M3EHent5YGT7gY/zLml3FvoiCzRL9S60OMR/unHGeylaZ.js", "ssg:https://framerusercontent.com/modules/cjhEBThTKcfL00nHAkhr/1dCDNPD0Jq6AE5FzIia0/ZwOz5BOlK.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (3874f97)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Pangram Sans Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Pangram Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/DEt2l9bhEypkzQ5b7cdVI6JTc.woff2\"}]}];export const css=[\".framer-Mk4JJ .framer-styles-preset-12r2385:not(.rich-text-wrapper), .framer-Mk4JJ .framer-styles-preset-12r2385.rich-text-wrapper h6 { --framer-font-family: \\\"PP Pangram Sans Medium\\\", \\\"PP Pangram Sans Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-fad30637-b55a-4e98-8592-9ee54a658356, rgba(22, 17, 15, 0.6)); --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: 800px) { .framer-Mk4JJ .framer-styles-preset-12r2385:not(.rich-text-wrapper), .framer-Mk4JJ .framer-styles-preset-12r2385.rich-text-wrapper h6 { --framer-font-family: \\\"PP Pangram Sans Medium\\\", \\\"PP Pangram Sans Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-fad30637-b55a-4e98-8592-9ee54a658356, rgba(22, 17, 15, 0.6)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 799px) and (min-width: 0px) { .framer-Mk4JJ .framer-styles-preset-12r2385:not(.rich-text-wrapper), .framer-Mk4JJ .framer-styles-preset-12r2385.rich-text-wrapper h6 { --framer-font-family: \\\"PP Pangram Sans Medium\\\", \\\"PP Pangram Sans Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-fad30637-b55a-4e98-8592-9ee54a658356, rgba(22, 17, 15, 0.6)); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-Mk4JJ\";\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 (5753dbc)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PP Pangram Sans Semibold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PP Pangram Sans Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/BKBU7l19q7FJoA48cVvh3950LM.woff2\"}]}];export const css=[\".framer-5r52m .framer-styles-preset-1s3gc4j:not(.rich-text-wrapper), .framer-5r52m .framer-styles-preset-1s3gc4j.rich-text-wrapper h4 { --framer-font-family: \\\"PP Pangram Sans Semibold\\\", \\\"PP Pangram Sans Semibold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --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: 800px) { .framer-5r52m .framer-styles-preset-1s3gc4j:not(.rich-text-wrapper), .framer-5r52m .framer-styles-preset-1s3gc4j.rich-text-wrapper h4 { --framer-font-family: \\\"PP Pangram Sans Semibold\\\", \\\"PP Pangram Sans Semibold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 799px) and (min-width: 0px) { .framer-5r52m .framer-styles-preset-1s3gc4j:not(.rich-text-wrapper), .framer-5r52m .framer-styles-preset-1s3gc4j.rich-text-wrapper h4 { --framer-font-family: \\\"PP Pangram Sans Semibold\\\", \\\"PP Pangram Sans Semibold 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-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-5r52m\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link as Link1,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js\";import Logo24 from\"#framer/local/canvasComponent/alMqgwReV/alMqgwReV.js\";import FooterMain from\"#framer/local/canvasComponent/At4TBMcoY/At4TBMcoY.js\";import Header from\"#framer/local/canvasComponent/ER4rUlkYO/ER4rUlkYO.js\";import Link from\"#framer/local/canvasComponent/lgcna3zUw/lgcna3zUw.js\";import FooterMini from\"#framer/local/canvasComponent/PnJ2iKhVQ/PnJ2iKhVQ.js\";import IconsPlayButton from\"#framer/local/canvasComponent/Tv3Hono_F/Tv3Hono_F.js\";import IconsClose from\"#framer/local/canvasComponent/z9wq6FULa/z9wq6FULa.js\";import SocialBtn from\"#framer/local/canvasComponent/ZW7mx4t7E/ZW7mx4t7E.js\";import Cases from\"#framer/local/collection/NaTP4fCCs/NaTP4fCCs.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle from\"#framer/local/css/CqLrGKCEL/CqLrGKCEL.js\";import*as sharedStyle3 from\"#framer/local/css/DkP3ohgXl/DkP3ohgXl.js\";import*as sharedStyle13 from\"#framer/local/css/DyIEt1su1/DyIEt1su1.js\";import*as sharedStyle15 from\"#framer/local/css/EDF2TlXgr/EDF2TlXgr.js\";import*as sharedStyle8 from\"#framer/local/css/eWukn0dns/eWukn0dns.js\";import*as sharedStyle16 from\"#framer/local/css/G01cUX9wU/G01cUX9wU.js\";import*as sharedStyle14 from\"#framer/local/css/GjiuNQmRv/GjiuNQmRv.js\";import*as sharedStyle2 from\"#framer/local/css/gV74ViGo9/gV74ViGo9.js\";import*as sharedStyle7 from\"#framer/local/css/gx2SSwZK4/gx2SSwZK4.js\";import*as sharedStyle9 from\"#framer/local/css/HPL7s5ZPy/HPL7s5ZPy.js\";import*as sharedStyle11 from\"#framer/local/css/HRD8rzcb0/HRD8rzcb0.js\";import*as sharedStyle4 from\"#framer/local/css/JdhHOjoSy/JdhHOjoSy.js\";import*as sharedStyle17 from\"#framer/local/css/ndrRT95pv/ndrRT95pv.js\";import*as sharedStyle12 from\"#framer/local/css/oApUvfot2/oApUvfot2.js\";import*as sharedStyle5 from\"#framer/local/css/OCzsHEYxs/OCzsHEYxs.js\";import*as sharedStyle10 from\"#framer/local/css/q2W804j_r/q2W804j_r.js\";import*as sharedStyle1 from\"#framer/local/css/STI0Btk4a/STI0Btk4a.js\";import*as sharedStyle6 from\"#framer/local/css/unHGeylaZ/unHGeylaZ.js\";import metadataProvider from\"#framer/local/webPageMetadata/ZwOz5BOlK/ZwOz5BOlK.js\";const HeaderFonts=getFonts(Header);const LinkFonts=getFonts(Link);const VideoFonts=getFonts(Video);const Video1Fonts=getFonts(Video1);const SocialBtnFonts=getFonts(SocialBtn);const FooterMainFonts=getFonts(FooterMain);const IconsPlayButtonFonts=getFonts(IconsPlayButton);const MotionAWithFX=withFX(motion.a);const FooterMiniFonts=getFonts(FooterMini);const Logo24Fonts=getFonts(Logo24);const IconsCloseFonts=getFonts(IconsClose);const MotionDivWithFX=withFX(motion.div);const breakpoints={eArFezkXj:\"(max-width: 799px)\",fsrl3YULO:\"(min-width: 800px) and (max-width: 1199px)\",J1j5wppOd:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-pB6YR\";const variantClassNames={eArFezkXj:\"framer-v-1qnelfq\",fsrl3YULO:\"framer-v-lygqkh\",J1j5wppOd:\"framer-v-v5psqm\"};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition1={damping:40,delay:0,mass:.1,stiffness:300,type:\"spring\"};const transition2={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:40};const transition3={damping:30,delay:0,mass:1.5,stiffness:200,type:\"spring\"};const animation2={boxShadow:\"0px 56px 28px 4px rgba(22, 17, 15, 0.04)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-6};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition4={damping:38,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:500,x:0,y:-150};const transition5={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:80};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"J1j5wppOd\",Phone:\"eArFezkXj\",Tablet:\"fsrl3YULO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"J1j5wppOd\"};};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:\"ZwOz5BOlK\",data:Cases,type:\"Collection\"},select:[{collection:\"ZwOz5BOlK\",name:\"V3dcfXVBm\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"tdb3P80AB\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"Zx0137H17\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"rt2Po87FH\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"ZNr5fowUH\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"gM6iBnEa5\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"iLOrp2d5_\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"JxRPBBHYH\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"eeHbDGhm0\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"BwXkNJZPz\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"U_xj2GHNK\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"bUUcqc1kP\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"xvCvqhRRM\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"eFeyH9OBO\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"wERnAkzrk\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"N9ceNfPhw\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"lfUOMgGOi\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"DgB3OLjyD\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"Goc2O05sY\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"iBxyJp9W7\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"LWj3zbbAm\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"J_4FbIuBs\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"DNh2Jfomu\",type:\"Identifier\"},{collection:\"ZwOz5BOlK\",name:\"lHA5XO_kc\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"ZwOz5BOlK\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,iLOrp2d5_=getFromCurrentRouteData(\"iLOrp2d5_\"),JxRPBBHYH=getFromCurrentRouteData(\"JxRPBBHYH\")??\"\",eeHbDGhm0=getFromCurrentRouteData(\"eeHbDGhm0\")??\"\",U_xj2GHNK=getFromCurrentRouteData(\"U_xj2GHNK\")??\"\",bUUcqc1kP=getFromCurrentRouteData(\"bUUcqc1kP\"),xvCvqhRRM=getFromCurrentRouteData(\"xvCvqhRRM\"),eFeyH9OBO=getFromCurrentRouteData(\"eFeyH9OBO\"),wERnAkzrk=getFromCurrentRouteData(\"wERnAkzrk\")??\"\",BwXkNJZPz=getFromCurrentRouteData(\"BwXkNJZPz\"),N9ceNfPhw=getFromCurrentRouteData(\"N9ceNfPhw\"),lfUOMgGOi=getFromCurrentRouteData(\"lfUOMgGOi\"),DgB3OLjyD=getFromCurrentRouteData(\"DgB3OLjyD\")??\"\",Goc2O05sY=getFromCurrentRouteData(\"Goc2O05sY\")??\"\",iBxyJp9W7=getFromCurrentRouteData(\"iBxyJp9W7\")??\"\",J_4FbIuBs=getFromCurrentRouteData(\"J_4FbIuBs\"),LWj3zbbAm=getFromCurrentRouteData(\"LWj3zbbAm\")??\"\",DNh2Jfomu=getFromCurrentRouteData(\"DNh2Jfomu\")??\"\",lHA5XO_kc=getFromCurrentRouteData(\"lHA5XO_kc\")??\"\",ZNr5fowUH=getFromCurrentRouteData(\"ZNr5fowUH\"),tdb3P80AB=getFromCurrentRouteData(\"tdb3P80AB\")??\"\",rt2Po87FH=getFromCurrentRouteData(\"rt2Po87FH\")??\"\",Zx0137H17=getFromCurrentRouteData(\"Zx0137H17\")??\"\",V3dcfXVBmMD_Xwrgmn,a7kyDAweDMD_Xwrgmn,N9GAqGVbqMD_Xwrgmn,ZNr5fowUHMD_Xwrgmn,sd8UAbcjvMD_Xwrgmn,c05g6FCumMD_Xwrgmn,LowG0OpggMD_Xwrgmn,ax81athpGMD_Xwrgmn,LWj3zbbAmMD_Xwrgmn,DNh2JfomuMD_Xwrgmn,idMD_Xwrgmn,V3dcfXVBm=getFromCurrentRouteData(\"V3dcfXVBm\")??\"\",...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const t_vHtPzFJ1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});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);const router=useRouter();const activeLocaleCode=useLocaleCode();const textContent=toDateString(iLOrp2d5_,{dateStyle:\"long\",locale:\"ru-RU\"},activeLocaleCode);const visible=isSet(eeHbDGhm0);const isDisplayed=value=>{if(!isBrowser())return true;if(baseVariant===\"eArFezkXj\")return true;return value;};const visible1=isSet(U_xj2GHNK);const visible2=isSet(xvCvqhRRM);const elementId=useRouteElementId(\"BQ88foNId\");const ref1=React.useRef(null);const visible3=isSet(wERnAkzrk);const elementId1=useRouteElementId(\"HL4lpLdtG\");const ref2=React.useRef(null);const visible4=isSet(BwXkNJZPz);const elementId2=useRouteElementId(\"FTlBb_HVx\");const ref3=React.useRef(null);const visible5=isSet(N9ceNfPhw);const visible6=isSet(DgB3OLjyD);const elementId3=useRouteElementId(\"AojYY5159\");const ref4=React.useRef(null);const visible7=isSet(Goc2O05sY);const visible8=isSet(iBxyJp9W7);const visible9=isSet(lHA5XO_kc);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"eArFezkXj\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"J1j5wppOd\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f2eff57c-9625-4a24-9bf8-7f019593915f, rgb(244, 241, 239)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-v5psqm\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11m3epf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r9hefg-container\",nodeId:\"K8y6r4kDe\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{variant:\"wyBZjBlRd\"}},children:/*#__PURE__*/_jsx(Header,{DrwvSEru_:\"\u0440\u0435\u0448\u0435\u043D\u0438\u044F\",EZIJMGkWx:\"rgba(22, 17, 15, 0)\",height:\"100%\",HO_9xlHv2:true,hTDgdtvsj:\"\u043F\u0440\u043E\u0434\u0443\u043A\u0442\u044B\",id:\"K8y6r4kDe\",j8Msa3ywZ:\"\u0436\u0443\u0440\u043D\u0430\u043B\",JoByVMlA8:\"\u043A\u0435\u0439\u0441\u044B\",Jz_Ymteso:\"\u0442\u0430\u0440\u0438\u0444\u044B\",layoutId:\"K8y6r4kDe\",o2624rAL6:true,peZxZMaEr:true,style:{width:\"100%\"},tHJMhKKk4:\"\u043A\u043B\u0438\u0435\u043D\u0442\u044B\",variant:\"kH6fDW_9o\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ix2bux\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n9yb5i\",\"data-framer-name\":\"Intro block\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wdmrFsh3H\"},implicitPathVariables:undefined},{href:{webPageId:\"wdmrFsh3H\"},implicitPathVariables:undefined},{href:{webPageId:\"wdmrFsh3H\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{y:(componentViewport?.y||0)+0+0+0+56+24+0+0+-264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+0+0+120+0+0+-12,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19zsx0j-container\",\"data-framer-name\":\"\u041A\",name:\"\u041A\",nodeId:\"oQNScgjHd\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{F1Hadfqlx:resolvedLinks[1]},fsrl3YULO:{F1Hadfqlx:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Link,{c130ArVls:false,F1Hadfqlx:resolvedLinks[0],gCn4mXTQI:4,height:\"100%\",id:\"oQNScgjHd\",IjlS6TQ5d:\"zR6lynTT6\",kpvtCGS2x:\"\u0432\u0441\u0435 \u043A\u0435\u0439\u0441\u044B\",layoutId:\"oQNScgjHd\",name:\"\u041A\",rb7Al470H:8,UrL4rqCN6:true,variant:\"Mtesg6tD_\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12n1szh\",\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qmtsfr\",\"data-styles-preset\":\"CqLrGKCEL\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"5 \u0444\u0435\u0432\u0440\u0430\u043B\u044F 2025 \u0433.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qmtsfr\",\"data-styles-preset\":\"CqLrGKCEL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"5 \u0444\u0435\u0432\u0440\u0430\u043B\u044F 2025 \u0433.\"})}),className:\"framer-161ss0h\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1fiify5\",\"data-styles-preset\":\"STI0Btk4a\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u0414\u043E\u043B\u0433\u0430\u044F \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0430 VS \u0433\u043E\u0442\u043E\u0432\u043E\u0435 \u0440\u0435\u0448\u0435\u043D\u0438\u0435. \u041A\u0430\u043A\\xa0\u0437\u0430\\xa01,5\\xa0\u043C\u0435\u0441\u044F\u0446\u0430 \u0434\u043E\u0441\u0442\u0430\u0432\u043A\u0430 Manga \u043D\u0430\u0447\u0430\u043B\u0430 \u043F\u043E\u043B\u0443\u0447\u0430\u0442\u044C +20% \u0433\u043E\u0441\u0442\u0435\u0439?  \u041A\u0430\u043A\\xa0\u0437\u0430 1,5 \u043C\u0435\u0441\u044F\u0446\u0430 \u0434\u043E\u0441\u0442\u0430\u0432\u043A\u0430 Manga \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1fiify5\",\"data-styles-preset\":\"STI0Btk4a\",children:\"\u0414\u043E\u043B\u0433\u0430\u044F \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u043A\u0430 VS \u0433\u043E\u0442\u043E\u0432\u043E\u0435 \u0440\u0435\u0448\u0435\u043D\u0438\u0435. \u041A\u0430\u043A\\xa0\u0437\u0430\\xa01,5\\xa0\u043C\u0435\u0441\u044F\u0446\u0430 \u0434\u043E\u0441\u0442\u0430\u0432\u043A\u0430 Manga \u043D\u0430\u0447\u0430\u043B\u0430 \u043F\u043E\u043B\u0443\u0447\u0430\u0442\u044C +20% \u0433\u043E\u0441\u0442\u0435\u0439?  \u041A\u0430\u043A\\xa0\u0437\u0430 1,5 \u043C\u0435\u0441\u044F\u0446\u0430 \u0434\u043E\u0441\u0442\u0430\u0432\u043A\u0430 Manga \"})}),className:\"framer-1k7cr4u\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:JxRPBBHYH,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed(visible)&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-axrv22\",\"data-styles-preset\":\"gV74ViGo9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"\u041A\u043E\u0433\u0434\u0430-\u0442\u043E \u0443 \u043D\u0438\u0445 \u0431\u044B\u043B\u043E \u0431\u043E\u043B\u044C\u0448\u0435 10 000 \u0437\u0430\u043A\u0430\u0437\u043E\u0432 \u0432 \u043C\u0435\u0441\u044F\u0446, \u043D\u043E \u043F\u043E\u0442\u043E\u043C \u043E\u043D\u0438 \u043F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u043B\u0438 \u0434\u0435\u043B\u0438\u0432\u0435\u0440\u0438-\u0431\u0443\u043C. \u041C\u044B \u043F\u043E\u043C\u043E\u0433\u043B\u0438 \u043D\u0430\u0432\u0435\u0440\u0441\u0442\u0430\u0442\u044C \u0443\u043F\u0443\u0449\u0435\u043D\u043D\u043E\u0435, \u0438 \u0442\u0435\u043F\u0435\u0440\u044C \u043E\u0431\u043E\u0440\u043E\u0442\u044B \u0434\u043E\u0441\u0442\u0430\u0432\u043A\u0438 Manga \u0441\u043D\u043E\u0432\u0430 \u0440\u0430\u0441\u0442\u0443\u0442! \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-axrv22\",\"data-styles-preset\":\"gV74ViGo9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"\u041A\u0430\u043A\\xa0\u0437\u0430\\xa01,5\\xa0\u043C\u0435\u0441\u044F\u0446\u0430 \u0437\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u043F\u0440\u0438\u043B\u043E\u0436\u0435\u043D\u0438\u0435 \u0438 \u0441\u0430\u0439\u0442 \u0438 \u0432\u044B\u0439\u0442\u0438 \u043D\u0430 \u0435\u0436\u0435\u043D\u0435\u0434\u0435\u043B\u044C\u043D\u044B\u0439 \u0440\u043E\u0441\u0442 \u0437\u0430\u043A\u0430\u0437\u043E\u0432 20%\"})}),className:cx(\"framer-1xz8fyw\",!visible&&\"hidden-v5psqm\",!visible&&\"hidden-lygqkh\"),\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:eeHbDGhm0,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-aojoum\",\"data-framer-name\":\"Video wrap\",children:isDisplayed(visible1)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-1gf9132-container\",!visible1&&\"hidden-v5psqm\",!visible1&&\"hidden-lygqkh\"),isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JfvGIlZ9N\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:true,height:\"100%\",id:\"JfvGIlZ9N\",isMixedBorderRadius:false,layoutId:\"JfvGIlZ9N\",loop:true,muted:false,objectFit:\"cover\",playing:false,poster:toImageSrc(bUUcqc1kP),posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/zqD4S58u8kFr1Mr2tyTu45RmfU.mp4\",srcType:\"URL\",srcUrl:U_xj2GHNK,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:50,width:\"100%\"})})})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+56+24+0+0+66),sizes:`min(${componentViewport?.width||\"100vw\"}, 1588px)`,...toResponsiveImage(eFeyH9OBO)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+0+0+412.8),sizes:`min(${componentViewport?.width||\"100vw\"}, 1588px)`,...toResponsiveImage(xvCvqhRRM)},className:\"framer-lmbb0q\",\"data-framer-name\":\"Banner\",id:elementId,ref:ref1})})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hma0dh\",\"data-framer-name\":\"Body1\",id:elementId1,ref:ref2,children:[visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12vd94e-container\",isModuleExternal:true,nodeId:\"Wvj7N4CHj\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:true,height:\"100%\",id:\"Wvj7N4CHj\",isMixedBorderRadius:false,layoutId:\"Wvj7N4CHj\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:toImageSrc(BwXkNJZPz),posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/yuBCxp6lmjVy313EAHINf5Tro.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:50,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"KVtqcZy3L\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wERnAkzrk,className:\"framer-9n4tl7\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],id:elementId2,ref:ref3,stylesPresetsClassNames:{a:\"framer-styles-preset-1s0cetd\",blockquote:\"framer-styles-preset-1g6eje3\",code:\"framer-styles-preset-16j3el9\",h1:\"framer-styles-preset-ujbepo\",h2:\"framer-styles-preset-w8udqt\",h3:\"framer-styles-preset-1blex0k\",h4:\"framer-styles-preset-1s3gc4j\",h5:\"framer-styles-preset-fd3fp2\",h6:\"framer-styles-preset-12r2385\",img:\"framer-styles-preset-1eshjtl\",p:\"framer-styles-preset-vu8njy\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ti6b7\",children:[visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+56+24+1404+0+-23.3),sizes:`min(${componentViewport?.width||\"100vw\"}, 1588px)`,...toResponsiveImage(lfUOMgGOi)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+1702.8+0+-23.3),sizes:`min(${componentViewport?.width||\"100vw\"}, 1588px)`,...toResponsiveImage(N9ceNfPhw)},className:\"framer-1lbyu5n\",\"data-framer-name\":\"Interface\"})}),visible6&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ouywb5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vu8njy\",\"data-styles-preset\":\"HPL7s5ZPy\",style:{\"--framer-text-color\":\"var(--token-fad30637-b55a-4e98-8592-9ee54a658356, rgba(22, 17, 15, 0.6))\"},children:\"\u0422\u0430\u043A \u0441\u0435\u0439\u0447\u0430\u0441 \u0432\u044B\u0433\u043B\u044F\u0434\u0438\u0442 \u0441\u0430\u0439\u0442 \u041C\u0430\u043D\u0433\u0438\"})}),className:\"framer-x8dr2x\",fonts:[\"Inter\"],text:DgB3OLjyD,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x25ks4\",\"data-framer-name\":\"Body2\",id:elementId3,ref:ref4,children:[visible7&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"KVtqcZy3L\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Goc2O05sY,className:\"framer-1aa0m7i\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1s0cetd\",blockquote:\"framer-styles-preset-1g6eje3\",h1:\"framer-styles-preset-ujbepo\",h2:\"framer-styles-preset-w8udqt\",h3:\"framer-styles-preset-1blex0k\",h4:\"framer-styles-preset-1s3gc4j\",h5:\"framer-styles-preset-fd3fp2\",h6:\"framer-styles-preset-12r2385\",img:\"framer-styles-preset-1eshjtl\",p:\"framer-styles-preset-vu8njy\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14s7wqx\",\"data-framer-name\":\"quote\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1a518yu\",\"data-styles-preset\":\"GjiuNQmRv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"\\xab\u041F\u0440\u043E\u0448\u043B\u044B\u0439 \u043F\u043E\u0434\u0440\u044F\u0434\u0447\u0438\u043A \u043E\u0431\u0435\u0449\u0430\u043B \u043D\u0430\u043C \u043C\u0435\u0436\u0433\u0430\u043B\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0443\u044E \u0440\u0430\u043A\u0435\u0442\u0443, \u043D\u043E \u0434\u043E \u0434\u0435\u043B\u0430 \u043D\u0438\u0447\u0435\u0433\u043E \u043D\u0435 \u0434\u043E\u0448\u043B\u043E. \u0410 \u0441\u043E \u0421\u0442\u0430\u0440\u0442\u0435\u0440\u043E\u043C \u043C\u044B \u0443\u0436\u0435 \u0441\u0435\u043B\u0438 \u0432\\xa0\u0441\u043A\u043E\u0440\u043E\u0441\u0442\u043D\u043E\u0439 \u0431\u0438\u0437\u043D\u0435\u0441-\u0434\u0436\u0435\u0442 \u0438 \u0434\u0432\u0438\u0436\u0435\u043C\u0441\u044F \u0432\\xa0\u0441\u0442\u043E\u0440\u043E\u043D\u0443 \u0440\u043E\u0441\u0442\u0430 \u043F\u0440\u0438\u0431\u044B\u043B\u0438\\xbb\"})}),className:\"framer-1uh0cqf\",\"data-framer-name\":\"\\xab\u041C\u044B \u043F\u043E\u0442\u0435\u0440\u044F\u043B\u0438 \u043E\u043A\u043E\u043B\u043E 2 \u043C\u043B\u043D \u0434\u043E\u043B\u043B\u0430\u0440\u043E\u0432 \u0437\u0430 \u0433\u043E\u0434 \u043F\u0440\u043E\u0441\u0442\u043E\u044F \u0434\u043E\u0441\u0442\u0430\u0432\u043A\u0438. \u041D\u0430\u0432\u0435\u0440\u0441\u0442\u044B\u0432\u0430\u0435\u043C \u0443\u043F\u0443\u0449\u0435\u043D\u043D\u043E\u0435, \u043D\u043E\\xa0\u0432\u0440\u0435\u043C\u044F \u0443\u0436\u0435 \u043D\u0435\\xa0\u0432\u0435\u0440\u043D\u0443\u0442\u044C. \u0416\u0430\u043B\u044C, \u0447\u0442\u043E \u043D\u0435\\xa0\u043F\u043E\u0437\u043D\u0430\u043A\u043E\u043C\u0438\u043B\u0438\u0441\u044C \u0441\u043E \u0421\u0442\u0430\u0440\u0442\u0435\u0440\u043E\u043C \u0433\u043E\u0434 \u043D\u0430\u0437\u0430\u0434\\xbb\",fonts:[\"Inter\"],text:iBxyJp9W7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4wq8lg\",\"data-framer-name\":\"Frame 733865357\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+56+24+1924+0+136+32+64.4+0+0),sizes:\"48px\",...toResponsiveImage(J_4FbIuBs)}},fsrl3YULO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+2182.8+0+160+56+68.4+0),sizes:\"48px\",...toResponsiveImage(J_4FbIuBs)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+2422.8+0+160+56+68.4+0),sizes:\"48px\",...toResponsiveImage(J_4FbIuBs)},className:\"framer-bit58d\",\"data-framer-name\":\"Frame 733865356\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3cb8g\",\"data-framer-name\":\"Frame 733865241\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3ohcx2\",\"data-styles-preset\":\"EDF2TlXgr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"\u041C\u0430\u043A\u0441\u0438\u043C \u0411\u043E\u0440\u0442\u043D\u0438\u043A\u043E\u0432\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3ohcx2\",\"data-styles-preset\":\"EDF2TlXgr\",style:{\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"\u041C\u0430\u043A\u0441\u0438\u043C \u0411\u043E\u0440\u0442\u043D\u0438\u043A\u043E\u0432\"})}),className:\"framer-1jlkbhf\",\"data-framer-name\":\"\u043C\u0430\u043A\u0441\u0438\u043C \u0431\u043E\u0440\u0442\u043D\u0438\u043A\u043E\u0432\",fonts:[\"Inter\"],text:LWj3zbbAm,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3ohcx2\",\"data-styles-preset\":\"EDF2TlXgr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fad30637-b55a-4e98-8592-9ee54a658356, rgba(22, 17, 15, 0.6))\"},children:\"\u0441\u043E\u043E\u0441\u043D\u043E\u0432\u0430\u0442\u0435\u043B\u044C \u043C\u0430\u043D\u0433\u0438\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3ohcx2\",\"data-styles-preset\":\"EDF2TlXgr\",style:{\"--framer-text-color\":\"var(--token-fad30637-b55a-4e98-8592-9ee54a658356, rgba(22, 17, 15, 0.6))\"},children:\"\u0441\u043E\u043E\u0441\u043D\u043E\u0432\u0430\u0442\u0435\u043B\u044C \u043C\u0430\u043D\u0433\u0438\"})}),className:\"framer-1oyuuen\",\"data-framer-name\":\"\u0441\u043E\u043E\u0441\u043D\u043E\u0432\u0430\u0442\u0435\u043B\u044C \u043C\u0430\u043D\u0433\u0438\",fonts:[\"Inter\"],text:DNh2Jfomu,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),visible9&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"KVtqcZy3L\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:lHA5XO_kc,className:\"framer-52q8a2\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1s0cetd\",blockquote:\"framer-styles-preset-1g6eje3\",code:\"framer-styles-preset-16j3el9\",h1:\"framer-styles-preset-ujbepo\",h2:\"framer-styles-preset-w8udqt\",h3:\"framer-styles-preset-1blex0k\",h4:\"framer-styles-preset-1s3gc4j\",h5:\"framer-styles-preset-fd3fp2\",h6:\"framer-styles-preset-12r2385\",img:\"framer-styles-preset-1eshjtl\",p:\"framer-styles-preset-vu8njy\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cv1gr5\",\"data-framer-name\":\"Frame 733865340\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+56+24+1924+0+658.4+0+0),sizes:\"185px\",...toResponsiveImage(ZNr5fowUH)}},fsrl3YULO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+2182.8+0+600.4+0+0),sizes:\"185px\",...toResponsiveImage(ZNr5fowUH)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+2422.8+0+600.4+0+0),sizes:\"185px\",...toResponsiveImage(ZNr5fowUH)},className:\"framer-uzmzvu\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwroxs\",\"data-framer-name\":\"Frame 733865332\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:tdb3P80AB,implicitPathVariables:undefined},{href:tdb3P80AB,implicitPathVariables:undefined},{href:tdb3P80AB,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{y:(componentViewport?.y||0)+0+0+0+56+24+1924+0+658.4+0+64+0},fsrl3YULO:{y:(componentViewport?.y||0)+0+0+0+120+0+2182.8+0+600.4+0+64+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+0+0+120+0+2422.8+0+600.4+0+64+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2fazfm-container\",nodeId:\"GeMoYM0mQ\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{KJ63hNkg4:resolvedLinks1[1]},fsrl3YULO:{KJ63hNkg4:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(SocialBtn,{height:\"100%\",id:\"GeMoYM0mQ\",KJ63hNkg4:resolvedLinks1[0],layoutId:\"GeMoYM0mQ\",style:{height:\"100%\"},UzIc2k2Rr:\"\u0421\u0430\u0439\u0442\",variant:\"IebGpremI\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:rt2Po87FH,implicitPathVariables:undefined},{href:rt2Po87FH,implicitPathVariables:undefined},{href:rt2Po87FH,implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{y:(componentViewport?.y||0)+0+0+0+56+24+1924+0+658.4+0+64+0},fsrl3YULO:{y:(componentViewport?.y||0)+0+0+0+120+0+2182.8+0+600.4+0+64+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+0+0+120+0+2422.8+0+600.4+0+64+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xwz88-container\",nodeId:\"b2O1ki6xD\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{KJ63hNkg4:resolvedLinks2[1]},fsrl3YULO:{KJ63hNkg4:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(SocialBtn,{height:\"100%\",id:\"b2O1ki6xD\",KJ63hNkg4:resolvedLinks2[0],layoutId:\"b2O1ki6xD\",style:{height:\"100%\"},UzIc2k2Rr:\"iOS\",variant:\"hQOUwsokY\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:Zx0137H17,implicitPathVariables:undefined},{href:Zx0137H17,implicitPathVariables:undefined},{href:Zx0137H17,implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{y:(componentViewport?.y||0)+0+0+0+56+24+1924+0+658.4+0+64+0},fsrl3YULO:{y:(componentViewport?.y||0)+0+0+0+120+0+2182.8+0+600.4+0+64+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+0+0+0+120+0+2422.8+0+600.4+0+64+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wkahb0-container\",nodeId:\"CA5UkCBAU\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{KJ63hNkg4:resolvedLinks3[1]},fsrl3YULO:{KJ63hNkg4:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(SocialBtn,{height:\"100%\",id:\"CA5UkCBAU\",KJ63hNkg4:resolvedLinks3[0],layoutId:\"CA5UkCBAU\",style:{height:\"100%\"},UzIc2k2Rr:\"Android\",variant:\"S_d2aWfVy\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{y:(componentViewport?.y||0)+0+0+0+56+24+2722.4},fsrl3YULO:{y:(componentViewport?.y||0)+0+0+0+120+0+2963.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:616,width:`min(${componentViewport?.width||\"100vw\"}, 1588px)`,y:(componentViewport?.y||0)+0+0+0+120+0+3203.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ag9lwp-container\",nodeId:\"MSX6nI3IE\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{jCsiSaJqk:\"0px 12px 0px 12px\",variant:\"BRTyyuf_T\"},fsrl3YULO:{variant:\"JUw7ffCgT\"}},children:/*#__PURE__*/_jsx(FooterMain,{bp4s5N88C:true,height:\"100%\",id:\"MSX6nI3IE\",jCsiSaJqk:\"0px 24px 0px 24px\",layoutId:\"MSX6nI3IE\",Q64BAWqbn:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"pxc7XjZbZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-75nnoa\",\"data-framer-name\":\"More\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16483aj\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1a518yu\",\"data-styles-preset\":\"GjiuNQmRv\",children:\"\u041F\u043E\u0447\u0438\u0442\u0430\u0442\u044C \u0435\u0449\u0451\"})}),className:\"framer-hy3gni\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k9l9yb\",\"data-hide-scrollbars\":true,children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"MD_Xwrgmn\",data:Cases,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"MD_Xwrgmn\",name:\"V3dcfXVBm\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"a7kyDAweD\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"N9GAqGVbq\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"ZNr5fowUH\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"sd8UAbcjv\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"c05g6FCum\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"LowG0Opgg\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"ax81athpG\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"LWj3zbbAm\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"DNh2Jfomu\",type:\"Identifier\"},{collection:\"MD_Xwrgmn\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"MD_Xwrgmn\",name:\"V3dcfXVBm\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:V3dcfXVBm},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({a7kyDAweD:a7kyDAweDMD_Xwrgmn,ax81athpG:ax81athpGMD_Xwrgmn,c05g6FCum:c05g6FCumMD_Xwrgmn,DNh2Jfomu:DNh2JfomuMD_Xwrgmn,id:idMD_Xwrgmn,LowG0Opgg:LowG0OpggMD_Xwrgmn,LWj3zbbAm:LWj3zbbAmMD_Xwrgmn,N9GAqGVbq:N9GAqGVbqMD_Xwrgmn,sd8UAbcjv:sd8UAbcjvMD_Xwrgmn,V3dcfXVBm:V3dcfXVBmMD_Xwrgmn,ZNr5fowUH:ZNr5fowUHMD_Xwrgmn},index)=>{V3dcfXVBmMD_Xwrgmn??=\"\";sd8UAbcjvMD_Xwrgmn??=\"\";c05g6FCumMD_Xwrgmn??=\"\";LowG0OpggMD_Xwrgmn??=\"\";LWj3zbbAmMD_Xwrgmn??=\"\";DNh2JfomuMD_Xwrgmn??=\"\";const visible10=isSet(c05g6FCumMD_Xwrgmn);const visible11=isSet(ax81athpGMD_Xwrgmn);return /*#__PURE__*/_jsx(LayoutGroup,{id:`MD_Xwrgmn-${idMD_Xwrgmn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{V3dcfXVBm:V3dcfXVBmMD_Xwrgmn},children:/*#__PURE__*/_jsx(Link1,{href:{pathVariables:{V3dcfXVBm:V3dcfXVBmMD_Xwrgmn},webPageId:\"ZwOz5BOlK\"},motionChild:true,nodeId:\"X0yEbBdZg\",openInNewTab:false,scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ce65qw framer-1g41q08\",\"data-framer-name\":\"Card wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+56+24+3378.4+40+0+0+60.4+0+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 24px, 1588px)`,...toResponsiveImage(N9GAqGVbqMD_Xwrgmn)}},fsrl3YULO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+3659.2+40+0+0+60.4+0+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1588px)`,...toResponsiveImage(a7kyDAweDMD_Xwrgmn)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+3899.2+40+0+0+60.4+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1588px) - 12px) / 2, 200px)`,...toResponsiveImage(a7kyDAweDMD_Xwrgmn)},className:\"framer-1nxqznt\",\"data-framer-name\":\"Card \",whileHover:animation2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jpbk38\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+56+24+3378.4+40+0+0+60.4+0+0+0+16+0+0),sizes:\"185px\",...toResponsiveImage(ZNr5fowUHMD_Xwrgmn)}},fsrl3YULO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+3659.2+40+0+0+60.4+0+0+0+24+0+0),sizes:\"185px\",...toResponsiveImage(ZNr5fowUHMD_Xwrgmn)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+3899.2+40+0+0+60.4+0+0+0+24+0+0),sizes:\"185px\",...toResponsiveImage(ZNr5fowUHMD_Xwrgmn)},className:\"framer-15aiejt\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1a518yu\",\"data-styles-preset\":\"GjiuNQmRv\",children:\"Card / Header\"})}),className:\"framer-3ivif3\",\"data-framer-name\":\"Card / Header\",fonts:[\"Inter\"],text:sd8UAbcjvMD_Xwrgmn,verticalAlignment:\"top\",withExternalLayout:true})]}),visible10&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pcjhqz\",\"data-framer-name\":\"Factoid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6ugvo\",\"data-styles-preset\":\"G01cUX9wU\",children:\"72% \"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BQIFBhbmdyYW0gU2FucyBOYXJyb3cgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"PP Pangram Sans Narrow Semibold\", \"PP Pangram Sans Narrow Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"Card / Factoid\"})}),className:\"framer-5ci4ol\",\"data-framer-name\":\"Card / Factoid\",fonts:[\"CUSTOM;PP Pangram Sans Narrow Semibold\"],text:c05g6FCumMD_Xwrgmn,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijk2qc\",\"data-styles-preset\":\"ndrRT95pv\",style:{\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"Card / Factoid caption \"})}),className:\"framer-zedbim\",\"data-framer-name\":\"Card / Factoid caption \",fonts:[\"Inter\"],text:LowG0OpggMD_Xwrgmn,verticalAlignment:\"top\",withExternalLayout:true})]}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f351cx\",\"data-framer-name\":\"Video preview\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+56+24+3378.4+40+0+0+60.4+0+0+0+400-175+0+36),sizes:\"96px\",...toResponsiveImage(ax81athpGMD_Xwrgmn)}},fsrl3YULO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+3659.2+40+0+0+60.4+0+0+0+340-159+0+12),sizes:\"96px\",...toResponsiveImage(ax81athpGMD_Xwrgmn)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+120+0+3899.2+40+0+0+60.4+0+0+0+400-183+0+36),sizes:\"96px\",...toResponsiveImage(ax81athpGMD_Xwrgmn)},className:\"framer-50z65y\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1785vkg-container\",nodeId:\"PKLSwmFcM\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(IconsPlayButton,{height:\"100%\",id:\"PKLSwmFcM\",layoutId:\"PKLSwmFcM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q8gl1h\",\"data-framer-name\":\"Caption\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qmtsfr\",\"data-styles-preset\":\"CqLrGKCEL\",style:{\"--framer-text-color\":\"var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, rgb(22, 17, 15))\"},children:\"Author of quote\"})}),className:\"framer-1uot8xx\",\"data-framer-name\":\"Author of quote\",fonts:[\"Inter\"],text:LWj3zbbAmMD_Xwrgmn,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qmtsfr\",\"data-styles-preset\":\"CqLrGKCEL\",style:{\"--framer-text-color\":\"var(--token-f5596758-1c48-4194-9382-832e19abb008, rgba(22, 17, 15, 0.4))\"},children:\"Description of author\"})}),className:\"framer-jt48fi\",\"data-framer-name\":\"Description of author\",fonts:[\"Inter\"],text:DNh2JfomuMD_Xwrgmn,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})})},idMD_Xwrgmn);})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+0+0+56+24+3378.4+40+484.4},fsrl3YULO:{y:(componentViewport?.y||0)+0+0+0+120+0+3659.2+40+432.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+0+0+120+0+3899.2+40+904.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15gew7e-container\",nodeId:\"YcfdIuBCl\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{variant:\"piI04CLAQ\"}},children:/*#__PURE__*/_jsx(FooterMini,{height:\"100%\",id:\"YcfdIuBCl\",layoutId:\"YcfdIuBCl\",rVQ5Mamk7:\"24px 24px 24px 24px\",style:{width:\"100%\"},variant:\"H9zYXfKJF\",width:\"100%\"})})})})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation3},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h3c4i1 hidden-v5psqm hidden-lygqkh\",\"data-framer-name\":\"Header scroll Mob\",style:{transformPerspective:500},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{y:16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"170px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wb2kyu-container\",nodeId:\"LJIF9G7US\",scopeId:\"ZwOz5BOlK\",children:/*#__PURE__*/_jsx(Logo24,{height:\"100%\",id:\"LJIF9G7US\",layoutId:\"LJIF9G7US\",style:{height:\"100%\",width:\"100%\"},variant:\"jQGhj_aF6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2co0pv\",\"data-framer-name\":\"Icons / Burger\",id:\"2co0pv\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qagw7k\",\"data-framer-name\":\"Rectangle 1601\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-afeodc\",\"data-framer-name\":\"Rectangle 1603\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.1,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-134d7ry\"),\"data-framer-portal-id\":\"2co0pv\",exit:{opacity:0,transition:{delay:0,duration:.1,ease:[.5,0,.88,.77],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"KOPZe3Jpt\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(100vw - 24px)\",children:/*#__PURE__*/_jsx(Container,{animate:animation5,className:cx(scopingClassNames,\"framer-64f1kb-container\"),\"data-framer-portal-id\":\"2co0pv\",exit:animation4,initial:animation,nodeId:\"HxmecT5p5\",rendersWithMotion:true,scopeId:\"ZwOz5BOlK\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Header,{DrwvSEru_:\"\u0440\u0435\u0448\u0435\u043D\u0438\u044F\",EZIJMGkWx:\"rgba(22, 17, 15, 0)\",height:\"100%\",HO_9xlHv2:true,hTDgdtvsj:\"\u043F\u0440\u043E\u0434\u0443\u043A\u0442\u044B\",id:\"HxmecT5p5\",j8Msa3ywZ:\"\u0436\u0443\u0440\u043D\u0430\u043B\",JoByVMlA8:\"\u043A\u0435\u0439\u0441\u044B\",Jz_Ymteso:\"\u0442\u0430\u0440\u0438\u0444\u044B\",layoutId:\"HxmecT5p5\",o2624rAL6:true,peZxZMaEr:true,style:{width:\"100%\"},tHJMhKKk4:\"\u043A\u043B\u0438\u0435\u043D\u0442\u044B\",variant:\"a5GudpUpq\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eArFezkXj:{width:\"72px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(100vw - 318px)\",children:/*#__PURE__*/_jsx(Container,{animate:animation7,className:cx(scopingClassNames,\"framer-o48aso-container\"),\"data-framer-portal-id\":\"2co0pv\",exit:animation6,initial:animation8,nodeId:\"swLCgNOeG\",rendersWithMotion:true,scopeId:\"ZwOz5BOlK\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(IconsClose,{height:\"100%\",id:\"swLCgNOeG\",layoutId:\"swLCgNOeG\",style:{height:\"100%\",width:\"100%\"},t_vHtPzFJ:t_vHtPzFJ1wnntms({overlay}),variant:\"xyrKZ4kiR\",width:\"100%\"})})})})]}),getContainer())})})]})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pB6YR.framer-1g41q08, .framer-pB6YR .framer-1g41q08 { display: block; }\",\".framer-pB6YR.framer-v5psqm { align-content: center; align-items: center; background-color: var(--token-f2eff57c-9625-4a24-9bf8-7f019593915f, #f4f1ef); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-pB6YR .framer-11m3epf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-r9hefg-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-pB6YR .framer-1ix2bux { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-n9yb5i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-19zsx0j-container { flex: none; height: auto; left: 8px; position: absolute; top: -12px; width: auto; z-index: 1; }\",\".framer-pB6YR .framer-12n1szh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 912px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-161ss0h, .framer-pB6YR .framer-1k7cr4u, .framer-pB6YR .framer-1xz8fyw, .framer-pB6YR .framer-3ivif3, .framer-pB6YR .framer-5ci4ol, .framer-pB6YR .framer-zedbim, .framer-pB6YR .framer-1uot8xx, .framer-pB6YR .framer-jt48fi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pB6YR .framer-aojoum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 266px; overflow: hidden; padding: 0px 12px 0px 12px; position: relative; width: 36%; }\",\".framer-pB6YR .framer-1gf9132-container { aspect-ratio: 0.688622754491018 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 290px); position: relative; width: 100%; }\",\".framer-pB6YR .framer-lmbb0q { flex: none; height: 640px; max-height: 640px; max-width: 1588px; position: relative; width: 100%; z-index: 0; }\",\".framer-pB6YR .framer-hma0dh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 720px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-12vd94e-container { aspect-ratio: 1.791044776119403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 402px); max-width: 720px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-9n4tl7, .framer-pB6YR .framer-1aa0m7i, .framer-pB6YR .framer-52q8a2 { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pB6YR .framer-3ti6b7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-1lbyu5n { aspect-ratio: 1.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 640px); max-width: 1588px; overflow: hidden; position: relative; width: 100%; }\",\".framer-pB6YR .framer-ouywb5 { 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; max-width: 720%; overflow: hidden; padding: 0px; position: relative; width: 720px; }\",\".framer-pB6YR .framer-x8dr2x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pB6YR .framer-x25ks4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 720px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-14s7wqx { align-content: center; align-items: center; background-color: var(--token-faa202c5-249e-48fc-b4b9-4fc0504fdb07, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 56px 32px 44px 32px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-1uh0cqf { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pB6YR .framer-4wq8lg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pB6YR .framer-bit58d { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pB6YR .framer-1f3cb8g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-pB6YR .framer-1jlkbhf, .framer-pB6YR .framer-1oyuuen { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pB6YR .framer-cv1gr5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-uzmzvu, .framer-pB6YR .framer-15aiejt { flex: none; height: 40px; overflow: hidden; position: relative; width: 185px; }\",\".framer-pB6YR .framer-1jwroxs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pB6YR .framer-2fazfm-container, .framer-pB6YR .framer-13xwz88-container, .framer-pB6YR .framer-wkahb0-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-pB6YR .framer-1ag9lwp-container { flex: none; height: auto; max-width: 1588px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-75nnoa { align-content: center; align-items: center; background-color: var(--token-d29263ca-4bce-484f-8cc9-72f7ac63a662, rgba(22, 17, 15, 0.05)); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-16483aj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1588px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-hy3gni { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pB6YR .framer-k9l9yb { display: grid; flex: none; gap: 12px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pB6YR .framer-1ce65qw { align-self: start; aspect-ratio: 1.725 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 330px); justify-self: start; position: relative; text-decoration: none; width: 100%; }\",\".framer-pB6YR .framer-1nxqznt { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 0px; cursor: pointer; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pB6YR .framer-1jpbk38 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 24px; overflow: hidden; padding: 0px; position: absolute; right: 24px; top: 24px; }\",\".framer-pB6YR .framer-1pcjhqz { align-content: center; align-items: center; bottom: 23px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 24px; max-width: 320px; overflow: hidden; padding: 0px; position: absolute; width: 260px; }\",\".framer-pB6YR .framer-1f351cx { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 23px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 40%; justify-content: flex-start; left: 24px; overflow: hidden; padding: 0px; position: absolute; width: 408px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pB6YR .framer-50z65y { aspect-ratio: 0.7741935483870968 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 124px); overflow: hidden; position: relative; width: 96px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pB6YR .framer-1785vkg-container { bottom: 4px; flex: none; height: auto; left: 4px; position: absolute; width: auto; }\",\".framer-pB6YR .framer-q8gl1h { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-pB6YR .framer-15gew7e-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-pB6YR .framer-1h3c4i1 { align-content: center; align-items: center; background-color: var(--token-8d80ed24-4597-42dc-8cd5-f6474fc86f7f, #16110f); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: visible; padding: 8px 12px 8px 12px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-pB6YR .framer-wb2kyu-container { aspect-ratio: 7.083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 170px; }\",\".framer-pB6YR .framer-2co0pv { -webkit-backdrop-filter: blur(0px); backdrop-filter: blur(0px); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; cursor: pointer; flex: none; height: 40px; overflow: visible; position: relative; width: 72px; }\",\".framer-pB6YR .framer-qagw7k { background-color: var(--token-f2eff57c-9625-4a24-9bf8-7f019593915f, #f4f1ef); flex: none; height: 3px; left: calc(50.00000000000002% - 40px / 2); position: absolute; top: calc(37.50000000000002% - 3px / 2); width: 40px; }\",\".framer-pB6YR .framer-afeodc { background-color: var(--token-f2eff57c-9625-4a24-9bf8-7f019593915f, #f4f1ef); flex: none; height: 3px; left: calc(50.00000000000002% - 40px / 2); position: absolute; top: calc(62.50000000000002% - 3px / 2); width: 40px; }\",'.framer-pB6YR.framer-134d7ry { background-color: var(--token-e10002b7-ffb0-4adf-a427-bd1de991619f, rgba(22, 17, 15, 0.7)) /* {\"name\":\"Black 70\"} */; inset: 0px; position: fixed; user-select: none; z-index: 3; }',\".framer-pB6YR.framer-64f1kb-container { bottom: 16px; flex: none; height: auto; left: 12px; position: fixed; right: 12px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-pB6YR.framer-o48aso-container { flex: none; height: 40px; left: 306px; position: fixed; right: 12px; top: 12px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pB6YR.framer-v5psqm, .framer-pB6YR .framer-11m3epf, .framer-pB6YR .framer-1ix2bux, .framer-pB6YR .framer-n9yb5i, .framer-pB6YR .framer-12n1szh, .framer-pB6YR .framer-aojoum, .framer-pB6YR .framer-hma0dh, .framer-pB6YR .framer-3ti6b7, .framer-pB6YR .framer-ouywb5, .framer-pB6YR .framer-x25ks4, .framer-pB6YR .framer-14s7wqx, .framer-pB6YR .framer-4wq8lg, .framer-pB6YR .framer-1f3cb8g, .framer-pB6YR .framer-cv1gr5, .framer-pB6YR .framer-1jwroxs, .framer-pB6YR .framer-75nnoa, .framer-pB6YR .framer-16483aj, .framer-pB6YR .framer-1jpbk38, .framer-pB6YR .framer-1pcjhqz, .framer-pB6YR .framer-1f351cx, .framer-pB6YR .framer-q8gl1h { gap: 0px; } .framer-pB6YR.framer-v5psqm > *, .framer-pB6YR .framer-1ix2bux > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-pB6YR.framer-v5psqm > :first-child, .framer-pB6YR .framer-11m3epf > :first-child, .framer-pB6YR .framer-1ix2bux > :first-child, .framer-pB6YR .framer-n9yb5i > :first-child, .framer-pB6YR .framer-12n1szh > :first-child, .framer-pB6YR .framer-aojoum > :first-child, .framer-pB6YR .framer-hma0dh > :first-child, .framer-pB6YR .framer-3ti6b7 > :first-child, .framer-pB6YR .framer-ouywb5 > :first-child, .framer-pB6YR .framer-x25ks4 > :first-child, .framer-pB6YR .framer-14s7wqx > :first-child, .framer-pB6YR .framer-1f3cb8g > :first-child, .framer-pB6YR .framer-cv1gr5 > :first-child, .framer-pB6YR .framer-75nnoa > :first-child, .framer-pB6YR .framer-16483aj > :first-child, .framer-pB6YR .framer-1jpbk38 > :first-child, .framer-pB6YR .framer-1pcjhqz > :first-child, .framer-pB6YR .framer-q8gl1h > :first-child { margin-top: 0px; } .framer-pB6YR.framer-v5psqm > :last-child, .framer-pB6YR .framer-11m3epf > :last-child, .framer-pB6YR .framer-1ix2bux > :last-child, .framer-pB6YR .framer-n9yb5i > :last-child, .framer-pB6YR .framer-12n1szh > :last-child, .framer-pB6YR .framer-aojoum > :last-child, .framer-pB6YR .framer-hma0dh > :last-child, .framer-pB6YR .framer-3ti6b7 > :last-child, .framer-pB6YR .framer-ouywb5 > :last-child, .framer-pB6YR .framer-x25ks4 > :last-child, .framer-pB6YR .framer-14s7wqx > :last-child, .framer-pB6YR .framer-1f3cb8g > :last-child, .framer-pB6YR .framer-cv1gr5 > :last-child, .framer-pB6YR .framer-75nnoa > :last-child, .framer-pB6YR .framer-16483aj > :last-child, .framer-pB6YR .framer-1jpbk38 > :last-child, .framer-pB6YR .framer-1pcjhqz > :last-child, .framer-pB6YR .framer-q8gl1h > :last-child { margin-bottom: 0px; } .framer-pB6YR .framer-11m3epf > *, .framer-pB6YR .framer-x25ks4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-pB6YR .framer-n9yb5i > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-pB6YR .framer-12n1szh > *, .framer-pB6YR .framer-cv1gr5 > *, .framer-pB6YR .framer-16483aj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-pB6YR .framer-aojoum > *, .framer-pB6YR .framer-ouywb5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pB6YR .framer-hma0dh > *, .framer-pB6YR .framer-3ti6b7 > *, .framer-pB6YR .framer-1jpbk38 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-pB6YR .framer-14s7wqx > *, .framer-pB6YR .framer-75nnoa > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-pB6YR .framer-4wq8lg > *, .framer-pB6YR .framer-1f351cx > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-pB6YR .framer-4wq8lg > :first-child, .framer-pB6YR .framer-1jwroxs > :first-child, .framer-pB6YR .framer-1f351cx > :first-child { margin-left: 0px; } .framer-pB6YR .framer-4wq8lg > :last-child, .framer-pB6YR .framer-1jwroxs > :last-child, .framer-pB6YR .framer-1f351cx > :last-child { margin-right: 0px; } .framer-pB6YR .framer-1f3cb8g > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-pB6YR .framer-1jwroxs > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-pB6YR .framer-1pcjhqz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pB6YR .framer-q8gl1h > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 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,'.framer-pB6YR[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-pB6YR [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-pB6YR[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-pB6YR [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-pB6YR[data-hide-scrollbars=\"true\"], .framer-pB6YR [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (max-width: 799px) { .framer-pB6YR.framer-v5psqm { width: 390px; } .framer-pB6YR .framer-11m3epf { gap: 0px; justify-content: flex-start; } .framer-pB6YR .framer-1ix2bux { align-content: flex-start; align-items: flex-start; gap: 40px; padding: 24px 0px 0px 0px; } .framer-pB6YR .framer-n9yb5i { align-content: flex-start; align-items: flex-start; } .framer-pB6YR .framer-19zsx0j-container { left: unset; order: 0; position: relative; top: unset; } .framer-pB6YR .framer-12n1szh { gap: 16px; order: 1; padding: 0px 20px 0px 12px; } .framer-pB6YR .framer-aojoum { min-height: unset; order: 4; width: 100%; } .framer-pB6YR .framer-1gf9132-container { aspect-ratio: 0.7625 / 1; height: var(--framer-aspect-ratio-supported, 262px); } .framer-pB6YR .framer-lmbb0q { height: 480px; order: 2; } .framer-pB6YR .framer-hma0dh { padding: 0px 12px 0px 12px; } .framer-pB6YR .framer-12vd94e-container { height: var(--framer-aspect-ratio-supported, 205px); } .framer-pB6YR .framer-9n4tl7 { --framer-paragraph-spacing: 20px; } .framer-pB6YR .framer-1lbyu5n { aspect-ratio: 0.8125 / 1; height: var(--framer-aspect-ratio-supported, 480px); } .framer-pB6YR .framer-ouywb5 { padding: 0px 12px 0px 12px; width: 100%; } .framer-pB6YR .framer-x25ks4 { gap: 40px; padding: 0px 12px 0px 12px; } .framer-pB6YR .framer-1aa0m7i, .framer-pB6YR .framer-52q8a2 { --framer-paragraph-spacing: 12px; } .framer-pB6YR .framer-14s7wqx { gap: 28px; padding: 32px 16px 28px 16px; } .framer-pB6YR .framer-4wq8lg { flex-direction: column; justify-content: center; width: 100%; } .framer-pB6YR .framer-1f3cb8g { align-content: center; align-items: center; padding: 0px; width: 100%; } .framer-pB6YR .framer-1jlkbhf, .framer-pB6YR .framer-1oyuuen { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-pB6YR .framer-1jwroxs { gap: 5px; width: 100%; } .framer-pB6YR .framer-75nnoa { gap: 24px; padding: 40px 12px 0px 12px; } .framer-pB6YR .framer-k9l9yb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-pB6YR .framer-1ce65qw { align-self: unset; aspect-ratio: 0.915 / 1; height: var(--framer-aspect-ratio-supported, 400px); } .framer-pB6YR .framer-1jpbk38 { left: 16px; right: 32px; top: 16px; } .framer-pB6YR .framer-1pcjhqz { align-content: flex-start; align-items: flex-start; bottom: 15px; left: 16px; width: min-content; } .framer-pB6YR .framer-5ci4ol { white-space: pre; width: auto; } .framer-pB6YR .framer-zedbim { width: 200px; } .framer-pB6YR .framer-1f351cx { bottom: 15px; left: 16px; } .framer-pB6YR.framer-o48aso-container { left: unset; width: 72px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pB6YR .framer-11m3epf, .framer-pB6YR .framer-1ix2bux, .framer-pB6YR .framer-12n1szh, .framer-pB6YR .framer-x25ks4, .framer-pB6YR .framer-14s7wqx, .framer-pB6YR .framer-4wq8lg, .framer-pB6YR .framer-1jwroxs, .framer-pB6YR .framer-75nnoa, .framer-pB6YR .framer-k9l9yb { gap: 0px; } .framer-pB6YR .framer-11m3epf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pB6YR .framer-11m3epf > :first-child, .framer-pB6YR .framer-1ix2bux > :first-child, .framer-pB6YR .framer-12n1szh > :first-child, .framer-pB6YR .framer-x25ks4 > :first-child, .framer-pB6YR .framer-14s7wqx > :first-child, .framer-pB6YR .framer-4wq8lg > :first-child, .framer-pB6YR .framer-75nnoa > :first-child, .framer-pB6YR .framer-k9l9yb > :first-child { margin-top: 0px; } .framer-pB6YR .framer-11m3epf > :last-child, .framer-pB6YR .framer-1ix2bux > :last-child, .framer-pB6YR .framer-12n1szh > :last-child, .framer-pB6YR .framer-x25ks4 > :last-child, .framer-pB6YR .framer-14s7wqx > :last-child, .framer-pB6YR .framer-4wq8lg > :last-child, .framer-pB6YR .framer-75nnoa > :last-child, .framer-pB6YR .framer-k9l9yb > :last-child { margin-bottom: 0px; } .framer-pB6YR .framer-1ix2bux > *, .framer-pB6YR .framer-x25ks4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-pB6YR .framer-12n1szh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-pB6YR .framer-14s7wqx > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-pB6YR .framer-4wq8lg > *, .framer-pB6YR .framer-k9l9yb > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-pB6YR .framer-1jwroxs > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-pB6YR .framer-1jwroxs > :first-child { margin-left: 0px; } .framer-pB6YR .framer-1jwroxs > :last-child { margin-right: 0px; } .framer-pB6YR .framer-75nnoa > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 800px) and (max-width: 1199px) { .framer-pB6YR.framer-v5psqm { width: 800px; } .framer-pB6YR .framer-12n1szh { padding: 0px 48px 0px 48px; } .framer-pB6YR .framer-1lbyu5n { height: var(--framer-aspect-ratio-supported, 400px); max-height: 400px; } .framer-pB6YR .framer-k9l9yb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-pB6YR .framer-1ce65qw { align-self: unset; aspect-ratio: 2.211764705882353 / 1; height: var(--framer-aspect-ratio-supported, 340px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-pB6YR .framer-k9l9yb { gap: 0px; } .framer-pB6YR .framer-k9l9yb > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-pB6YR .framer-k9l9yb > :first-child { margin-top: 0px; } .framer-pB6YR .framer-k9l9yb > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12062\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eArFezkXj\":{\"layout\":[\"fixed\",\"auto\"]},\"fsrl3YULO\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"BQ88foNId\":{\"pattern\":\":BQ88foNId\",\"name\":\"photo\"},\"HL4lpLdtG\":{\"pattern\":\":HL4lpLdtG\",\"name\":\"body\"},\"FTlBb_HVx\":{\"pattern\":\":FTlBb_HVx\",\"name\":\"content\"},\"AojYY5159\":{\"pattern\":\":AojYY5159\",\"name\":\"body\"}}\n * @framerResponsiveScreen\n */const FramerZwOz5BOlK=withCSS(Component,css,\"framer-pB6YR\");export default FramerZwOz5BOlK;FramerZwOz5BOlK.displayName=\"Blog Detail\";FramerZwOz5BOlK.defaultProps={height:12062,width:1200};addFonts(FramerZwOz5BOlK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"PP Pangram Sans Narrow Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Ymnb7YeRCiQVlLO7zwxsIUUXFY.woff2\"}]},...HeaderFonts,...LinkFonts,...VideoFonts,...Video1Fonts,...SocialBtnFonts,...FooterMainFonts,...IconsPlayButtonFonts,...FooterMiniFonts,...Logo24Fonts,...IconsCloseFonts,...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),...componentPresets.fonts?.[\"KVtqcZy3L\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"KVtqcZy3L\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZwOz5BOlK\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"BQ88foNId\\\":{\\\"pattern\\\":\\\":BQ88foNId\\\",\\\"name\\\":\\\"photo\\\"},\\\"HL4lpLdtG\\\":{\\\"pattern\\\":\\\":HL4lpLdtG\\\",\\\"name\\\":\\\"body\\\"},\\\"FTlBb_HVx\\\":{\\\"pattern\\\":\\\":FTlBb_HVx\\\",\\\"name\\\":\\\"content\\\"},\\\"AojYY5159\\\":{\\\"pattern\\\":\\\":AojYY5159\\\",\\\"name\\\":\\\"body\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eArFezkXj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fsrl3YULO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12062\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "HeaderFonts", "getFonts", "ER4rUlkYO_default", "LinkFonts", "lgcna3zUw_default", "VideoFonts", "Video", "Video1Fonts", "SocialBtnFonts", "ZW7mx4t7E_default", "FooterMainFonts", "At4TBMcoY_default", "IconsPlayButtonFonts", "Tv3Hono_F_default", "MotionAWithFX", "withFX", "motion", "FooterMiniFonts", "PnJ2iKhVQ_default", "Logo24Fonts", "alMqgwReV_default", "IconsCloseFonts", "z9wq6FULa_default", "MotionDivWithFX", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "isSet", "toImageSrc", "toResponsiveImage", "animation", "transition1", "transition2", "animation1", "transition3", "animation2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition4", "animation3", "transition5", "animation4", "animation5", "transition6", "animation6", "animation7", "animation8", "getContainer", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "NaTP4fCCs_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "iLOrp2d5_", "JxRPBBHYH", "eeHbDGhm0", "U_xj2GHNK", "bUUcqc1kP", "xvCvqhRRM", "eFeyH9OBO", "wERnAkzrk", "BwXkNJZPz", "N9ceNfPhw", "lfUOMgGOi", "DgB3OLjyD", "Goc2O05sY", "iBxyJp9W7", "J_4FbIuBs", "LWj3zbbAm", "DNh2Jfomu", "lHA5XO_kc", "ZNr5fowUH", "tdb3P80AB", "rt2Po87FH", "Zx0137H17", "V3dcfXVBmMD_Xwrgmn", "a7kyDAweDMD_Xwrgmn", "N9GAqGVbqMD_Xwrgmn", "ZNr5fowUHMD_Xwrgmn", "sd8UAbcjvMD_Xwrgmn", "c05g6FCumMD_Xwrgmn", "LowG0OpggMD_Xwrgmn", "ax81athpGMD_Xwrgmn", "LWj3zbbAmMD_Xwrgmn", "DNh2JfomuMD_Xwrgmn", "idMD_Xwrgmn", "V3dcfXVBm", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "t_vHtPzFJ1wnntms", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "textContent", "isDisplayed", "visible1", "visible2", "elementId", "useRouteElementId", "ref1", "visible3", "elementId1", "ref2", "visible4", "elementId2", "ref3", "visible5", "visible6", "elementId3", "ref4", "visible7", "visible8", "visible9", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "ChildrenCanSuspend", "collection", "paginationInfo", "l", "index", "visible10", "visible11", "PathVariablesContext", "Link", "AnimatePresence", "Ga", "css", "FramerZwOz5BOlK", "withCSS", "ZwOz5BOlK_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
