{"version":3,"file":"tnkc54pnPYX20ql_ArnFtShnzmDQFtZFvem4F4WnNPU.C1OSRbRr.mjs","names":["Slider","props","useState","useRef","useCallback","value","isMotionValue","props","useState","_Fragment","Audio","useRef","useCallback","Row","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","getProps","props","createLayoutDependency","useRef","React.useId","className","Component","props","useState","IconsFonts","Icons","ButtonFonts","Button","ButtonInfo","HubSpotFormFonts","serializationHash","variantClassNames","React.useContext","React.useMemo","React.Fragment","humanReadableVariantMap","getProps","props","useRef","React.useId","className","fonts","css","className","fonts","css","className","fonts","css","className","fonts","css","className","css","Navbar","Subscription","Button","ButtonInfo","Icons","Accordion","Footer","props","useRef","React.useId","Blog","metadata","React.useMemo","metadataProvider","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","sharedStyle18.className","React.useRef","className","PropertyOverrides","React.Fragment","Image","\"yc0JK2_ZF\"","\"rWl13xbSM\"","_Fragment","EQstg0NajzIDIgc7il","hIKjEC3tVzIDIgc7il","idzIDIgc7il","LI4X4vZFWzIDIgc7il","P7ZVmmroezIDIgc7il","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","sharedStyle18.css","sharedStyle.fonts","sharedStyle1.fonts","sharedStyle2.fonts","sharedStyle3.fonts","sharedStyle4.fonts","sharedStyle5.fonts","sharedStyle6.fonts","sharedStyle7.fonts","sharedStyle8.fonts","sharedStyle9.fonts","sharedStyle10.fonts","sharedStyle11.fonts","sharedStyle12.fonts","sharedStyle13.fonts","sharedStyle14.fonts","sharedStyle15.fonts","sharedStyle16.fonts","sharedStyle17.fonts","sharedStyle18.fonts"],"sources":["https:/framer.com/m/framer/lodash.js@0.3.0","https:/framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js","https:/framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js","https:/framerusercontent.com/modules/wV725hnUGirOSBDfQ5m4/kmuiXPa26vvjfX4d2GJv/IoIHY1be3.js","https:/framerusercontent.com/modules/SPLX2x2kYM5sdmXacKDT/m8g8QxCaJQot8aKvInMf/OnClick_Blog.js","https:/framerusercontent.com/modules/GQQicHqY0WaAIF1JSKBE/ZqYXXFLRGNZ8hJWnxnDW/OA0QZcCEr.js","https:/framerusercontent.com/modules/tR5r5jgau4rdUhu5Y0oO/G5HYctIAo4OqWSTfbhdG/fr4yzrtKc.js","https:/framerusercontent.com/modules/A1uJzXIKBpYkqXcvANzj/W6YHZOlsCs6k0Te9Yf64/JljUcVQms.js","https:/framerusercontent.com/modules/qaIBfZW8upSSHJnz0mFG/a8bRWnW1rg4uyOD4iWlg/oJYozxrol.js","https:/framerusercontent.com/modules/4gwPn8709U4Nh5uzEnyl/k8ufnNwJmAtqSjMPQR8A/QzWHX1Dsi.js","https:/framerusercontent.com/modules/qknpWpZoOL3LZirMgI7Z/egyV80fUS12BN0j5Wlos/tSESN5f6h.js","https:/framerusercontent.com/modules/XiwrEsYaCC5aCPxumj6C/cZ2Rr45DPRAIm0wvMnPe/g4p9Tjo2A.js"],"sourcesContent":["/** Error message constants. */ var FUNC_ERROR_TEXT = \"Expected a function\";\n/* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min;\n/** Used as references for various `Number` constants. */ var NAN = 0 / 0;\n/** Used to match leading and trailing whitespace. */ var reTrim = /^\\s+|\\s+$/g;\n/** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n/** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i;\n/** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i;\n/** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt;\nvar now = function() {\n    return Date.now();\n};\nfunction isObject(value) {\n    var type = typeof value;\n    return value != null && (type == \"object\" || type == \"function\");\n}\nfunction isObjectLike(value) {\n    return value != null && typeof value == \"object\";\n}\nfunction toNumber(value) {\n    if (typeof value == \"number\") {\n        return value;\n    }\n    if (typeof value == \"symbol\") {\n        return NAN;\n    }\n    if (isObject(value)) {\n        var other = typeof value.valueOf == \"function\" ? value.valueOf() : value;\n        value = isObject(other) ? other + \"\" : other;\n    }\n    if (typeof value != \"string\") {\n        return value === 0 ? value : +value;\n    }\n    value = value.replace(reTrim, \"\");\n    var isBinary = reIsBinary.test(value);\n    return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;\n}\nexport function debounce(func, wait, options) {\n    var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true;\n    if (typeof func != \"function\") {\n        throw new TypeError(FUNC_ERROR_TEXT);\n    }\n    wait = toNumber(wait) || 0;\n    if (isObject(options)) {\n        leading = !!options.leading;\n        maxing = \"maxWait\" in options;\n        maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n        trailing = \"trailing\" in options ? !!options.trailing : trailing;\n    }\n    function invokeFunc(time) {\n        var args = lastArgs, thisArg = lastThis;\n        lastArgs = lastThis = undefined;\n        lastInvokeTime = time;\n        result = func.apply(thisArg, args);\n        return result;\n    }\n    function leadingEdge(time) {\n        // Reset any `maxWait` timer.\n        lastInvokeTime = time;\n        // Start the timer for the trailing edge.\n        timerId = setTimeout(timerExpired, wait);\n        // Invoke the leading edge.\n        return leading ? invokeFunc(time) : result;\n    }\n    function remainingWait(time) {\n        var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall;\n        return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting;\n    }\n    function shouldInvoke(time) {\n        var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime;\n        // Either this is the first call, activity has stopped and we're at the\n        // trailing edge, the system time has gone backwards and we're treating\n        // it as the trailing edge, or we've hit the `maxWait` limit.\n        return lastCallTime === undefined || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait;\n    }\n    function timerExpired() {\n        var time = now();\n        if (shouldInvoke(time)) {\n            return trailingEdge(time);\n        }\n        // Restart the timer.\n        timerId = setTimeout(timerExpired, remainingWait(time));\n    }\n    function trailingEdge(time) {\n        timerId = undefined;\n        // Only invoke if we have `lastArgs` which means `func` has been\n        // debounced at least once.\n        if (trailing && lastArgs) {\n            return invokeFunc(time);\n        }\n        lastArgs = lastThis = undefined;\n        return result;\n    }\n    function cancel() {\n        if (timerId !== undefined) {\n            clearTimeout(timerId);\n        }\n        lastInvokeTime = 0;\n        lastArgs = lastCallTime = lastThis = timerId = undefined;\n    }\n    function flush() {\n        return timerId === undefined ? result : trailingEdge(now());\n    }\n    function debounced() {\n        var time = now(), isInvoking = shouldInvoke(time);\n        lastArgs = arguments;\n        lastThis = this;\n        lastCallTime = time;\n        if (isInvoking) {\n            if (timerId === undefined) {\n                return leadingEdge(lastCallTime);\n            }\n            if (maxing) {\n                // Handle invocations in a tight loop.\n                clearTimeout(timerId);\n                timerId = setTimeout(timerExpired, wait);\n                return invokeFunc(lastCallTime);\n            }\n        }\n        if (timerId === undefined) {\n            timerId = setTimeout(timerExpired, wait);\n        }\n        return result;\n    }\n    debounced.cancel = cancel;\n    debounced.flush = flush;\n    return debounced;\n}\nexport function throttle(func, wait, options) {\n    var leading = true, trailing = true;\n    if (typeof func != \"function\") {\n        throw new TypeError(FUNC_ERROR_TEXT);\n    }\n    if (isObject(options)) {\n        leading = \"leading\" in options ? !!options.leading : leading;\n        trailing = \"trailing\" in options ? !!options.trailing : trailing;\n    }\n    return debounce(func, wait, {\n        leading: leading,\n        maxWait: wait,\n        trailing: trailing\n    });\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"throttle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"debounce\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./lodash.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{animate,transform,motion,useTransform}from\"framer-motion\";import{useRef,useState,useCallback}from\"react\";import{isMotionValue,useOnChange,useAutoMotionValue}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{throttle}from\"https://framer.com/m/framer/lodash.js@0.3.0\";var KnobOptions;(function(KnobOptions){KnobOptions[\"Hide\"]=\"Hide\";KnobOptions[\"Hover\"]=\"Hover\";KnobOptions[\"Show\"]=\"Show\";})(KnobOptions||(KnobOptions={}));/**\n * SLIDER\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 20\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export const Slider=withCSS(function Slider(props){const{value:valueProp,trackHeight,fillColor,focusColor,min,max,onChange,onChangeLive,onMax,onMin,trackColor,trackRadius,knobSize,knobColor,constrainKnob,shadow,shouldAnimateChange,transition,overdrag,knobSetting,style}=props;const[hovered,setHovered]=useState(false);const[focused,setFocused]=useState(false);const onCanvas=RenderTarget.current()===RenderTarget.canvas;const shouldAnimate=shouldAnimateChange&&!onCanvas;const isConstrained=constrainKnob&&knobSetting===KnobOptions.Show;const showKnob=knobSetting!==KnobOptions.Hide;const input=useRef();const knobPadding=8;// Main setting function\nconst updateValue=useCallback((newVal,target)=>{throttledInputUpdate(newVal);if(onChange)onChange(newVal);if(shouldAnimate)animate(target,newVal,transition);else requestAnimationFrame(()=>target.set(newVal));},[transition,shouldAnimate,onChange]);// \"value\" is the source of truth\n// It can be controlled via props with a motionvalue or number 0.0 - 1.0\n// Local changes are always allowed and are reported back up using \"onChange\" callback\nconst value=useAutoMotionValue(valueProp,{onChange:updateValue,transform:value=>transform(value,[0,100],[min,max])});const knobX=useTransform(value,[min,max],[\"0%\",\"100%\"]);const normalizedValue=useTransform(value,[min,max],[0,1]);const throttledInputUpdate=useCallback(throttle(val=>{var ref;if((ref=input.current)===null||ref===void 0?void 0:ref.value)input.current.value=val;},100),[input]);// Live updating callback\nuseOnChange(value,val=>{if(isMotionValue(valueProp))throttledInputUpdate(val);if(onMax&&val>=max)onMax();if(onMin&&val<=min)onMin();if(onChangeLive)onChangeLive(val);});// Read changes from input element\nconst handleInputChange=e=>{updateValue(parseFloat(e.target.value),value);};// Handle tapping on the know to trigger update\nconst handleMouseDown=e=>{if(parseFloat(e.target.value)!==0)updateValue(parseFloat(e.target.value),value);};const handleMouseUp=()=>{};const totalKnobWidth=showKnob?knobSize+knobPadding:knobPadding;const totalHeight=Math.max(knobSize+knobPadding,trackHeight);return /*#__PURE__*/ _jsxs(\"div\",{className:\"framer-default-slider\",onMouseEnter:()=>setHovered(true),onMouseLeave:()=>setHovered(false),style:{position:\"relative\",...style,alignItems:\"center\",justifyContent:\"flex-start\",border:`0px solid ${focusColor}`,\"--framer-default-slider-height\":totalHeight,\"--framer-default-slider-width\":totalKnobWidth},children:[/*#__PURE__*/ _jsx(\"input\",{ref:input,style:{flexShrink:0,minHeight:totalHeight,opacity:0,margin:0,display:\"flex\",...style,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",...!isConstrained&&{width:`calc(100% + ${totalKnobWidth}px)`,marginLeft:-totalKnobWidth/2}},onFocus:()=>setFocused(true),onBlur:()=>setFocused(false),type:\"range\",min:min,max:max,defaultValue:-1,step:\"any\",onChange:handleInputChange,onMouseDown:handleMouseDown,onMouseUp:handleMouseUp}),/*#__PURE__*/ _jsx(\"div\",{style:{background:trackColor,position:\"absolute\",top:`calc(50% - ${Math.ceil(trackHeight/2)}px)`,borderRadius:trackRadius,display:\"flex\",height:trackHeight,width:\"100%\",transformOrigin:\"left\",pointerEvents:\"none\",overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:trackHeight,width:\"100%\",background:fillColor,scaleX:normalizedValue,position:\"absolute\",top:`calc(50% - ${Math.ceil(trackHeight/2)}px)`,transformOrigin:\"left\",pointerEvents:\"none\"}})}),/*#__PURE__*/ _jsx(motion.div,{style:{x:knobX,position:\"absolute\",display:\"flex\",top:`calc(50% - ${Math.floor(knobSize/2)}px)`,pointerEvents:\"none\",...isConstrained?{width:`calc(100% - ${knobSize}px`,left:0}:{width:`100%`,left:-knobSize/2}},children:/*#__PURE__*/ _jsx(motion.div,{initial:false,animate:{scale:hovered&&knobSetting===KnobOptions.Hover||knobSetting===KnobOptions.Show?1:0},transition:{type:\"spring\",stiffness:900,damping:40},style:{transformOrigin:\"50% 50%\",width:knobSize,height:knobSize,borderRadius:\"50%\",background:knobColor,pointerEvents:\"none\",boxShadow:`0px 1px 2px 0px ${shadow}, \n                                0px 2px 4px 0px ${shadow}, \n                                0px 4px 8px 0px ${shadow}`}})})]});},[\".framer-default-slider input[type=range] {  width: 100%; height: 100% background:transparent margin: 0;}\",\".framer-default-slider input[type=range]:focus { outline: none; }\",\".framer-default-slider input[type=range]::-ms-track { width: 100%; cursor: pointer; background: transparent; border-color: transparent; color: transparent; }\",\".framer-default-slider input[type=range]::-webkit-slider-thumb { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",\".framer-default-slider input[type=range]::-moz-range-thumb { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",\".framer-default-slider input[type=range]::-ms-thumb  { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",]);Slider.displayName=\"Slider\";Slider.defaultProps={height:20,width:200,trackHeight:4,fillColor:\"#09F\",trackColor:\"#DDD\",knobColor:\"#FFF\",focusColor:\"rgba(0, 153, 255,0)\",shadow:\"rgba(0,0,0,0.1)\",knobSize:20,overdrag:true,min:0,max:100,value:50,trackRadius:5,knobSetting:KnobOptions.Show,constrainKnob:false,transition:{type:\"spring\",delay:0,stiffness:750,damping:50},shouldAnimateChange:true};addPropertyControls(Slider,{fillColor:{title:\"Tint\",type:ControlType.Color},trackColor:{title:\"Track\",type:ControlType.Color},knobColor:{title:\"Knob\",type:ControlType.Color},shadow:{type:ControlType.Color,title:\"Shadow\"},// focusColor: {\n//     title: \"Focus\",\n//     type: ControlType.Color,\n// },\nshouldAnimateChange:{type:ControlType.Boolean,title:\"Changes\",enabledTitle:\"Animate\",disabledTitle:\"Instant\"},transition:{type:ControlType.Transition,defaultValue:Slider.defaultProps.transition},knobSetting:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Knob\",options:[\"Hide\",\"Hover\",\"Show\"]},constrainKnob:{type:ControlType.Boolean,title:\"Constrain\",enabledTitle:\"Yes\",disabledTitle:\"No\",hidden:({knobSetting})=>knobSetting!==KnobOptions.Show},knobSize:{type:ControlType.Number,title:\"Knob\",min:10,max:100,hidden:({knobSetting})=>knobSetting===KnobOptions.Hide},value:{type:ControlType.Number,title:\"Value\",min:0,max:100,unit:\"%\"},trackHeight:{title:\"Height\",type:ControlType.Number,min:0},min:{title:\"Min\",type:ControlType.Number,displayStepper:true},trackRadius:{type:ControlType.Number,displayStepper:true,min:0,max:200,title:\"Radius\"},max:{title:\"Max\",type:ControlType.Number,displayStepper:true},onChange:{type:ControlType.EventHandler},onMax:{type:ControlType.EventHandler},onMin:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Slider\":{\"type\":\"reactComponent\",\"name\":\"Slider\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Slider.map","import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useRef,useState,useEffect,useCallback}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{MotionValue,motion,animate,useMotionValueEvent}from\"framer-motion\";import{useOnEnter,usePadding,useRadius,paddingControl,borderRadiusControl,useOnChange,containerStyles,secondsToMinutes,useAutoMotionValue,useOnExit,fontStack,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{Slider}from\"https://framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js\";const isMotionValue=v=>v instanceof MotionValue;var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));function PlayTime(props){const{currentTime,startTime}=props;const[playTime,setPlayTime]=useState(\"0:00\");useEffect(()=>{setPlayTime(secondsToMinutes(startTime));},[startTime]);useOnChange(currentTime,latest=>{setPlayTime(secondsToMinutes(latest));});return /*#__PURE__*/_jsx(_Fragment,{children:playTime});}const checkIfPlaying=player=>player.current&&!player.current.paused&&!player.current.ended&&player.current.readyState>2;/**\n * AUDIO\n *\n * Audio player component optimized for smart components.\n *\n * @framerIntrinsicWidth 240\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export const Audio=withCSS(function Audio(props){var _props_style;const{playing,background,progressColor,trackHeight,gap,trackColor,srcUrl,srcType,srcFile,loop,font,autoPlay,progress,volume,showTime,showTrack,playPauseCursor,showPlayPause,onTimeUpdate,onMetadata,onPlay,onPause,onEnd,pauseOnExit,onPlayGlobalPauseOption}=props;let iconCursor=\"pointer\";if(!!playPauseCursor){iconCursor=playPauseCursor;}else if(props===null||props===void 0?void 0:(_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.cursor){iconCursor=props.style.cursor;}// Defaults to false, only switches to play if possible\nconst[isPlaying,setIsPlaying]=useState(false);const[duration,setDuration]=useState(0);// Audio element ref and non-state info\nconst player=useRef();const playerInfo=useRef({ready:false,animation:null});// Track progress in ms, always in sync with audio element\nconst trackProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:(newValue,value)=>{if(player.current.duration){player.current.currentTime=newValue*player.current.duration;handlePlayStateUpdate(\"motionHook\");}}});const padding=usePadding(props);const borderRadius=useRadius(props);const{fontSize}=useFontControls(props);const shouldPlay=RenderTarget.current()===RenderTarget.preview;const shouldPausePlayers=onPlayGlobalPauseOption===\"pause\";const url=srcType===\"URL\"?srcUrl:srcFile;const shouldAutoPlay=shouldPlay&&playing;// Sync UI with state of the audio element\n// TODO look into better more performant ways of doing this\nconst handlePlayStateUpdate=useCallback(_=>{var _playerInfo_current_animation,_playerInfo_current;const currentDuration=player.current.duration;const currentTime=player.current.currentTime;(_playerInfo_current=playerInfo.current)===null||_playerInfo_current===void 0?void 0:(_playerInfo_current_animation=_playerInfo_current.animation)===null||_playerInfo_current_animation===void 0?void 0:_playerInfo_current_animation.stop();if(Math.abs(currentTime-trackProgress.get())>.5){trackProgress.set(currentTime);}if(!shouldPlay)return;const isNowPlaying=checkIfPlaying(player);if(isPlaying!==isNowPlaying)setIsPlaying(isNowPlaying);if(isNowPlaying&&shouldPlay){playerInfo.current.animation=animate(trackProgress,currentDuration,{type:\"tween\",ease:\"linear\",duration:currentDuration-currentTime});}},[shouldPlay,isPlaying]);const pauseAllAudioPlayers=()=>{const audioPlayerElements=document.querySelectorAll(\".framer-audio\");audioPlayerElements.forEach(el=>{el.pause();});};// Always use this for playing audio\n// No logic in here as it is async & can fail\nconst playAudio=()=>{if(shouldPlay)player.current.play().catch(e=>{})// It's likely fine, swallow error\n;};const pauseAudio=()=>{var _playerInfo_current_animation,_playerInfo_current;player.current.pause();(_playerInfo_current=playerInfo.current)===null||_playerInfo_current===void 0?void 0:(_playerInfo_current_animation=_playerInfo_current.animation)===null||_playerInfo_current_animation===void 0?void 0:_playerInfo_current_animation.stop();};const handleMetadata=()=>{if(onMetadata)onMetadata({duration:player.current.duration});setDuration(player.current.duration);};const initProgress=()=>{if(!isMotionValue(progress)){player.current.currentTime=progress*.01*player.current.duration;}};const handleReady=()=>{// This tries to run on every pause\n// We use playerInfo.ready to only call on initial load of a source\nif(!playerInfo.current.ready){if(shouldAutoPlay)playAudio();playerInfo.current.ready=true;initProgress();}};// Handle seek event from slider\nconst handleSeek=val=>{if(player.current.currentTime){player.current.currentTime=val;handlePlayStateUpdate(\"handleSeek\");}};const handleEnd=()=>{if(onEnd)onEnd();};const handlePlayClick=()=>{if(shouldPausePlayers)pauseAllAudioPlayers();playAudio();};// Control audio via props\nuseEffect(()=>{if(shouldPlay){// In preview when prop changes, pause/play\nif(playing===true)playAudio();else pauseAudio();}else{// Only set the state for canvas use\nif(playing===true)setIsPlaying(true);else setIsPlaying(false);}},[playing]);useEffect(()=>{var _player_current;// Do this in an effect to correct on optimised sites\nif((_player_current=player.current)===null||_player_current===void 0?void 0:_player_current.duration)setDuration(player.current.duration);},[]);// Call event callbacks\nuseEffect(()=>{if(playerInfo.current.ready&&isPlaying&&onPlay)onPlay();else if(playerInfo.current.ready&&onPause)onPause();},[isPlaying]);// Volume Control\nuseEffect(()=>{player.current.volume=volume/100;},[volume]);// Reset ready state when src changes\nuseEffect(()=>{playerInfo.current.ready=false;},[srcFile,srcType,srcUrl]);// Play on navigation\nuseOnEnter(()=>{if(shouldAutoPlay)playAudio();});useOnExit(()=>{if(pauseOnExit)player.current.pause();});useMotionValueEvent(trackProgress,\"change\",val=>{var _player_current;const progressPercent=((_player_current=player.current)===null||_player_current===void 0?void 0:_player_current.duration)?val/player.current.duration*100:null;if(onTimeUpdate){onTimeUpdate(val,progressPercent,secondsToMinutes(val));}});const iconStyles={marginRight:showTime||showTrack?gap:0,flexShrink:0,cursor:iconCursor};return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyles,position:\"relative\",overflow:\"hidden\",background,padding,borderRadius},children:[/*#__PURE__*/_jsx(\"audio\",{src:url,loop:loop,className:\"framer-audio\",ref:player,preload:\"metadata\",autoPlay:shouldAutoPlay,onLoadedMetadata:handleMetadata,onCanPlayThrough:handleReady,// Listen to all events for status changes\nonPlaying:()=>handlePlayStateUpdate(\"playingEvent\"),onPlay:()=>handlePlayStateUpdate(\"playEvent\"),onSeeked:()=>handlePlayStateUpdate(\"seekEvent\"),onPause:()=>handlePlayStateUpdate(\"pauseEvent\"),onEnded:()=>handleEnd()}),showPlayPause&&/*#__PURE__*/_jsx(_Fragment,{children:isPlaying?/*#__PURE__*/_jsx(PauseIcon,{width:16,whileTap:{scale:.9},onClick:()=>pauseAudio(),style:iconStyles,\"aria-label\":\"pause audio\"}):/*#__PURE__*/_jsx(PlayIcon,{width:16,whileTap:{scale:.9},onClick:handlePlayClick,style:iconStyles,\"aria-label\":\"play audio\"})}),showTime&&/*#__PURE__*/_jsxs(\"p\",{style:{userSelect:\"none\",color:\"#333\",fontWeight:500,letterSpacing:-.25,margin:0,flexShrink:0,fontFamily:fontStack,fontVariantNumeric:\"tabular-nums\",marginRight:showTrack?gap:0,...font},children:[/*#__PURE__*/_jsx(PlayTime,{startTime:duration*(isMotionValue(progress)?progress.get():progress*.01),currentTime:trackProgress}),/*#__PURE__*/_jsx(\"span\",{style:{padding:\"0 2px\"},children:\"/\"}),duration>0?secondsToMinutes(duration):\"1:34\"]}),showTrack&&/*#__PURE__*/_jsx(Slider,{style:{width:\"100%\"},value:trackProgress,fillColor:progressColor,knobSetting:\"Hover\",shadow:`rgba(0,0,0,0)`,knobSize:10,knobColor:progressColor,onChange:handleSeek,shouldAnimateChange:false,min:0,max:duration,trackColor:trackColor})]});},[\".framer-audio-icon { outline: none; }\",\".framer-audio-icons:focus-visible { outline: auto; }\"]);Audio.defaultProps={background:\"#EBEBEB\",trackColor:\"#FFFFFF\",font:{fontSize:12},progressColor:\"#333333\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",srcType:\"URL\",pauseOnExit:true,borderRadius:8,padding:15,progress:0,volume:25,loop:false,playing:true,autoPlay:true,showTime:true,showTrack:true,showPlayPause:true,onPlayGlobalPauseOption:\"continue\",trackHeight:4,gap:15,height:50,width:240};addPropertyControls(Audio,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\".../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\",\"mp3\",\"wav\",\"m4a\"],hidden(props){return props.srcType===\"URL\";}},playing:{title:\"Playing\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},loop:{title:\"Loop\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// autoPlay: {\n//     type: ControlType.Boolean,\n//     title: \"Autoplay\",\n//     enabledTitle: \"Yes\",\n//     disabledTitle: \"No\",\n// },\nprogress:{title:\"Progress\",type:ControlType.Number,max:100,min:0,unit:\"%\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\"},progressColor:{title:\"Progress\",type:ControlType.Color,defaultValue:Audio.defaultProps.progressColor},trackColor:{title:\"Track\",type:ControlType.Color,defaultValue:Audio.defaultProps.trackColor},background:{title:\"Player\",type:ControlType.Color,defaultValue:Audio.defaultProps.background},font:{title:\"Font\",// @ts-ignore – Internal\ntype:ControlType.Font,displayFontSize:true},...paddingControl,...borderRadiusControl,gap:{type:ControlType.Number,min:0,max:100,displayStepper:true},showPlayPause:{type:ControlType.Boolean,title:\"Play/Pause\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},showTrack:{type:ControlType.Boolean,title:\"Track\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},showTime:{type:ControlType.Boolean,title:\"Time\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},pauseOnExit:{type:ControlType.Boolean,title:\"On Leave\",enabledTitle:\"Pause\",disabledTitle:\"Continue\"},onPlayGlobalPauseOption:{type:ControlType.Enum,title:\"On Play\",options:[\"continue\",\"pause\"],optionTitles:[\"Continue All\",\"Pause All\"]},onPlay:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onEnd:{type:ControlType.EventHandler},onTimeUpdate:{type:ControlType.EventHandler}});const trackStyle={borderRadius:10,width:\"100%\",overflow:\"hidden\"};const trackParentStyle={position:\"relative\",border:\"1px solid red\",display:\"flex\",alignItems:\"center\",height:\"100%\",width:\"100%\"};function PlayIcon(props){return /*#__PURE__*/_jsx(motion.svg,{...props,className:\"framer-audio-icon\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 16 16\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 5.379 1.292 C 4.968 1.033 4.449 1.017 4.023 1.251 C 3.598 1.486 3.334 1.933 3.333 2.419 L 3.333 13.581 C 3.334 14.067 3.598 14.514 4.023 14.749 C 4.449 14.983 4.968 14.967 5.379 14.708 L 14.215 9.127 C 14.602 8.883 14.836 8.457 14.836 8 C 14.836 7.543 14.602 7.117 14.215 6.873 Z\",fill:\"#333\"})});}function PauseIcon(props){return /*#__PURE__*/_jsxs(motion.svg,{...props,className:\"framer-audio-icon\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 16 16\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 3 3 C 3 2.448 3.448 2 4 2 L 6 2 C 6.552 2 7 2.448 7 3 L 7 13 C 7 13.552 6.552 14 6 14 L 4 14 C 3.448 14 3 13.552 3 13 Z\",fill:\"#343434\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 9 3 C 9 2.448 9.448 2 10 2 L 12 2 C 12.552 2 13 2.448 13 3 L 13 13 C 13 13.552 12.552 14 12 14 L 10 14 C 9.448 14 9 13.552 9 13 Z\",fill:\"#343434\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"Audio\":{\"type\":\"reactComponent\",\"name\":\"Audio\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"50\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Audio.map","// Generated by Framer (ad88b1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Row from\"https://framerusercontent.com/modules/RHcZH3o2VIXTFquYWzxg/2qKIWJclCYOTSwm0qhRx/NNS3_wNqy.js\";const RowFonts=getFonts(Row);const serializationHash=\"framer-4TBmD\";const variantClassNames={o1VS2D3wm:\"framer-v-1qjpog9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"o1VS2D3wm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1qjpog9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"o1VS2D3wm\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(51, 135, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(51, 135, 255, 0.04)\",...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hxykv4-container\",layoutDependency:layoutDependency,layoutId:\"MUgDazruI-container\",nodeId:\"MUgDazruI\",rendersWithMotion:true,scopeId:\"IoIHY1be3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"MUgDazruI\",layoutId:\"MUgDazruI\",style:{width:\"100%\"},T8rQFvSBR:\"Our mission is to empower businesses with high quality data to develop AI products that are safe, responsible and trustworthy.\",variant:\"jgS4acvRl\",W88zB8mIG:\"What is Toloka’s mission?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v4laty\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"qUjImigRR\",style:{backgroundColor:\"rgba(51, 135, 255, 0.12)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+86,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mg0mla-container\",layoutDependency:layoutDependency,layoutId:\"RZQOp033C-container\",nodeId:\"RZQOp033C\",rendersWithMotion:true,scopeId:\"IoIHY1be3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"RZQOp033C\",layoutId:\"RZQOp033C\",style:{width:\"100%\"},T8rQFvSBR:\"Toloka is a European company. Our global headquarters is located in Amsterdam. In addition to the Netherlands, Toloka has offices in the US, Israel, Switzerland, and Serbia. We provide data for Generative AI development.\",variant:\"jgS4acvRl\",W88zB8mIG:\"Where is Toloka located?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12qgc5o\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"okFV49k1d\",style:{backgroundColor:\"rgba(51, 135, 255, 0.12)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+172,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8lyccv-container\",layoutDependency:layoutDependency,layoutId:\"Ph8wZVrIS-container\",nodeId:\"Ph8wZVrIS\",rendersWithMotion:true,scopeId:\"IoIHY1be3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"Ph8wZVrIS\",layoutId:\"Ph8wZVrIS\",style:{width:\"100%\"},T8rQFvSBR:\"We are the trusted data partner for all stages of AI development–from training to evaluation. Toloka has over a decade of experience supporting clients with its unique methodology and optimal combination of machine learning technology and human expertise. Toloka offers high quality expert data for training models at scale.\",variant:\"jgS4acvRl\",W88zB8mIG:\"What is Toloka’s key area of expertise?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d98svj\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"DyWfmRxtD\",style:{backgroundColor:\"rgba(51, 135, 255, 0.12)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+258,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qp4rb8-container\",layoutDependency:layoutDependency,layoutId:\"i_U_5B4kp-container\",nodeId:\"i_U_5B4kp\",rendersWithMotion:true,scopeId:\"IoIHY1be3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"i_U_5B4kp\",layoutId:\"i_U_5B4kp\",style:{width:\"100%\"},T8rQFvSBR:\"The Toloka team has supported clients with high-quality data and exceptional service for over 10 years.\",variant:\"jgS4acvRl\",W88zB8mIG:\"How long has Toloka been in the AI market?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vbf3xe\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"axiCwdz5i\",style:{backgroundColor:\"rgba(51, 135, 255, 0.12)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+344,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jrd7da-container\",layoutDependency:layoutDependency,layoutId:\"VDMgFC8Gk-container\",nodeId:\"VDMgFC8Gk\",rendersWithMotion:true,scopeId:\"IoIHY1be3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"VDMgFC8Gk\",layoutId:\"VDMgFC8Gk\",style:{width:\"100%\"},T8rQFvSBR:\"Toloka ensures the quality and accuracy of collected data through rigorous quality assurance measures–including multiple checks and verifications–to provide our clients with data that is reliable and accurate. Our unique quality control methodology includes built-in post-verification, dynamic overlaps, cross-validation, and golden sets.\",variant:\"jgS4acvRl\",W88zB8mIG:\"How does Toloka ensure the quality and accuracy of the data collected?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k68mt0\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"IMVc4dxjb\",style:{backgroundColor:\"rgba(51, 135, 255, 0.12)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+430,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nbp7ki-container\",layoutDependency:layoutDependency,layoutId:\"qYE8lUiBN-container\",nodeId:\"qYE8lUiBN\",rendersWithMotion:true,scopeId:\"IoIHY1be3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"qYE8lUiBN\",layoutId:\"qYE8lUiBN\",style:{width:\"100%\"},T8rQFvSBR:\"Toloka has developed a state-of-the-art technology platform for data labeling and has over 10 years of managing human efforts, ensuring operational excellence at scale. Now, Toloka collaborates with data workers from 100+ countries speaking 40+ languages across 50+ knowledge domains and 120+ subdomains.\",variant:\"jgS4acvRl\",W88zB8mIG:\"How does Toloka source and manage its experts and AI tutors?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iwflrv\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"jZ9JCtfJ4\",style:{backgroundColor:\"rgba(51, 135, 255, 0.12)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+516,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vqzd30-container\",layoutDependency:layoutDependency,layoutId:\"gEtz_d1Qe-container\",nodeId:\"gEtz_d1Qe\",rendersWithMotion:true,scopeId:\"IoIHY1be3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"gEtz_d1Qe\",layoutId:\"gEtz_d1Qe\",style:{width:\"100%\"},T8rQFvSBR:\"Toloka provides high-quality data for each stage of large language model (LLM) and generative AI (GenAI) development as a managed service. We offer data for fine-tuning, RLHF, and evaluation. Toloka handles a diverse range of projects and tasks of any data type—text, image, audio, and video—showcasing our versatility and ability to cater to various client needs.\",variant:\"jgS4acvRl\",W88zB8mIG:\"What types of projects or tasks does Toloka typically handle?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18md4d2\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Qy63kBDWw\",style:{backgroundColor:\"rgba(51, 135, 255, 0.12)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+602,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dc5kit-container\",layoutDependency:layoutDependency,layoutId:\"e1FOS0NJ_-container\",nodeId:\"e1FOS0NJ_\",rendersWithMotion:true,scopeId:\"IoIHY1be3\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"e1FOS0NJ_\",layoutId:\"e1FOS0NJ_\",style:{width:\"100%\"},T8rQFvSBR:\"Toloka addresses ML training data production needs for companies of various sizes and industries– from big tech giants to startups. Our experts cover over 50 knowledge domains and 120 subdomains, enabling us to serve every industry, including complex fields such as medicine and law. Many successful projects have demonstrated Toloka's expertise in delivering high-quality data to clients. Learn more about the use cases we feature on our customer case studies page.\",variant:\"jgS4acvRl\",W88zB8mIG:\"What industries and use cases does Toloka focus on?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4TBmD.framer-ucpc91, .framer-4TBmD .framer-ucpc91 { display: block; }\",\".framer-4TBmD.framer-1qjpog9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; }\",\".framer-4TBmD .framer-hxykv4-container, .framer-4TBmD .framer-mg0mla-container, .framer-4TBmD .framer-8lyccv-container, .framer-4TBmD .framer-qp4rb8-container, .framer-4TBmD .framer-1jrd7da-container, .framer-4TBmD .framer-1nbp7ki-container, .framer-4TBmD .framer-vqzd30-container, .framer-4TBmD .framer-dc5kit-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4TBmD .framer-1v4laty, .framer-4TBmD .framer-12qgc5o, .framer-4TBmD .framer-1d98svj, .framer-4TBmD .framer-1vbf3xe, .framer-4TBmD .framer-1k68mt0, .framer-4TBmD .framer-iwflrv, .framer-4TBmD .framer-18md4d2 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",'.framer-4TBmD[data-border=\"true\"]::after, .framer-4TBmD [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 506\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerIoIHY1be3=withCSS(Component,css,\"framer-4TBmD\");export default FramerIoIHY1be3;FramerIoIHY1be3.displayName=\"Accordion\";FramerIoIHY1be3.defaultProps={height:506,width:1e3};addFonts(FramerIoIHY1be3,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIoIHY1be3\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"506\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";// Learn more: https://www.framer.com/developers/overrides/\nexport function withDataLayerPush(Component){return props=>{const handleClick=e=>{e.stopPropagation();window.dataLayer=window.dataLayer||[];if(window.dataLayer){window.dataLayer.push({event:\"blog-banner-click\"});}else{console.warn(\"dataLayer is not defined\");}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withUtmParams(Component){return props=>{const[link,setLink]=useState(props.link||\"\");useEffect(()=>{const pathSegments=window.location.pathname.split(\"/\").filter(Boolean);const slug=pathSegments[pathSegments.length-1]||\"homepage\";const encodedSlug=encodeURIComponent(slug);if(link){try{const url=new URL(link,window.location.origin);url.searchParams.set(\"utm_source\",\"blog\");url.searchParams.set(\"utm_medium\",\"banner\");url.searchParams.set(\"utm_campaign\",encodedSlug);setLink(url.toString());}catch(error){console.error(\"Invalid link URL:\",link,error);}}},[]);return /*#__PURE__*/_jsx(Component,{...props,link:link});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withDataLayerPush\":{\"type\":\"reactHoc\",\"name\":\"withDataLayerPush\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUtmParams\":{\"type\":\"reactHoc\",\"name\":\"withUtmParams\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OnClick_Blog.map","// Generated by Framer (074c765)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/x1uX2pQ17kYOWs5UPyT3/Hubspot.js\";import{withDataLayerPush}from\"https://framerusercontent.com/modules/SPLX2x2kYM5sdmXacKDT/m8g8QxCaJQot8aKvInMf/OnClick_Blog.js\";import Icons from\"https://framerusercontent.com/modules/BO1E6Zjlz9p5YljfePXd/kQxh8s3oUPcLtv1EUBIv/L6uK8mj90.js\";import Button,*as ButtonInfo from\"https://framerusercontent.com/modules/7sMzX9KNpQoCpspjZqUt/Cy20e6T8iiYIq8xn0tzn/VsVtCyO7o.js\";const IconsFonts=getFonts(Icons);const ButtonFonts=getFonts(Button);const ButtonWithDataLayerPush1uef9jjWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"QwPI5PXGU\",override:withDataLayerPush,scopeId:\"OA0QZcCEr\"}),ButtonInfo);const HubSpotFormFonts=getFonts(HubSpotForm);const enabledGestures={IaNvhncsK:{hover:true}};const cycleOrder=[\"C5bMjgR9C\",\"VLGZbdnMD\",\"KKEvguGxf\",\"IaNvhncsK\",\"du3w6HVga\"];const serializationHash=\"framer-4ICNg\";const variantClassNames={C5bMjgR9C:\"framer-v-1ped7w2\",du3w6HVga:\"framer-v-v07ynx\",IaNvhncsK:\"framer-v-19znxhs\",KKEvguGxf:\"framer-v-1v6jf6p\",VLGZbdnMD:\"framer-v-1hxak0l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:1,ease:[.15,.62,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"adCTA Mob\":\"du3w6HVga\",adCTA:\"IaNvhncsK\",Close:\"VLGZbdnMD\",Open:\"C5bMjgR9C\",Popup:\"KKEvguGxf\"};const getProps=({buttonText,click,height,id,link,title,width,...props})=>{return{...props,HOe59FoO0:buttonText??props.HOe59FoO0??\"Subscribe\",jzgtBD5QL:link??props.jzgtBD5QL,l5FGWix65:click??props.l5FGWix65,QnV0LqGhW:title??props.QnV0LqGhW??\"Get comprehensive guide for superior RLHF. Train safer, more accurate models with expert data. \",variant:humanReadableVariantMap[props.variant]??props.variant??\"C5bMjgR9C\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,l5FGWix65,QnV0LqGhW,jzgtBD5QL,HOe59FoO0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"C5bMjgR9C\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapump6ib=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(l5FGWix65){const res=await l5FGWix65(...args);if(res===false)return false;}});const D_qhuNvgh3q6h3m=activeVariantCallback(async(...args)=>{setVariant(\"VLGZbdnMD\");});const dvgga511F1iy0du9=activeVariantCallback(async(...args)=>{setVariant(\"C5bMjgR9C\");});const sharedStyleClassNames=[];const isDisplayed=()=>{if(baseVariant===\"VLGZbdnMD\")return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed1=()=>{if(baseVariant===\"KKEvguGxf\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({IaNvhncsK:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ped7w2\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"C5bMjgR9C\",onTap:onTapump6ib,ref:refBinding,style:{background:\"linear-gradient(270deg, var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255)) 0%, rgb(0, 0, 0) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",...style},variants:{\"IaNvhncsK-hover\":{background:\"linear-gradient(270deg, var(--token-7402e69f-7968-489a-83cf-73d98ab96dd6, rgb(217, 93, 43)) 0%, rgb(0, 0, 0) 100%)\",boxShadow:\"0px 0px 50px -20px var(--token-0f85d5d9-1d98-40b0-975a-8e738cf9331a, rgb(255, 140, 95))\"},du3w6HVga:{background:\"linear-gradient(270deg, var(--token-7402e69f-7968-489a-83cf-73d98ab96dd6, rgb(217, 93, 43)) 0%, rgb(0, 0, 0) 100%)\"},IaNvhncsK:{background:\"linear-gradient(270deg, var(--token-7402e69f-7968-489a-83cf-73d98ab96dd6, rgb(217, 93, 43)) 0%, rgb(0, 0, 0) 46.76062781531532%)\"},KKEvguGxf:{borderBottomLeftRadius:0,borderBottomRightRadius:0}},...addPropertyOverrides({\"IaNvhncsK-hover\":{\"data-framer-name\":undefined},du3w6HVga:{\"data-framer-name\":\"adCTA Mob\"},IaNvhncsK:{\"data-framer-name\":\"adCTA\"},KKEvguGxf:{\"data-framer-name\":\"Popup\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-190xlwm\",layoutDependency:layoutDependency,layoutId:\"p0GgqnMIz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"16px\",y:(componentViewport?.y||0)+(4+((componentViewport?.height||200)-8-84)/2)+34,...addPropertyOverrides({du3w6HVga:{y:(componentViewport?.y||0)+12+0+0},IaNvhncsK:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||49.5)-0-84)/2)+34}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gjyi4b-container\",layoutDependency:layoutDependency,layoutId:\"fbj_oe5Mp-container\",nodeId:\"fbj_oe5Mp\",rendersWithMotion:true,scopeId:\"OA0QZcCEr\",children:/*#__PURE__*/_jsx(Icons,{D_qhuNvgh:D_qhuNvgh3q6h3m,height:\"100%\",id:\"fbj_oe5Mp\",layoutId:\"fbj_oe5Mp\",m0oeTb8uK:\"rgba(255, 255, 255, 0.39)\",style:{height:\"100%\",width:\"100%\"},variant:\"N4ZxR_D0R\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJNIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebM \\xb6\", \"SuisseIntl-Regular-WebM \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5841228a-6e96-459c-b6c1-f933953e4986, rgb(255, 255, 255)))\"},children:\"Subscribe to Toloka News\"})}),className:\"framer-1bup3mo\",fonts:[\"CUSTOM;SuisseIntl-Regular-WebM \\xb6\"],layoutDependency:layoutDependency,layoutId:\"MBGHNsB7x\",style:{\"--extracted-r6o4lv\":\"var(--token-5841228a-6e96-459c-b6c1-f933953e4986, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({du3w6HVga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJNIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebM \\xb6\", \"SuisseIntl-Regular-WebM \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5841228a-6e96-459c-b6c1-f933953e4986, rgb(255, 255, 255)))\"},children:\"Get comprehensive guide for superior RLHF. Train safer, more accurate models with expert data. \"})}),text:QnV0LqGhW},IaNvhncsK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJNIMK2\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebM \\xb6\", \"SuisseIntl-Regular-WebM \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5841228a-6e96-459c-b6c1-f933953e4986, rgb(255, 255, 255)))\"},children:\"Get comprehensive guide for superior RLHF. Train safer, more accurate models with expert data. \"})}),text:QnV0LqGhW}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,y:(componentViewport?.y||0)+(4+((componentViewport?.height||200)-8-33)/2),...addPropertyOverrides({du3w6HVga:{y:(componentViewport?.y||0)+12+96},IaNvhncsK:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||49.5)-0-33)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uef9jj-container\",layoutDependency:layoutDependency,layoutId:\"QwPI5PXGU-container\",nodeId:\"QwPI5PXGU\",rendersWithMotion:true,scopeId:\"OA0QZcCEr\",children:/*#__PURE__*/_jsx(ButtonWithDataLayerPush1uef9jjWithMappedReactProps1v1ipky,{E2xXKPqwF:jzgtBD5QL,gu1QVN_TH:\"cta-button\",height:\"100%\",id:\"QwPI5PXGU\",jrTyKzajX:HOe59FoO0,layoutId:\"QwPI5PXGU\",variant:\"QOtEVod7M\",width:\"100%\",zXcDlb5mO:false,...addPropertyOverrides({KKEvguGxf:{dvgga511F:dvgga511F1iy0du9,jrTyKzajX:\"Close\",variant:\"TvwlYdkyF\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-a21aym\",layoutDependency:layoutDependency,layoutId:\"XRlpEz_0K\",style:{background:\"linear-gradient(180deg, rgb(242, 242, 242) 0%, rgb(242, 242, 242) 71.01984797297298%, rgba(255, 255, 255, 0) 95%)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bwe80r-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yDSM_M0UY-container\",nodeId:\"yDSM_M0UY\",rendersWithMotion:true,scopeId:\"OA0QZcCEr\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"f7b06d64-1e92-4cc8-9df1-b35570a50163\",height:\"100%\",id:\"yDSM_M0UY\",layoutId:\"yDSM_M0UY\",portalId:\"26617556\",region:\"eu1\",style:{width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4ICNg.framer-1g2puyx, .framer-4ICNg .framer-1g2puyx { display: block; }\",\".framer-4ICNg.framer-1ped7w2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 4px 4px 4px 8px; position: relative; width: 734px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4ICNg .framer-190xlwm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4ICNg .framer-1gjyi4b-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-4ICNg .framer-1bup3mo { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4ICNg .framer-1uef9jj-container { flex: none; height: auto; position: sticky; top: 0px; width: auto; z-index: 1; }\",\".framer-4ICNg .framer-a21aym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: calc(var(--framer-viewport-height, 100vh) * 0.6); justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: auto; padding: 32px 32px 0px 32px; position: absolute; top: 33px; width: 100%; z-index: -1; }\",\".framer-4ICNg .framer-bwe80r-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-4ICNg.framer-v-1v6jf6p.framer-1ped7w2 { overflow: visible; will-change: unset; }\",\".framer-4ICNg.framer-v-19znxhs.framer-1ped7w2 { gap: 10px; height: 50px; justify-content: center; padding: 0px; }\",\".framer-4ICNg.framer-v-19znxhs .framer-190xlwm { flex: none; gap: 24px; justify-content: flex-start; width: 622px; }\",\".framer-4ICNg.framer-v-19znxhs .framer-1bup3mo { flex: none; width: 76%; }\",\".framer-4ICNg.framer-v-v07ynx.framer-1ped7w2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; padding: 12px; width: 300px; }\",\".framer-4ICNg.framer-v-v07ynx .framer-190xlwm { align-content: flex-start; align-items: flex-start; flex: none; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-4ICNg.framer-v-v07ynx .framer-1gjyi4b-container { order: 1; }\",\".framer-4ICNg.framer-v-v07ynx .framer-1bup3mo { flex: none; order: 0; width: 88%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33\n * @framerIntrinsicWidth 734\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VLGZbdnMD\":{\"layout\":[\"fixed\",\"auto\"]},\"KKEvguGxf\":{\"layout\":[\"fixed\",\"auto\"]},\"IaNvhncsK\":{\"layout\":[\"fixed\",\"fixed\"]},\"du3w6HVga\":{\"layout\":[\"fixed\",\"auto\"]},\"bTJPl6hbl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"l5FGWix65\":\"click\",\"QnV0LqGhW\":\"title\",\"jzgtBD5QL\":\"link\",\"HOe59FoO0\":\"buttonText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerTrackingIds [{\"id\":\"cta-button\"}]\n */const FramerOA0QZcCEr=withCSS(Component,css,\"framer-4ICNg\");export default FramerOA0QZcCEr;FramerOA0QZcCEr.displayName=\"Subscription\";FramerOA0QZcCEr.defaultProps={height:33,width:734};addPropertyControls(FramerOA0QZcCEr,{variant:{options:[\"C5bMjgR9C\",\"VLGZbdnMD\",\"KKEvguGxf\",\"IaNvhncsK\",\"du3w6HVga\"],optionTitles:[\"Open\",\"Close\",\"Popup\",\"adCTA\",\"adCTA Mob\"],title:\"Variant\",type:ControlType.Enum},l5FGWix65:{title:\"Click\",type:ControlType.EventHandler},QnV0LqGhW:{defaultValue:\"Get comprehensive guide for superior RLHF. Train safer, more accurate models with expert data. \",displayTextArea:false,title:\"Title\",type:ControlType.String},jzgtBD5QL:{title:\"Link\",type:ControlType.Link},HOe59FoO0:{defaultValue:\"Subscribe\",displayTextArea:false,title:\"Button Text\",type:ControlType.String}});addFonts(FramerOA0QZcCEr,[{explicitInter:true,fonts:[{family:\"SuisseIntl-Regular-WebM \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/6gOO3dyccTStHTV3aFCDXYRZTOU.woff\"}]},...IconsFonts,...ButtonFonts,...HubSpotFormFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOA0QZcCEr\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerTrackingIds\":\"[{\\\"id\\\":\\\"cta-button\\\"}]\",\"framerIntrinsicHeight\":\"33\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VLGZbdnMD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KKEvguGxf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IaNvhncsK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"du3w6HVga\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bTJPl6hbl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"l5FGWix65\\\":\\\"click\\\",\\\"QnV0LqGhW\\\":\\\"title\\\",\\\"jzgtBD5QL\\\":\\\"link\\\",\\\"HOe59FoO0\\\":\\\"buttonText\\\"}\",\"framerIntrinsicWidth\":\"734\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (06534cb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Medium-WebS \\xb6\",\"CUSTOM;SuisseIntl-Bold-WebS \\xb6\",\"CUSTOM;SuisseIntl-BoldItalic-WebS \\xb6\",\"CUSTOM;SuisseIntl-RegularItalic-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Medium-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/DSSW84VHqME4XmTyDr3dnqrVrus.woff2\"},{family:\"SuisseIntl-Bold-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/XvqiJSqWKhYG854LCDEoMCLCT0.woff2\"},{family:\"SuisseIntl-BoldItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/afSuDHqPnMl6Sic76Of7EPNzro.woff\"},{family:\"SuisseIntl-RegularItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/j2RoUYkO8oAQizZSKO4u766Xm2g.woff\"}]}];export const css=['.framer-puPu7 .framer-styles-preset-6kuf7n:not(.rich-text-wrapper), .framer-puPu7 .framer-styles-preset-6kuf7n.rich-text-wrapper h3 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #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: 810px) { .framer-puPu7 .framer-styles-preset-6kuf7n:not(.rich-text-wrapper), .framer-puPu7 .framer-styles-preset-6kuf7n.rich-text-wrapper h3 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-puPu7 .framer-styles-preset-6kuf7n:not(.rich-text-wrapper), .framer-puPu7 .framer-styles-preset-6kuf7n.rich-text-wrapper h3 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 27px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-puPu7\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (dc5e905)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Medium-WebS \\xb6\",\"CUSTOM;SuisseIntl-Bold-WebS \\xb6\",\"CUSTOM;SuisseIntl-BoldItalic-WebS \\xb6\",\"CUSTOM;SuisseIntl-RegularItalic-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Medium-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/DSSW84VHqME4XmTyDr3dnqrVrus.woff2\"},{family:\"SuisseIntl-Bold-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/XvqiJSqWKhYG854LCDEoMCLCT0.woff2\"},{family:\"SuisseIntl-BoldItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/afSuDHqPnMl6Sic76Of7EPNzro.woff\"},{family:\"SuisseIntl-RegularItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/j2RoUYkO8oAQizZSKO4u766Xm2g.woff\"}]}];export const css=['.framer-vYJE5 .framer-styles-preset-1s6mb09:not(.rich-text-wrapper), .framer-vYJE5 .framer-styles-preset-1s6mb09.rich-text-wrapper h1 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 54px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-vYJE5 .framer-styles-preset-1s6mb09:not(.rich-text-wrapper), .framer-vYJE5 .framer-styles-preset-1s6mb09.rich-text-wrapper h1 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 45px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-vYJE5 .framer-styles-preset-1s6mb09:not(.rich-text-wrapper), .framer-vYJE5 .framer-styles-preset-1s6mb09.rich-text-wrapper h1 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }'];export const className=\"framer-vYJE5\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (06534cb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-SemiBold-WebS \\xb6\",\"CUSTOM;SuisseIntl-Bold-WebS \\xb6\",\"CUSTOM;SuisseIntl-BoldItalic-WebS \\xb6\",\"CUSTOM;SuisseIntl-RegularItalic-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-SemiBold-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/mVY2F0seUaJsi9IRRFxP5tBxxeQ.woff2\"},{family:\"SuisseIntl-Bold-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/XvqiJSqWKhYG854LCDEoMCLCT0.woff2\"},{family:\"SuisseIntl-BoldItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/afSuDHqPnMl6Sic76Of7EPNzro.woff\"},{family:\"SuisseIntl-RegularItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/j2RoUYkO8oAQizZSKO4u766Xm2g.woff\"}]}];export const css=['.framer-HIVvw .framer-styles-preset-1u46sct:not(.rich-text-wrapper), .framer-HIVvw .framer-styles-preset-1u46sct.rich-text-wrapper h5 { --framer-font-family: \"SuisseIntl-SemiBold-WebS \\xb6\", \"SuisseIntl-SemiBold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 23px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #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: 810px) { .framer-HIVvw .framer-styles-preset-1u46sct:not(.rich-text-wrapper), .framer-HIVvw .framer-styles-preset-1u46sct.rich-text-wrapper h5 { --framer-font-family: \"SuisseIntl-SemiBold-WebS \\xb6\", \"SuisseIntl-SemiBold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-HIVvw .framer-styles-preset-1u46sct:not(.rich-text-wrapper), .framer-HIVvw .framer-styles-preset-1u46sct.rich-text-wrapper h5 { --framer-font-family: \"SuisseIntl-SemiBold-WebS \\xb6\", \"SuisseIntl-SemiBold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-HIVvw\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (06534cb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Medium-WebS \\xb6\",\"CUSTOM;SuisseIntl-Bold-WebS \\xb6\",\"CUSTOM;SuisseIntl-BoldItalic-WebS \\xb6\",\"CUSTOM;SuisseIntl-RegularItalic-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Medium-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/DSSW84VHqME4XmTyDr3dnqrVrus.woff2\"},{family:\"SuisseIntl-Bold-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/XvqiJSqWKhYG854LCDEoMCLCT0.woff2\"},{family:\"SuisseIntl-BoldItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/afSuDHqPnMl6Sic76Of7EPNzro.woff\"},{family:\"SuisseIntl-RegularItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/j2RoUYkO8oAQizZSKO4u766Xm2g.woff\"}]}];export const css=['.framer-nVpIA .framer-styles-preset-ah6jq7:not(.rich-text-wrapper), .framer-nVpIA .framer-styles-preset-ah6jq7.rich-text-wrapper h4 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 27px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #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: 810px) { .framer-nVpIA .framer-styles-preset-ah6jq7:not(.rich-text-wrapper), .framer-nVpIA .framer-styles-preset-ah6jq7.rich-text-wrapper h4 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 25px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-nVpIA .framer-styles-preset-ah6jq7:not(.rich-text-wrapper), .framer-nVpIA .framer-styles-preset-ah6jq7.rich-text-wrapper h4 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BoldItalic-WebS \\xb6\", \"SuisseIntl-BoldItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-RegularItalic-WebS \\xb6\", \"SuisseIntl-RegularItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 23px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-nVpIA\";\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 (dc5e905)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SuisseIntl-Medium-WebS \\xb6\",\"CUSTOM;SuisseIntl-Bold-WebS \\xb6\",\"CUSTOM;SuisseIntl-BlackItalic-WebS \\xb6\",\"CUSTOM;SuisseIntl-MediumItalic-WebS \\xb6\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SuisseIntl-Medium-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/DSSW84VHqME4XmTyDr3dnqrVrus.woff2\"},{family:\"SuisseIntl-Bold-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/XvqiJSqWKhYG854LCDEoMCLCT0.woff2\"},{family:\"SuisseIntl-BlackItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/kCQ1vf45UlAbbvxRWskIfruCx5U.woff\"},{family:\"SuisseIntl-MediumItalic-WebS \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/WDU1liKFJhmjoTIKMjpMjlvgJhI.woff\"}]}];export const css=['.framer-poWBx .framer-styles-preset-p119lr:not(.rich-text-wrapper), .framer-poWBx .framer-styles-preset-p119lr.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BlackItalic-WebS \\xb6\", \"SuisseIntl-BlackItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-MediumItalic-WebS \\xb6\", \"SuisseIntl-MediumItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-poWBx .framer-styles-preset-p119lr:not(.rich-text-wrapper), .framer-poWBx .framer-styles-preset-p119lr.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BlackItalic-WebS \\xb6\", \"SuisseIntl-BlackItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-MediumItalic-WebS \\xb6\", \"SuisseIntl-MediumItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 110%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-poWBx .framer-styles-preset-p119lr:not(.rich-text-wrapper), .framer-poWBx .framer-styles-preset-p119lr.rich-text-wrapper h2 { --framer-font-family: \"SuisseIntl-Medium-WebS \\xb6\", \"SuisseIntl-Medium-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold: \"SuisseIntl-Bold-WebS \\xb6\", \"SuisseIntl-Bold-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SuisseIntl-BlackItalic-WebS \\xb6\", \"SuisseIntl-BlackItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-family-italic: \"SuisseIntl-MediumItalic-WebS \\xb6\", \"SuisseIntl-MediumItalic-WebS \\xb6 Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-c5e595e7-644a-4d6a-ad04-ee2f626c5e1d, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; --framer-text-wrap: balance; } }'];export const className=\"framer-poWBx\";\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 (3ad0d99)\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,InjectSelectionStyle,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResetOuterLinkContext,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}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{Audio}from\"https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/x1uX2pQ17kYOWs5UPyT3/Hubspot.js\";import Footer from\"#framer/local/canvasComponent/EG2tG8ioM/EG2tG8ioM.js\";import Accordion from\"#framer/local/canvasComponent/IoIHY1be3/IoIHY1be3.js\";import Icons from\"#framer/local/canvasComponent/L6uK8mj90/L6uK8mj90.js\";import Subscription from\"#framer/local/canvasComponent/OA0QZcCEr/OA0QZcCEr.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/VsVtCyO7o/VsVtCyO7o.js\";import Navbar from\"#framer/local/canvasComponent/yr8gia8C8/yr8gia8C8.js\";import{withUtmParams}from\"#framer/local/codeFile/jk_ovUI/OnClick_Blog.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/eo4RAmtig/eo4RAmtig.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/BIJ8UGZBS/BIJ8UGZBS.js\";import*as sharedStyle10 from\"#framer/local/css/bpz3j2PRY/bpz3j2PRY.js\";import*as sharedStyle9 from\"#framer/local/css/C3hAmy1_J/C3hAmy1_J.js\";import*as sharedStyle16 from\"#framer/local/css/DJwr5zbOV/DJwr5zbOV.js\";import*as sharedStyle7 from\"#framer/local/css/fr4yzrtKc/fr4yzrtKc.js\";import*as sharedStyle18 from\"#framer/local/css/iJ4q_xOOQ/iJ4q_xOOQ.js\";import*as sharedStyle from\"#framer/local/css/JljUcVQms/JljUcVQms.js\";import*as sharedStyle1 from\"#framer/local/css/nFqkUvTMd/nFqkUvTMd.js\";import*as sharedStyle11 from\"#framer/local/css/Nplo0Dtls/Nplo0Dtls.js\";import*as sharedStyle3 from\"#framer/local/css/oJYozxrol/oJYozxrol.js\";import*as sharedStyle15 from\"#framer/local/css/Pmw1SZBu2/Pmw1SZBu2.js\";import*as sharedStyle14 from\"#framer/local/css/PW0Sg2au3/PW0Sg2au3.js\";import*as sharedStyle8 from\"#framer/local/css/QzWHX1Dsi/QzWHX1Dsi.js\";import*as sharedStyle6 from\"#framer/local/css/tSESN5f6h/tSESN5f6h.js\";import*as sharedStyle2 from\"#framer/local/css/UaJc0QcmK/UaJc0QcmK.js\";import*as sharedStyle17 from\"#framer/local/css/uJ2IJhMd3/uJ2IJhMd3.js\";import*as sharedStyle12 from\"#framer/local/css/vRPwlvdiy/vRPwlvdiy.js\";import*as sharedStyle13 from\"#framer/local/css/Y32Gpz_m3/Y32Gpz_m3.js\";import*as sharedStyle4 from\"#framer/local/css/ZWckCtNdY/ZWckCtNdY.js\";import metadataProvider from\"#framer/local/webPageMetadata/g4p9Tjo2A/g4p9Tjo2A.js\";const NavbarFonts=getFonts(Navbar);const SubscriptionFonts=getFonts(Subscription);const ButtonFonts=getFonts(Button);const ButtonWithUtmParamsecamj4WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"OJnrq0eJe\",override:withUtmParams,scopeId:\"g4p9Tjo2A\"}),ButtonInfo);const AudioFonts=getFonts(Audio);const IconsFonts=getFonts(Icons);const HubSpotFormFonts=getFonts(HubSpotForm);const AccordionFonts=getFonts(Accordion);const FooterFonts=getFonts(Footer);const breakpoints={Oxn_WHbiv:\"(max-width: 809.98px)\",VUu7X1qAu:\"(min-width: 1200px)\",wjHsun782:\"(min-width: 810px) and (max-width: 1199.98px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-DY3Do\";const variantClassNames={Oxn_WHbiv:\"framer-v-17atckx\",VUu7X1qAu:\"framer-v-qkfz6t\",wjHsun782:\"framer-v-x81w16\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"long\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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 transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const dateOptions1={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString1=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions1,activeLocale);};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"VUu7X1qAu\",Phone:\"Oxn_WHbiv\",Tablet:\"wjHsun782\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VUu7X1qAu\"};};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:\"g4p9Tjo2A\",data:Blog,type:\"Collection\"},select:[{collection:\"g4p9Tjo2A\",name:\"hIKjEC3tV\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"sHp4PCU20\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"P7ZVmmroe\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"EQstg0Naj\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"I1A4GrVJQ\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"pfq_nl5T4\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"rbJJUn9aG\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"B_uIdF3k1\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"IkSSnoEGs\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"ZN65nZv3e\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"c7DPFwFRA\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"gi5HagQds\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"QGXKUUIrt\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"PzaWbS0Cf\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"oSzElnHJt\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"QjYAG7JWJ\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"LI4X4vZFW\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"vI4dPrLRK\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"UUJtFgFLX\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"UgmaPFLvC\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"Xzfy3x6P2\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"BNszBsVaw\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"aR6HuSuRX\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"oNT9Le4w0\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"JxZ_qcaci\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"sVTrhAA3t\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"PMYJh3exn\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"OaLx54mPn\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"UaEfJoqM1\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"sj9twiKpg\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"dvp4_e6pq\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"NUfR2qa3e\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"r_eI0_35p\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"epslSf6y9\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"cAiyDLPme\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"TwCPgjdej\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"fw0kjC7MR\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"zYuzyCk9R\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"vTPtzFx2b\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"gGbPbsWIr\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"yDbAXKcAw\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"sl2nyrc0c\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"wgzHG5CCn\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"VxXl7lyAB\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"o2XXt7pi5\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"nrvIVRw19\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"jnf_OjsJs\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"bhhiI7hE4\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"b6YWxclJY\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"Foky6ytrZ\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"iZel5knoT\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"QPtgx5Imu\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"dYJqQXfC3\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"SGtCxUZTw\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"vXFcNuxca\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"C4kxl74y3\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"xijEmFP57\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"CpyaJQYrh\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"VahrLyaqK\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"l9Rbaxqxr\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"MYwJCVuay\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"ub6L4Obsk\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"ZpoAEhxdj\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"e_BJQyrd0\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"Z62uNhjXt\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"bkbjb1QJ3\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"PCs9z3GLQ\",type:\"Identifier\"},{collection:\"g4p9Tjo2A\",name:\"OeZ28qcVX\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"g4p9Tjo2A\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,hIKjEC3tV=getFromCurrentRouteData(\"hIKjEC3tV\")??\"\",I1A4GrVJQ=getFromCurrentRouteData(\"I1A4GrVJQ\"),rbJJUn9aG=getFromCurrentRouteData(\"rbJJUn9aG\")??\"\",pfq_nl5T4=getFromCurrentRouteData(\"pfq_nl5T4\")??\"\",IkSSnoEGs=getFromCurrentRouteData(\"IkSSnoEGs\")??\"\",B_uIdF3k1=getFromCurrentRouteData(\"B_uIdF3k1\"),ZN65nZv3e=getFromCurrentRouteData(\"ZN65nZv3e\")??\"\",gi5HagQds=getFromCurrentRouteData(\"gi5HagQds\")??\"\",c7DPFwFRA=getFromCurrentRouteData(\"c7DPFwFRA\"),QGXKUUIrt=getFromCurrentRouteData(\"QGXKUUIrt\")??\"\",oSzElnHJt=getFromCurrentRouteData(\"oSzElnHJt\")??\"\",PzaWbS0Cf=getFromCurrentRouteData(\"PzaWbS0Cf\"),QjYAG7JWJ=getFromCurrentRouteData(\"QjYAG7JWJ\")??\"\",EQstg0Naj=getFromCurrentRouteData(\"EQstg0Naj\"),vI4dPrLRK=getFromCurrentRouteData(\"vI4dPrLRK\"),LI4X4vZFW=getFromCurrentRouteData(\"LI4X4vZFW\"),UUJtFgFLX=getFromCurrentRouteData(\"UUJtFgFLX\")??\"\",UgmaPFLvC=getFromCurrentRouteData(\"UgmaPFLvC\")??\"\",Xzfy3x6P2=getFromCurrentRouteData(\"Xzfy3x6P2\")??\"\",BNszBsVaw=getFromCurrentRouteData(\"BNszBsVaw\")??\"\",JxZ_qcaci=getFromCurrentRouteData(\"JxZ_qcaci\")??\"\",sVTrhAA3t=getFromCurrentRouteData(\"sVTrhAA3t\")??\"\",PMYJh3exn=getFromCurrentRouteData(\"PMYJh3exn\")??\"\",OaLx54mPn=getFromCurrentRouteData(\"OaLx54mPn\")??\"\",aR6HuSuRX=getFromCurrentRouteData(\"aR6HuSuRX\")??\"\",UaEfJoqM1=getFromCurrentRouteData(\"UaEfJoqM1\")??\"\",dvp4_e6pq=getFromCurrentRouteData(\"dvp4_e6pq\"),sj9twiKpg=getFromCurrentRouteData(\"sj9twiKpg\")??\"\",NUfR2qa3e=getFromCurrentRouteData(\"NUfR2qa3e\")??\"\",epslSf6y9=getFromCurrentRouteData(\"epslSf6y9\"),cAiyDLPme=getFromCurrentRouteData(\"cAiyDLPme\")??\"\",r_eI0_35p=getFromCurrentRouteData(\"r_eI0_35p\")??\"\",fw0kjC7MR=getFromCurrentRouteData(\"fw0kjC7MR\"),TwCPgjdej=getFromCurrentRouteData(\"TwCPgjdej\")??\"\",zYuzyCk9R=getFromCurrentRouteData(\"zYuzyCk9R\")??\"\",vTPtzFx2b=getFromCurrentRouteData(\"vTPtzFx2b\")??\"\",yDbAXKcAw=getFromCurrentRouteData(\"yDbAXKcAw\"),gGbPbsWIr=getFromCurrentRouteData(\"gGbPbsWIr\")??\"\",sl2nyrc0c=getFromCurrentRouteData(\"sl2nyrc0c\")??\"\",VxXl7lyAB=getFromCurrentRouteData(\"VxXl7lyAB\"),wgzHG5CCn=getFromCurrentRouteData(\"wgzHG5CCn\")??\"\",o2XXt7pi5=getFromCurrentRouteData(\"o2XXt7pi5\")??\"\",jnf_OjsJs=getFromCurrentRouteData(\"jnf_OjsJs\"),nrvIVRw19=getFromCurrentRouteData(\"nrvIVRw19\")??\"\",bhhiI7hE4=getFromCurrentRouteData(\"bhhiI7hE4\")??\"\",b6YWxclJY=getFromCurrentRouteData(\"b6YWxclJY\")??\"\",iZel5knoT=getFromCurrentRouteData(\"iZel5knoT\"),Foky6ytrZ=getFromCurrentRouteData(\"Foky6ytrZ\")??\"\",QPtgx5Imu=getFromCurrentRouteData(\"QPtgx5Imu\")??\"\",SGtCxUZTw=getFromCurrentRouteData(\"SGtCxUZTw\"),dYJqQXfC3=getFromCurrentRouteData(\"dYJqQXfC3\")??\"\",vXFcNuxca=getFromCurrentRouteData(\"vXFcNuxca\")??\"\",xijEmFP57=getFromCurrentRouteData(\"xijEmFP57\"),C4kxl74y3=getFromCurrentRouteData(\"C4kxl74y3\")??\"\",CpyaJQYrh=getFromCurrentRouteData(\"CpyaJQYrh\")??\"\",VahrLyaqK=getFromCurrentRouteData(\"VahrLyaqK\")??\"\",MYwJCVuay=getFromCurrentRouteData(\"MYwJCVuay\"),l9Rbaxqxr=getFromCurrentRouteData(\"l9Rbaxqxr\")??\"\",ub6L4Obsk=getFromCurrentRouteData(\"ub6L4Obsk\")??\"\",e_BJQyrd0=getFromCurrentRouteData(\"e_BJQyrd0\"),ZpoAEhxdj=getFromCurrentRouteData(\"ZpoAEhxdj\")??\"\",Z62uNhjXt=getFromCurrentRouteData(\"Z62uNhjXt\")??\"\",PCs9z3GLQ=getFromCurrentRouteData(\"PCs9z3GLQ\"),bkbjb1QJ3=getFromCurrentRouteData(\"bkbjb1QJ3\")??\"\",OeZ28qcVX=getFromCurrentRouteData(\"OeZ28qcVX\")??\"\",oNT9Le4w0=getFromCurrentRouteData(\"oNT9Le4w0\")??\"\",P7ZVmmroe=getFromCurrentRouteData(\"P7ZVmmroe\")??\"\",P7ZVmmroezIDIgc7il,LI4X4vZFWzIDIgc7il,hIKjEC3tVzIDIgc7il,EQstg0NajzIDIgc7il,idzIDIgc7il,sHp4PCU20=getFromCurrentRouteData(\"sHp4PCU20\")??\"\",...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider({hIKjEC3tV,LI4X4vZFW,sHp4PCU20},activeLocale),[hIKjEC3tV,LI4X4vZFW,sHp4PCU20,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const dvgga511F3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const D_qhuNvgh1wnntms=({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,sharedStyle18.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"L7uHmA4Z4\");const ref1=React.useRef(null);const visible=isSet(IkSSnoEGs);const visible1=isSet(B_uIdF3k1);const visible2=isSet(gi5HagQds);const visible3=isSet(c7DPFwFRA);const visible4=isSet(oSzElnHJt);const visible5=isSet(PzaWbS0Cf);const isDisplayed=()=>{if(!isBrowser())return true;if([\"wjHsun782\",\"Oxn_WHbiv\"].includes(baseVariant))return false;return true;};const activeLocaleCode=useLocaleCode();const textContent=toDateString(EQstg0Naj,activeLocaleCode);const textContent1=enumToDisplayNameFunctions[\"vI4dPrLRK\"]?.(vI4dPrLRK,activeLocale);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"wjHsun782\")return true;return false;};const visible6=isSet(UUJtFgFLX);const visible7=isSet(UgmaPFLvC);const visible8=isSet(Xzfy3x6P2);const visible9=isSet(BNszBsVaw);const visible10=isSet(JxZ_qcaci);const router=useRouter();const visible11=isSet(UaEfJoqM1);const visible12=isSet(dvp4_e6pq);const visible13=isSet(sj9twiKpg);const visible14=isSet(NUfR2qa3e);const visible15=isSet(epslSf6y9);const visible16=isSet(cAiyDLPme);const visible17=isSet(r_eI0_35p);const visible18=isSet(fw0kjC7MR);const visible19=isSet(TwCPgjdej);const visible20=isSet(zYuzyCk9R);const visible21=isSet(vTPtzFx2b);const visible22=isSet(yDbAXKcAw);const visible23=isSet(gGbPbsWIr);const visible24=isSet(sl2nyrc0c);const visible25=isSet(VxXl7lyAB);const visible26=isSet(wgzHG5CCn);const visible27=isSet(o2XXt7pi5);const visible28=isSet(jnf_OjsJs);const visible29=isSet(nrvIVRw19);const visible30=isSet(bhhiI7hE4);const visible31=isSet(b6YWxclJY);const visible32=isSet(iZel5knoT);const visible33=isSet(Foky6ytrZ);const visible34=isSet(QPtgx5Imu);const visible35=isSet(SGtCxUZTw);const visible36=isSet(dYJqQXfC3);const visible37=isSet(vXFcNuxca);const visible38=isSet(xijEmFP57);const visible39=isSet(C4kxl74y3);const visible40=isSet(CpyaJQYrh);const visible41=isSet(VahrLyaqK);const visible42=isSet(MYwJCVuay);const visible43=isSet(l9Rbaxqxr);const visible44=isSet(ub6L4Obsk);const visible45=isSet(e_BJQyrd0);const visible46=isSet(ZpoAEhxdj);const visible47=isSet(Z62uNhjXt);const visible48=isSet(PCs9z3GLQ);const visible49=isSet(bkbjb1QJ3);const visible50=isSet(OeZ28qcVX);const visible51=isSet(oNT9Le4w0);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"VUu7X1qAu\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-5841228a-6e96-459c-b6c1-f933953e4986, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-qkfz6t\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:\"min(100vw, 1224px)\",y:-.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cdvuxa-container\",layoutScroll:true,nodeId:\"UIe04LgZ7\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"AXq9PPa0X\"},wjHsun782:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"AXq9PPa0X\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"UIe04LgZ7\",layoutId:\"UIe04LgZ7\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"sYWchYGiK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nyz8iq\",\"data-framer-name\":\"Post Canvas\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12iuhx6\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.85)`,y:(componentViewport?.y||0)+100+0+0+0+0},wjHsun782:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1224px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.6117)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-112ug6m-container\",nodeId:\"R6d8pQd7C\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{variant:\"du3w6HVga\"}},children:/*#__PURE__*/_jsx(Subscription,{height:\"100%\",HOe59FoO0:\"Learn more\",id:\"R6d8pQd7C\",jzgtBD5QL:\"https://toloka.ai/research?utm_source=blog&utm_medium=headerbanner&utm_campaign=research\",layoutId:\"R6d8pQd7C\",QnV0LqGhW:\"Read our papers on AI training, evaluation, and safety\",style:{width:\"100%\"},variant:\"IaNvhncsK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1s6mb09\",\"data-styles-preset\":\"JljUcVQms\",style:{\"--framer-text-alignment\":\"center\"},children:\"Content\"})}),className:\"framer-1fdwxzv\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:hIKjEC3tV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d5c3ha\",\"data-framer-name\":\"Attributes\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rsijox\",\"data-framer-name\":\"Author\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1djm2rr\",\"data-framer-name\":\"A1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+0+0+0+177.8+0+0+0+17+0),pixelHeight:400,pixelWidth:400,sizes:\"24px\",...toResponsiveImage(I1A4GrVJQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:400,pixelWidth:400,sizes:\"24px\",...toResponsiveImage(I1A4GrVJQ)},className:\"framer-2osf6c\",\"data-framer-name\":\"Author Photo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:rbJJUn9aG,motionChild:true,nodeId:\"iOsN2z2H4\",openInNewTab:false,relValues:[],scopeId:\"g4p9Tjo2A\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h2pjpr\",\"data-styles-preset\":\"UaJc0QcmK\",children:\"Content\"})})})}),className:\"framer-1sui7ez\",\"data-framer-name\":\"Author Name 1\",fonts:[\"Inter\"],text:pfq_nl5T4,verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10keuz4\",\"data-framer-name\":\"A2\",children:[visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+0+0+0+177.8+0+0+0+51+0),pixelHeight:500,pixelWidth:500,sizes:\"24px\",...toResponsiveImage(B_uIdF3k1)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:500,pixelWidth:500,sizes:\"24px\",...toResponsiveImage(B_uIdF3k1)},className:\"framer-wxk4g9\",\"data-framer-name\":\"Author Photo\"})}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:ZN65nZv3e,motionChild:true,nodeId:\"gvwYPVzow\",openInNewTab:false,relValues:[],scopeId:\"g4p9Tjo2A\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h2pjpr\",\"data-styles-preset\":\"UaJc0QcmK\",children:\"Content\"})})})}),className:\"framer-j9y8vl\",\"data-framer-name\":\"Author Name 2\",fonts:[\"Inter\"],text:IkSSnoEGs,verticalAlignment:\"top\",withExternalLayout:true})]}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-shdf0k\",\"data-framer-name\":\"A3\",children:[visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+0+0+0+177.8+0+0+0+51+-12),sizes:\"24px\",...toResponsiveImage(c7DPFwFRA)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",...toResponsiveImage(c7DPFwFRA)},className:\"framer-1ldbdfe\",\"data-framer-name\":\"Author Photo\"})}),visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:QGXKUUIrt,motionChild:true,nodeId:\"GXu_hzpEt\",openInNewTab:false,relValues:[],scopeId:\"g4p9Tjo2A\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h2pjpr\",\"data-styles-preset\":\"UaJc0QcmK\",children:\"Content\"})})})}),className:\"framer-l4t0y8\",\"data-framer-name\":\"Author Name 3\",fonts:[\"Inter\"],text:gi5HagQds,verticalAlignment:\"top\",withExternalLayout:true})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vbtziq\",\"data-framer-name\":\"A4\",children:[visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+0+0+0+177.8+0+0+0+51+-12),sizes:\"24px\",...toResponsiveImage(PzaWbS0Cf)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",...toResponsiveImage(PzaWbS0Cf)},className:\"framer-44gijb\",\"data-framer-name\":\"Author Photo\"})}),visible4&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:/*#__PURE__*/_jsx(Link,{href:QjYAG7JWJ,motionChild:true,nodeId:\"OW2tpiTJN\",openInNewTab:false,relValues:[],scopeId:\"g4p9Tjo2A\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1h2pjpr\",\"data-styles-preset\":\"UaJc0QcmK\",children:\"Alexander Borodetskiy\"})})})}),className:\"framer-1vnqjw9\",\"data-framer-name\":\"Author Name 3\",fonts:[\"Inter\"],text:oSzElnHJt,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-p6vp1y hidden-x81w16 hidden-17atckx\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jfwwo1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-30cyno\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8d2uh2\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-yd7iic\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c47aju hidden-qkfz6t hidden-17atckx\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+0+0+0+310.2),pixelHeight:1200,pixelWidth:2400,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.85)`,...toResponsiveImage(LI4X4vZFW),...{positionX:\"center\",positionY:\"top\"}}},wjHsun782:{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:2400,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1224px) - 96px)`,...toResponsiveImage(LI4X4vZFW)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:2400,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.85)`,...toResponsiveImage(LI4X4vZFW)},className:\"framer-1oe0rq\",\"data-framer-name\":\"Banner\"})}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17cu2se\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-43ostu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qjkjx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h4tbvn\",\"data-framer-name\":\"Trophy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1168jir\",\"data-framer-name\":\"Fill\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 19\"><path d=\"M 14.384 0 C 15.278 0 16.003 0.725 16.003 1.619 L 16.003 2.008 C 16.527 2.019 17.009 2.048 17.428 2.133 C 18.185 2.287 18.828 2.635 19.299 3.349 C 19.732 4.005 19.863 4.657 19.747 5.367 C 19.648 5.976 19.362 6.626 19.083 7.277 C 17.903 10.031 15.75 12.358 13.594 13.806 C 12.846 14.366 11.963 14.755 11.003 14.916 L 11.003 17 L 14.003 17 C 14.555 17 15.003 17.448 15.003 18 C 15.003 18.552 14.555 19 14.003 19 L 6.003 19 C 5.451 19 5.003 18.553 5.003 18.001 C 5.003 17.449 5.451 17.001 6.003 17.001 L 9.003 17 L 9.003 14.916 C 8.039 14.754 7.153 14.364 6.403 13.801 C 4.25 12.353 2.102 10.028 0.923 7.277 C 0.644 6.626 0.358 5.976 0.259 5.367 C 0.143 4.657 0.274 4.005 0.707 3.349 C 1.178 2.635 1.82 2.287 2.578 2.133 C 2.997 2.048 3.479 2.019 4.003 2.008 L 4.003 1.619 C 4.003 0.725 4.728 0 5.622 0 Z M 6.003 9.001 C 6.003 11.205 7.786 12.992 9.988 13 L 10.016 13 C 12.219 12.993 14.003 11.206 14.003 9.001 L 14.003 2 L 6.003 2 Z M 4.003 4.009 C 3.563 4.018 3.239 4.039 2.977 4.093 C 2.63 4.163 2.498 4.264 2.376 4.449 C 2.216 4.692 2.199 4.837 2.233 5.046 C 2.284 5.357 2.445 5.75 2.762 6.489 C 3.092 7.26 3.516 7.998 4.003 8.686 Z M 16.003 8.684 C 16.489 7.996 16.914 7.26 17.244 6.489 C 17.561 5.75 17.722 5.357 17.772 5.046 C 17.806 4.837 17.79 4.692 17.63 4.449 C 17.508 4.264 17.375 4.163 17.029 4.093 C 16.767 4.039 16.442 4.018 16.003 4.009 Z\" fill=\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255)) /* {&quot;name&quot;:&quot;Toloka Blue&quot;} */\"></path></svg>',svgContentId:11950147463,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1u46sct\",\"data-styles-preset\":\"oJYozxrol\",style:{\"--framer-text-color\":\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255))\"},children:\"Challenge:\"})}),className:\"framer-1pks7ej\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kj0hpw\",\"data-styles-preset\":\"ZWckCtNdY\",children:\"Challenge\"})}),className:\"framer-1rwo3ep\",fonts:[\"Inter\"],text:UUJtFgFLX,verticalAlignment:\"top\",withExternalLayout:true})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lhspq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rie4g3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1921u01\",\"data-framer-name\":\"pencil\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-awwl7z\",\"data-framer-name\":\"Fill\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 14.511 0 C 17.464 0 19.872 2.395 19.872 5.349 C 19.872 5.765 19.702 6.163 19.402 6.451 L 8.219 17.189 L 8.005 17.38 L 7.808 17.535 C 7.339 17.884 6.801 18.133 6.229 18.266 L 1.983 19.249 L 1.795 19.28 C 1.739 19.286 1.683 19.286 1.629 19.285 C 1.627 19.285 1.624 19.285 1.622 19.285 C 1.337 19.278 1.072 19.186 0.852 19.031 C 0.807 19 0.765 18.967 0.725 18.932 C 0.523 18.754 0.372 18.521 0.296 18.257 C 0.235 18.045 0.224 17.814 0.273 17.576 L 1.119 13.517 C 1.184 13.204 1.286 12.902 1.417 12.615 C 1.524 12.381 1.651 12.157 1.799 11.946 C 1.889 11.817 1.986 11.692 2.091 11.573 L 2.308 11.344 L 4.231 9.458 L 9.677 4.118 C 9.693 4.102 9.71 4.087 9.728 4.071 L 13.437 0.438 C 13.723 0.157 14.11 0 14.511 0 Z M 6.784 9.757 L 3.707 12.773 C 3.388 13.086 3.168 13.488 3.077 13.926 L 2.416 17.096 L 5.779 16.316 C 5.907 16.287 6.031 16.244 6.15 16.193 C 6.169 16.185 6.189 16.179 6.208 16.17 L 6.345 16.102 C 6.522 16.005 6.686 15.886 6.833 15.745 L 14.384 8.488 C 14.267 6.908 12.949 5.661 11.339 5.661 L 10.963 5.661 Z M 12.787 3.873 C 14.286 4.321 15.493 5.445 16.053 6.893 L 17.866 5.152 C 17.767 3.461 16.399 2.096 14.694 2.004 Z\" fill=\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255)) /* {&quot;name&quot;:&quot;Toloka Blue&quot;} */\"></path></svg>',svgContentId:10200117783,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1u46sct\",\"data-styles-preset\":\"oJYozxrol\",style:{\"--framer-text-color\":\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255))\"},children:\"Solution:\"})}),className:\"framer-1fl56wr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kj0hpw\",\"data-styles-preset\":\"ZWckCtNdY\",children:\"Solution\"})}),className:\"framer-16d3b4f\",fonts:[\"Inter\"],text:UgmaPFLvC,verticalAlignment:\"top\",withExternalLayout:true})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwh7tc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157g6tb\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wdjvq7\",\"data-framer-name\":\"Calendar\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oqkn9q\",\"data-framer-name\":\"Fill\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 13 0 C 13.552 0 14 0.448 14 1 L 14 2.04 C 14.785 2.088 15.341 2.194 15.816 2.436 C 16.569 2.819 17.181 3.431 17.564 4.184 C 18 5.039 18 6.16 18 8.4 L 18 12 C 18 12.014 17.998 12.028 17.997 12.042 C 17.995 13.991 17.971 15.019 17.564 15.816 L 17.41 16.092 C 17.026 16.718 16.475 17.229 15.816 17.564 L 15.652 17.641 C 14.816 18 13.7 18 11.6 18 L 6.4 18 L 4.916 17.993 C 3.724 17.974 2.961 17.904 2.348 17.641 L 2.184 17.564 C 1.525 17.229 0.974 16.718 0.59 16.092 L 0.436 15.816 C 0.029 15.019 0.004 13.991 0.002 12.042 C 0.001 12.028 0 12.014 0 12 L 0 8.4 C 0 6.16 0 5.039 0.436 4.184 C 0.819 3.431 1.431 2.819 2.184 2.436 C 2.659 2.193 3.215 2.086 4 2.038 L 4 1 C 4 0.448 4.448 0 5 0 C 5.552 0 6 0.448 6 1 L 6 2.001 L 6.4 2 L 11.6 2 C 11.737 2 11.871 2.001 12 2.001 L 12 1 C 12 0.448 12.448 0 13 0 Z M 3 8 C 2.448 8 2 8.448 2 9 L 2 11.6 C 2 12.753 2.002 13.498 2.048 14.065 C 2.092 14.608 2.167 14.809 2.218 14.908 C 2.41 15.284 2.716 15.591 3.092 15.782 C 3.191 15.833 3.392 15.908 3.936 15.952 C 4.502 15.998 5.247 16 6.4 16 L 11.6 16 C 12.753 16 13.498 15.998 14.064 15.952 C 14.608 15.908 14.809 15.833 14.908 15.782 C 15.284 15.591 15.59 15.284 15.782 14.908 C 15.833 14.809 15.908 14.608 15.952 14.065 C 15.998 13.498 16 12.753 16 11.6 L 16 9 C 16 8.448 15.552 8 15 8 Z M 13 10 C 13.552 10 14 10.448 14 11 L 14 12 C 14 12.552 13.552 13 13 13 L 12 13 C 11.448 13 11 12.552 11 12 L 11 11 C 11 10.448 11.448 10 12 10 Z M 6.4 4 C 5.247 4 4.502 4.002 3.936 4.048 C 3.392 4.092 3.191 4.167 3.092 4.218 C 2.716 4.41 2.41 4.716 2.218 5.092 C 2.167 5.191 2.092 5.392 2.048 5.936 C 2.042 6.008 2.039 6.083 2.034 6.161 C 2.337 6.058 2.662 6 3 6 L 15 6 C 15.338 6 15.662 6.058 15.965 6.161 C 15.96 6.083 15.958 6.008 15.952 5.936 C 15.908 5.392 15.833 5.191 15.782 5.092 C 15.59 4.716 15.284 4.41 14.908 4.218 C 14.809 4.167 14.608 4.092 14.064 4.048 C 13.498 4.002 12.753 4 11.6 4 Z\" fill=\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255)) /* {&quot;name&quot;:&quot;Toloka Blue&quot;} */\"></path></svg>',svgContentId:10528158145,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1u46sct\",\"data-styles-preset\":\"oJYozxrol\",style:{\"--framer-text-color\":\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255))\"},children:\"Timeline\"})}),className:\"framer-13rdlf4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kj0hpw\",\"data-styles-preset\":\"ZWckCtNdY\",children:\"Timeline\"})}),className:\"framer-1lmt8ip\",fonts:[\"Inter\"],text:Xzfy3x6P2,verticalAlignment:\"top\",withExternalLayout:true})]}),visible9&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dsralp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rte76h\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1abystc\",\"data-framer-name\":\"Arrow Square Down\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sgwjll\",\"data-framer-name\":\"Fill\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 7.4 C 0 6.297 -0.001 5.409 0.058 4.691 C 0.117 3.963 0.243 3.323 0.545 2.73 C 1.024 1.79 1.79 1.024 2.73 0.545 C 3.323 0.243 3.963 0.117 4.691 0.058 C 5.409 -0.001 6.297 0 7.4 0 L 10.6 0 C 11.703 0 12.591 -0.001 13.309 0.058 C 14.037 0.117 14.677 0.243 15.27 0.545 C 16.21 1.024 16.976 1.79 17.455 2.73 C 17.757 3.323 17.883 3.963 17.942 4.691 C 18.001 5.409 18 6.297 18 7.4 L 18 10.6 C 18 11.703 18.001 12.591 17.942 13.309 C 17.883 14.037 17.757 14.677 17.455 15.27 C 16.976 16.21 16.21 16.976 15.27 17.455 C 14.677 17.757 14.037 17.883 13.309 17.942 C 12.591 18.001 11.703 18 10.6 18 L 7.4 18 C 6.297 18 5.409 18.001 4.691 17.942 C 3.963 17.883 3.323 17.757 2.73 17.455 C 1.79 16.976 1.024 16.21 0.545 15.27 C 0.243 14.677 0.117 14.037 0.058 13.309 C -0.001 12.591 0 11.703 0 10.6 Z M 2 10.6 C 2 11.736 2 12.529 2.051 13.145 C 2.1 13.751 2.193 14.099 2.327 14.362 C 2.615 14.926 3.073 15.385 3.638 15.673 C 3.901 15.807 4.249 15.9 4.854 15.949 C 5.471 16 6.264 16 7.4 16 L 10.6 16 C 11.736 16 12.529 16 13.145 15.949 C 13.751 15.9 14.099 15.807 14.362 15.673 C 14.926 15.385 15.385 14.926 15.673 14.362 C 15.807 14.099 15.9 13.751 15.949 13.145 C 16 12.529 16 11.736 16 10.6 L 16 7.4 C 16 6.264 16 5.471 15.949 4.854 C 15.9 4.249 15.807 3.901 15.673 3.638 C 15.385 3.073 14.926 2.615 14.362 2.327 C 14.099 2.193 13.751 2.1 13.145 2.051 C 12.529 2 11.736 2 10.6 2 L 7.4 2 C 6.264 2 5.471 2 4.854 2.051 C 4.249 2.1 3.901 2.193 3.638 2.327 C 3.073 2.615 2.615 3.073 2.327 3.638 C 2.193 3.901 2.1 4.249 2.051 4.854 C 2 5.471 2 6.264 2 7.4 Z M 4.543 7.957 C 4.152 7.567 4.152 6.933 4.543 6.543 C 4.933 6.152 5.567 6.152 5.957 6.543 L 9 9.586 L 12.043 6.543 C 12.434 6.152 13.067 6.152 13.457 6.543 C 13.848 6.933 13.848 7.567 13.457 7.957 L 9.707 11.707 C 9.317 12.098 8.683 12.098 8.293 11.707 Z\" fill=\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255)) /* {&quot;name&quot;:&quot;Toloka Blue&quot;} */\"></path></svg>',svgContentId:12695775281,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1u46sct\",\"data-styles-preset\":\"oJYozxrol\",style:{\"--framer-text-color\":\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255))\"},children:\"Impact\"})}),className:\"framer-x1muya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kj0hpw\",\"data-styles-preset\":\"ZWckCtNdY\",children:\"Impact\"})}),className:\"framer-ndlybf\",fonts:[\"Inter\"],text:BNszBsVaw,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible10&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ihr6ib\",\"data-border\":true,\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rsti5e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g0yk10\",\"data-styles-preset\":\"Jw6S_F4bT\",style:{\"--framer-text-color\":\"var(--token-305f4771-6aea-4912-aa1f-6bd9452c528f, rgb(38, 34, 30))\"},children:\"Can your AI agent survive in the real world?\"})})},wjHsun782:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-3ht32u\",\"data-styles-preset\":\"bPCDWntli\",style:{\"--framer-text-color\":\"var(--token-305f4771-6aea-4912-aa1f-6bd9452c528f, rgb(38, 34, 30))\"},children:\"Can your AI agent survive in the real world?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ly2b59\",\"data-styles-preset\":\"BIJ8UGZBS\",children:\"Can your AI agent survive in the real world?\"})}),className:\"framer-t0q12h\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:JxZ_qcaci,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2jfl41\",\"data-styles-preset\":\"Pz1Vd2zGo\",style:{\"--framer-text-color\":\"var(--token-f55d4151-52e1-4b4f-bb1e-99357deb5a9c, rgb(52, 52, 52))\"},children:\"Training datasets they need to reason, adapt, and act in unpredictable environments.\"})}),fonts:[\"Inter\"]},wjHsun782:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2jfl41\",\"data-styles-preset\":\"Pz1Vd2zGo\",style:{\"--framer-text-color\":\"var(--token-f55d4151-52e1-4b4f-bb1e-99357deb5a9c, rgb(52, 52, 52))\"},children:\"Training datasets they need to reason, adapt, and act in unpredictable environments.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtUmVndWxhci1XZWJYTCDCtg==\",\"--framer-font-family\":'\"SuisseIntl-Regular-WebXL \\xb6\", \"SuisseIntl-Regular-WebXL \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.01px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-41a22b76-3801-4cef-955e-6ce0c099b6ed, rgb(52, 52, 52))\"},children:\"Training datasets they need to reason, adapt, and act in unpredictable environments.\"})}),className:\"framer-b2oy63\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;SuisseIntl-Regular-WebXL \\xb6\"],text:sVTrhAA3t,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:OaLx54mPn,implicitPathVariables:undefined},{href:OaLx54mPn,implicitPathVariables:undefined},{href:OaLx54mPn,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{y:(componentViewport?.y||0)+100+0+0+0+726.2+24+155.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ecamj4-container\",nodeId:\"OJnrq0eJe\",rendersWithMotion:true,scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{E2xXKPqwF:resolvedLinks[2]},wjHsun782:{E2xXKPqwF:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonWithUtmParamsecamj4WithMappedReactProps1v1ipky,{E2xXKPqwF:resolvedLinks[0],height:\"100%\",id:\"OJnrq0eJe\",jrTyKzajX:PMYJh3exn,layoutId:\"OJnrq0eJe\",variant:\"FnrAOn4BU\",width:\"100%\",zXcDlb5mO:false})})})})})})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:aR6HuSuRX,className:\"framer-1lq2w1m\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-1s6mb09\",h2:\"framer-styles-preset-p119lr\",h3:\"framer-styles-preset-6kuf7n\",h4:\"framer-styles-preset-ah6jq7\",h5:\"framer-styles-preset-1u46sct\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-huhlhl\",\"data-framer-name\":\"Sound Section\",children:[visible11&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cb47e8\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:UaEfJoqM1,className:\"framer-z552bx\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-1s6mb09\",h2:\"framer-styles-preset-p119lr\",h3:\"framer-styles-preset-6kuf7n\",h4:\"framer-styles-preset-ah6jq7\",h5:\"framer-styles-preset-1u46sct\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible12&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bdpvqz\",children:[visible12&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hzxajw\",\"data-framer-name\":\"audio 1\",children:[visible13&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:sj9twiKpg,className:\"framer-1ewxe49\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cuiw6x\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qjoolj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Conl9R86Q\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"Conl9R86Q\",isMixedBorderRadius:false,layoutId:\"Conl9R86Q\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:dvp4_e6pq,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible14&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-k816e8\",fonts:[\"Inter\"],text:NUfR2qa3e,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible15&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmmnda\",\"data-framer-name\":\"audio 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sh76i7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sry5yq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ymXPOyyI9\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"ymXPOyyI9\",isMixedBorderRadius:false,layoutId:\"ymXPOyyI9\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:epslSf6y9,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible16&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-1v0n8ct\",fonts:[\"Inter\"],text:cAiyDLPme,verticalAlignment:\"top\",withExternalLayout:true})]}),visible17&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:r_eI0_35p,className:\"framer-aprn5l\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible18&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-redaki\",\"data-framer-name\":\"audio 3\",children:[visible19&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:TwCPgjdej,className:\"framer-12l8fvw\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3cz5jx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q9iwd5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"K8J7WExGv\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"K8J7WExGv\",isMixedBorderRadius:false,layoutId:\"K8J7WExGv\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:fw0kjC7MR,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible20&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-wa18ty\",fonts:[\"Inter\"],text:zYuzyCk9R,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),visible21&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ljxf7k\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:vTPtzFx2b,className:\"framer-pc2h0o\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-1s6mb09\",h2:\"framer-styles-preset-p119lr\",h3:\"framer-styles-preset-6kuf7n\",h4:\"framer-styles-preset-ah6jq7\",h5:\"framer-styles-preset-1u46sct\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible22&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127y9rm\",children:[visible22&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15fh7ja\",\"data-framer-name\":\"audio 4\",children:[visible23&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:gGbPbsWIr,className:\"framer-sqeipb\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12jo7wt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oypy3n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ia3Or2X_V\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"Ia3Or2X_V\",isMixedBorderRadius:false,layoutId:\"Ia3Or2X_V\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:yDbAXKcAw,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible24&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-1gftuh2\",fonts:[\"Inter\"],text:sl2nyrc0c,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible25&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198re0k\",\"data-framer-name\":\"audio 5\",children:[visible26&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wgzHG5CCn,className:\"framer-le4u5x\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-55gbrp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s5d9z0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YCyyVJRp2\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"YCyyVJRp2\",isMixedBorderRadius:false,layoutId:\"YCyyVJRp2\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:VxXl7lyAB,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible27&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-1jjmnxf\",fonts:[\"Inter\"],text:o2XXt7pi5,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible28&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gububu\",\"data-framer-name\":\"audio 6\",children:[visible29&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:nrvIVRw19,className:\"framer-7dk6z4\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ciigy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lx48io-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dflERzLHK\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"dflERzLHK\",isMixedBorderRadius:false,layoutId:\"dflERzLHK\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:jnf_OjsJs,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible30&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-100merf\",fonts:[\"Inter\"],text:bhhiI7hE4,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),visible31&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8mdsmn\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:b6YWxclJY,className:\"framer-1pcyj3y\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-1s6mb09\",h2:\"framer-styles-preset-p119lr\",h3:\"framer-styles-preset-6kuf7n\",h4:\"framer-styles-preset-ah6jq7\",h5:\"framer-styles-preset-1u46sct\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible32&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rikr1z\",children:[visible32&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cp6tzc\",\"data-framer-name\":\"audio 7\",children:[visible33&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Foky6ytrZ,className:\"framer-qehfxq\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fy77eh\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uq4k9o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IZbBZyFC9\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"IZbBZyFC9\",isMixedBorderRadius:false,layoutId:\"IZbBZyFC9\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:iZel5knoT,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible34&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-1y812hx\",fonts:[\"Inter\"],text:QPtgx5Imu,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible35&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7oxvp5\",\"data-framer-name\":\"audio 8\",children:[visible36&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:dYJqQXfC3,className:\"framer-1xlqltk\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gj591t\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-efyvm3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"coB5fOxEL\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"coB5fOxEL\",isMixedBorderRadius:false,layoutId:\"coB5fOxEL\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:SGtCxUZTw,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible37&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-1kxd4uh\",fonts:[\"Inter\"],text:vXFcNuxca,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible38&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fp2161\",\"data-framer-name\":\"audio 9\",children:[visible39&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:C4kxl74y3,className:\"framer-1gyx1oa\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xfj7rd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18q7eli-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YUbELmvPy\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"YUbELmvPy\",isMixedBorderRadius:false,layoutId:\"YUbELmvPy\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:xijEmFP57,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible40&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-1r7o1o7\",fonts:[\"Inter\"],text:CpyaJQYrh,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),visible41&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lrfp7h\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:VahrLyaqK,className:\"framer-1gas4zb\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-1s6mb09\",h2:\"framer-styles-preset-p119lr\",h3:\"framer-styles-preset-6kuf7n\",h4:\"framer-styles-preset-ah6jq7\",h5:\"framer-styles-preset-1u46sct\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible42&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1cm41\",children:[visible42&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n3hemi\",\"data-framer-name\":\"audio 10\",children:[visible43&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:l9Rbaxqxr,className:\"framer-1puk01c\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbtwmy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4e67zc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YXnH187pk\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"YXnH187pk\",isMixedBorderRadius:false,layoutId:\"YXnH187pk\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:MYwJCVuay,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible44&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-1thajy2\",fonts:[\"Inter\"],text:ub6L4Obsk,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible45&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtks4c\",\"data-framer-name\":\"audio 11\",children:[visible46&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:ZpoAEhxdj,className:\"framer-1e3461l\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsa6ml\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12h0fd2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NQtPn7BlV\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"NQtPn7BlV\",isMixedBorderRadius:false,layoutId:\"NQtPn7BlV\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:e_BJQyrd0,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible47&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-a7kjkv\",fonts:[\"Inter\"],text:Z62uNhjXt,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible48&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vvv1fj\",\"data-framer-name\":\"audio 12\",children:[visible49&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:bkbjb1QJ3,className:\"framer-13bb7va\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-ptb50w\",h2:\"framer-styles-preset-15hruty\",h3:\"framer-styles-preset-aunc4q\",h4:\"framer-styles-preset-1ly2b59\",h5:\"framer-styles-preset-qe8ka9\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-whna9n\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xnahdv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"H9wQvO3Ho\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgba(30, 33, 38, 0.03)\",borderRadius:99,bottomLeftRadius:99,bottomRightRadius:99,font:{},gap:12,height:\"100%\",id:\"H9wQvO3Ho\",isMixedBorderRadius:false,layoutId:\"H9wQvO3Ho\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:PCs9z3GLQ,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:99,topRightRadius:99,trackColor:\"rgb(255, 255, 255)\",volume:50,width:\"100%\"})})}),visible50&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgba(30, 33, 38, 0.64)\"},children:\"Original audio.\"})}),className:\"framer-ioz1z0\",fonts:[\"Inter\"],text:OeZ28qcVX,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),visible51&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m9uyrt\",children:visible51&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zwlqnu\",\"data-framer-name\":\"Line\"})}),visible51&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js:Youtube\":componentPresets.props[\"yc0JK2_ZF\"],\"module:pVk4QsoHxASnVtUBp6jr/ttReBBOK4JjO79S16uu9/CodeBlock.js:default\":componentPresets.props[\"rWl13xbSM\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:oNT9Le4w0,className:\"framer-9va52n\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1h2pjpr\",blockquote:\"framer-styles-preset-1cvxjoc\",code:\"framer-styles-preset-roe94m\",h1:\"framer-styles-preset-1s6mb09\",h2:\"framer-styles-preset-p119lr\",h3:\"framer-styles-preset-6kuf7n\",h4:\"framer-styles-preset-ah6jq7\",h5:\"framer-styles-preset-1u46sct\",h6:\"framer-styles-preset-kzm25e\",img:\"framer-styles-preset-28hhdx\",p:\"framer-styles-preset-kj0hpw\",table:\"framer-styles-preset-16yrfb5\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4jd70p\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+0+0+0+726.2+0+0),pixelHeight:2815,pixelWidth:8640,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.85, 1224px)`,src:\"https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?width=8640&height=2815\",srcSet:\"https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=512&width=8640&height=2815 512w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=1024&width=8640&height=2815 1024w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=2048&width=8640&height=2815 2048w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=4096&width=8640&height=2815 4096w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?width=8640&height=2815 8640w\"}},wjHsun782:{background:{alt:\"\",fit:\"fill\",pixelHeight:2815,pixelWidth:8640,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1224px) - 96px, 1224px)`,src:\"https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?width=8640&height=2815\",srcSet:\"https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=512&width=8640&height=2815 512w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=1024&width=8640&height=2815 1024w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=2048&width=8640&height=2815 2048w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=4096&width=8640&height=2815 4096w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?width=8640&height=2815 8640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2815,pixelWidth:8640,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.7225, 1224px)`,src:\"https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?width=8640&height=2815\",srcSet:\"https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=512&width=8640&height=2815 512w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=1024&width=8640&height=2815 1024w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=2048&width=8640&height=2815 2048w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?scale-down-to=4096&width=8640&height=2815 4096w,https://framerusercontent.com/images/nKOY7jCrtUVqb5oCl5dXNIx1sMs.png?width=8640&height=2815 8640w\"},className:\"framer-1xubp02\",\"data-border\":true,\"data-framer-name\":\"CTA desktop\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sig93s\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10k471l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtQm9vay1XZWJYTCDCtg==\",\"--framer-font-family\":'\"SuisseIntl-Book-WebXL \\xb6\", \"SuisseIntl-Book-WebXL \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-ec1bb744-55c5-4d17-9c45-7900474cb514, rgb(30, 33, 38))\"},children:\"Subscribe to Toloka\\xa0News\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtQm9vay1XZWJYTCDCtg==\",\"--framer-font-family\":'\"SuisseIntl-Book-WebXL \\xb6\", \"SuisseIntl-Book-WebXL \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-ec1bb744-55c5-4d17-9c45-7900474cb514, rgb(30, 33, 38))\"},children:\"Subscribe to Toloka News\"})}),className:\"framer-v6ciix\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;SuisseIntl-Book-WebXL \\xb6\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBSZWd1bGFy\",\"--framer-font-family\":'\"Suisse Int\\'l Regular\", \"Suisse Int\\'l Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-ec1bb744-55c5-4d17-9c45-7900474cb514, rgb(30, 33, 38))\"},children:\"Case studies, product news, and other articles straight to your inbox.\"})}),className:\"framer-1fqx6mv\",\"data-framer-name\":\"Leave your email, and you'll be the first to know when the benchmark dataset is ready.\",fonts:[\"CUSTOM;Suisse Int'l Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11fq9yx\"})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{y:(componentViewport?.y||0)+100+0+0+0+726.2+0+0+32+0+0+305}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-y8l20d-container\",id:\"y8l20d\",nodeId:\"mKso1PuWv\",scopeId:\"g4p9Tjo2A\",children:[/*#__PURE__*/_jsx(Button,{dvgga511F:dvgga511F3bnx0g({overlay}),height:\"100%\",id:\"mKso1PuWv\",jrTyKzajX:\"Subscribe\",layoutId:\"mKso1PuWv\",variant:\"rjpLa5kVA\",width:\"100%\",zXcDlb5mO:false}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(InjectSelectionStyle,{triggerId:\"y8l20d\",children:/*#__PURE__*/_jsxs(ResetOuterLinkContext,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-4l0wi8\"),\"data-framer-portal-id\":\"y8l20d\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"yNFH5vMYt\"),/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-t5wllo\"),\"data-framer-portal-id\":\"y8l20d\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17jvr4b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ly2b59\",\"data-styles-preset\":\"BIJ8UGZBS\",children:\"Subscribe to Toloka News\"})}),className:\"framer-7my2ev\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"24px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dki3fa-container\",inComponentSlot:true,nodeId:\"OHuAOV9Aq\",rendersWithMotion:true,scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Icons,{D_qhuNvgh:D_qhuNvgh1wnntms({overlay}),height:\"100%\",id:\"OHuAOV9Aq\",layoutId:\"OHuAOV9Aq\",m0oeTb8uK:\"var(--token-ec1bb744-55c5-4d17-9c45-7900474cb514, rgb(30, 33, 38))\",style:{height:\"100%\",width:\"100%\"},variant:\"N4ZxR_D0R\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-obt4xg-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"w6ENRW9K7\",rendersWithMotion:true,scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"f7b06d64-1e92-4cc8-9df1-b35570a50163\",height:\"100%\",id:\"w6ENRW9K7\",layoutId:\"w6ENRW9K7\",portalId:\"26617556\",region:\"eu1\",style:{width:\"100%\"},width:\"100%\"})})})]})]})}),getContainer())})})]})})})})})]})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3s4cv\",\"data-framer-name\":\"Back to top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hr8sfd\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(Link,{href:{hash:\":L7uHmA4Z4\",pathVariables:{P7ZVmmroe},webPageId:\"g4p9Tjo2A\"},motionChild:true,nodeId:\"C3s95O_Hk\",openInNewTab:false,scopeId:\"g4p9Tjo2A\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-4t4q7k framer-jox68l\",whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"var(--token-ec1bb744-55c5-4d17-9c45-7900474cb514, rgb(30, 33, 38))\"},children:\"Back to top\"})}),className:\"framer-3et0qe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{y:(componentViewport?.y||0)+100+2066+0+5+7.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"16px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1crqx9t-container\",nodeId:\"gOGUJJyPb\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Icons,{height:\"100%\",id:\"gOGUJJyPb\",layoutId:\"gOGUJJyPb\",m0oeTb8uK:\"var(--token-ec1bb744-55c5-4d17-9c45-7900474cb514, rgb(30, 33, 38))\",style:{height:\"100%\",width:\"100%\"},variant:\"gyY9TwFrw\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g66cng\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mu07jk\",\"data-framer-name\":\"Recent articles\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yq115t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-aunc4q\",\"data-styles-preset\":\"DJwr5zbOV\",children:\"Recent articles\"})}),className:\"framer-136kmzp\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7zjziu\",\"data-framer-name\":\"All Articles\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kj0hpw\",\"data-styles-preset\":\"ZWckCtNdY\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nzPIE2Ssw\"},motionChild:true,nodeId:\"Kn6C2d0Z0\",openInNewTab:false,relValues:[],scopeId:\"g4p9Tjo2A\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-up1dlc\",\"data-styles-preset\":\"iJ4q_xOOQ\",children:\"View all articles\"})})})}),className:\"framer-o0wbq2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{y:(componentViewport?.y||0)+100+2186.4+0+0+0+56+1.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hvusd9-container\",nodeId:\"PTyoI9Zpn\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Icons,{height:\"100%\",id:\"PTyoI9Zpn\",layoutId:\"PTyoI9Zpn\",m0oeTb8uK:\"var(--token-b13f6adf-8a0a-4444-ad69-7c2c7ee4ce9e, rgb(0, 105, 255))\",variant:\"loJN4sm3u\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z5m68d\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wjHsun782:{query:{from:{alias:\"zIDIgc7il\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"zIDIgc7il\",name:\"P7ZVmmroe\",type:\"Identifier\"},{collection:\"zIDIgc7il\",name:\"LI4X4vZFW\",type:\"Identifier\"},{collection:\"zIDIgc7il\",name:\"hIKjEC3tV\",type:\"Identifier\"},{collection:\"zIDIgc7il\",name:\"EQstg0Naj\",type:\"Identifier\"},{collection:\"zIDIgc7il\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"zIDIgc7il\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"zIDIgc7il\",name:\"P7ZVmmroe\",type:\"Identifier\"},{collection:\"zIDIgc7il\",name:\"LI4X4vZFW\",type:\"Identifier\"},{collection:\"zIDIgc7il\",name:\"hIKjEC3tV\",type:\"Identifier\"},{collection:\"zIDIgc7il\",name:\"EQstg0Naj\",type:\"Identifier\"},{collection:\"zIDIgc7il\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({EQstg0Naj:EQstg0NajzIDIgc7il,hIKjEC3tV:hIKjEC3tVzIDIgc7il,id:idzIDIgc7il,LI4X4vZFW:LI4X4vZFWzIDIgc7il,P7ZVmmroe:P7ZVmmroezIDIgc7il},index)=>{P7ZVmmroezIDIgc7il??=\"\";hIKjEC3tVzIDIgc7il??=\"\";const textContent2=toDateString1(EQstg0NajzIDIgc7il,activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`zIDIgc7il-${idzIDIgc7il}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{P7ZVmmroe:P7ZVmmroezIDIgc7il},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{P7ZVmmroe:P7ZVmmroezIDIgc7il},webPageId:\"g4p9Tjo2A\"},motionChild:true,nodeId:\"i4n0C7WsF\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1i7z4vx framer-jox68l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+100+2186.4+0+115+0+0+0+0),pixelHeight:1200,pixelWidth:2400,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1224px) - 48px, 50px)`,...toResponsiveImage(LI4X4vZFWzIDIgc7il),...{positionX:\"center\",positionY:\"center\"}}},wjHsun782:{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:2400,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1224px) - 120px) / 2, 50px)`,...toResponsiveImage(LI4X4vZFWzIDIgc7il),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:2400,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.72 - 48px) / 3, 50px)`,...toResponsiveImage(LI4X4vZFWzIDIgc7il),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1s3dv73\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q008cp\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kj0hpw\",\"data-styles-preset\":\"ZWckCtNdY\",children:\"Content\"})}),className:\"framer-jqfqdm\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:hIKjEC3tVzIDIgc7il,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lp3htf\",\"data-styles-preset\":\"nFqkUvTMd\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-tx7313\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idzIDIgc7il);})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pv9s89\",\"data-framer-name\":\"FAQ Canvas\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g5f8ul\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovee1j\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-aunc4q\",\"data-styles-preset\":\"DJwr5zbOV\",children:\"More about Toloka\"})}),className:\"framer-1dv3ecz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.85, 1224px)`,y:(componentViewport?.y||0)+100+3842.4+0+0+16+0+0+76},wjHsun782:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1224px) - 96px, 1224px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:506,width:`min(min(min(${componentViewport?.width||\"100vw\"}, 1224px) * 0.72, min(${componentViewport?.width||\"100vw\"}, 1224px)), 1224px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1drim8a-container\",nodeId:\"uzRTKe5Pu\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"uzRTKe5Pu\",layoutId:\"uzRTKe5Pu\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{y:(componentViewport?.y||0)+100+4536.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:592,width:`min(${componentViewport?.width||\"100vw\"}, 1224px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15uxoak-container\",nodeId:\"AGH9IAhdM\",scopeId:\"g4p9Tjo2A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Oxn_WHbiv:{variant:\"tAhGmD_1N\"},wjHsun782:{variant:\"Tsk6shar9\"}},children:/*#__PURE__*/_jsx(Footer,{FTN84qt6f:false,height:\"100%\",id:\"AGH9IAhdM\",layoutId:\"AGH9IAhdM\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"mGkpU_Z7N\",width:\"100%\",wuQEsp9bQ:\"\\xa9 Toloka AI BV\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DY3Do.framer-jox68l, .framer-DY3Do .framer-jox68l { display: block; }\",\".framer-DY3Do.framer-qkfz6t { align-content: center; align-items: center; background-color: var(--token-5841228a-6e96-459c-b6c1-f933953e4986, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-DY3Do .framer-1cdvuxa-container { flex: none; height: 85px; left: calc(50.00000000000002% - min(1224px, 100%) / 2); max-width: 1224px; position: fixed; top: 0px; width: 100%; z-index: 3; }\",\".framer-DY3Do .framer-nyz8iq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-12iuhx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 85%; }\",\".framer-DY3Do .framer-112ug6m-container { flex: none; height: auto; position: relative; width: 72%; z-index: 2; }\",\".framer-DY3Do .framer-1fdwxzv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 72%; word-break: break-word; word-wrap: break-word; }\",\".framer-DY3Do .framer-1d5c3ha { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-rsijox, .framer-DY3Do .framer-1djm2rr, .framer-DY3Do .framer-10keuz4, .framer-DY3Do .framer-shdf0k, .framer-DY3Do .framer-vbtziq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DY3Do .framer-2osf6c, .framer-DY3Do .framer-wxk4g9, .framer-DY3Do .framer-1ldbdfe, .framer-DY3Do .framer-44gijb { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DY3Do .framer-1sui7ez, .framer-DY3Do .framer-j9y8vl, .framer-DY3Do .framer-l4t0y8, .framer-DY3Do .framer-1vnqjw9, .framer-DY3Do .framer-30cyno, .framer-DY3Do .framer-yd7iic, .framer-DY3Do .framer-136kmzp, .framer-DY3Do .framer-o0wbq2, .framer-DY3Do .framer-1dv3ecz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DY3Do .framer-p6vp1y, .framer-DY3Do .framer-8d2uh2, .framer-DY3Do .framer-1c47aju { background-color: #cccccc; flex: none; height: 24px; overflow: hidden; position: relative; width: 1px; }\",\".framer-DY3Do .framer-1jfwwo1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DY3Do .framer-1oe0rq { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 480px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-17cu2se { --border-bottom-width: 1px; --border-color: var(--token-0904fe9f-dc57-4efe-98e3-111be9bb8b29, rgba(52, 52, 51, 0.08)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 48px; position: relative; width: 72%; will-change: var(--framer-will-change-override, transform); }\",\".framer-DY3Do .framer-43ostu, .framer-DY3Do .framer-1lhspq, .framer-DY3Do .framer-1jwh7tc, .framer-DY3Do .framer-dsralp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-16qjkjx, .framer-DY3Do .framer-rie4g3, .framer-DY3Do .framer-157g6tb, .framer-DY3Do .framer-1rte76h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: min-content; }\",\".framer-DY3Do .framer-1h4tbvn, .framer-DY3Do .framer-1921u01, .framer-DY3Do .framer-1wdjvq7, .framer-DY3Do .framer-1abystc { flex: none; gap: 0px; height: 24px; overflow: hidden; position: relative; width: 25px; }\",\".framer-DY3Do .framer-1168jir { flex: none; height: 19px; left: 3px; position: absolute; top: 3px; width: 20px; }\",\".framer-DY3Do .framer-1pks7ej, .framer-DY3Do .framer-1fl56wr, .framer-DY3Do .framer-13rdlf4, .framer-DY3Do .framer-x1muya, .framer-DY3Do .framer-3et0qe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DY3Do .framer-1rwo3ep, .framer-DY3Do .framer-16d3b4f, .framer-DY3Do .framer-1lmt8ip, .framer-DY3Do .framer-ndlybf, .framer-DY3Do .framer-k816e8, .framer-DY3Do .framer-1v0n8ct, .framer-DY3Do .framer-wa18ty, .framer-DY3Do .framer-1gftuh2, .framer-DY3Do .framer-1jjmnxf, .framer-DY3Do .framer-100merf, .framer-DY3Do .framer-1y812hx, .framer-DY3Do .framer-1kxd4uh, .framer-DY3Do .framer-1r7o1o7, .framer-DY3Do .framer-1thajy2, .framer-DY3Do .framer-a7kjkv, .framer-DY3Do .framer-ioz1z0 { --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-DY3Do .framer-awwl7z { flex: none; height: 20px; left: 2px; position: absolute; top: 2px; width: 20px; }\",\".framer-DY3Do .framer-oqkn9q, .framer-DY3Do .framer-1sgwjll { flex: none; height: 18px; left: 4px; position: absolute; top: 3px; width: 18px; }\",\".framer-DY3Do .framer-ihr6ib { --border-bottom-width: 1px; --border-color: rgba(51, 51, 50, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: rgba(30, 33, 38, 0.04); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 32px; position: relative; width: 734px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DY3Do .framer-1rsti5e { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-t0q12h, .framer-DY3Do .framer-b2oy63, .framer-DY3Do .framer-jqfqdm, .framer-DY3Do .framer-tx7313 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DY3Do .framer-ecamj4-container, .framer-DY3Do .framer-y8l20d-container, .framer-DY3Do .framer-1hvusd9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DY3Do .framer-1lq2w1m { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 72%; word-break: break-word; word-wrap: break-word; }\",\".framer-DY3Do .framer-huhlhl { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 72%; }\",\".framer-DY3Do .framer-1cb47e8, .framer-DY3Do .framer-1bdpvqz, .framer-DY3Do .framer-ljxf7k, .framer-DY3Do .framer-127y9rm, .framer-DY3Do .framer-8mdsmn, .framer-DY3Do .framer-1rikr1z, .framer-DY3Do .framer-1lrfp7h { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-z552bx, .framer-DY3Do .framer-pc2h0o, .framer-DY3Do .framer-1pcyj3y, .framer-DY3Do .framer-1gas4zb { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DY3Do .framer-1hzxajw, .framer-DY3Do .framer-redaki, .framer-DY3Do .framer-15fh7ja, .framer-DY3Do .framer-198re0k, .framer-DY3Do .framer-cp6tzc, .framer-DY3Do .framer-7oxvp5, .framer-DY3Do .framer-fp2161, .framer-DY3Do .framer-1n3hemi, .framer-DY3Do .framer-gtks4c, .framer-DY3Do .framer-vvv1fj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1ewxe49, .framer-DY3Do .framer-aprn5l, .framer-DY3Do .framer-12l8fvw, .framer-DY3Do .framer-sqeipb, .framer-DY3Do .framer-le4u5x, .framer-DY3Do .framer-7dk6z4, .framer-DY3Do .framer-qehfxq, .framer-DY3Do .framer-1xlqltk, .framer-DY3Do .framer-1gyx1oa, .framer-DY3Do .framer-1puk01c, .framer-DY3Do .framer-1e3461l, .framer-DY3Do .framer-13bb7va, .framer-DY3Do .framer-7my2ev { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-DY3Do .framer-cuiw6x, .framer-DY3Do .framer-1sh76i7, .framer-DY3Do .framer-12jo7wt, .framer-DY3Do .framer-55gbrp, .framer-DY3Do .framer-fy77eh, .framer-DY3Do .framer-gj591t, .framer-DY3Do .framer-1xfj7rd, .framer-DY3Do .framer-1bbtwmy, .framer-DY3Do .framer-1vsa6ml, .framer-DY3Do .framer-whna9n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-DY3Do .framer-qjoolj-container, .framer-DY3Do .framer-1sry5yq-container, .framer-DY3Do .framer-q9iwd5-container, .framer-DY3Do .framer-oypy3n-container, .framer-DY3Do .framer-1s5d9z0-container, .framer-DY3Do .framer-lx48io-container, .framer-DY3Do .framer-uq4k9o-container, .framer-DY3Do .framer-efyvm3-container, .framer-DY3Do .framer-18q7eli-container, .framer-DY3Do .framer-4e67zc-container, .framer-DY3Do .framer-12h0fd2-container, .framer-DY3Do .framer-1xnahdv-container { flex: none; height: 50px; max-width: 300px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-cmmnda { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-3cz5jx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-DY3Do .framer-1gububu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 32%; }\",\".framer-DY3Do .framer-3ciigy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-DY3Do .framer-1i1cm41 { 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: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1m9uyrt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 72%; }\",\".framer-DY3Do .framer-zwlqnu { background-color: rgba(30, 33, 38, 0.1); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-DY3Do .framer-9va52n { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 72%; word-break: break-word; word-wrap: break-word; }\",\".framer-DY3Do .framer-4jd70p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1xubp02 { --border-bottom-width: 1px; --border-color: rgba(51, 135, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1224px; overflow: visible; padding: 56px 0px 42px 0px; position: relative; width: 85%; }\",\".framer-DY3Do .framer-sig93s { 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: center; overflow: hidden; padding: 0px; position: relative; width: 85%; }\",\".framer-DY3Do .framer-10k471l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DY3Do .framer-v6ciix { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DY3Do .framer-1fqx6mv { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-DY3Do .framer-11fq9yx { align-self: stretch; background-color: rgba(51, 135, 255, 0.48); flex: none; height: 1px; overflow: hidden; position: relative; width: auto; }\",\".framer-DY3Do.framer-4l0wi8 { background-color: rgba(255, 255, 255, 0.97); inset: 0px; position: fixed; user-select: none; }\",\".framer-DY3Do.framer-t5wllo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 50%; }\",\".framer-DY3Do .framer-17jvr4b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1dki3fa-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-DY3Do .framer-obt4xg-container { flex: none; height: 270px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1e3s4cv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1hr8sfd, .framer-DY3Do .framer-g66cng { background-color: rgba(30, 33, 38, 0.1); flex: none; height: 1px; overflow: hidden; position: relative; width: 72%; }\",\".framer-DY3Do .framer-4t4q7k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; opacity: 0.4; overflow: hidden; padding: 4px 0px 4px 0px; position: relative; text-decoration: none; width: 72%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-DY3Do .framer-1crqx9t-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-DY3Do .framer-mu07jk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1yq115t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 72%; }\",\".framer-DY3Do .framer-7zjziu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DY3Do .framer-z5m68d { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 72%; }\",\".framer-DY3Do .framer-1i7z4vx { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-DY3Do .framer-1s3dv73 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-q008cp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1pv9s89 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-1g5f8ul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DY3Do .framer-ovee1j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 72%; }\",\".framer-DY3Do .framer-1drim8a-container { flex: none; height: auto; max-width: 1224px; position: relative; width: 100%; z-index: 2; }\",\".framer-DY3Do .framer-15uxoak-container { flex: none; height: auto; max-width: 1224px; position: relative; width: 100%; }\",...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,...sharedStyle18.css,'.framer-DY3Do[data-border=\"true\"]::after, .framer-DY3Do [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199.98px) { .framer-DY3Do.framer-qkfz6t { width: 810px; } .framer-DY3Do .framer-1cdvuxa-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-DY3Do .framer-nyz8iq, .framer-DY3Do .framer-mu07jk, .framer-DY3Do .framer-1pv9s89 { padding: 0px 48px 0px 48px; } .framer-DY3Do .framer-12iuhx6, .framer-DY3Do .framer-112ug6m-container, .framer-DY3Do .framer-1fdwxzv, .framer-DY3Do .framer-17cu2se, .framer-DY3Do .framer-1lq2w1m, .framer-DY3Do .framer-huhlhl, .framer-DY3Do .framer-1m9uyrt, .framer-DY3Do .framer-9va52n, .framer-DY3Do .framer-sig93s, .framer-DY3Do .framer-10k471l, .framer-DY3Do .framer-1yq115t, .framer-DY3Do .framer-ovee1j { width: 100%; } .framer-DY3Do .framer-rsijox { order: 0; } .framer-DY3Do .framer-1jfwwo1 { order: 3; } .framer-DY3Do .framer-1c47aju { order: 1; } .framer-DY3Do .framer-ihr6ib { align-content: flex-end; align-items: flex-end; gap: 24px; justify-content: flex-start; padding: 24px; width: 628px; } .framer-DY3Do .framer-7oxvp5 { width: min-content; } .framer-DY3Do .framer-1xubp02 { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; gap: 48px; justify-content: center; padding: 48px; width: 100%; } .framer-DY3Do .framer-1fqx6mv, .framer-DY3Do .framer-11fq9yx { align-self: unset; width: 100%; } .framer-DY3Do .framer-obt4xg-container { height: 300px; } .framer-DY3Do .framer-z5m68d { grid-template-columns: repeat(2, minmax(50px, 1fr)); width: 100%; } .framer-DY3Do .framer-1g5f8ul { gap: 24px; padding: 12px 0px 12px 0px; }}\",\"@media (max-width: 809.98px) { .framer-DY3Do.framer-qkfz6t { width: 390px; } .framer-DY3Do .framer-1cdvuxa-container { height: auto; left: 50%; transform: translateX(-50%); } .framer-DY3Do .framer-112ug6m-container { order: 0; width: 100%; } .framer-DY3Do .framer-1fdwxzv { order: 1; width: 100%; } .framer-DY3Do .framer-1d5c3ha { flex-direction: column; gap: 12px; order: 2; } .framer-DY3Do .framer-rsijox, .framer-DY3Do .framer-1hzxajw, .framer-DY3Do .framer-cmmnda, .framer-DY3Do .framer-redaki, .framer-DY3Do .framer-15fh7ja, .framer-DY3Do .framer-198re0k, .framer-DY3Do .framer-1gububu, .framer-DY3Do .framer-cp6tzc, .framer-DY3Do .framer-7oxvp5, .framer-DY3Do .framer-fp2161, .framer-DY3Do .framer-1n3hemi, .framer-DY3Do .framer-gtks4c, .framer-DY3Do .framer-vvv1fj { flex-direction: column; } .framer-DY3Do .framer-8d2uh2 { align-self: stretch; height: auto; } .framer-DY3Do .framer-1oe0rq { height: 240px; order: 3; } .framer-DY3Do .framer-17cu2se { order: 4; padding: 24px; width: 100%; } .framer-DY3Do .framer-ihr6ib { gap: 16px; justify-content: flex-start; order: 6; padding: 24px; width: 105%; } .framer-DY3Do .framer-1rsti5e { align-content: flex-start; align-items: flex-start; gap: 24px; } .framer-DY3Do .framer-1lq2w1m { order: 5; width: 100%; } .framer-DY3Do .framer-huhlhl { order: 7; width: 100%; } .framer-DY3Do .framer-1ewxe49, .framer-DY3Do .framer-cuiw6x, .framer-DY3Do .framer-1sh76i7, .framer-DY3Do .framer-aprn5l, .framer-DY3Do .framer-12l8fvw, .framer-DY3Do .framer-3cz5jx, .framer-DY3Do .framer-sqeipb, .framer-DY3Do .framer-12jo7wt, .framer-DY3Do .framer-le4u5x, .framer-DY3Do .framer-55gbrp, .framer-DY3Do .framer-7dk6z4, .framer-DY3Do .framer-3ciigy, .framer-DY3Do .framer-qehfxq, .framer-DY3Do .framer-fy77eh, .framer-DY3Do .framer-1xlqltk, .framer-DY3Do .framer-gj591t, .framer-DY3Do .framer-1gyx1oa, .framer-DY3Do .framer-1xfj7rd, .framer-DY3Do .framer-1puk01c, .framer-DY3Do .framer-1bbtwmy, .framer-DY3Do .framer-1e3461l, .framer-DY3Do .framer-1vsa6ml, .framer-DY3Do .framer-13bb7va, .framer-DY3Do .framer-whna9n { flex: none; width: 100%; } .framer-DY3Do .framer-1m9uyrt { order: 8; width: 100%; } .framer-DY3Do .framer-9va52n { order: 9; width: 100%; } .framer-DY3Do .framer-4jd70p { order: 12; } .framer-DY3Do .framer-1xubp02 { order: 0; padding: 32px 24px 42px 24px; width: 100%; } .framer-DY3Do .framer-sig93s, .framer-DY3Do .framer-10k471l, .framer-DY3Do .framer-ovee1j { width: 100%; } .framer-DY3Do .framer-v6ciix { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-DY3Do .framer-1fqx6mv, .framer-DY3Do .framer-11fq9yx { align-self: unset; width: 100%; } .framer-DY3Do.framer-t5wllo { width: 80%; } .framer-DY3Do .framer-obt4xg-container { height: 390px; } .framer-DY3Do .framer-mu07jk { padding: 0px 24px 0px 24px; } .framer-DY3Do .framer-1yq115t { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; width: 100%; } .framer-DY3Do .framer-z5m68d { grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 100%; } .framer-DY3Do .framer-1g5f8ul { gap: 24px; padding: 16px 0px 16px 0px; width: 85%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6778.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wjHsun782\":{\"layout\":[\"fixed\",\"auto\"]},\"Oxn_WHbiv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"L7uHmA4Z4\":{\"pattern\":\":L7uHmA4Z4\",\"name\":\"attributes\"}}\n * @framerResponsiveScreen\n */const Framerg4p9Tjo2A=withCSS(Component,css,\"framer-DY3Do\");export default Framerg4p9Tjo2A;Framerg4p9Tjo2A.displayName=\"Blog Detail\";Framerg4p9Tjo2A.defaultProps={height:6778.5,width:1200};addFonts(Framerg4p9Tjo2A,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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:\"SuisseIntl-Regular-WebXL \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/wYrdLUWdZ863FRZBSQs8tWjo0GU.woff\"},{family:\"SuisseIntl-Book-WebXL \\xb6\",source:\"custom\",url:\"https://framerusercontent.com/assets/6mf7CMipCIKNyZK08pbA0rKchE.woff\"},{family:\"Suisse Int'l Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/L3CN4MLCZQeuh9BjpUboN92cIXE.woff2\"}]},...NavbarFonts,...SubscriptionFonts,...ButtonFonts,...AudioFonts,...IconsFonts,...HubSpotFormFonts,...AccordionFonts,...FooterFonts,...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),...getFontsFromSharedStyle(sharedStyle18.fonts),...componentPresets.fonts?.[\"rWl13xbSM\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"rWl13xbSM\"]):[],...componentPresets.fonts?.[\"yc0JK2_ZF\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"yc0JK2_ZF\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg4p9Tjo2A\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"L7uHmA4Z4\\\":{\\\"pattern\\\":\\\":L7uHmA4Z4\\\",\\\"name\\\":\\\"attributes\\\"}}\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6778.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wjHsun782\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Oxn_WHbiv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,aAAa,CAAC,CAAC,MAAM,GAAoC,EAAqB,YAAY,CAAC,CAAC,CAAO,EAAwB,GAAK,CAAC,GAAG,CAAC,EAAiB,MAAM,IAAI,GAAc,mCAAmC,KAAK,UAAU,EAAqB,GAAG,CAAC,OAAO,EAAiB,IAAY,CAAC,QAAM,UAAA,GAAU,WAAS,UAAQ,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,CAAC,YAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,CAAC,YAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,CAAC,YAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,CAAC,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAw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"}