{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/HiPbCLJvLkbCjrYZqXrB/KtnKklCyllERcaoGHlLY/Oqy0xeTjy.js", "ssg:https://framerusercontent.com/modules/HqwWMxKgx5lSA1b2gYxV/a3rrEYKmtTO6vtZhWZve/PVkG3ERE9.js", "ssg:https://framerusercontent.com/modules/7xGISKUW6fCnsifmtVH0/cp0A6sRp8yfN0qHR0gPT/XuV8FYcJg.js", "ssg:https://framerusercontent.com/modules/jHBeqjbgskWWGHBFNaxB/tLO9H7aEZCb8sFRNSf8Y/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/Wdx5Gb8W6Q1HpFBLmb5n/OgNt7uWFSI5vCn90b8sA/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/C0M3B4OEl63URiQCZbeQ/B3GfWBSlnZvzS8D3bLhY/F3iAbWiyP.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/y9UVZ0RlicsXPXRoy5mF/i9OPflRBjJmHiUaJ67Wq/iinvbPhLh.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/1JraKadF6R3mwlsv0yDG/WuDgjlpTnlKlZoRa1JCm/JL2u4nc0f.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/vby3j1gZsMvWqr7TWzyL/zgSjvISTOPXu7mmvUEmi/nNLXYrcxw.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/h3VruAH1SzbRrHTBPQbC/gSK9kQvXfxenlOfKqXH2/pxEAb2EPP.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/9GR3GNEXjwJa3esa424z/t6bkdLwXt6lYvA2KzJaz/qWpu0CGyo.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/d9Jw75Ud6G55pS4lCTl6/u07hkSsWvAYT0bOugMRC/Te1O79ujo.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/IxEQVoQ8sgwMZLwESMTb/13cUPpq9SIDqLN0ZOYv6/uOO0C8j07.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aTy3t4J5jOAkQTbfVATQ/i5j9TbS1l8Ze985gBfcQ/zsMJNYczj.js\";const enabledGestures={MCi9Dhsbf:{hover:true}};const cycleOrder=[\"MCi9Dhsbf\",\"jS_5uHzGO\"];const serializationHash=\"framer-9V8iQ\";const variantClassNames={jS_5uHzGO:\"framer-v-14g7ock\",MCi9Dhsbf:\"framer-v-1fo80m3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.6,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={Desktop:\"MCi9Dhsbf\",Device:\"jS_5uHzGO\"};const getProps=({height,icon,id,text,title,width,...props})=>{return{...props,GBOMGORaN:icon??props.GBOMGORaN??{alt:\"\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/uovgvpo6abqIhSMrEnrY44pahUc.svg\"},Oc3zkESis:text??props.Oc3zkESis??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Gain access to cutting-edge ideas and insights through exclusive events, workshops, and discussions.\"})}),sZN7747of:title??props.sZN7747of??\"Innovative Insights\",variant:humanReadableVariantMap[props.variant]??props.variant??\"MCi9Dhsbf\"};};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,sZN7747of,Oc3zkESis,GBOMGORaN,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MCi9Dhsbf\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"MCi9Dhsbf-hover\")return true;if(baseVariant===\"jS_5uHzGO\")return true;return false;};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-1fo80m3\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"MCi9Dhsbf\",ref:refBinding,style:{...style},...addPropertyOverrides({\"MCi9Dhsbf-hover\":{\"data-framer-name\":undefined},jS_5uHzGO:{\"data-framer-name\":\"Device\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dqs0do\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Ik0uEtjUi\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(39, 39, 41)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(11px)\",background:\"linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.14) 0%, rgba(135, 135, 142, 0.1) 100%)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,WebkitBackdropFilter:\"blur(11px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rqxl1n\",\"data-framer-name\":\"Div\",layoutDependency:layoutDependency,layoutId:\"QTaurPy3T\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",children:\"Innovative Insights\"})}),className:\"framer-1lp7v48\",\"data-framer-name\":\"A'lo muhitga ega jamoa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"afL6g9PkD\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:sZN7747of,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\":componentPresets.props[\"agQUrhZug\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Oc3zkESis,className:\"framer-yra030\",\"data-framer-name\":'Muhit muvaffaqiyatli qadamlar uchun eng kerakli resurslardan biri. O\u02BCzingizga o\u02BCxshagan va tajribaga ega tadbirkorlarni \"Milliard club\" dan topasiz.',fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ia_tx8Vg2\",style:{\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-7ummdt\",h1:\"framer-styles-preset-1lkgv28\",h2:\"framer-styles-preset-11fv6qv\",h3:\"framer-styles-preset-i5gawh\",h4:\"framer-styles-preset-s0d4jp\",h5:\"framer-styles-preset-18g2rek\",img:\"framer-styles-preset-1sazqp8\",p:\"framer-styles-preset-1m9m8dz\",table:\"framer-styles-preset-10kxn3g\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+60),pixelHeight:96,pixelWidth:96,sizes:\"64px\",...toResponsiveImage(GBOMGORaN)},className:\"framer-10d7kpc\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"XJjgfQ5Ir\",...addPropertyOverrides({\"MCi9Dhsbf-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:96,pixelWidth:96,sizes:\"96px\",...toResponsiveImage(GBOMGORaN)}},jS_5uHzGO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32),pixelHeight:96,pixelWidth:96,sizes:\"64px\",...toResponsiveImage(GBOMGORaN)}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9V8iQ.framer-nc9nb2, .framer-9V8iQ .framer-nc9nb2 { display: block; }\",\".framer-9V8iQ.framer-1fo80m3 { align-content: flex-end; align-items: flex-end; cursor: default; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 540px; }\",\".framer-9V8iQ .framer-dqs0do { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 300px; justify-content: flex-end; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9V8iQ .framer-rqxl1n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9V8iQ .framer-1lp7v48, .framer-9V8iQ .framer-yra030 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9V8iQ .framer-10d7kpc { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 96px); left: 40px; overflow: hidden; position: absolute; top: 60px; width: 64px; z-index: 1; }\",\".framer-9V8iQ.framer-v-14g7ock.framer-1fo80m3 { padding: 0px; }\",\".framer-9V8iQ.framer-v-14g7ock .framer-dqs0do { padding: 32px; }\",\".framer-9V8iQ.framer-v-14g7ock .framer-rqxl1n, .framer-9V8iQ.framer-v-1fo80m3.hover .framer-rqxl1n { height: min-content; }\",\".framer-9V8iQ.framer-v-14g7ock .framer-10d7kpc { height: var(--framer-aspect-ratio-supported, 64px); left: 32px; top: 32px; }\",\".framer-9V8iQ.framer-v-1fo80m3.hover .framer-10d7kpc { height: var(--framer-aspect-ratio-supported, 64px); top: 0px; width: 96px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-9V8iQ[data-border=\"true\"]::after, .framer-9V8iQ [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 320\n * @framerIntrinsicWidth 540\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jS_5uHzGO\":{\"layout\":[\"fixed\",\"auto\"]},\"sKGzeF3E0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"sZN7747of\":\"title\",\"Oc3zkESis\":\"text\",\"GBOMGORaN\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOqy0xeTjy=withCSS(Component,css,\"framer-9V8iQ\");export default FramerOqy0xeTjy;FramerOqy0xeTjy.displayName=\"Card\";FramerOqy0xeTjy.defaultProps={height:320,width:540};addPropertyControls(FramerOqy0xeTjy,{variant:{options:[\"MCi9Dhsbf\",\"jS_5uHzGO\"],optionTitles:[\"Desktop\",\"Device\"],title:\"Variant\",type:ControlType.Enum},sZN7747of:{defaultValue:\"Innovative Insights\",displayTextArea:false,title:\"Title\",type:ControlType.String},Oc3zkESis:{defaultValue:\"<p>Gain access to cutting-edge ideas and insights through exclusive events, workshops, and discussions.</p>\",title:\"Text\",type:ControlType.RichText},GBOMGORaN:{__defaultAssetReference:\"data:framer/asset-reference,uovgvpo6abqIhSMrEnrY44pahUc.svg?originalFilename=Happy+add.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,uovgvpo6abqIhSMrEnrY44pahUc.svg?originalFilename=Happy+add.svg&preferredSize=auto\"},title:\"Icon\",type:ControlType.ResponsiveImage}});addFonts(FramerOqy0xeTjy,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...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),...componentPresets.fonts?.[\"agQUrhZug\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"agQUrhZug\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOqy0xeTjy\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"320\",\"framerIntrinsicWidth\":\"540\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"sZN7747of\\\":\\\"title\\\",\\\"Oc3zkESis\\\":\\\"text\\\",\\\"GBOMGORaN\\\":\\\"icon\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jS_5uHzGO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sKGzeF3E0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/C0M3B4OEl63URiQCZbeQ/B3GfWBSlnZvzS8D3bLhY/F3iAbWiyP.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1JraKadF6R3mwlsv0yDG/WuDgjlpTnlKlZoRa1JCm/JL2u4nc0f.js\";const enabledGestures={Ma0GmVMxM:{hover:true},RdwEi4eGa:{hover:true}};const cycleOrder=[\"Ma0GmVMxM\",\"RdwEi4eGa\",\"r9DxbHV6C\"];const serializationHash=\"framer-UUdAD\";const variantClassNames={Ma0GmVMxM:\"framer-v-1x36ir6\",r9DxbHV6C:\"framer-v-q8w4ct\",RdwEi4eGa:\"framer-v-9jn7cy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.6,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};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={Desktop:\"Ma0GmVMxM\",Laptop:\"RdwEi4eGa\",Mobile:\"r9DxbHV6C\"};const getProps=({flag,height,id,image,link,popUp,title,width,...props})=>{return{...props,Gm7IFwCw8:popUp??props.Gm7IFwCw8,N30aMDjNq:title??props.N30aMDjNq??\"Turkiyaga amalga oshirgan sayyohatimiz\",onHokEwMU:flag??props.onHokEwMU??\"\uD83C\uDDF9\uD83C\uDDF7\",Sci5m6l7M:link??props.Sci5m6l7M,variant:humanReadableVariantMap[props.variant]??props.variant??\"Ma0GmVMxM\",Y0u5oDt8f:image??props.Y0u5oDt8f??{alt:\"\",pixelHeight:1400,pixelWidth:2492,src:\"https://framerusercontent.com/images/9SDDsvvBFgmHbkw1gtpfldqshc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9SDDsvvBFgmHbkw1gtpfldqshc.png?scale-down-to=512 512w,https://framerusercontent.com/images/9SDDsvvBFgmHbkw1gtpfldqshc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9SDDsvvBFgmHbkw1gtpfldqshc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9SDDsvvBFgmHbkw1gtpfldqshc.png 2492w\"}};};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,onHokEwMU,N30aMDjNq,Y0u5oDt8f,Gm7IFwCw8,Sci5m6l7M,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ma0GmVMxM\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1bm6je6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Gm7IFwCw8){const res=await Gm7IFwCw8(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsx(Link,{href:Sci5m6l7M,motionChild:true,nodeId:\"Ma0GmVMxM\",scopeId:\"PVkG3ERE9\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1x36ir6\",className,classNames)} framer-wmyfht`,\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ma0GmVMxM\",onTap:onTap1bm6je6,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(39, 39, 41)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(11px)\",background:\"linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.1) 0%, rgba(135, 135, 142, 0.05) 100%)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,WebkitBackdropFilter:\"blur(11px)\",...style},variants:{r9DxbHV6C:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},...addPropertyOverrides({\"Ma0GmVMxM-hover\":{\"data-framer-name\":undefined},\"RdwEi4eGa-hover\":{\"data-framer-name\":undefined},r9DxbHV6C:{\"data-framer-name\":\"Mobile\"},RdwEi4eGa:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bta3gs\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"bsHwgsaKc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97)))\"},children:\"{\"})}),className:\"framer-1ku0qok\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vtoH7rVBS\",style:{\"--extracted-1eung3n\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"Ma0GmVMxM-hover\":{\"--extracted-1eung3n\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Ma0GmVMxM-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229)))\"},children:\"{\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",children:\"\uD83C\uDDF9\uD83C\uDDF7\"})}),className:\"framer-16p0s9n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iB5th6d5I\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:onHokEwMU,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97)))\"},children:\"}\"})}),className:\"framer-1pbcwcf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IlsmRSiiX\",style:{\"--extracted-1eung3n\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"Ma0GmVMxM-hover\":{\"--extracted-1eung3n\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Ma0GmVMxM-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229)))\"},children:\"}\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sn6zzc\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"e5gcXjQY5\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{r9DxbHV6C:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},RdwEi4eGa:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+42+((componentViewport?.height||602)-84-511.6+41.6+28)+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 84px)`,...toResponsiveImage(Y0u5oDt8f),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-cdkxqx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"fcJvLY6L0\",style:{backdropFilter:\"blur(11px)\",WebkitBackdropFilter:\"blur(11px)\"},...addPropertyOverrides({\"Ma0GmVMxM-hover\":{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+42+((componentViewport?.height||602)-84-511.6+41.6+28)+0+-7),sizes:`calc((${componentViewport?.width||\"100vw\"} - 84px) * 1.04)`,...toResponsiveImage(Y0u5oDt8f),...{positionX:\"center\",positionY:\"center\"}}},\"RdwEi4eGa-hover\":{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||540.5)-64-497.6+41.6+24)+0+-7),sizes:`calc((${componentViewport?.width||\"100vw\"} - 64px) * 1.04)`,...toResponsiveImage(Y0u5oDt8f),...{positionX:\"center\",positionY:\"center\"}}},r9DxbHV6C:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+((componentViewport?.height||464.5)-48-524+41.6+16)+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,...toResponsiveImage(Y0u5oDt8f),...{positionX:\"center\",positionY:\"center\"}}},RdwEi4eGa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||540.5)-64-497.6+41.6+24)+0+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,...toResponsiveImage(Y0u5oDt8f),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ip68ol\",\"data-framer-name\":\"Down\",layoutDependency:layoutDependency,layoutId:\"Na7Ds363D\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-18g2rek\",\"data-styles-preset\":\"JL2u4nc0f\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-e1c73824-65be-4b64-a6df-97db2d9d34ea, rgb(135, 135, 143)))\"},children:\"Turkiyaga amalga oshirgan sayyohatimiz\"})}),className:\"framer-dcf3ij\",\"data-framer-name\":\"Turkiyaga amalga oshirgan sayyohatimiz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m7Wq6ZdIm\",style:{\"--extracted-1lwpl3i\":\"var(--token-e1c73824-65be-4b64-a6df-97db2d9d34ea, rgb(135, 135, 143))\",\"--framer-paragraph-spacing\":\"0px\"},text:N30aMDjNq,variants:{\"Ma0GmVMxM-hover\":{\"--extracted-1lwpl3i\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},\"RdwEi4eGa-hover\":{\"--extracted-1lwpl3i\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Ma0GmVMxM-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-18g2rek\",\"data-styles-preset\":\"JL2u4nc0f\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229)))\"},children:\"Turkiyaga amalga oshirgan sayyohatimiz\"})})},\"RdwEi4eGa-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-18g2rek\",\"data-styles-preset\":\"JL2u4nc0f\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229)))\"},children:\"Turkiyaga amalga oshirgan sayyohatimiz\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gs45vz\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"o8J0bNkfQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(135, 135, 143, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-0adaf858-783b-4d28-a00b-006810e1ce4a, rgb(42, 42, 42))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.4},whileHover:animation,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+42+((componentViewport?.height||602)-84-511.6+391.6+56)+0+0+16),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/uRty5Mxnc7Is8dBYplIwiGE7A4.svg\"},className:\"framer-p2u2nx\",\"data-framer-name\":\"Svg\",layoutDependency:layoutDependency,layoutId:\"EjsJMi9Vx\",...addPropertyOverrides({r9DxbHV6C:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+((componentViewport?.height||464.5)-48-524+391.6+32)+0+68.4+4),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/uRty5Mxnc7Is8dBYplIwiGE7A4.svg\"}},RdwEi4eGa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+((componentViewport?.height||540.5)-64-497.6+391.6+48)+0+0+17),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/uRty5Mxnc7Is8dBYplIwiGE7A4.svg\"}}},baseVariant,gestureVariant)})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UUdAD.framer-wmyfht, .framer-UUdAD .framer-wmyfht { display: block; }\",\".framer-UUdAD.framer-1x36ir6 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 42px; position: relative; text-decoration: none; width: 700px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UUdAD .framer-1bta3gs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UUdAD .framer-1ku0qok, .framer-UUdAD .framer-1pbcwcf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UUdAD .framer-16p0s9n { flex: none; height: 32px; position: relative; white-space: pre; width: auto; }\",\".framer-UUdAD .framer-1sn6zzc { align-content: center; align-items: center; aspect-ratio: 1.7714285714285714 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 348px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UUdAD .framer-cdkxqx { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-UUdAD .framer-1ip68ol { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UUdAD .framer-dcf3ij { flex: 1 0 0px; height: auto; max-width: 360px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UUdAD .framer-1gs45vz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-UUdAD .framer-p2u2nx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 28px; }\",\".framer-UUdAD.framer-v-9jn7cy.framer-1x36ir6 { gap: 24px; padding: 32px; width: 620px; }\",\".framer-UUdAD.framer-v-9jn7cy .framer-1sn6zzc { height: var(--framer-aspect-ratio-supported, 314px); }\",\".framer-UUdAD.framer-v-9jn7cy .framer-1gs45vz { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 52px); width: 52px; }\",\".framer-UUdAD.framer-v-9jn7cy .framer-p2u2nx { height: var(--framer-aspect-ratio-supported, 22px); width: 22px; }\",\".framer-UUdAD.framer-v-q8w4ct.framer-1x36ir6 { gap: 16px; padding: 24px; width: 320px; }\",\".framer-UUdAD.framer-v-q8w4ct .framer-1sn6zzc { height: var(--framer-aspect-ratio-supported, 154px); }\",\".framer-UUdAD.framer-v-q8w4ct .framer-1ip68ol { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: flex-start; }\",\".framer-UUdAD.framer-v-q8w4ct .framer-dcf3ij { flex: none; width: 100%; }\",\".framer-UUdAD.framer-v-q8w4ct .framer-1gs45vz { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); width: 48px; }\",\".framer-UUdAD.framer-v-q8w4ct .framer-p2u2nx { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-UUdAD.framer-v-1x36ir6.hover .framer-cdkxqx, .framer-UUdAD.framer-v-9jn7cy.hover .framer-cdkxqx { height: 104%; width: 104%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-UUdAD[data-border=\"true\"]::after, .framer-UUdAD [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 602\n * @framerIntrinsicWidth 700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RdwEi4eGa\":{\"layout\":[\"fixed\",\"auto\"]},\"r9DxbHV6C\":{\"layout\":[\"fixed\",\"auto\"]},\"no0NdwXXD\":{\"layout\":[\"fixed\",\"auto\"]},\"QyQ6evOdL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"onHokEwMU\":\"flag\",\"N30aMDjNq\":\"title\",\"Y0u5oDt8f\":\"image\",\"Gm7IFwCw8\":\"popUp\",\"Sci5m6l7M\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerPVkG3ERE9=withCSS(Component,css,\"framer-UUdAD\");export default FramerPVkG3ERE9;FramerPVkG3ERE9.displayName=\"Card\";FramerPVkG3ERE9.defaultProps={height:602,width:700};addPropertyControls(FramerPVkG3ERE9,{variant:{options:[\"Ma0GmVMxM\",\"RdwEi4eGa\",\"r9DxbHV6C\"],optionTitles:[\"Desktop\",\"Laptop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},onHokEwMU:{defaultValue:\"\uD83C\uDDF9\uD83C\uDDF7\",displayTextArea:false,title:\"Flag\",type:ControlType.String},N30aMDjNq:{defaultValue:\"Turkiyaga amalga oshirgan sayyohatimiz\",displayTextArea:false,title:\"Title\",type:ControlType.String},Y0u5oDt8f:{__defaultAssetReference:\"data:framer/asset-reference,9SDDsvvBFgmHbkw1gtpfldqshc.png?originalFilename=Rectangle+826.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,9SDDsvvBFgmHbkw1gtpfldqshc.png?originalFilename=Rectangle+826.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},Gm7IFwCw8:{title:\"Pop Up\",type:ControlType.EventHandler},Sci5m6l7M:{title:\"Link\",type:ControlType.Link}});addFonts(FramerPVkG3ERE9,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPVkG3ERE9\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RdwEi4eGa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r9DxbHV6C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"no0NdwXXD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QyQ6evOdL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"onHokEwMU\\\":\\\"flag\\\",\\\"N30aMDjNq\\\":\\\"title\\\",\\\"Y0u5oDt8f\\\":\\\"image\\\",\\\"Gm7IFwCw8\\\":\\\"popUp\\\",\\\"Sci5m6l7M\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"602\",\"framerIntrinsicWidth\":\"700\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PVkG3ERE9.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/uTjIK7IOo6dciRJ0P63N/YepIR5ZHp0Ui7RSEHjvX/q1Q6eEkMF.js\";const enabledGestures={\"I829:21376;92:988\":{hover:true}};const serializationHash=\"framer-t9tne\";const variantClassNames={\"I829:21376;92:988\":\"framer-v-ldnp7y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,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,link,title,width,...props})=>{return{...props,DmiuHW0SG:link??props.DmiuHW0SG,LiEtQcKXg:title??props.LiEtQcKXg??\"JOIN THE CLUB\"};};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,LiEtQcKXg,DmiuHW0SG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"I829:21376;92:988\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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,...addPropertyOverrides({\"I829:21376;92:988-hover\":{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:DmiuHW0SG,motionChild:true,nodeId:\"I829:21376;92:988\",openInNewTab:false,scopeId:\"XuV8FYcJg\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ldnp7y\",className,classNames)} framer-5d6fus`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"I829:21376;92:988\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(128.06843857995744deg, rgb(154, 120, 58) 0%, rgb(164, 125, 54) 100%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{\"I829:21376;92:988-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(235, 192, 114)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(128.06843857995744deg, rgb(189, 137, 40) 0%, rgb(128, 87, 11) 100%)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14}},...addPropertyOverrides({\"I829:21376;92:988-hover\":{\"data-border\":true,\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rekld2\",\"data-styles-preset\":\"q1Q6eEkMF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229)))\"},children:\"JOIN THE CLUB\"})}),className:\"framer-4mwxcp\",\"data-framer-name\":\"KLUBGA a'zo bo'lish\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I829:21376;92:989\",style:{\"--extracted-r6o4lv\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\",\"--framer-paragraph-spacing\":\"0px\"},text:LiEtQcKXg,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t9tne.framer-5d6fus, .framer-t9tne .framer-5d6fus { display: block; }\",\".framer-t9tne.framer-ldnp7y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 17.5px 40px 17.5px 40px; position: relative; text-decoration: none; width: 460px; }\",\".framer-t9tne .framer-4mwxcp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t9tne.framer-ldnp7y { gap: 0px; } .framer-t9tne.framer-ldnp7y > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-t9tne.framer-ldnp7y > :first-child { margin-left: 0px; } .framer-t9tne.framer-ldnp7y > :last-child { margin-right: 0px; } }\",\".framer-t9tne.framer-v-ldnp7y.hover.framer-ldnp7y { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t9tne.framer-v-ldnp7y.hover.framer-ldnp7y { gap: 0px; } .framer-t9tne.framer-v-ldnp7y.hover.framer-ldnp7y > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-t9tne.framer-v-ldnp7y.hover.framer-ldnp7y > :first-child { margin-left: 0px; } .framer-t9tne.framer-v-ldnp7y.hover.framer-ldnp7y > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-t9tne[data-border=\"true\"]::after, .framer-t9tne [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 63.5\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SzRNKXTLX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LiEtQcKXg\":\"title\",\"DmiuHW0SG\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXuV8FYcJg=withCSS(Component,css,\"framer-t9tne\");export default FramerXuV8FYcJg;FramerXuV8FYcJg.displayName=\"Text button\";FramerXuV8FYcJg.defaultProps={height:63.5,width:460};addPropertyControls(FramerXuV8FYcJg,{LiEtQcKXg:{defaultValue:\"JOIN THE CLUB\",displayTextArea:false,title:\"Title\",type:ControlType.String},DmiuHW0SG:{title:\"Link\",type:ControlType.Link}});addFonts(FramerXuV8FYcJg,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXuV8FYcJg\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"LiEtQcKXg\\\":\\\"title\\\",\\\"DmiuHW0SG\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"460\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SzRNKXTLX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"63.5\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}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 Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import FAQDesktop from\"#framer/local/canvasComponent/a4Ss4juhh/a4Ss4juhh.js\";import Speaker from\"#framer/local/canvasComponent/evrepHcTq/evrepHcTq.js\";import Label from\"#framer/local/canvasComponent/NNmbV2kDk/NNmbV2kDk.js\";import PrimaryButton from\"#framer/local/canvasComponent/notrXqCHh/notrXqCHh.js\";import Card from\"#framer/local/canvasComponent/Oqy0xeTjy/Oqy0xeTjy.js\";import Card1 from\"#framer/local/canvasComponent/PVkG3ERE9/PVkG3ERE9.js\";import Statics from\"#framer/local/canvasComponent/Qe5dqoili/Qe5dqoili.js\";import Card2 from\"#framer/local/canvasComponent/vvGBZik4V/vvGBZik4V.js\";import TextButton from\"#framer/local/canvasComponent/XuV8FYcJg/XuV8FYcJg.js\";import{CustomSelection}from\"#framer/local/codeFile/SnFwyXe/Custome_text_selection.js\";import*as sharedStyle3 from\"#framer/local/css/aRb4fWSwt/aRb4fWSwt.js\";import*as sharedStyle5 from\"#framer/local/css/emvbyxX4u/emvbyxX4u.js\";import*as sharedStyle6 from\"#framer/local/css/F3iAbWiyP/F3iAbWiyP.js\";import*as sharedStyle1 from\"#framer/local/css/JL2u4nc0f/JL2u4nc0f.js\";import*as sharedStyle2 from\"#framer/local/css/pxEAb2EPP/pxEAb2EPP.js\";import*as sharedStyle8 from\"#framer/local/css/q1Q6eEkMF/q1Q6eEkMF.js\";import*as sharedStyle4 from\"#framer/local/css/uOO0C8j07/uOO0C8j07.js\";import*as sharedStyle from\"#framer/local/css/zsMJNYczj/zsMJNYczj.js\";import*as sharedStyle7 from\"#framer/local/css/ZY6g6AhOS/ZY6g6AhOS.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const CustomSelectionFonts=getFonts(CustomSelection);const PrimaryButtonFonts=getFonts(PrimaryButton);const YouTubeFonts=getFonts(YouTube);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const StaticsFonts=getFonts(Statics);const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const LabelFonts=getFonts(Label);const MotionDivWithFX=withFX(motion.div);const SlideshowFonts=getFonts(Slideshow);const CardFonts=getFonts(Card);const TextButtonFonts=getFonts(TextButton);const Card1Fonts=getFonts(Card1);const CarouselFonts=getFonts(Carousel);const SpeakerFonts=getFonts(Speaker);const Card2Fonts=getFonts(Card2);const FAQDesktopFonts=getFonts(FAQDesktop);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={fACcXYkN9:\"(min-width: 810px) and (max-width: 1199px)\",K4K2dkZC1:\"(min-width: 1200px) and (max-width: 1599px)\",raHTYwqln:\"(min-width: 1600px) and (max-width: 1919px)\",wbomxF4_O:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8iN2o\";const variantClassNames={fACcXYkN9:\"framer-v-kdhxyc\",K4K2dkZC1:\"framer-v-amdf6v\",raHTYwqln:\"framer-v-1wps2js\",wbomxF4_O:\"framer-v-1ngglxw\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={filter:\"blur(4px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={damping:100,delay:.05,mass:3,stiffness:500,type:\"spring\"};const textEffect={effect:animation,repeat:false,startDelay:.2,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transition2={bounce:0,delay:.8,duration:.4,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:40,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:48};const transition3={damping:20,delay:0,mass:2,stiffness:120,type:\"spring\"};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition4};const transition5={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation7={opacity:1,rotate:180,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5};const animation8={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition4};const animation9={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition4};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Laptop \":\"raHTYwqln\",Desktop:\"WQLkyLRf1\",Mini:\"K4K2dkZC1\",Mobile:\"wbomxF4_O\",Tablet:\"fACcXYkN9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const AmLlLuymX3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const GpQRMzuKq3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"bw7xk6mh5\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"fACcXYkN9\",\"wbomxF4_O\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if([\"fACcXYkN9\",\"wbomxF4_O\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"K4K2dkZC1\",\"fACcXYkN9\",\"wbomxF4_O\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"K4K2dkZC1\",\"fACcXYkN9\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"wbomxF4_O\")return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if([\"K4K2dkZC1\",\"fACcXYkN9\",\"wbomxF4_O\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-16d0e22a-fd3d-497d-a34f-b7284afe17a9, rgb(19, 18, 18)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r7a9ds-container\",isAuthoredByUser:true,nodeId:\"C7iITbl9X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CustomSelection,{height:\"100%\",id:\"C7iITbl9X\",layoutId:\"C7iITbl9X\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1qqj7j1\",\"data-framer-name\":\"Hero section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-196ejvu\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1668ny0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vhu7rk\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vgnnef\",\"data-framer-name\":\"Left section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ddg7fo\",\"data-framer-name\":\"Hero text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1lkgv28\",\"data-styles-preset\":\"zsMJNYczj\",children:[\"network with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"uzbekistan\u2019s leading\"}),\" entrepreneurs\"]})}),className:\"framer-hwc4iu\",\"data-framer-name\":\"network with uzbekistan\u2019s leading entrepreneurs\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-18g2rek\",\"data-styles-preset\":\"JL2u4nc0f\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"Join Milliard Club to collaborate, innovate, and grow with Uzbekistan\u2019s top entrepreneurs.\"})}),className:\"framer-gp2m58\",\"data-framer-name\":\"Join Milliard Club to collaborate, innovate, and grow with Uzbekistan\u2019s top entrepreneurs.\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-12vienm-container\",\"data-framer-appear-id\":\"12vienm\",id:\"12vienm\",initial:animation2,nodeId:\"dnD_D7r4b\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"F32E8Lppu\"},K4K2dkZC1:{variant:\"F32E8Lppu\"},raHTYwqln:{variant:\"F32E8Lppu\"},wbomxF4_O:{variant:\"SasVmalzY\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{AmLlLuymX:AmLlLuymX3bnx0g({overlay}),fpvQ0nc5X:\"SHOWREEL ABOUT US\",height:\"100%\",id:\"dnD_D7r4b\",layoutId:\"dnD_D7r4b\",variant:\"jKNgT3dj4\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-pmyhpj\"),\"data-framer-portal-id\":\"12vienm\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"zwTWsPySd\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-ymplcj-container\"),\"data-framer-portal-id\":\"12vienm\",inComponentSlot:true,isModuleExternal:true,nodeId:\"wAZqK1EYk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"wAZqK1EYk\",isMixedBorderRadius:false,isRed:true,layoutId:\"wAZqK1EYk\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/uTFursWSzVk?si=qqD2S6jaLJduZu4g\",width:\"100%\"})})})]}),getContainer())})})]})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-n8egnl hidden-kdhxyc hidden-1ngglxw\",\"data-framer-appear-id\":\"n8egnl\",\"data-framer-name\":\"Logo\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K4K2dkZC1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:450,intrinsicWidth:500,pixelHeight:980,pixelWidth:1104,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) * 0.2786)`,src:\"https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png 1104w\"}},raHTYwqln:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:450,intrinsicWidth:500,pixelHeight:980,pixelWidth:1104,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1680px) * 0.2786)`,src:\"https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png 1104w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:450,intrinsicWidth:500,pixelHeight:980,pixelWidth:1104,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1680px) * 0.2786)`,src:\"https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2qQyYM084yChp52vbyCaXrhCCj8.png 1104w\"},className:\"framer-c5s0qz\",\"data-framer-name\":\"Logo\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-14aon5c\",\"data-framer-appear-id\":\"14aon5c\",\"data-framer-name\":\"Bottom\",initial:animation4,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1680px) * 0.48)`},K4K2dkZC1:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 64px) / 5, 1px)`},raHTYwqln:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1680px) - 64px) / 5, 1px)`},wbomxF4_O:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1680px) - 120px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ugc6jv-container\",nodeId:\"umeNFWm_D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fv8dJWdIf\"},K4K2dkZC1:{variant:\"fv8dJWdIf\"},raHTYwqln:{variant:\"fv8dJWdIf\"},wbomxF4_O:{variant:\"fv8dJWdIf\"}},children:/*#__PURE__*/_jsx(Statics,{eYv0NU6nR:0,height:\"100%\",id:\"umeNFWm_D\",layoutId:\"umeNFWm_D\",m17Buzzqr:\"+\",OO8Zwpb3a:\"\",style:{width:\"100%\"},UfVv1wTRb:0,variant:\"I829:21261;58:44\",width:\"100%\",XVgVzOLaH:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"CLUB\"}),/*#__PURE__*/_jsx(\"p\",{children:\"MEMEBERS\"})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1680px) * 0.49)`},K4K2dkZC1:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 64px) / 5, 1px)`},raHTYwqln:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1680px) - 64px) / 5, 1px)`},wbomxF4_O:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1680px) - 120px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bc4agu-container\",nodeId:\"pUURdvbPl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fv8dJWdIf\"},K4K2dkZC1:{variant:\"fv8dJWdIf\"},raHTYwqln:{variant:\"fv8dJWdIf\"},wbomxF4_O:{variant:\"fv8dJWdIf\"}},children:/*#__PURE__*/_jsx(Statics,{eYv0NU6nR:0,height:\"100%\",id:\"pUURdvbPl\",layoutId:\"pUURdvbPl\",m17Buzzqr:\"MLN+\",OO8Zwpb3a:\"$6,\",style:{width:\"100%\"},UfVv1wTRb:5,variant:\"I829:21261;58:44\",width:\"100%\",XVgVzOLaH:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"ANNUAL TURNOVER\"}),/*#__PURE__*/_jsx(\"p\",{children:\"OF MEMBERS\"})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1680px) * 0.48)`},K4K2dkZC1:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 64px) / 5, 1px)`},raHTYwqln:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1680px) - 64px) / 5, 1px)`},wbomxF4_O:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1680px) - 120px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ejrc6f-container\",nodeId:\"ZMSNF0zi7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fv8dJWdIf\"},K4K2dkZC1:{variant:\"fv8dJWdIf\"},raHTYwqln:{variant:\"fv8dJWdIf\"},wbomxF4_O:{variant:\"fv8dJWdIf\"}},children:/*#__PURE__*/_jsx(Statics,{eYv0NU6nR:0,height:\"100%\",id:\"ZMSNF0zi7\",layoutId:\"ZMSNF0zi7\",m17Buzzqr:\"+\",OO8Zwpb3a:\"\",style:{width:\"100%\"},UfVv1wTRb:20,variant:\"I829:21261;58:44\",width:\"100%\",XVgVzOLaH:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"BUSINESS \"}),/*#__PURE__*/_jsx(\"p\",{children:\"SPHERES\"})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1680px) * 0.49)`},K4K2dkZC1:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 64px) / 5, 1px)`},raHTYwqln:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1680px) - 64px) / 5, 1px)`},wbomxF4_O:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1680px) - 120px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9zefqt-container\",nodeId:\"OaDxDWPU0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fv8dJWdIf\"},K4K2dkZC1:{variant:\"fv8dJWdIf\"},raHTYwqln:{variant:\"fv8dJWdIf\"},wbomxF4_O:{variant:\"fv8dJWdIf\"}},children:/*#__PURE__*/_jsx(Statics,{eYv0NU6nR:0,height:\"100%\",id:\"OaDxDWPU0\",layoutId:\"OaDxDWPU0\",m17Buzzqr:\"+\",OO8Zwpb3a:\"\",style:{width:\"100%\"},UfVv1wTRb:30,variant:\"I829:21261;58:44\",width:\"100%\",XVgVzOLaH:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"EXPORTED\"}),/*#__PURE__*/_jsx(\"p\",{children:\"COUNTIRES\"})]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1680px)`},K4K2dkZC1:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 64px) / 5, 1px)`},raHTYwqln:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1680px) - 64px) / 5, 1px)`},wbomxF4_O:{width:`min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 240px, 1px), 1680px) - 120px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5c8vwx-container\",nodeId:\"wzLka9VOD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fv8dJWdIf\"},K4K2dkZC1:{variant:\"fv8dJWdIf\"},raHTYwqln:{variant:\"fv8dJWdIf\"},wbomxF4_O:{variant:\"fv8dJWdIf\"}},children:/*#__PURE__*/_jsx(Statics,{eYv0NU6nR:0,height:\"100%\",id:\"wzLka9VOD\",layoutId:\"wzLka9VOD\",m17Buzzqr:\"+\",OO8Zwpb3a:\"\",style:{width:\"100%\"},UfVv1wTRb:12,variant:\"I829:21261;58:44\",width:\"100%\",XVgVzOLaH:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"YEARS\"}),/*#__PURE__*/_jsx(\"p\",{children:\"OF EXPERINCE\"})]})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17eqoml\",\"data-framer-name\":\"About video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ga03b-container\",\"data-framer-name\":\"Video\",isAuthoredByUser:true,isModuleExternal:true,name:\"Video\",nodeId:\"NVSCBmiul\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"NVSCBmiul\",isMixedBorderRadius:false,layoutId:\"NVSCBmiul\",loop:true,muted:true,name:\"Video\",objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/aJe4hAj330IOUUvLst4GtR4G2M0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d2i2s7\",\"data-framer-name\":\"LINER\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gb5p87\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vqw2xw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hLFdlJ5UL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{raHTYwqln:{sizingOptions:{heightType:true,widthType:true}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"hLFdlJ5UL\",layoutId:\"hLFdlJ5UL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vzb9y9\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wbmt6c\",\"data-framer-name\":\"plane right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"49\" viewBox=\"0 0 48 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_32_14313)\">\\n<foreignObject x=\"-6.00391\" y=\"-3.76562\" width=\"60.0039\" height=\"60.0156\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"backdrop-filter:blur(5.5px);clip-path:url(#bgblur_1_32_14313_clip_path);height:100%;width:100%\"></div></foreignObject><g filter=\"url(#filter0_d_32_14313)\" data-figma-bg-blur-radius=\"11\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.6918 17.1977C42.8678 14.7657 44.0998 11.0317 41.6618 8.5857C39.2178 6.1317 35.4858 7.3637 33.0478 9.5497C31.3198 11.1117 29.6758 12.7937 28.0858 14.4217L27.8258 14.6877C27.5238 15.0097 27.4598 15.0377 27.0178 14.8757C23.6018 13.5877 20.1518 12.3897 17.2337 11.3897C15.2157 10.6817 13.4917 10.8177 12.1237 11.7957C11.2877 12.3857 10.5657 13.0617 9.80369 13.7797C9.5037 14.0597 9.20169 14.3437 8.88569 14.6277C8.68369 14.8097 8.56369 15.0677 8.55369 15.3417C8.54569 15.6137 8.64969 15.8777 8.84169 16.0737L17.5377 24.9078L13.9977 29.1638L9.00969 28.6778C8.71169 28.6558 8.41569 28.7538 8.20369 28.9658L5.28769 31.8858C5.07169 32.1038 4.96569 32.4078 5.00369 32.7138C5.04169 33.0198 5.21769 33.2898 5.48169 33.4498L12.5557 37.6998L16.8017 44.7678C16.9597 45.0318 17.2317 45.2078 17.5377 45.2438C17.5777 45.2498 17.6177 45.2518 17.6577 45.2518C17.9217 45.2518 18.1777 45.1478 18.3657 44.9598L21.2818 42.0398C21.4938 41.8258 21.5998 41.5298 21.5698 41.2298L21.0498 36.2218L25.3298 32.6978C27.0098 34.3478 31.5778 38.8418 34.1738 41.4038C34.3678 41.5958 34.6438 41.6918 34.9058 41.6918C35.1798 41.6838 35.4378 41.5638 35.6198 41.3618C35.8998 41.0498 36.1818 40.7498 36.4598 40.4518C37.1458 39.7218 37.8538 38.9658 38.4538 38.1298C39.4418 36.7378 39.5738 35.0658 38.8618 33.0258C37.8338 30.0498 36.6338 26.5918 35.3678 23.2398C35.2098 22.8178 35.2298 22.7338 35.5658 22.4098C37.2538 20.7698 39.0418 19.0177 40.6918 17.1977Z\" fill=\"#E5E5E5\"/>\\n<path d=\"M41.3076 8.93868L41.3075 8.93853C40.2238 7.85035 38.8566 7.56802 37.4401 7.81997C36.0087 8.07457 34.5487 8.87568 33.3824 9.92122C31.6681 11.4709 30.0349 13.1416 28.4435 14.7711L28.4433 14.7712L28.1869 15.0335C28.1139 15.1113 28.0339 15.1947 27.9512 15.2624C27.8615 15.3359 27.7454 15.4112 27.5945 15.4485C27.3159 15.5176 27.0452 15.4183 26.8532 15.3479L26.8457 15.3452L26.8414 15.3436L26.8414 15.3435C23.4328 14.0583 19.9887 12.8624 17.0716 11.8627L17.0682 11.8615C15.1569 11.1909 13.6142 11.3448 12.4145 12.2024L12.412 12.2042L12.412 12.2042C11.6091 12.7708 10.9115 13.4228 10.1466 14.1436L10.1449 14.1452L10.1449 14.1452C10.1032 14.1841 10.0613 14.2232 10.0193 14.2625C9.76081 14.504 9.49554 14.7519 9.21992 14.9996L8.88574 14.6278L9.22038 14.9992C9.12024 15.0894 9.059 15.2188 9.05343 15.3581C9.04997 15.492 9.10123 15.624 9.19858 15.7235C9.19868 15.7236 9.19878 15.7237 9.19887 15.7238L17.894 24.557L18.2115 24.8796L17.9221 25.2275L14.3821 29.4835L14.2128 29.6871L13.9492 29.6614L8.96788 29.1761C8.80294 29.1652 8.65605 29.2207 8.55749 29.3191L41.3076 8.93868ZM41.3076 8.93868C42.3884 10.023 42.6676 11.3915 42.4148 12.8092C42.1594 14.2409 41.3606 15.6999 40.3203 16.863C38.6825 18.6695 36.9054 20.4112 35.2174 22.0512L35.2157 22.0528C35.067 22.1962 34.8614 22.3944 34.7952 22.672C34.7275 22.9557 34.8278 23.2237 34.8984 23.412L34.8995 23.4151L34.9 23.4164C36.1632 26.761 37.3611 30.2127 38.3892 33.189L38.3897 33.1905C39.0642 35.1232 38.9154 36.615 38.0466 37.8396C37.4691 38.644 36.7842 39.3764 36.0954 40.1094L36.0942 40.1107C36.0558 40.1518 36.0173 40.1931 35.9785 40.2346C35.7386 40.4914 35.4925 40.755 35.248 41.0275C35.1589 41.1262 35.0328 41.1859 34.8983 41.1917C34.7513 41.1899 34.6115 41.1335 34.5255 41.0484L34.525 41.0479C31.9286 38.4855 27.3603 33.9913 25.6801 32.3411L25.3592 32.0259L25.012 32.3118L20.732 35.8358L20.5247 36.0064L20.5525 36.2734L21.0723 41.2795C21.0723 41.2798 21.0723 41.28 21.0723 41.2803C21.0871 41.4301 21.0345 41.5786 20.9272 41.6873C20.927 41.6875 20.9268 41.6877 20.9266 41.6879L18.0121 44.6062L18.0119 44.6065C17.9192 44.6991 17.7911 44.7518 17.6577 44.7518C17.6338 44.7518 17.62 44.7505 17.6119 44.7493L17.604 44.7481L17.5961 44.7472C17.444 44.7293 17.309 44.6418 17.2307 44.511L17.2303 44.5103L12.9843 37.4423L12.9201 37.3354L12.8132 37.2712L5.74085 33.0222C5.74062 33.022 5.7404 33.0219 5.74018 33.0218C5.60632 32.9404 5.51884 32.8048 5.49988 32.6522C5.48111 32.501 5.53292 32.3491 5.64216 32.2384C5.6424 32.2382 5.64264 32.2379 5.64287 32.2377L8.55725 29.3193L41.3076 8.93868Z\" stroke=\"url(#paint0_linear_32_14313)\" stroke-opacity=\"0.05\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_32_14313\" x=\"-6.00391\" y=\"-3.76562\" width=\"60.0039\" height=\"60.0156\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_32_14313\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_32_14313\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"bgblur_1_32_14313_clip_path\" transform=\"translate(6.00391 3.76562)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M40.6918 17.1977C42.8678 14.7657 44.0998 11.0317 41.6618 8.5857C39.2178 6.1317 35.4858 7.3637 33.0478 9.5497C31.3198 11.1117 29.6758 12.7937 28.0858 14.4217L27.8258 14.6877C27.5238 15.0097 27.4598 15.0377 27.0178 14.8757C23.6018 13.5877 20.1518 12.3897 17.2337 11.3897C15.2157 10.6817 13.4917 10.8177 12.1237 11.7957C11.2877 12.3857 10.5657 13.0617 9.80369 13.7797C9.5037 14.0597 9.20169 14.3437 8.88569 14.6277C8.68369 14.8097 8.56369 15.0677 8.55369 15.3417C8.54569 15.6137 8.64969 15.8777 8.84169 16.0737L17.5377 24.9078L13.9977 29.1638L9.00969 28.6778C8.71169 28.6558 8.41569 28.7538 8.20369 28.9658L5.28769 31.8858C5.07169 32.1038 4.96569 32.4078 5.00369 32.7138C5.04169 33.0198 5.21769 33.2898 5.48169 33.4498L12.5557 37.6998L16.8017 44.7678C16.9597 45.0318 17.2317 45.2078 17.5377 45.2438C17.5777 45.2498 17.6177 45.2518 17.6577 45.2518C17.9217 45.2518 18.1777 45.1478 18.3657 44.9598L21.2818 42.0398C21.4938 41.8258 21.5998 41.5298 21.5698 41.2298L21.0498 36.2218L25.3298 32.6978C27.0098 34.3478 31.5778 38.8418 34.1738 41.4038C34.3678 41.5958 34.6438 41.6918 34.9058 41.6918C35.1798 41.6838 35.4378 41.5638 35.6198 41.3618C35.8998 41.0498 36.1818 40.7498 36.4598 40.4518C37.1458 39.7218 37.8538 38.9658 38.4538 38.1298C39.4418 36.7378 39.5738 35.0658 38.8618 33.0258C37.8338 30.0498 36.6338 26.5918 35.3678 23.2398C35.2098 22.8178 35.2298 22.7338 35.5658 22.4098C37.2538 20.7698 39.0418 19.0177 40.6918 17.1977Z\"/>\\n</clipPath><linearGradient id=\"paint0_linear_32_14313\" x1=\"23.9987\" y1=\"7.23438\" x2=\"23.9987\" y2=\"45.2518\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_32_14313\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-i5gawh\",\"data-styles-preset\":\"pxEAb2EPP\",children:\"TARVELS\"})}),className:\"framer-xzk04u\",\"data-framer-name\":\"Sayyohatlar\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o69ayu\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8zwjwm\",\"data-framer-name\":\"Clap 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"49\" viewBox=\"0 0 48 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_32_14317)\">\\n<foreignObject x=\"-5.59375\" y=\"-6.5\" width=\"59.1875\" height=\"62\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"backdrop-filter:blur(5.5px);clip-path:url(#bgblur_1_32_14317_clip_path);height:100%;width:100%\"></div></foreignObject><g filter=\"url(#filter0_d_32_14317)\" data-figma-bg-blur-radius=\"11\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.5456 11.4435C42.3296 10.5995 41.4616 10.1035 40.6256 10.3075L37.7976 11.0335C36.9536 11.2495 36.4456 12.1115 36.6616 12.9535C36.8536 13.7055 37.5556 14.1895 38.3016 14.1355C38.3956 14.1275 38.4876 14.1135 38.5816 14.0895L41.4096 13.3635C42.2536 13.1475 42.7616 12.2875 42.5456 11.4435Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.7306 9.8796C34.0206 10.0516 34.3426 10.1216 34.6546 10.0976C35.1506 10.0616 35.6206 9.7936 35.8946 9.3336L37.2966 6.9896C37.7446 6.2436 37.5006 5.2736 36.7526 4.8276C36.0046 4.3836 35.0366 4.6256 34.5886 5.3716L33.1866 7.7156C32.7386 8.4636 32.9826 9.4316 33.7306 9.8796Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.6046 9.7315C19.6886 9.9635 19.7726 10.2155 19.8366 10.4675C20.5306 10.0895 21.3286 9.8995 22.1506 9.8995C22.5706 9.8995 22.9906 9.9415 23.3706 10.0675V7.2075C23.3706 6.8495 23.2846 6.4915 23.1586 6.1775C23.0326 5.8615 22.8226 5.5455 22.5706 5.2935C22.2966 5.0195 22.0026 4.8315 21.6666 4.7055C21.0146 4.4315 20.2566 4.4315 19.6046 4.7055C19.2686 4.8315 18.9746 5.0195 18.7006 5.2935C18.4486 5.5455 18.2366 5.8615 18.1106 6.1775C17.9846 6.4915 17.9006 6.8495 17.9006 7.2075V7.6495C18.1326 7.7955 18.3426 7.9855 18.5526 8.1955C19.0166 8.6375 19.3726 9.1855 19.6046 9.7315Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.9662 14.7178V21.1338C27.8702 20.5438 28.9442 20.2078 30.1002 20.2078C30.1842 20.2078 30.2902 20.2078 30.3742 20.2278V10.3218C30.3742 9.60578 30.0802 8.89178 29.5742 8.38578C28.5222 7.35578 26.7762 7.35578 25.7042 8.38578C25.2002 8.93378 24.9042 9.60578 24.9042 10.3218V10.7638C25.1362 10.9098 25.3462 11.0798 25.5562 11.2898C26.4622 12.1938 26.9662 13.4358 26.9662 14.7178Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.611 17.9141C33.865 17.9141 32.413 19.1121 32.057 20.732C32.351 20.88 32.603 21.09 32.835 21.322C33.571 22.058 33.971 23.026 33.971 24.076V31.418C33.949 33.268 33.613 35.056 32.961 36.718C33.129 36.592 33.297 36.424 33.445 36.276C35.927 33.816 37.315 30.534 37.377 27.022V19.6801C37.377 19.1961 37.189 18.7761 36.851 18.4401C36.537 18.1041 36.095 17.9141 35.611 17.9141Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.1002 22.311C28.0802 22.311 26.4402 23.951 26.4402 25.971C26.4402 25.991 26.4402 26.075 26.4202 26.097V29.799C26.4202 30.241 26.0822 30.577 25.6402 30.577C25.2002 30.577 24.8622 30.241 24.8622 29.799V14.7191C24.8622 13.9811 24.5682 13.2871 24.0642 12.7831C23.5582 12.2571 22.8442 12.0051 22.1502 12.0051C21.4562 12.0051 20.7402 12.2571 20.2142 12.7831C19.6883 13.3091 19.4163 14.0031 19.4163 14.7191V24.667C19.4163 25.109 19.0583 25.445 18.6363 25.445C18.2163 25.445 17.8583 25.087 17.8583 24.667V11.5851C17.8583 11.2471 17.7963 10.8691 17.6702 10.5751C17.5223 10.2371 17.3323 9.9431 17.0603 9.6691C16.8063 9.4171 16.4923 9.2071 16.1763 9.0811C15.8403 8.9551 15.4823 8.8711 15.1463 8.8711C14.7883 8.8711 14.4303 8.9551 14.0943 9.0811C13.7783 9.2071 13.4843 9.4171 13.2103 9.6691C12.9363 9.9431 12.7483 10.2371 12.6223 10.5531C12.4963 10.8691 12.4103 11.2271 12.4103 11.5851V24.667C12.4103 25.109 12.0743 25.445 11.6323 25.445C11.2343 25.445 10.8543 25.087 10.8543 24.667V17.0531C10.8543 15.5811 9.59225 14.3191 8.14225 14.3191C6.69025 14.3191 5.40625 15.5811 5.40625 17.0311V31.419C5.44825 34.931 6.83825 38.213 9.32025 40.673C11.8443 43.133 15.1463 44.501 18.6363 44.501C22.1282 44.501 25.4302 43.133 27.9542 40.673C30.4362 38.213 31.8242 34.909 31.8662 31.397V24.077C31.8662 23.595 31.6782 23.153 31.3402 22.815C31.0462 22.501 30.5842 22.311 30.1002 22.311Z\" fill=\"#E5E5E5\"/>\\n<path d=\"M23.7038 13.1298L23.7038 13.1297C23.3061 12.7163 22.7298 12.5051 22.1502 12.5051C21.5723 12.5051 20.9889 12.7155 20.5678 13.1366C20.5677 13.1366 20.5677 13.1366 20.5677 13.1367M23.7038 13.1298L17.6702 10.5751C17.7963 10.8691 17.8583 11.2471 17.8583 11.5851V24.667C17.8583 25.087 18.2163 25.445 18.6363 25.445C19.0583 25.445 19.4163 25.109 19.4163 24.667V14.7191C19.4163 14.0031 19.6883 13.3091 20.2142 12.7831L20.5677 13.1367M23.7038 13.1298L23.7106 13.1367C24.1213 13.5473 24.3622 14.1143 24.3622 14.7191V29.799C24.3622 30.518 24.9249 31.077 25.6402 31.077C26.3566 31.077 26.9202 30.5188 26.9202 29.799V26.178C26.9291 26.1384 26.9333 26.1034 26.9354 26.0807C26.9402 26.0303 26.9402 25.9848 26.9402 25.9723V25.971C26.9402 24.2271 28.3563 22.811 30.1002 22.811C30.4622 22.811 30.7864 22.9551 30.9752 23.1567L30.9808 23.1627L30.9866 23.1686C31.2329 23.4149 31.3662 23.7305 31.3662 24.077V31.394C31.325 34.7746 29.9896 37.951 27.6035 40.3166C25.1708 42.6867 21.9939 44.001 18.6363 44.001C15.2805 44.001 12.1036 42.6867 9.67089 40.3165C7.28401 37.9501 5.94742 34.7954 5.90625 31.416V17.0311C5.90625 15.8626 6.96095 14.8191 8.14225 14.8191C9.31351 14.8191 10.3543 15.8546 10.3543 17.0531V24.667C10.3543 25.3721 10.9672 25.945 11.6323 25.945C12.3504 25.945 12.9103 25.3851 12.9103 24.667V11.5851C12.9103 11.3043 12.9785 11.0097 13.0867 10.7383C13.1864 10.4881 13.3346 10.2538 13.5566 10.0299C13.7999 9.80725 14.0388 9.6424 14.2748 9.54739C14.5708 9.43689 14.8662 9.3711 15.1463 9.3711C15.4026 9.3711 15.6974 9.43605 15.9957 9.5474C16.2428 9.64677 16.4985 9.81646 16.7068 10.0227C16.9298 10.2477 17.086 10.4878 17.2114 10.7737M23.7038 13.1298L17.2114 10.7737M20.5677 13.1367C20.1388 13.5657 19.9163 14.1311 19.9163 14.7191V24.667C19.9163 25.3951 19.3243 25.945 18.6363 25.945C17.9401 25.945 17.3583 25.3631 17.3583 24.667V11.5851C17.3583 11.2981 17.3042 10.9911 17.2114 10.7737M20.5677 13.1367L17.2114 10.7737M37.9215 11.5178L37.9219 11.5178L40.7441 10.7932C40.745 10.793 40.7459 10.7928 40.7468 10.7926C41.3257 10.6528 41.9158 10.9995 42.0612 11.5674C42.2089 12.1446 41.8614 12.7317 41.2856 12.8791L41.2852 12.8792L38.4579 13.605C38.4578 13.605 38.4577 13.6051 38.4576 13.6051C38.396 13.6208 38.3328 13.6309 38.2624 13.637C37.7538 13.6723 37.2766 13.3412 37.146 12.8298L37.1459 12.8292C36.9983 12.254 37.3459 11.6652 37.9215 11.5178ZM34.6184 9.59891L34.6162 9.59907C34.4055 9.61528 34.1865 9.56847 33.9864 9.45002C33.4756 9.14329 33.31 8.48268 33.6155 7.97251L33.6157 7.97226L35.0172 5.62902C35.0173 5.6288 35.0175 5.62859 35.0176 5.62837C35.3234 5.11992 35.9848 4.95361 36.4969 5.25729C37.0071 5.56182 37.1732 6.22384 36.8679 6.73218L36.8675 6.73294L35.4655 9.07694L35.465 9.07773C35.2784 9.39098 34.959 9.57419 34.6184 9.59891ZM20.0748 9.56128L20.0701 9.54849L20.0648 9.53596C19.81 8.93636 19.4187 8.33129 18.902 7.83774C18.7481 7.68401 18.5827 7.52897 18.4006 7.38946V7.2075C18.4006 6.9249 18.4677 6.63032 18.5747 6.3637L18.5751 6.36269C18.6742 6.11395 18.8469 5.85434 19.0542 5.64705C19.279 5.42221 19.5127 5.27396 19.7802 5.17366L19.7893 5.17023L19.7984 5.16644C20.3264 4.94452 20.9447 4.94451 21.4729 5.16645L21.4819 5.17023L21.491 5.17366C21.7585 5.27396 21.9922 5.42221 22.217 5.64705L22.5706 5.2935L22.217 5.64705C22.4232 5.8532 22.5944 6.11254 22.6941 6.36269L22.6945 6.3637C22.8023 6.63223 22.8706 6.92658 22.8706 7.2075V9.44445C22.6281 9.41161 22.3853 9.3995 22.1506 9.3995C21.4595 9.3995 20.7783 9.52239 20.1486 9.77099C20.1241 9.69907 20.0993 9.62898 20.0748 9.56128ZM36.877 27.0176C36.825 29.9091 35.8407 32.6352 34.0642 34.8438C34.3219 33.7362 34.4571 32.5911 34.4709 31.4239L34.471 31.4239V31.418V24.076C34.471 22.8943 34.019 21.7989 33.1885 20.9684C33.026 20.8059 32.8453 20.6439 32.6406 20.5007C33.0599 19.2847 34.2244 18.4141 35.611 18.4141C35.9617 18.4141 36.2697 18.5504 36.4857 18.7814L36.4919 18.7882L36.4985 18.7947C36.7483 19.043 36.877 19.3377 36.877 19.6801V27.0176ZM27.4662 20.2857V14.7178C27.4662 13.3061 26.9115 11.9358 25.9093 10.9358C25.7461 10.7726 25.5803 10.6287 25.4042 10.4995V10.3218C25.4042 9.75385 25.6362 9.20321 26.0616 8.73579C26.9422 7.90117 28.37 7.90861 29.2225 8.74118C29.633 9.15271 29.8742 9.73841 29.8742 10.3218V19.7117C29.0171 19.7419 28.2037 19.9428 27.4662 20.2857Z\" stroke=\"url(#paint0_linear_32_14317)\" stroke-opacity=\"0.05\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_32_14317\" x=\"-5.59375\" y=\"-6.5\" width=\"59.1875\" height=\"62\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_32_14317\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_32_14317\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"bgblur_1_32_14317_clip_path\" transform=\"translate(5.59375 6.5)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.5456 11.4435C42.3296 10.5995 41.4616 10.1035 40.6256 10.3075L37.7976 11.0335C36.9536 11.2495 36.4456 12.1115 36.6616 12.9535C36.8536 13.7055 37.5556 14.1895 38.3016 14.1355C38.3956 14.1275 38.4876 14.1135 38.5816 14.0895L41.4096 13.3635C42.2536 13.1475 42.7616 12.2875 42.5456 11.4435Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.7306 9.8796C34.0206 10.0516 34.3426 10.1216 34.6546 10.0976C35.1506 10.0616 35.6206 9.7936 35.8946 9.3336L37.2966 6.9896C37.7446 6.2436 37.5006 5.2736 36.7526 4.8276C36.0046 4.3836 35.0366 4.6256 34.5886 5.3716L33.1866 7.7156C32.7386 8.4636 32.9826 9.4316 33.7306 9.8796Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.6046 9.7315C19.6886 9.9635 19.7726 10.2155 19.8366 10.4675C20.5306 10.0895 21.3286 9.8995 22.1506 9.8995C22.5706 9.8995 22.9906 9.9415 23.3706 10.0675V7.2075C23.3706 6.8495 23.2846 6.4915 23.1586 6.1775C23.0326 5.8615 22.8226 5.5455 22.5706 5.2935C22.2966 5.0195 22.0026 4.8315 21.6666 4.7055C21.0146 4.4315 20.2566 4.4315 19.6046 4.7055C19.2686 4.8315 18.9746 5.0195 18.7006 5.2935C18.4486 5.5455 18.2366 5.8615 18.1106 6.1775C17.9846 6.4915 17.9006 6.8495 17.9006 7.2075V7.6495C18.1326 7.7955 18.3426 7.9855 18.5526 8.1955C19.0166 8.6375 19.3726 9.1855 19.6046 9.7315Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.9662 14.7178V21.1338C27.8702 20.5438 28.9442 20.2078 30.1002 20.2078C30.1842 20.2078 30.2902 20.2078 30.3742 20.2278V10.3218C30.3742 9.60578 30.0802 8.89178 29.5742 8.38578C28.5222 7.35578 26.7762 7.35578 25.7042 8.38578C25.2002 8.93378 24.9042 9.60578 24.9042 10.3218V10.7638C25.1362 10.9098 25.3462 11.0798 25.5562 11.2898C26.4622 12.1938 26.9662 13.4358 26.9662 14.7178Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.611 17.9141C33.865 17.9141 32.413 19.1121 32.057 20.732C32.351 20.88 32.603 21.09 32.835 21.322C33.571 22.058 33.971 23.026 33.971 24.076V31.418C33.949 33.268 33.613 35.056 32.961 36.718C33.129 36.592 33.297 36.424 33.445 36.276C35.927 33.816 37.315 30.534 37.377 27.022V19.6801C37.377 19.1961 37.189 18.7761 36.851 18.4401C36.537 18.1041 36.095 17.9141 35.611 17.9141Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.1002 22.311C28.0802 22.311 26.4402 23.951 26.4402 25.971C26.4402 25.991 26.4402 26.075 26.4202 26.097V29.799C26.4202 30.241 26.0822 30.577 25.6402 30.577C25.2002 30.577 24.8622 30.241 24.8622 29.799V14.7191C24.8622 13.9811 24.5682 13.2871 24.0642 12.7831C23.5582 12.2571 22.8442 12.0051 22.1502 12.0051C21.4562 12.0051 20.7402 12.2571 20.2142 12.7831C19.6883 13.3091 19.4163 14.0031 19.4163 14.7191V24.667C19.4163 25.109 19.0583 25.445 18.6363 25.445C18.2163 25.445 17.8583 25.087 17.8583 24.667V11.5851C17.8583 11.2471 17.7963 10.8691 17.6702 10.5751C17.5223 10.2371 17.3323 9.9431 17.0603 9.6691C16.8063 9.4171 16.4923 9.2071 16.1763 9.0811C15.8403 8.9551 15.4823 8.8711 15.1463 8.8711C14.7883 8.8711 14.4303 8.9551 14.0943 9.0811C13.7783 9.2071 13.4843 9.4171 13.2103 9.6691C12.9363 9.9431 12.7483 10.2371 12.6223 10.5531C12.4963 10.8691 12.4103 11.2271 12.4103 11.5851V24.667C12.4103 25.109 12.0743 25.445 11.6323 25.445C11.2343 25.445 10.8543 25.087 10.8543 24.667V17.0531C10.8543 15.5811 9.59225 14.3191 8.14225 14.3191C6.69025 14.3191 5.40625 15.5811 5.40625 17.0311V31.419C5.44825 34.931 6.83825 38.213 9.32025 40.673C11.8443 43.133 15.1463 44.501 18.6363 44.501C22.1282 44.501 25.4302 43.133 27.9542 40.673C30.4362 38.213 31.8242 34.909 31.8662 31.397V24.077C31.8662 23.595 31.6782 23.153 31.3402 22.815C31.0462 22.501 30.5842 22.311 30.1002 22.311Z\"/>\\n</clipPath><linearGradient id=\"paint0_linear_32_14317\" x1=\"24.0008\" y1=\"4.5\" x2=\"24.0008\" y2=\"44.501\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_32_14317\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-i5gawh\",\"data-styles-preset\":\"pxEAb2EPP\",children:\"MUTUAL HELP\"})}),className:\"framer-ocws3n\",\"data-framer-name\":\"O\u2018zaro yordam\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5bg2xb\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13k2z41\",\"data-framer-name\":\"Coins 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"49\" viewBox=\"0 0 48 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_32_14321)\">\\n<foreignObject x=\"-1.60547\" y=\"-5.42188\" width=\"51.2109\" height=\"59.8398\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"backdrop-filter:blur(5.5px);clip-path:url(#bgblur_1_32_14321_clip_path);height:100%;width:100%\"></div></foreignObject><g filter=\"url(#filter0_d_32_14321)\" data-figma-bg-blur-radius=\"11\">\\n<mask id=\"path-1-inside-1_32_14321\" fill=\"white\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3948 23.8796C14.3548 23.7396 13.3348 23.5196 12.3348 23.1796C11.5348 22.9196 10.7548 22.5796 10.0148 22.0796C9.81475 21.9596 9.63475 21.7996 9.41475 21.6396V26.3596C9.39475 26.9396 9.55475 27.3996 9.87475 27.7796C10.3348 28.3596 10.8948 28.7196 11.4948 29.0196C12.3548 29.4596 13.2548 29.7396 14.1748 29.9596C15.0748 30.1596 15.9748 30.2796 16.8748 30.3396C17.4348 30.3796 17.9948 30.3996 18.5548 30.3796C18.5748 28.9796 18.5748 27.0396 18.5748 26.5396L18.5548 24.0596C17.5148 24.0996 16.4548 24.0196 15.3948 23.8796Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.0745 32.4794C14.2545 32.3394 13.4345 32.1594 12.6345 31.9394C11.6945 31.6794 10.7945 31.2794 9.93453 30.6794C9.77453 30.5594 9.59453 30.4394 9.41453 30.2994C9.41453 30.3994 9.41453 33.4994 9.39453 34.9594C9.39453 35.6594 9.61453 36.1594 9.99453 36.5794C10.4345 37.0794 10.9545 37.3994 11.4945 37.6794C12.4745 38.1594 13.4745 38.4594 14.4945 38.6594C15.4545 38.8594 16.4345 38.9594 17.4145 38.9994C17.7945 39.0194 18.1745 39.0194 18.5545 39.0194C18.5745 37.7194 18.5745 35.1594 18.5745 34.5394V32.6994C18.3745 32.7194 18.1545 32.7194 17.9545 32.7194C16.9945 32.7194 16.0345 32.6594 15.0745 32.4794Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.9748 16.6596C25.6548 16.5196 26.3348 16.3996 27.0348 16.3196V13.1196C26.8348 13.2796 26.6548 13.3996 26.4748 13.5396C25.0348 14.4796 23.4948 14.9196 21.9148 15.2196C21.1748 15.3396 20.4348 15.4196 19.6947 15.4796C18.2548 15.5996 16.8348 15.5596 15.3948 15.3596C14.3548 15.2196 13.3348 14.9996 12.3348 14.6596C11.5348 14.3996 10.7548 14.0596 10.0148 13.5596C9.81475 13.4196 9.63475 13.2796 9.41475 13.1196V17.8396C9.39475 18.3996 9.55475 18.8596 9.87475 19.2596C10.3348 19.8396 10.8948 20.1996 11.4948 20.4996C12.3548 20.9396 13.2548 21.2196 14.1748 21.4396C15.0748 21.6396 15.9748 21.7596 16.8748 21.8196C17.4548 21.8596 18.0348 21.8796 18.5948 21.8596C18.6148 21.1996 18.8148 20.4196 19.3948 19.6596C20.0548 18.7996 20.8148 18.2996 21.4148 17.9596C22.4348 17.3996 23.5748 16.9796 24.9748 16.6596Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.97837 10.7616C10.4864 11.3356 11.0884 11.6916 11.7124 11.9876C12.8404 12.5236 14.0124 12.8156 15.1984 13.0056C16.2024 13.1676 17.2104 13.2476 18.0224 13.2336C19.9184 13.2356 21.5984 13.0456 23.2544 12.5536C24.0804 12.3076 24.8844 11.9856 25.6404 11.4796C26.0544 11.2016 26.4424 10.8756 26.7404 10.4016C27.1384 9.77365 27.1444 9.04165 26.7404 8.42165C26.6024 8.20965 26.4424 8.01365 26.2704 7.84765C25.6284 7.22565 24.8884 6.86365 24.1284 6.56565C22.7744 6.03565 21.3844 5.77365 19.9764 5.65565C18.0564 5.49365 16.1444 5.57565 14.2444 5.99565C13.2124 6.22165 12.2004 6.53965 11.2364 7.07765C10.7224 7.36565 10.2324 7.70565 9.83837 8.23165C9.51037 8.66965 9.31837 9.16765 9.45637 9.79365C9.54437 10.1896 9.74237 10.4956 9.97837 10.7616Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.6016 34.6718C38.5296 34.7258 38.4936 34.7558 38.4556 34.7818C38.0396 35.0478 37.6356 35.3458 37.2056 35.5698C35.6896 36.3678 34.0956 36.7378 32.4736 36.9558C31.4916 37.0878 30.5056 37.1298 29.5176 37.1218C28.5516 37.1158 27.5856 37.0558 26.6296 36.8878C25.8156 36.7418 25.0036 36.5558 24.1996 36.3338C23.2596 36.0738 22.3496 35.6818 21.4996 35.0858C21.3316 34.9678 21.1636 34.8438 20.9716 34.7038C20.9716 34.8058 20.9856 37.8958 20.9636 39.3698C20.9556 40.0538 21.1736 40.5598 21.5576 40.9838C22.0036 41.4758 22.5236 41.8058 23.0656 42.0778C24.0296 42.5618 25.0316 42.8538 26.0536 43.0618C27.0216 43.2578 27.9956 43.3678 28.9736 43.4038C30.6596 43.4658 32.3356 43.3498 33.9976 42.9578C34.9536 42.7318 35.8916 42.4278 36.7836 41.9258C37.2936 41.6398 37.7776 41.2998 38.1716 40.7798C38.4576 40.4018 38.6096 39.9618 38.6056 39.4178C38.5956 37.9158 38.6016 34.7798 38.6016 34.6718Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.4298 32.1808C21.8918 32.7608 22.4578 33.1208 23.0478 33.4248C23.9138 33.8708 24.8138 34.1488 25.7298 34.3588C26.6258 34.5648 27.5278 34.6908 28.4338 34.7488C30.1858 34.8628 31.9298 34.7708 33.6638 34.4008C34.7178 34.1768 35.7518 33.8588 36.7378 33.3128C37.2658 33.0228 37.7678 32.6748 38.1738 32.1408C38.4578 31.7668 38.6098 31.3328 38.6058 30.7948C38.5938 29.2808 38.5958 26.1348 38.5918 26.0588C38.3938 26.2008 38.2138 26.3368 38.0318 26.4608C36.6018 27.4188 35.0538 27.8588 33.4758 28.1428C32.7398 28.2748 31.9978 28.3528 31.2558 28.4148C29.8218 28.5348 28.3878 28.4788 26.9578 28.2868C25.9238 28.1468 24.8998 27.9248 23.8918 27.5868C23.0938 27.3188 22.3138 26.9868 21.5818 26.4888C21.3858 26.3548 21.1918 26.2088 20.9698 26.0508C20.9698 26.1508 20.9798 29.2748 20.9658 30.7668C20.9618 31.3388 21.1218 31.7948 21.4298 32.1808Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.7966 20.0068C22.2826 20.2928 21.7926 20.6348 21.3986 21.1608C21.0706 21.5988 20.8786 22.0968 21.0166 22.7228C21.1046 23.1188 21.3026 23.4248 21.5386 23.6908C22.0466 24.2648 22.6486 24.6208 23.2726 24.9168C24.4006 25.4528 25.5726 25.7448 26.7606 25.9348C27.7626 26.0948 28.7706 26.1768 29.5826 26.1628C31.4786 26.1648 33.1586 25.9748 34.8146 25.4828C35.6406 25.2368 36.4466 24.9148 37.2006 24.4088C37.6146 24.1308 38.0026 23.8048 38.3026 23.3308C38.6986 22.7028 38.7046 21.9708 38.3006 21.3508C38.1626 21.1388 38.0026 20.9428 37.8306 20.7768C37.1906 20.1548 36.4486 19.7928 35.6886 19.4948C34.3366 18.9648 32.9446 18.7028 31.5366 18.5848C29.6166 18.4228 27.7046 18.5048 25.8046 18.9248C24.7726 19.1508 23.7606 19.4688 22.7966 20.0068Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3948 23.8796C14.3548 23.7396 13.3348 23.5196 12.3348 23.1796C11.5348 22.9196 10.7548 22.5796 10.0148 22.0796C9.81475 21.9596 9.63475 21.7996 9.41475 21.6396V26.3596C9.39475 26.9396 9.55475 27.3996 9.87475 27.7796C10.3348 28.3596 10.8948 28.7196 11.4948 29.0196C12.3548 29.4596 13.2548 29.7396 14.1748 29.9596C15.0748 30.1596 15.9748 30.2796 16.8748 30.3396C17.4348 30.3796 17.9948 30.3996 18.5548 30.3796C18.5748 28.9796 18.5748 27.0396 18.5748 26.5396L18.5548 24.0596C17.5148 24.0996 16.4548 24.0196 15.3948 23.8796Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.0745 32.4794C14.2545 32.3394 13.4345 32.1594 12.6345 31.9394C11.6945 31.6794 10.7945 31.2794 9.93453 30.6794C9.77453 30.5594 9.59453 30.4394 9.41453 30.2994C9.41453 30.3994 9.41453 33.4994 9.39453 34.9594C9.39453 35.6594 9.61453 36.1594 9.99453 36.5794C10.4345 37.0794 10.9545 37.3994 11.4945 37.6794C12.4745 38.1594 13.4745 38.4594 14.4945 38.6594C15.4545 38.8594 16.4345 38.9594 17.4145 38.9994C17.7945 39.0194 18.1745 39.0194 18.5545 39.0194C18.5745 37.7194 18.5745 35.1594 18.5745 34.5394V32.6994C18.3745 32.7194 18.1545 32.7194 17.9545 32.7194C16.9945 32.7194 16.0345 32.6594 15.0745 32.4794Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.9748 16.6596C25.6548 16.5196 26.3348 16.3996 27.0348 16.3196V13.1196C26.8348 13.2796 26.6548 13.3996 26.4748 13.5396C25.0348 14.4796 23.4948 14.9196 21.9148 15.2196C21.1748 15.3396 20.4348 15.4196 19.6947 15.4796C18.2548 15.5996 16.8348 15.5596 15.3948 15.3596C14.3548 15.2196 13.3348 14.9996 12.3348 14.6596C11.5348 14.3996 10.7548 14.0596 10.0148 13.5596C9.81475 13.4196 9.63475 13.2796 9.41475 13.1196V17.8396C9.39475 18.3996 9.55475 18.8596 9.87475 19.2596C10.3348 19.8396 10.8948 20.1996 11.4948 20.4996C12.3548 20.9396 13.2548 21.2196 14.1748 21.4396C15.0748 21.6396 15.9748 21.7596 16.8748 21.8196C17.4548 21.8596 18.0348 21.8796 18.5948 21.8596C18.6148 21.1996 18.8148 20.4196 19.3948 19.6596C20.0548 18.7996 20.8148 18.2996 21.4148 17.9596C22.4348 17.3996 23.5748 16.9796 24.9748 16.6596Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.97837 10.7616C10.4864 11.3356 11.0884 11.6916 11.7124 11.9876C12.8404 12.5236 14.0124 12.8156 15.1984 13.0056C16.2024 13.1676 17.2104 13.2476 18.0224 13.2336C19.9184 13.2356 21.5984 13.0456 23.2544 12.5536C24.0804 12.3076 24.8844 11.9856 25.6404 11.4796C26.0544 11.2016 26.4424 10.8756 26.7404 10.4016C27.1384 9.77365 27.1444 9.04165 26.7404 8.42165C26.6024 8.20965 26.4424 8.01365 26.2704 7.84765C25.6284 7.22565 24.8884 6.86365 24.1284 6.56565C22.7744 6.03565 21.3844 5.77365 19.9764 5.65565C18.0564 5.49365 16.1444 5.57565 14.2444 5.99565C13.2124 6.22165 12.2004 6.53965 11.2364 7.07765C10.7224 7.36565 10.2324 7.70565 9.83837 8.23165C9.51037 8.66965 9.31837 9.16765 9.45637 9.79365C9.54437 10.1896 9.74237 10.4956 9.97837 10.7616Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.6016 34.6718C38.5296 34.7258 38.4936 34.7558 38.4556 34.7818C38.0396 35.0478 37.6356 35.3458 37.2056 35.5698C35.6896 36.3678 34.0956 36.7378 32.4736 36.9558C31.4916 37.0878 30.5056 37.1298 29.5176 37.1218C28.5516 37.1158 27.5856 37.0558 26.6296 36.8878C25.8156 36.7418 25.0036 36.5558 24.1996 36.3338C23.2596 36.0738 22.3496 35.6818 21.4996 35.0858C21.3316 34.9678 21.1636 34.8438 20.9716 34.7038C20.9716 34.8058 20.9856 37.8958 20.9636 39.3698C20.9556 40.0538 21.1736 40.5598 21.5576 40.9838C22.0036 41.4758 22.5236 41.8058 23.0656 42.0778C24.0296 42.5618 25.0316 42.8538 26.0536 43.0618C27.0216 43.2578 27.9956 43.3678 28.9736 43.4038C30.6596 43.4658 32.3356 43.3498 33.9976 42.9578C34.9536 42.7318 35.8916 42.4278 36.7836 41.9258C37.2936 41.6398 37.7776 41.2998 38.1716 40.7798C38.4576 40.4018 38.6096 39.9618 38.6056 39.4178C38.5956 37.9158 38.6016 34.7798 38.6016 34.6718Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.4298 32.1808C21.8918 32.7608 22.4578 33.1208 23.0478 33.4248C23.9138 33.8708 24.8138 34.1488 25.7298 34.3588C26.6258 34.5648 27.5278 34.6908 28.4338 34.7488C30.1858 34.8628 31.9298 34.7708 33.6638 34.4008C34.7178 34.1768 35.7518 33.8588 36.7378 33.3128C37.2658 33.0228 37.7678 32.6748 38.1738 32.1408C38.4578 31.7668 38.6098 31.3328 38.6058 30.7948C38.5938 29.2808 38.5958 26.1348 38.5918 26.0588C38.3938 26.2008 38.2138 26.3368 38.0318 26.4608C36.6018 27.4188 35.0538 27.8588 33.4758 28.1428C32.7398 28.2748 31.9978 28.3528 31.2558 28.4148C29.8218 28.5348 28.3878 28.4788 26.9578 28.2868C25.9238 28.1468 24.8998 27.9248 23.8918 27.5868C23.0938 27.3188 22.3138 26.9868 21.5818 26.4888C21.3858 26.3548 21.1918 26.2088 20.9698 26.0508C20.9698 26.1508 20.9798 29.2748 20.9658 30.7668C20.9618 31.3388 21.1218 31.7948 21.4298 32.1808Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.7966 20.0068C22.2826 20.2928 21.7926 20.6348 21.3986 21.1608C21.0706 21.5988 20.8786 22.0968 21.0166 22.7228C21.1046 23.1188 21.3026 23.4248 21.5386 23.6908C22.0466 24.2648 22.6486 24.6208 23.2726 24.9168C24.4006 25.4528 25.5726 25.7448 26.7606 25.9348C27.7626 26.0948 28.7706 26.1768 29.5826 26.1628C31.4786 26.1648 33.1586 25.9748 34.8146 25.4828C35.6406 25.2368 36.4466 24.9148 37.2006 24.4088C37.6146 24.1308 38.0026 23.8048 38.3026 23.3308C38.6986 22.7028 38.7046 21.9708 38.3006 21.3508C38.1626 21.1388 38.0026 20.9428 37.8306 20.7768C37.1906 20.1548 36.4486 19.7928 35.6886 19.4948C34.3366 18.9648 32.9446 18.7028 31.5366 18.5848C29.6166 18.4228 27.7046 18.5048 25.8046 18.9248C24.7726 19.1508 23.7606 19.4688 22.7966 20.0068Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3948 23.8796C14.3548 23.7396 13.3348 23.5196 12.3348 23.1796C11.5348 22.9196 10.7548 22.5796 10.0148 22.0796C9.81475 21.9596 9.63475 21.7996 9.41475 21.6396V26.3596C9.39475 26.9396 9.55475 27.3996 9.87475 27.7796C10.3348 28.3596 10.8948 28.7196 11.4948 29.0196C12.3548 29.4596 13.2548 29.7396 14.1748 29.9596C15.0748 30.1596 15.9748 30.2796 16.8748 30.3396C17.4348 30.3796 17.9948 30.3996 18.5548 30.3796C18.5748 28.9796 18.5748 27.0396 18.5748 26.5396L18.5548 24.0596C17.5148 24.0996 16.4548 24.0196 15.3948 23.8796Z\" stroke=\"url(#paint0_linear_32_14321)\" stroke-opacity=\"0.05\" stroke-width=\"2\" mask=\"url(#path-1-inside-1_32_14321)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.0745 32.4794C14.2545 32.3394 13.4345 32.1594 12.6345 31.9394C11.6945 31.6794 10.7945 31.2794 9.93453 30.6794C9.77453 30.5594 9.59453 30.4394 9.41453 30.2994C9.41453 30.3994 9.41453 33.4994 9.39453 34.9594C9.39453 35.6594 9.61453 36.1594 9.99453 36.5794C10.4345 37.0794 10.9545 37.3994 11.4945 37.6794C12.4745 38.1594 13.4745 38.4594 14.4945 38.6594C15.4545 38.8594 16.4345 38.9594 17.4145 38.9994C17.7945 39.0194 18.1745 39.0194 18.5545 39.0194C18.5745 37.7194 18.5745 35.1594 18.5745 34.5394V32.6994C18.3745 32.7194 18.1545 32.7194 17.9545 32.7194C16.9945 32.7194 16.0345 32.6594 15.0745 32.4794Z\" stroke=\"url(#paint1_linear_32_14321)\" stroke-opacity=\"0.05\" stroke-width=\"2\" mask=\"url(#path-1-inside-1_32_14321)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.9748 16.6596C25.6548 16.5196 26.3348 16.3996 27.0348 16.3196V13.1196C26.8348 13.2796 26.6548 13.3996 26.4748 13.5396C25.0348 14.4796 23.4948 14.9196 21.9148 15.2196C21.1748 15.3396 20.4348 15.4196 19.6947 15.4796C18.2548 15.5996 16.8348 15.5596 15.3948 15.3596C14.3548 15.2196 13.3348 14.9996 12.3348 14.6596C11.5348 14.3996 10.7548 14.0596 10.0148 13.5596C9.81475 13.4196 9.63475 13.2796 9.41475 13.1196V17.8396C9.39475 18.3996 9.55475 18.8596 9.87475 19.2596C10.3348 19.8396 10.8948 20.1996 11.4948 20.4996C12.3548 20.9396 13.2548 21.2196 14.1748 21.4396C15.0748 21.6396 15.9748 21.7596 16.8748 21.8196C17.4548 21.8596 18.0348 21.8796 18.5948 21.8596C18.6148 21.1996 18.8148 20.4196 19.3948 19.6596C20.0548 18.7996 20.8148 18.2996 21.4148 17.9596C22.4348 17.3996 23.5748 16.9796 24.9748 16.6596Z\" stroke=\"url(#paint2_linear_32_14321)\" stroke-opacity=\"0.05\" stroke-width=\"2\" mask=\"url(#path-1-inside-1_32_14321)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.97837 10.7616C10.4864 11.3356 11.0884 11.6916 11.7124 11.9876C12.8404 12.5236 14.0124 12.8156 15.1984 13.0056C16.2024 13.1676 17.2104 13.2476 18.0224 13.2336C19.9184 13.2356 21.5984 13.0456 23.2544 12.5536C24.0804 12.3076 24.8844 11.9856 25.6404 11.4796C26.0544 11.2016 26.4424 10.8756 26.7404 10.4016C27.1384 9.77365 27.1444 9.04165 26.7404 8.42165C26.6024 8.20965 26.4424 8.01365 26.2704 7.84765C25.6284 7.22565 24.8884 6.86365 24.1284 6.56565C22.7744 6.03565 21.3844 5.77365 19.9764 5.65565C18.0564 5.49365 16.1444 5.57565 14.2444 5.99565C13.2124 6.22165 12.2004 6.53965 11.2364 7.07765C10.7224 7.36565 10.2324 7.70565 9.83837 8.23165C9.51037 8.66965 9.31837 9.16765 9.45637 9.79365C9.54437 10.1896 9.74237 10.4956 9.97837 10.7616Z\" stroke=\"url(#paint3_linear_32_14321)\" stroke-opacity=\"0.05\" stroke-width=\"2\" mask=\"url(#path-1-inside-1_32_14321)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.6016 34.6718C38.5296 34.7258 38.4936 34.7558 38.4556 34.7818C38.0396 35.0478 37.6356 35.3458 37.2056 35.5698C35.6896 36.3678 34.0956 36.7378 32.4736 36.9558C31.4916 37.0878 30.5056 37.1298 29.5176 37.1218C28.5516 37.1158 27.5856 37.0558 26.6296 36.8878C25.8156 36.7418 25.0036 36.5558 24.1996 36.3338C23.2596 36.0738 22.3496 35.6818 21.4996 35.0858C21.3316 34.9678 21.1636 34.8438 20.9716 34.7038C20.9716 34.8058 20.9856 37.8958 20.9636 39.3698C20.9556 40.0538 21.1736 40.5598 21.5576 40.9838C22.0036 41.4758 22.5236 41.8058 23.0656 42.0778C24.0296 42.5618 25.0316 42.8538 26.0536 43.0618C27.0216 43.2578 27.9956 43.3678 28.9736 43.4038C30.6596 43.4658 32.3356 43.3498 33.9976 42.9578C34.9536 42.7318 35.8916 42.4278 36.7836 41.9258C37.2936 41.6398 37.7776 41.2998 38.1716 40.7798C38.4576 40.4018 38.6096 39.9618 38.6056 39.4178C38.5956 37.9158 38.6016 34.7798 38.6016 34.6718Z\" stroke=\"url(#paint4_linear_32_14321)\" stroke-opacity=\"0.05\" stroke-width=\"2\" mask=\"url(#path-1-inside-1_32_14321)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.4298 32.1808C21.8918 32.7608 22.4578 33.1208 23.0478 33.4248C23.9138 33.8708 24.8138 34.1488 25.7298 34.3588C26.6258 34.5648 27.5278 34.6908 28.4338 34.7488C30.1858 34.8628 31.9298 34.7708 33.6638 34.4008C34.7178 34.1768 35.7518 33.8588 36.7378 33.3128C37.2658 33.0228 37.7678 32.6748 38.1738 32.1408C38.4578 31.7668 38.6098 31.3328 38.6058 30.7948C38.5938 29.2808 38.5958 26.1348 38.5918 26.0588C38.3938 26.2008 38.2138 26.3368 38.0318 26.4608C36.6018 27.4188 35.0538 27.8588 33.4758 28.1428C32.7398 28.2748 31.9978 28.3528 31.2558 28.4148C29.8218 28.5348 28.3878 28.4788 26.9578 28.2868C25.9238 28.1468 24.8998 27.9248 23.8918 27.5868C23.0938 27.3188 22.3138 26.9868 21.5818 26.4888C21.3858 26.3548 21.1918 26.2088 20.9698 26.0508C20.9698 26.1508 20.9798 29.2748 20.9658 30.7668C20.9618 31.3388 21.1218 31.7948 21.4298 32.1808Z\" stroke=\"url(#paint5_linear_32_14321)\" stroke-opacity=\"0.05\" stroke-width=\"2\" mask=\"url(#path-1-inside-1_32_14321)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.7966 20.0068C22.2826 20.2928 21.7926 20.6348 21.3986 21.1608C21.0706 21.5988 20.8786 22.0968 21.0166 22.7228C21.1046 23.1188 21.3026 23.4248 21.5386 23.6908C22.0466 24.2648 22.6486 24.6208 23.2726 24.9168C24.4006 25.4528 25.5726 25.7448 26.7606 25.9348C27.7626 26.0948 28.7706 26.1768 29.5826 26.1628C31.4786 26.1648 33.1586 25.9748 34.8146 25.4828C35.6406 25.2368 36.4466 24.9148 37.2006 24.4088C37.6146 24.1308 38.0026 23.8048 38.3026 23.3308C38.6986 22.7028 38.7046 21.9708 38.3006 21.3508C38.1626 21.1388 38.0026 20.9428 37.8306 20.7768C37.1906 20.1548 36.4486 19.7928 35.6886 19.4948C34.3366 18.9648 32.9446 18.7028 31.5366 18.5848C29.6166 18.4228 27.7046 18.5048 25.8046 18.9248C24.7726 19.1508 23.7606 19.4688 22.7966 20.0068Z\" stroke=\"url(#paint6_linear_32_14321)\" stroke-opacity=\"0.05\" stroke-width=\"2\" mask=\"url(#path-1-inside-1_32_14321)\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_32_14321\" x=\"-1.60547\" y=\"-5.42188\" width=\"51.2109\" height=\"59.8398\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_32_14321\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_32_14321\" result=\"shape\"/>\\n</filter>\\n<clipPath id=\"bgblur_1_32_14321_clip_path\" transform=\"translate(1.60547 5.42188)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3948 23.8796C14.3548 23.7396 13.3348 23.5196 12.3348 23.1796C11.5348 22.9196 10.7548 22.5796 10.0148 22.0796C9.81475 21.9596 9.63475 21.7996 9.41475 21.6396V26.3596C9.39475 26.9396 9.55475 27.3996 9.87475 27.7796C10.3348 28.3596 10.8948 28.7196 11.4948 29.0196C12.3548 29.4596 13.2548 29.7396 14.1748 29.9596C15.0748 30.1596 15.9748 30.2796 16.8748 30.3396C17.4348 30.3796 17.9948 30.3996 18.5548 30.3796C18.5748 28.9796 18.5748 27.0396 18.5748 26.5396L18.5548 24.0596C17.5148 24.0996 16.4548 24.0196 15.3948 23.8796Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.0745 32.4794C14.2545 32.3394 13.4345 32.1594 12.6345 31.9394C11.6945 31.6794 10.7945 31.2794 9.93453 30.6794C9.77453 30.5594 9.59453 30.4394 9.41453 30.2994C9.41453 30.3994 9.41453 33.4994 9.39453 34.9594C9.39453 35.6594 9.61453 36.1594 9.99453 36.5794C10.4345 37.0794 10.9545 37.3994 11.4945 37.6794C12.4745 38.1594 13.4745 38.4594 14.4945 38.6594C15.4545 38.8594 16.4345 38.9594 17.4145 38.9994C17.7945 39.0194 18.1745 39.0194 18.5545 39.0194C18.5745 37.7194 18.5745 35.1594 18.5745 34.5394V32.6994C18.3745 32.7194 18.1545 32.7194 17.9545 32.7194C16.9945 32.7194 16.0345 32.6594 15.0745 32.4794Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.9748 16.6596C25.6548 16.5196 26.3348 16.3996 27.0348 16.3196V13.1196C26.8348 13.2796 26.6548 13.3996 26.4748 13.5396C25.0348 14.4796 23.4948 14.9196 21.9148 15.2196C21.1748 15.3396 20.4348 15.4196 19.6947 15.4796C18.2548 15.5996 16.8348 15.5596 15.3948 15.3596C14.3548 15.2196 13.3348 14.9996 12.3348 14.6596C11.5348 14.3996 10.7548 14.0596 10.0148 13.5596C9.81475 13.4196 9.63475 13.2796 9.41475 13.1196V17.8396C9.39475 18.3996 9.55475 18.8596 9.87475 19.2596C10.3348 19.8396 10.8948 20.1996 11.4948 20.4996C12.3548 20.9396 13.2548 21.2196 14.1748 21.4396C15.0748 21.6396 15.9748 21.7596 16.8748 21.8196C17.4548 21.8596 18.0348 21.8796 18.5948 21.8596C18.6148 21.1996 18.8148 20.4196 19.3948 19.6596C20.0548 18.7996 20.8148 18.2996 21.4148 17.9596C22.4348 17.3996 23.5748 16.9796 24.9748 16.6596Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.97837 10.7616C10.4864 11.3356 11.0884 11.6916 11.7124 11.9876C12.8404 12.5236 14.0124 12.8156 15.1984 13.0056C16.2024 13.1676 17.2104 13.2476 18.0224 13.2336C19.9184 13.2356 21.5984 13.0456 23.2544 12.5536C24.0804 12.3076 24.8844 11.9856 25.6404 11.4796C26.0544 11.2016 26.4424 10.8756 26.7404 10.4016C27.1384 9.77365 27.1444 9.04165 26.7404 8.42165C26.6024 8.20965 26.4424 8.01365 26.2704 7.84765C25.6284 7.22565 24.8884 6.86365 24.1284 6.56565C22.7744 6.03565 21.3844 5.77365 19.9764 5.65565C18.0564 5.49365 16.1444 5.57565 14.2444 5.99565C13.2124 6.22165 12.2004 6.53965 11.2364 7.07765C10.7224 7.36565 10.2324 7.70565 9.83837 8.23165C9.51037 8.66965 9.31837 9.16765 9.45637 9.79365C9.54437 10.1896 9.74237 10.4956 9.97837 10.7616Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.6016 34.6718C38.5296 34.7258 38.4936 34.7558 38.4556 34.7818C38.0396 35.0478 37.6356 35.3458 37.2056 35.5698C35.6896 36.3678 34.0956 36.7378 32.4736 36.9558C31.4916 37.0878 30.5056 37.1298 29.5176 37.1218C28.5516 37.1158 27.5856 37.0558 26.6296 36.8878C25.8156 36.7418 25.0036 36.5558 24.1996 36.3338C23.2596 36.0738 22.3496 35.6818 21.4996 35.0858C21.3316 34.9678 21.1636 34.8438 20.9716 34.7038C20.9716 34.8058 20.9856 37.8958 20.9636 39.3698C20.9556 40.0538 21.1736 40.5598 21.5576 40.9838C22.0036 41.4758 22.5236 41.8058 23.0656 42.0778C24.0296 42.5618 25.0316 42.8538 26.0536 43.0618C27.0216 43.2578 27.9956 43.3678 28.9736 43.4038C30.6596 43.4658 32.3356 43.3498 33.9976 42.9578C34.9536 42.7318 35.8916 42.4278 36.7836 41.9258C37.2936 41.6398 37.7776 41.2998 38.1716 40.7798C38.4576 40.4018 38.6096 39.9618 38.6056 39.4178C38.5956 37.9158 38.6016 34.7798 38.6016 34.6718Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.4298 32.1808C21.8918 32.7608 22.4578 33.1208 23.0478 33.4248C23.9138 33.8708 24.8138 34.1488 25.7298 34.3588C26.6258 34.5648 27.5278 34.6908 28.4338 34.7488C30.1858 34.8628 31.9298 34.7708 33.6638 34.4008C34.7178 34.1768 35.7518 33.8588 36.7378 33.3128C37.2658 33.0228 37.7678 32.6748 38.1738 32.1408C38.4578 31.7668 38.6098 31.3328 38.6058 30.7948C38.5938 29.2808 38.5958 26.1348 38.5918 26.0588C38.3938 26.2008 38.2138 26.3368 38.0318 26.4608C36.6018 27.4188 35.0538 27.8588 33.4758 28.1428C32.7398 28.2748 31.9978 28.3528 31.2558 28.4148C29.8218 28.5348 28.3878 28.4788 26.9578 28.2868C25.9238 28.1468 24.8998 27.9248 23.8918 27.5868C23.0938 27.3188 22.3138 26.9868 21.5818 26.4888C21.3858 26.3548 21.1918 26.2088 20.9698 26.0508C20.9698 26.1508 20.9798 29.2748 20.9658 30.7668C20.9618 31.3388 21.1218 31.7948 21.4298 32.1808Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.7966 20.0068C22.2826 20.2928 21.7926 20.6348 21.3986 21.1608C21.0706 21.5988 20.8786 22.0968 21.0166 22.7228C21.1046 23.1188 21.3026 23.4248 21.5386 23.6908C22.0466 24.2648 22.6486 24.6208 23.2726 24.9168C24.4006 25.4528 25.5726 25.7448 26.7606 25.9348C27.7626 26.0948 28.7706 26.1768 29.5826 26.1628C31.4786 26.1648 33.1586 25.9748 34.8146 25.4828C35.6406 25.2368 36.4466 24.9148 37.2006 24.4088C37.6146 24.1308 38.0026 23.8048 38.3026 23.3308C38.6986 22.7028 38.7046 21.9708 38.3006 21.3508C38.1626 21.1388 38.0026 20.9428 37.8306 20.7768C37.1906 20.1548 36.4486 19.7928 35.6886 19.4948C34.3366 18.9648 32.9446 18.7028 31.5366 18.5848C29.6166 18.4228 27.7046 18.5048 25.8046 18.9248C24.7726 19.1508 23.7606 19.4688 22.7966 20.0068Z\"/>\\n</clipPath><linearGradient id=\"paint0_linear_32_14321\" x1=\"24.0002\" y1=\"5.57813\" x2=\"24.0002\" y2=\"43.4195\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_32_14321\" x1=\"24.0002\" y1=\"5.57813\" x2=\"24.0002\" y2=\"43.4195\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_32_14321\" x1=\"24.0002\" y1=\"5.57813\" x2=\"24.0002\" y2=\"43.4195\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_32_14321\" x1=\"24.0002\" y1=\"5.57813\" x2=\"24.0002\" y2=\"43.4195\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_32_14321\" x1=\"24.0002\" y1=\"5.57813\" x2=\"24.0002\" y2=\"43.4195\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_32_14321\" x1=\"24.0002\" y1=\"5.57813\" x2=\"24.0002\" y2=\"43.4195\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_32_14321\" x1=\"24.0002\" y1=\"5.57813\" x2=\"24.0002\" y2=\"43.4195\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_32_14321\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-i5gawh\",\"data-styles-preset\":\"pxEAb2EPP\",children:\"INVESTMENTS\"})}),className:\"framer-n06k05\",\"data-framer-name\":\"Investitsalar\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5pvfzm\",\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7bcsh5\",\"data-framer-name\":\"3 users\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"49\" viewBox=\"0 0 48 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<foreignObject x=\"-8.60156\" y=\"-4\" width=\"65.8008\" height=\"57\"><div xmlns=\"http://www.w3.org/1999/xhtml\" style=\"backdrop-filter:blur(5.5px);clip-path:url(#bgblur_0_32_14325_clip_path);height:100%;width:100%\"></div></foreignObject><g data-figma-bg-blur-radius=\"11\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M44.1997 38.3864C43.0937 38.3864 42.1997 37.4904 42.1997 36.3864C42.1997 35.4604 41.8337 32.3644 37.1397 31.4024C36.0577 31.1824 35.3577 30.1244 35.5797 29.0424C35.8017 27.9604 36.8617 27.2564 37.9397 27.4844C44.0377 28.7324 46.1997 33.0604 46.1997 36.3864C46.1997 37.4904 45.3057 38.3864 44.1997 38.3864Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.6991 25.2982C35.8891 25.2982 35.1271 24.8022 34.8251 24.0002C34.4391 22.9642 34.9631 21.8122 35.9971 21.4242C37.3491 20.9182 38.2671 19.6002 38.2791 18.1482C38.2791 16.6322 37.3011 15.2862 35.8451 14.8162C34.7951 14.4762 34.2171 13.3502 34.5551 12.2982C34.8951 11.2482 36.0231 10.6662 37.0731 11.0082C40.1871 12.0122 42.2791 14.8882 42.2791 18.1662C42.2531 21.2782 40.2931 24.0862 37.4011 25.1702C37.1691 25.2562 36.9311 25.2982 36.6991 25.2982Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.39844 38.3864C3.29244 38.3864 2.39844 37.4904 2.39844 36.3864C2.39844 33.0604 4.56044 28.7324 10.6584 27.4844C11.7364 27.2564 12.7964 27.9604 13.0184 29.0424C13.2404 30.1244 12.5404 31.1824 11.4584 31.4024C6.76444 32.3644 6.39844 35.4604 6.39844 36.3864C6.39844 37.4904 5.50444 38.3864 4.39844 38.3864Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.8989 25.2982C11.6649 25.2982 11.4289 25.2562 11.1969 25.1702C8.30486 24.0862 6.34486 21.2782 6.31886 18.1822C6.31886 14.8882 8.41086 12.0122 11.5249 11.0082C12.5769 10.6662 13.7049 11.2482 14.0429 12.2982C14.3809 13.3502 13.8029 14.4762 12.7529 14.8162C11.2969 15.2862 10.3189 16.6322 10.3189 18.1662C10.3309 19.6002 11.2489 20.9182 12.6009 21.4242C13.6349 21.8122 14.1589 22.9642 13.7729 24.0002C13.4709 24.8022 12.7089 25.2982 11.8989 25.2982Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.1587 29.5312C14.2007 29.5312 9.74074 35.0392 9.74074 40.4992C9.74074 40.8972 9.89874 41.2792 10.1807 41.5612C10.4607 41.8412 10.8427 41.9992 11.2407 41.9992L37.0767 41.9632C37.9047 41.9612 38.5747 41.2892 38.5747 40.4632C38.5747 35.0212 34.1167 29.5312 24.1587 29.5312Z\" fill=\"#E5E5E5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.1587 26.502C29.5347 26.502 33.9087 22.126 33.9087 16.75C33.9087 11.374 29.5347 7 24.1587 7C18.7827 7 14.4087 11.374 14.4087 16.75C14.4087 22.126 18.7827 26.502 24.1587 26.502Z\" fill=\"#E5E5E5\"/>\\n</g>\\n<defs>\\n<clipPath id=\"bgblur_0_32_14325_clip_path\" transform=\"translate(8.60156 4)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M44.1997 38.3864C43.0937 38.3864 42.1997 37.4904 42.1997 36.3864C42.1997 35.4604 41.8337 32.3644 37.1397 31.4024C36.0577 31.1824 35.3577 30.1244 35.5797 29.0424C35.8017 27.9604 36.8617 27.2564 37.9397 27.4844C44.0377 28.7324 46.1997 33.0604 46.1997 36.3864C46.1997 37.4904 45.3057 38.3864 44.1997 38.3864Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.6991 25.2982C35.8891 25.2982 35.1271 24.8022 34.8251 24.0002C34.4391 22.9642 34.9631 21.8122 35.9971 21.4242C37.3491 20.9182 38.2671 19.6002 38.2791 18.1482C38.2791 16.6322 37.3011 15.2862 35.8451 14.8162C34.7951 14.4762 34.2171 13.3502 34.5551 12.2982C34.8951 11.2482 36.0231 10.6662 37.0731 11.0082C40.1871 12.0122 42.2791 14.8882 42.2791 18.1662C42.2531 21.2782 40.2931 24.0862 37.4011 25.1702C37.1691 25.2562 36.9311 25.2982 36.6991 25.2982Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.39844 38.3864C3.29244 38.3864 2.39844 37.4904 2.39844 36.3864C2.39844 33.0604 4.56044 28.7324 10.6584 27.4844C11.7364 27.2564 12.7964 27.9604 13.0184 29.0424C13.2404 30.1244 12.5404 31.1824 11.4584 31.4024C6.76444 32.3644 6.39844 35.4604 6.39844 36.3864C6.39844 37.4904 5.50444 38.3864 4.39844 38.3864Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.8989 25.2982C11.6649 25.2982 11.4289 25.2562 11.1969 25.1702C8.30486 24.0862 6.34486 21.2782 6.31886 18.1822C6.31886 14.8882 8.41086 12.0122 11.5249 11.0082C12.5769 10.6662 13.7049 11.2482 14.0429 12.2982C14.3809 13.3502 13.8029 14.4762 12.7529 14.8162C11.2969 15.2862 10.3189 16.6322 10.3189 18.1662C10.3309 19.6002 11.2489 20.9182 12.6009 21.4242C13.6349 21.8122 14.1589 22.9642 13.7729 24.0002C13.4709 24.8022 12.7089 25.2982 11.8989 25.2982Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.1587 29.5312C14.2007 29.5312 9.74074 35.0392 9.74074 40.4992C9.74074 40.8972 9.89874 41.2792 10.1807 41.5612C10.4607 41.8412 10.8427 41.9992 11.2407 41.9992L37.0767 41.9632C37.9047 41.9612 38.5747 41.2892 38.5747 40.4632C38.5747 35.0212 34.1167 29.5312 24.1587 29.5312Z\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.1587 26.502C29.5347 26.502 33.9087 22.126 33.9087 16.75C33.9087 11.374 29.5347 7 24.1587 7C18.7827 7 14.4087 11.374 14.4087 16.75C14.4087 22.126 18.7827 26.502 24.1587 26.502Z\"/>\\n</clipPath></defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-i5gawh\",\"data-styles-preset\":\"pxEAb2EPP\",children:\"PARTNERSHIPS\"})}),className:\"framer-7wfc3d\",\"data-framer-name\":\"Hamkorliklar\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hfx2yg\",\"data-framer-name\":\"Play\",id:\"hfx2yg\",onTap:onTap3bnx0g({overlay:overlay1}),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1q2mt8c\",\"data-framer-name\":\"Polygon 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:42,svg:'<svg width=\"42\" height=\"43\" viewBox=\"0 0 42 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33 16.3468C37 18.6562 37 24.4297 33 26.7391L19.5 34.5333C15.5 36.8427 10.5 33.956 10.5 29.3372L10.5 13.7487C10.5 9.12994 15.5 6.24319 19.5 8.55259L33 16.3468Z\" fill=\"url(#paint0_linear_863_762)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_863_762\" x1=\"34.8293\" y1=\"0.542968\" x2=\"32.5581\" y2=\"43.3351\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9A783A\"/>\\n<stop offset=\"1\" stop-color=\"#A47D37\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-13rwedt\"),\"data-framer-portal-id\":\"hfx2yg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"iJYIiKn4O\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-41ah3f-container\"),\"data-framer-portal-id\":\"hfx2yg\",isModuleExternal:true,nodeId:\"QE4hoY1Gw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"QE4hoY1Gw\",isMixedBorderRadius:false,isRed:true,layoutId:\"QE4hoY1Gw\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/uTFursWSzVk?si=qqD2S6jaLJduZu4g\",width:\"100%\"})})})]}),getContainer())})})]})})})]})]})]}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-6ga20o\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-4x2mmm\",\"data-framer-name\":\"About club\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4y3pj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a273u7\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmj5c0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3qifp5-container\",nodeId:\"znoSSRQOl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"Ugbn3ciMZ\"},K4K2dkZC1:{variant:\"Ugbn3ciMZ\"},wbomxF4_O:{variant:\"Ugbn3ciMZ\"}},children:/*#__PURE__*/_jsx(Label,{a7hMzledn:\"ABOUT CLUB\",height:\"100%\",id:\"znoSSRQOl\",layoutId:\"znoSSRQOl\",variant:\"JAb5VmwjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:[\"get known with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"milliard business\"}),\" club\"]})}),className:\"framer-1yr2hp6\",\"data-framer-name\":\"get known with milliard business club\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"'Milliard Club' is Uzbekistan's premier international business association, scheduled for official launch in December 2020.\"}),\"It brings together successful businessmen, entrepreneurs, and experts from various fields.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"'Milliard Club' is Uzbekistan's premier international business association, scheduled for official launch in December 2020. \"}),\"It brings together successful businessmen, entrepreneurs, and experts from various fields.\"]})}),className:\"framer-1ylzofv\",\"data-framer-name\":\"'Milliard Club' is Uzbekistan's premier international business association, scheduled for official launch in December 2020. It brings together successful businessmen, entrepreneurs, and experts from various fields.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uavvlj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-irxsw5\",\"data-framer-name\":\"About founders\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-103w9sr\",\"data-framer-name\":\"Founders\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:800,sizes:`min(${componentViewport?.width||\"100vw\"} - 64px, 1680px)`,src:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png\",srcSet:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png?scale-down-to=512 512w,https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png 800w\"}},K4K2dkZC1:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) * 0.6631 - 12px, 1px)`,src:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png\",srcSet:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png?scale-down-to=512 512w,https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png 800w\"}},raHTYwqln:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) * 0.6631 - 20px, 1px)`,src:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png\",srcSet:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png?scale-down-to=512 512w,https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png 800w\"}},wbomxF4_O:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:800,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1680px)`,src:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png\",srcSet:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png?scale-down-to=512 512w,https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) * 0.6631 - 24px, 1px)`,src:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png\",srcSet:\"https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png?scale-down-to=512 512w,https://framerusercontent.com/images/iWm8T5gjqzwnCw0Dvww4xbVnEUY.png 800w\"},className:\"framer-1csw1rl\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7r0b7d\",\"data-framer-name\":\"Down \",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EjrXa3KEg\"},motionChild:true,nodeId:\"DDNtxmtpH\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1m5w4gd framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Alisher\",whileHover:animation6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"Read about Alisher Isayev\"})}),className:\"framer-1btflr2\",\"data-framer-name\":\"Read about Jakhongir Artikkhodjayev\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a0cx06\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",style:{\"--framer-text-color\":\"rgb(109, 104, 97)\"},children:\"Founder of the \u201CMilliard Club\u201D\"})}),className:\"framer-ksgg1g\",\"data-framer-name\":\"Founder of \u201CAKFA Group\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-57y6j2\",\"data-border\":true,\"data-framer-name\":\"Plus\",\"data-reset\":\"button\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/3KgdpiAIPcCkI9VYwoBChU8UyUw.svg\"},className:\"framer-1i5fssw\"})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VLB0No1qU\"},motionChild:true,nodeId:\"GVDGbinyh\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ppjnp8 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Jahongir\",whileHover:animation6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"Read about Jakhongir Artikkhodjayev\"})}),className:\"framer-1ljozjl\",\"data-framer-name\":\"Read about Jakhongir Artikkhodjayev\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nq4xdt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",children:\"Founder of \u201CAKFA Group\u201D\"})}),className:\"framer-o5kfq3\",\"data-framer-name\":\"Founder of \u201CAKFA Group\u201D\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-6rddkh\",\"data-border\":true,\"data-framer-name\":\"Plus\",\"data-reset\":\"button\",whileHover:animation7,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/3KgdpiAIPcCkI9VYwoBChU8UyUw.svg\"},className:\"framer-1fbx45x\"})})]})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hzb8yw\",\"data-border\":true,\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ng3w6o\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"ABOUT FOUNDERS\"})}),className:\"framer-u48w17\",\"data-framer-name\":\"'Milliard Club' is Uzbekistan's premier international business association, scheduled for official launch in December 2020. It brings together successful businessmen, entrepreneurs, and experts from various fields.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:'Alisher Isayev and Jakhongir Artikkhodjayev are the founders of the business club \"Milliard.\" '}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:'Established with the vision of fostering entrepreneurial growth and collaboration, \"Milliard\" serves as a premier platform for business leaders and innovators.'}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"The club provides its members with exclusive networking opportunities, access to industry insights, and a supportive environment for business development.\"})]}),className:\"framer-17ub5g5\",\"data-framer-name\":\"'Milliard Club' is Uzbekistan's premier international business association, scheduled for official launch in December 2020. It brings together successful businessmen, entrepreneurs, and experts from various fields.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fit\",pixelHeight:256,pixelWidth:432,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CJiyCvV76tTVLzxcDTpj5hT0iY.png\"},className:\"framer-11yxnnq\",\"data-framer-name\":\"Image\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xcctv8\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hmhe9e\",\"data-border\":true,\"data-framer-name\":\"Trips\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6506r0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",children:\"Trip to countries\"})}),className:\"framer-1natzrj\",\"data-framer-name\":\"Trip to countries\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",children:\"The main goal is to exchange ideas, innovate based on new concepts and have fun\"})}),className:\"framer-ny6py\",\"data-framer-name\":\"The main goal is to exchange ideas, innovate based on new concepts and have fun\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rvafpi\",\"data-framer-name\":\"davlat\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1furwlb\",\"data-border\":true,\"data-framer-name\":\"Davlat\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:321,pixelWidth:480,src:\"https://framerusercontent.com/images/LLG2IfjRscS6qiYyrzRZwT5T3k.jpg\"},className:\"framer-1e89jvk\",\"data-border\":true,\"data-framer-name\":\"Rectangle 18\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5huuln\",\"data-styles-preset\":\"ZY6g6AhOS\",children:\"T\\xfcrkiye\"})}),className:\"framer-6zes5a\",\"data-framer-name\":\"Turkiya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ws1lxg\",\"data-border\":true,\"data-framer-name\":\"Component 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:318,pixelWidth:480,src:\"https://framerusercontent.com/images/CTUCybR6YnkXFNb0kmmUGwhQpf0.jpg\"},className:\"framer-s609tb\",\"data-border\":true,\"data-framer-name\":\"Rectangle 18\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5huuln\",\"data-styles-preset\":\"ZY6g6AhOS\",children:\"Maldives\"})}),className:\"framer-q51tch\",\"data-framer-name\":\"Turkiya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i8gk2v\",\"data-border\":true,\"data-framer-name\":\"Davlat\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:480,pixelWidth:384,src:\"https://framerusercontent.com/images/TgnQCuD9LeVHxLEpgCtUkMAS3M0.jpg\"},className:\"framer-1bnv5yi\",\"data-border\":true,\"data-framer-name\":\"Rectangle 18\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5huuln\",\"data-styles-preset\":\"ZY6g6AhOS\",children:\"Indonesia\"})}),className:\"framer-1uef554\",\"data-framer-name\":\"Turkiya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-knfn2m\",\"data-border\":true,\"data-framer-name\":\"Davlat\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:480,pixelWidth:320,src:\"https://framerusercontent.com/images/YOAjBfSCdXkBWRqYWxrZC9TyVY.jpg\"},className:\"framer-10hx0ef\",\"data-border\":true,\"data-framer-name\":\"Rectangle 18\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5huuln\",\"data-styles-preset\":\"ZY6g6AhOS\",children:\"UAE\"})}),className:\"framer-10b6idp\",\"data-framer-name\":\"Turkiya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lzy85b\",\"data-border\":true,\"data-framer-name\":\"Davlat\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:320,pixelWidth:480,src:\"https://framerusercontent.com/images/Sky8uTWCjRawSPxgXchff0Wqhec.jpg\"},className:\"framer-g5mzgq\",\"data-border\":true,\"data-framer-name\":\"Rectangle 18\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5huuln\",\"data-styles-preset\":\"ZY6g6AhOS\",children:\"Montenegro\"})}),className:\"framer-nx7m4d\",\"data-framer-name\":\"Turkiya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h0bbqk\",\"data-border\":true,\"data-framer-name\":\"Davlat\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:322,pixelWidth:480,src:\"https://framerusercontent.com/images/jT5zx7SsyARMn3udMdv7tZnhn24.jpg\"},className:\"framer-1cudowl\",\"data-border\":true,\"data-framer-name\":\"Rectangle 18\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5huuln\",\"data-styles-preset\":\"ZY6g6AhOS\",children:\"Malaysia\"})}),className:\"framer-1kwqgl2\",\"data-framer-name\":\"Turkiya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c99jq7\",\"data-framer-name\":\"Photogallery\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-spykpc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YufmZ710X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"YufmZ710X\",intervalControl:10,itemAmount:1,layoutId:\"YufmZ710X\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",pixelHeight:548,pixelWidth:822,sizes:\"540px\",src:\"https://framerusercontent.com/images/vCV7GbogPFpUeUAK5YG6qWlLl4U.png\",srcSet:\"https://framerusercontent.com/images/vCV7GbogPFpUeUAK5YG6qWlLl4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/vCV7GbogPFpUeUAK5YG6qWlLl4U.png 822w\"},className:\"framer-5rnoxx\",\"data-border\":true,\"data-framer-name\":\"IMAGES\"}),/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",pixelHeight:548,pixelWidth:822,sizes:\"540px\",src:\"https://framerusercontent.com/images/vCV7GbogPFpUeUAK5YG6qWlLl4U.png\",srcSet:\"https://framerusercontent.com/images/vCV7GbogPFpUeUAK5YG6qWlLl4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/vCV7GbogPFpUeUAK5YG6qWlLl4U.png 822w\"},className:\"framer-13x9z7g\",\"data-border\":true,\"data-framer-name\":\"IMAGES\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12gxm7m\",\"data-border\":true,\"data-framer-name\":\"Experince\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16tm9tu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",children:\"Experince networking\"})}),className:\"framer-nabef3\",\"data-framer-name\":\"Trip to countries\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",children:\"Our club hosts Uzbekistan's top entrepreneurs, facilitating valuable networking and knowledge-sharing opportunities.\"})}),className:\"framer-oan1df\",\"data-framer-name\":\"Our club hosts Uzbekistan's top entrepreneurs, facilitating valuable networking and knowledge-sharing opportunities.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{K4K2dkZC1:{background:{alt:\"\",fit:\"fit\",pixelHeight:256,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"135px\",src:\"https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png\",srcSet:\"https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png 960w\"}},raHTYwqln:{background:{alt:\"\",fit:\"fit\",pixelHeight:256,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png\",srcSet:\"https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png 960w\"}},wbomxF4_O:{background:{alt:\"\",fit:\"fit\",pixelHeight:256,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"157.5px\",src:\"https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png\",srcSet:\"https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:256,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"240px\",src:\"https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png\",srcSet:\"https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/cHjPKmrzQEfH9GpJ7RiUXb7a6k.png 960w\"},className:\"framer-44u8so\",\"data-framer-name\":\"Members\"})})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-8ujf17\",\"data-framer-name\":\"What you get\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvnrte\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rpsrw\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-martcg\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmeovv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cy593r-container\",nodeId:\"ejktmwPfC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"Ugbn3ciMZ\"},K4K2dkZC1:{variant:\"Ugbn3ciMZ\"},wbomxF4_O:{variant:\"Ugbn3ciMZ\"}},children:/*#__PURE__*/_jsx(Label,{a7hMzledn:\"WHAT YOU GET\",height:\"100%\",id:\"ejktmwPfC\",layoutId:\"ejktmwPfC\",variant:\"JAb5VmwjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"What You Get with the milliard club\"})}),className:\"framer-ci7gjf\",\"data-framer-name\":\"get known with milliard business club\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"'Milliard Club' is Uzbekistan's premier international business association, scheduled for official launch in December 2020.\"}),\"It brings together successful businessmen, entrepreneurs, and experts from various fields.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1m9m8dz\",\"data-styles-preset\":\"uOO0C8j07\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"'Milliard Club' is Uzbekistan's premier international business association, scheduled for official launch in December 2020. \"}),\"It brings together successful businessmen, entrepreneurs, and experts from various fields.\"]})}),className:\"framer-akf9ga\",\"data-framer-name\":\"'Milliard Club' is Uzbekistan's premier international business association, scheduled for official launch in December 2020. It brings together successful businessmen, entrepreneurs, and experts from various fields.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u6md5p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 16px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 48px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 60px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 60px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mzt4ki-container\",nodeId:\"ES0swGeS6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"jS_5uHzGO\"},wbomxF4_O:{variant:\"jS_5uHzGO\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"ES0swGeS6\",layoutId:\"ES0swGeS6\",Oc3zkESis:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gain access to cutting-edge ideas and insights through exclusive events, workshops, and discussions.\"})}),style:{width:\"100%\"},sZN7747of:\"Innovative Insights\",variant:\"MCi9Dhsbf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 16px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 48px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 60px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 60px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-axn7da-container\",nodeId:\"FT1xMSuIG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"jS_5uHzGO\"},wbomxF4_O:{variant:\"jS_5uHzGO\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"FT1xMSuIG\",layoutId:\"FT1xMSuIG\",Oc3zkESis:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gain access to cutting-edge ideas and insights through exclusive events, workshops, and discussions.\"})}),style:{width:\"100%\"},sZN7747of:\"Innovative Insights\",variant:\"MCi9Dhsbf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 16px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 48px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 60px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 60px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10q12pq-container\",nodeId:\"xmZUVoGql\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"jS_5uHzGO\"},wbomxF4_O:{variant:\"jS_5uHzGO\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"xmZUVoGql\",layoutId:\"xmZUVoGql\",Oc3zkESis:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gain access to cutting-edge ideas and insights through exclusive events, workshops, and discussions.\"})}),style:{width:\"100%\"},sZN7747of:\"Innovative Insights\",variant:\"MCi9Dhsbf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 16px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 48px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 60px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 60px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l4jdjo-container\",nodeId:\"Os_ssZnlR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"jS_5uHzGO\"},wbomxF4_O:{variant:\"jS_5uHzGO\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"Os_ssZnlR\",layoutId:\"Os_ssZnlR\",Oc3zkESis:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gain access to cutting-edge ideas and insights through exclusive events, workshops, and discussions.\"})}),style:{width:\"100%\"},sZN7747of:\"Innovative Insights\",variant:\"MCi9Dhsbf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 16px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 48px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 60px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 60px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b8rbp-container\",nodeId:\"Z3SZ4MlwP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"jS_5uHzGO\"},wbomxF4_O:{variant:\"jS_5uHzGO\"}},children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"Z3SZ4MlwP\",layoutId:\"Z3SZ4MlwP\",Oc3zkESis:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gain access to cutting-edge ideas and insights through exclusive events, workshops, and discussions.\"})}),style:{width:\"100%\"},sZN7747of:\"Innovative Insights\",variant:\"MCi9Dhsbf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fkv499\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0osml\",\"data-border\":true,\"data-framer-name\":\"Frame 10\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-18g2rek\",\"data-styles-preset\":\"JL2u4nc0f\",children:\"Interested in joining the club? Provide your information by clicking below \u2198\"})}),className:\"framer-1t26tre\",\"data-framer-name\":\"Klub sizni qiziqtirgan bo\u2018lsa quyidagi tugmani bosish orqali o\u2018z ma'lumotingizni qoldiring \u2198\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"sVfHqiyTw\"},implicitPathVariables:undefined},{href:{webPageId:\"sVfHqiyTw\"},implicitPathVariables:undefined},{href:{webPageId:\"sVfHqiyTw\"},implicitPathVariables:undefined},{href:{webPageId:\"sVfHqiyTw\"},implicitPathVariables:undefined},{href:{webPageId:\"sVfHqiyTw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 16px) / 2, 50px) - 80px)`},K4K2dkZC1:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 48px) / 3, 50px) - 80px)`},raHTYwqln:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 60px) / 3, 50px) - 80px)`},wbomxF4_O:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1680px), 50px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 60px) / 3, 50px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-360v6l-container\",nodeId:\"GiVG7Bj0g\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation8,whileTap:animation9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{DmiuHW0SG:resolvedLinks[3]},K4K2dkZC1:{DmiuHW0SG:resolvedLinks[2]},raHTYwqln:{DmiuHW0SG:resolvedLinks[1]},wbomxF4_O:{DmiuHW0SG:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(TextButton,{DmiuHW0SG:resolvedLinks[0],height:\"100%\",id:\"GiVG7Bj0g\",layoutId:\"GiVG7Bj0g\",LiEtQcKXg:\"JOIN THE CLUB\",style:{width:\"100%\"},width:\"100%\"})})})})})})]})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-o1rh5l\",\"data-framer-name\":\"Business type\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zbbrj6\",\"data-border\":true,\"data-framer-name\":\"Chart\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mdnxql\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12vt75c-container\",nodeId:\"ODFSeqONm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"Ugbn3ciMZ\"},K4K2dkZC1:{variant:\"Ugbn3ciMZ\"},wbomxF4_O:{variant:\"Ugbn3ciMZ\"}},children:/*#__PURE__*/_jsx(Label,{a7hMzledn:\"BUSINESS TYPES\",height:\"100%\",id:\"ODFSeqONm\",layoutId:\"ODFSeqONm\",variant:\"JAb5VmwjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",style:{\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"We have members\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",children:\"in these business spheres\"})]}),className:\"framer-7k2e46\",\"data-framer-name\":\"get known with milliard business club\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n6idtj hidden-kdhxyc hidden-1ngglxw\",\"data-framer-name\":\"Group 48096885\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zafbqs\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qhpwi3\",\"data-framer-name\":\"IT icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y5w63a\",\"data-framer-name\":\"Ellipse 515\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16p15nh\",\"data-framer-name\":\"Ellipse 514\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1o7cas5\",\"data-framer-name\":\"Vector\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:36,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"36\" viewBox=\"0 0 38 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_bd_863_941)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 27.7984C17.3314 27.7984 17.6 27.5298 17.6 27.1984V17.1964C17.6 12.5664 21.368 8.79844 26 8.79844H32.6C32.848 8.79844 33.0896 8.82212 33.3236 8.86654C33.7494 8.94736 34.2 8.65364 34.2 8.22024V7.39844C34.2 7.34044 34.194 7.28044 34.184 7.22444C33.498 3.33444 29.894 0.398438 25.802 0.398438H8.6C3.858 0.398438 0 4.25644 0 8.99844V19.1964C0 23.9384 3.858 27.7984 8.6 27.7984H11.486L10.724 32.4984H6.72C5.892 32.4984 5.22 33.1704 5.22 33.9984C5.22 34.8264 5.892 35.4984 6.72 35.4984H16.52C17.348 35.4984 18.02 34.8264 18.02 33.9984C18.02 33.1704 17.348 32.4984 16.52 32.4984H13.762L14.524 27.7984H17Z\" fill=\"url(#paint0_linear_863_941)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.3828 30.9128C28.5428 30.9128 27.8608 30.2308 27.8608 29.3908C27.8608 28.5508 28.5428 27.8688 29.3828 27.8688C30.2228 27.8688 30.9048 28.5508 30.9048 29.3908C30.9048 30.2308 30.2228 30.9128 29.3828 30.9128ZM32.6008 11.8008H26.0008C23.0728 11.8008 20.6008 14.2728 20.6008 17.1988V30.1988C20.6008 33.1768 23.0228 35.5988 26.0008 35.5988H32.6008C35.5788 35.5988 38.0008 33.1768 38.0008 30.1988V17.1988C38.0008 14.2728 35.5288 11.8008 32.6008 11.8008Z\" fill=\"url(#paint1_linear_863_941)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M33.6916 7.31127L33.6917 7.31232C33.6972 7.34298 33.7 7.37341 33.7 7.39844V8.22024C33.7 8.25029 33.6873 8.28935 33.6324 8.32822C33.5734 8.37 33.4916 8.3895 33.4168 8.37531C33.1527 8.32518 32.8799 8.29844 32.6 8.29844H26C21.0919 8.29844 17.1 12.2902 17.1 17.1964V27.1984C17.1 27.2537 17.0552 27.2984 17 27.2984H14.524H14.0985L14.0304 27.7184L13.2684 32.4184L13.1744 32.9984H13.762H16.52C17.0718 32.9984 17.52 33.4465 17.52 33.9984C17.52 34.5503 17.0718 34.9984 16.52 34.9984H6.72C6.16814 34.9984 5.72 34.5503 5.72 33.9984C5.72 33.4465 6.16814 32.9984 6.72 32.9984H10.724H11.1495L11.2176 32.5784L11.9796 27.8784L12.0736 27.2984H11.486H8.6C4.13429 27.2984 0.5 23.6624 0.5 19.1964V8.99844C0.5 4.53258 4.13414 0.898438 8.6 0.898438H25.802C29.6642 0.898438 33.0499 3.67266 33.6916 7.31127ZM27.3608 29.3908C27.3608 30.5069 28.2666 31.4128 29.3828 31.4128C30.4989 31.4128 31.4048 30.5069 31.4048 29.3908C31.4048 28.2747 30.4989 27.3688 29.3828 27.3688C28.2666 27.3688 27.3608 28.2747 27.3608 29.3908ZM26.0008 12.3008H32.6008C35.2527 12.3008 37.5008 14.5491 37.5008 17.1988V30.1988C37.5008 32.9007 35.3026 35.0988 32.6008 35.0988H26.0008C23.2989 35.0988 21.1008 32.9007 21.1008 30.1988V17.1988C21.1008 14.5491 23.3488 12.3008 26.0008 12.3008Z\" stroke=\"url(#paint2_linear_863_941)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_863_941\" x=\"-11\" y=\"-10.6016\" width=\"60\" height=\"57.2002\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_863_941\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_863_941\" result=\"effect2_dropShadow_863_941\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_863_941\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_863_941\" x1=\"6.22057\" y1=\"5.45737\" x2=\"18.2064\" y2=\"35.9113\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_863_941\" x1=\"6.22057\" y1=\"5.45737\" x2=\"18.2064\" y2=\"35.9113\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_863_941\" x1=\"19.0004\" y1=\"0.398438\" x2=\"19.0004\" y2=\"35.5988\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1clktv6\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r7rs17\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"Manufacturing\"})}),className:\"framer-sd6g1z\",\"data-framer-name\":\"IT technologies\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5pabh7\",\"data-framer-name\":\"Group 48096880\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ioxlqd\",\"data-framer-name\":\"Group 48096873\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21454)\">\\n<path d=\"M43.6856 16.1382C47.1679 9.37899 56.8321 9.37899 60.3144 16.1382C62.4069 20.1997 67.1274 22.155 71.479 20.7627C78.7208 18.4456 85.5544 25.2792 83.2373 32.521C81.845 36.8725 83.8003 41.5931 87.8618 43.6856C94.621 47.1679 94.621 56.8321 87.8618 60.3144C83.8003 62.4069 81.845 67.1274 83.2373 71.479C85.5544 78.7208 78.7208 85.5544 71.479 83.2373C67.1274 81.845 62.4069 83.8003 60.3144 87.8618C56.8321 94.621 47.1679 94.621 43.6856 87.8618C41.5931 83.8003 36.8725 81.845 32.521 83.2373C25.2792 85.5544 18.4456 78.7208 20.7627 71.479C22.155 67.1274 20.1997 62.4069 16.1382 60.3144C9.37899 56.8321 9.37899 47.1679 16.1382 43.6856C20.1997 41.5931 22.155 36.8725 20.7627 32.521C18.4456 25.2792 25.2792 18.4456 32.521 20.7627C36.8725 22.155 41.5931 20.1997 43.6856 16.1382Z\" fill=\"url(#paint0_linear_829_21454)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21454\" x=\"7.06836\" y=\"7.06836\" width=\"89.8633\" height=\"89.8633\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21454\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21454\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21454\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"17%\"})}),className:\"framer-1i3gfvo\",\"data-framer-name\":\"7.6%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hqlgve\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12cdrwd\",\"data-framer-name\":\"Game icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yy0cs4\",\"data-framer-name\":\"Ellipse 514\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1riabvf\",\"data-framer-name\":\"Ellipse 515\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-clk81k\",\"data-framer-name\":\"Vector\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:38,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"38\" viewBox=\"0 0 38 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_bd_863_981)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.3767 5.58281H15.1767C16.2967 5.58281 17.2767 6.47081 17.2767 7.48281V8.88281C17.2767 9.71081 17.9487 10.3828 18.7767 10.3828C19.6047 10.3828 20.2767 9.71081 20.2767 8.88281V7.48281C20.2767 4.82681 17.9407 2.58281 15.1767 2.58281H13.3767C13.0027 2.58281 12.6767 2.25481 12.6767 1.88281C12.6767 1.05481 12.0047 0.382812 11.1767 0.382812C10.3487 0.382812 9.67675 1.05481 9.67675 1.88281C9.67675 3.92281 11.3367 5.58281 13.3767 5.58281Z\" fill=\"url(#paint0_linear_863_981)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.7171 23.86C28.8971 23.86 28.2171 23.2 28.2171 22.38C28.2171 21.56 28.8971 20.9 29.7171 20.9C30.5371 20.9 31.1971 21.56 31.1971 22.38C31.1971 23.2 30.5371 23.86 29.7171 23.86ZM26.7971 26.78C25.9771 26.78 25.2971 26.12 25.2971 25.3C25.2971 24.48 25.9771 23.82 26.7971 23.82C27.6171 23.82 28.2771 24.48 28.2771 25.3C28.2771 26.12 27.6171 26.78 26.7971 26.78ZM23.8771 23.86C23.0571 23.86 22.3771 23.2 22.3771 22.38C22.3771 21.56 23.0571 20.9 23.8771 20.9C24.6971 20.9 25.3571 21.56 25.3571 22.38C25.3571 23.2 24.6971 23.86 23.8771 23.86ZM26.7971 17.96C27.6171 17.96 28.2771 18.64 28.2771 19.46C28.2771 20.28 27.6171 20.94 26.7971 20.94C25.9771 20.94 25.2971 20.28 25.2971 19.46C25.2971 18.64 25.9771 17.96 26.7971 17.96ZM13.5771 23.98H12.2771V25.28C12.2771 26.1 11.5971 26.78 10.7771 26.78C9.95713 26.78 9.27713 26.1 9.27713 25.28V23.98H7.77713C6.95713 23.98 6.27713 23.3 6.27713 22.48C6.27713 21.64 6.95713 20.98 7.77713 20.98H9.27713V19.48C9.27713 18.64 9.95713 17.98 10.7771 17.98C11.5971 17.98 12.2771 18.64 12.2771 19.48V20.98H13.5771C14.3971 20.98 15.0771 21.64 15.0771 22.48C15.0771 23.3 14.3971 23.98 13.5771 23.98ZM37.9971 29.6C37.9971 29.46 37.6971 14.8999 31.3771 11.5999C31.3771 11.5999 31.3571 11.5799 31.3371 11.5799L31.1171 11.4799C29.7771 10.8599 26.2171 9.21993 22.1771 11.7399C19.3171 13.5199 18.5371 13.3599 15.8171 11.7199C11.6571 9.25993 8.33713 10.7999 6.93713 11.4599L6.61713 11.5999C0.337129 14.8799 -0.00287163 29.44 -0.00287163 29.54C-0.0228716 31.02 -0.142871 35.5 3.69713 37.06C4.69713 37.44 5.69713 37.62 6.65713 37.62C8.09713 37.62 9.43713 37.2 10.5371 36.38C11.2571 35.86 11.6571 35.3 12.0171 34.82C12.4771 34.18 12.9171 33.58 14.1371 32.88C16.2171 31.68 22.0371 31.86 23.8771 32.88C24.9171 33.46 25.3571 34.06 25.8971 34.74C26.3171 35.28 26.7572 35.84 27.4771 36.38C29.2971 37.74 31.7971 38 34.3371 37.06C38.1371 35.5 38.0371 31.02 37.9971 29.6Z\" fill=\"url(#paint1_linear_863_981)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M37.4971 29.6H37.4969L37.4973 29.6141C37.5173 30.3209 37.5482 31.7254 37.128 33.1346C36.7121 34.5295 35.8686 35.8876 34.1553 36.5941C31.7451 37.4835 29.4333 37.2176 27.7764 35.9795C27.1148 35.483 26.7097 34.9703 26.2918 34.433L26.2887 34.4291C26.2575 34.3897 26.2264 34.3504 26.1953 34.3111C25.69 33.672 25.1902 33.0398 24.1207 32.4433L24.1196 32.4427C23.585 32.1463 22.8096 31.9325 21.9549 31.7879C21.0887 31.6414 20.0974 31.559 19.1029 31.5475C18.1087 31.536 17.1001 31.5952 16.2003 31.7363C15.3103 31.8759 14.4857 32.1017 13.8873 32.4469C12.5839 33.1949 12.0938 33.8567 11.6141 34.5241C11.5973 34.5465 11.5805 34.5689 11.5637 34.5913C11.2174 35.0541 10.8626 35.5282 10.2444 35.9747L10.2443 35.9746L10.2383 35.9791C9.23148 36.7297 7.99831 37.12 6.65713 37.12C5.76164 37.12 4.82358 36.9524 3.8801 36.5946C2.14513 35.8878 1.29692 34.5287 0.878761 33.1271C0.466519 31.7452 0.485739 30.3631 0.496294 29.604C0.496565 29.5845 0.49683 29.5654 0.497083 29.5467H0.497128V29.54L0.497165 29.5385C0.497637 29.5183 0.502892 29.2934 0.523327 28.901C0.544598 28.4925 0.581979 27.9092 0.646326 27.2012C0.775125 25.7841 1.01146 23.8731 1.44104 21.8672C1.87128 19.8582 2.49149 17.7725 3.38049 15.9966C4.26903 14.2216 5.40178 12.8045 6.83367 12.051L7.13754 11.918L7.13762 11.9182L7.15034 11.9122C8.51779 11.2675 11.6282 9.8247 15.5608 12.1493C16.9016 12.9576 17.8871 13.4859 18.932 13.5123C19.9884 13.5389 21.0125 13.0537 22.4413 12.1644L22.4418 12.1642C26.2461 9.79115 29.5836 11.3213 30.9072 11.9337L30.9102 11.9351L31.1302 12.0351L31.131 12.0354L31.1457 12.0431C32.595 12.7999 33.7375 14.2248 34.6307 16.0088C35.5214 17.7878 36.1403 19.8764 36.5681 21.8889C36.9952 23.8984 37.2278 25.8136 37.3535 27.2365C37.4163 27.9474 37.4522 28.534 37.4725 28.9463C37.4826 29.1524 37.4888 29.3148 37.4925 29.4273C37.4963 29.5433 37.4971 29.6006 37.4971 29.6ZM15.1767 5.08281H13.3767C11.6129 5.08281 10.1767 3.64667 10.1767 1.88281C10.1767 1.33095 10.6249 0.882812 11.1767 0.882812C11.7286 0.882812 12.1767 1.33095 12.1767 1.88281C12.1767 2.53004 12.7257 3.08281 13.3767 3.08281H15.1767C17.6837 3.08281 19.7767 5.12164 19.7767 7.48281V8.88281C19.7767 9.43467 19.3286 9.88281 18.7767 9.88281C18.2249 9.88281 17.7767 9.43467 17.7767 8.88281V7.48281C17.7767 6.14898 16.5249 5.08281 15.1767 5.08281ZM27.7171 22.38C27.7171 23.4848 28.6298 24.36 29.7171 24.36C30.8133 24.36 31.6971 23.4761 31.6971 22.38C31.6971 21.2838 30.8133 20.4 29.7171 20.4C28.6298 20.4 27.7171 21.2752 27.7171 22.38ZM24.7971 25.3C24.7971 26.4048 25.7098 27.28 26.7971 27.28C27.8933 27.28 28.7771 26.3961 28.7771 25.3C28.7771 24.2038 27.8933 23.32 26.7971 23.32C25.7098 23.32 24.7971 24.1952 24.7971 25.3ZM21.8771 22.38C21.8771 23.4848 22.7898 24.36 23.8771 24.36C24.9733 24.36 25.8571 23.4761 25.8571 22.38C25.8571 21.2838 24.9733 20.4 23.8771 20.4C22.7898 20.4 21.8771 21.2752 21.8771 22.38ZM28.7771 19.46C28.7771 18.3726 27.902 17.46 26.7971 17.46C25.701 17.46 24.7971 18.3638 24.7971 19.46C24.7971 20.5648 25.7098 21.44 26.7971 21.44C27.8933 21.44 28.7771 20.5561 28.7771 19.46ZM12.7771 25.28V24.48H13.5771C14.6733 24.48 15.5771 23.5761 15.5771 22.48C15.5771 21.3595 14.6689 20.48 13.5771 20.48H12.7771V19.48C12.7771 18.3595 11.8689 17.48 10.7771 17.48C9.68534 17.48 8.77713 18.3595 8.77713 19.48V20.48H7.77713C6.68534 20.48 5.77713 21.3595 5.77713 22.48C5.77713 23.5761 6.68099 24.48 7.77713 24.48H8.77713V25.28C8.77713 26.3761 9.68099 27.28 10.7771 27.28C11.8733 27.28 12.7771 26.3761 12.7771 25.28Z\" stroke=\"url(#paint2_linear_863_981)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_863_981\" x=\"-11.0078\" y=\"-10.6172\" width=\"60.0156\" height=\"59.2373\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_863_981\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_863_981\" result=\"effect2_dropShadow_863_981\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_863_981\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_863_981\" x1=\"6.21511\" y1=\"5.73448\" x2=\"19.4137\" y2=\"37.4477\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_863_981\" x1=\"6.21511\" y1=\"5.73448\" x2=\"19.4137\" y2=\"37.4477\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_863_981\" x1=\"18.9997\" y1=\"0.382813\" x2=\"18.9997\" y2=\"37.62\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1go56rn\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19lynw0\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"Logistics\"})}),className:\"framer-fjbkkj\",\"data-framer-name\":\"O'yin industriyasi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-md05kn\",\"data-framer-name\":\"Group 48096882\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ek7j5q\",\"data-framer-name\":\"Group 48096873\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21483)\">\\n<path d=\"M43.6856 16.1382C47.1679 9.37899 56.8321 9.37899 60.3144 16.1382C62.4069 20.1997 67.1274 22.155 71.479 20.7627C78.7208 18.4456 85.5544 25.2792 83.2373 32.521C81.845 36.8725 83.8003 41.5931 87.8618 43.6856C94.621 47.1679 94.621 56.8321 87.8618 60.3144C83.8003 62.4069 81.845 67.1274 83.2373 71.479C85.5544 78.7208 78.7208 85.5544 71.479 83.2373C67.1274 81.845 62.4069 83.8003 60.3144 87.8618C56.8321 94.621 47.1679 94.621 43.6856 87.8618C41.5931 83.8003 36.8725 81.845 32.521 83.2373C25.2792 85.5544 18.4456 78.7208 20.7627 71.479C22.155 67.1274 20.1997 62.4069 16.1382 60.3144C9.37899 56.8321 9.37899 47.1679 16.1382 43.6856C20.1997 41.5931 22.155 36.8725 20.7627 32.521C18.4456 25.2792 25.2792 18.4456 32.521 20.7627C36.8725 22.155 41.5931 20.1997 43.6856 16.1382Z\" fill=\"url(#paint0_linear_829_21483)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21483\" x=\"7.06836\" y=\"7.06836\" width=\"89.8633\" height=\"89.8633\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21483\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21483\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21483\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"15%\"})}),className:\"framer-1bsjpbl\",\"data-framer-name\":\"4%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qaleqw\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1c88nav\",\"data-framer-name\":\"University\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_829_21446)\">\\n<g filter=\"url(#filter0_bd_829_21446)\">\\n<circle cx=\"35\" cy=\"11\" r=\"6\" fill=\"url(#paint0_linear_829_21446)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_829_21446)\">\\n<circle cx=\"7\" cy=\"40\" r=\"6\" fill=\"url(#paint1_linear_829_21446)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_829_21446)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.44 15.7622C19.44 14.9422 20.1 14.2622 20.94 14.2622H27.06C27.88 14.2622 28.56 14.9422 28.56 15.7622C28.56 16.6022 27.88 17.2622 27.06 17.2622H20.94C20.1 17.2622 19.44 16.6022 19.44 15.7622ZM7.36 22.7622H40.64C41.94 22.7622 43 21.7222 43 20.4022V19.0822C43 18.2822 42.58 17.5222 41.92 17.1022L25.3 6.38219C24.5 5.86219 23.5 5.86219 22.72 6.38219L6.08 17.1022C5.42 17.5222 5 18.2822 5 19.0822V20.4022C5 21.7222 6.06 22.7622 7.36 22.7622Z\" fill=\"url(#paint2_linear_829_21446)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42 40.211H6C5.172 40.211 4.5 40.883 4.5 41.711C4.5 42.539 5.172 43.211 6 43.211H42C42.828 43.211 43.5 42.539 43.5 41.711C43.5 40.883 42.828 40.211 42 40.211Z\" fill=\"url(#paint3_linear_829_21446)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.56 24.8828C30 24.8828 29.56 25.3228 29.56 25.8828V37.0828C29.56 37.6428 30 38.0828 30.56 38.0828H36.96C37.5 38.0828 37.96 37.6428 37.96 37.0828V25.8828C37.96 25.3228 37.5 24.8828 36.96 24.8828H30.56Z\" fill=\"url(#paint4_linear_829_21446)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.04 24.8828C10.5 24.8828 10.04 25.3228 10.04 25.8828V37.0828C10.04 37.6428 10.5 38.0828 11.04 38.0828H17.44C18 38.0828 18.44 37.6428 18.44 37.0828V25.8828C18.44 25.3228 18 24.8828 17.44 24.8828H11.04Z\" fill=\"url(#paint5_linear_829_21446)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M41.649 17.5224L41.6516 17.524C42.1666 17.8518 42.5 18.4523 42.5 19.0822V20.4022C42.5 21.4433 41.6666 22.2622 40.64 22.2622H7.36C6.33337 22.2622 5.5 21.4433 5.5 20.4022V19.0822C5.5 18.4523 5.8334 17.8518 6.34844 17.524L6.35079 17.5225L22.9908 6.80251L22.9908 6.80257L22.9973 6.79821C23.6073 6.39157 24.3911 6.38772 25.0275 6.80141L25.029 6.80237L41.649 17.5224ZM20.94 13.7622C19.8195 13.7622 18.94 14.6704 18.94 15.7622C18.94 16.8783 19.8239 17.7622 20.94 17.7622H27.06C28.1518 17.7622 29.06 16.8827 29.06 15.7622C29.06 14.666 28.1561 13.7622 27.06 13.7622H20.94ZM6 40.711H42C42.5519 40.711 43 41.1591 43 41.711C43 42.2629 42.5519 42.711 42 42.711H6C5.44814 42.711 5 42.2629 5 41.711C5 41.1591 5.44814 40.711 6 40.711ZM30.06 25.8828C30.06 25.5989 30.2761 25.3828 30.56 25.3828H36.96C37.2304 25.3828 37.46 25.6054 37.46 25.8828V37.0828C37.46 37.3602 37.2304 37.5828 36.96 37.5828H30.56C30.2761 37.5828 30.06 37.3667 30.06 37.0828V25.8828ZM10.54 25.8828C10.54 25.6054 10.7697 25.3828 11.04 25.3828H17.44C17.7239 25.3828 17.94 25.5989 17.94 25.8828V37.0828C17.94 37.3667 17.7239 37.5828 17.44 37.5828H11.04C10.7697 37.5828 10.54 37.3602 10.54 37.0828V25.8828Z\" stroke=\"url(#paint6_linear_829_21446)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_829_21446\" x=\"12\" y=\"-12\" width=\"46\" height=\"46\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21446\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21446\" result=\"effect2_dropShadow_829_21446\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21446\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_829_21446\" x=\"-16\" y=\"17\" width=\"46\" height=\"46\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21446\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21446\" result=\"effect2_dropShadow_829_21446\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21446\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_829_21446\" x=\"-6.5\" y=\"-5.00781\" width=\"61\" height=\"59.2188\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21446\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21446\" result=\"effect2_dropShadow_829_21446\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21446\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21446\" x1=\"35\" y1=\"5\" x2=\"35\" y2=\"17\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_829_21446\" x1=\"7\" y1=\"34\" x2=\"7\" y2=\"46\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_829_21446\" x1=\"10.8841\" y1=\"11.3412\" x2=\"23.8339\" y2=\"43.2783\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_829_21446\" x1=\"10.8841\" y1=\"11.3412\" x2=\"23.8339\" y2=\"43.2783\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_829_21446\" x1=\"10.8841\" y1=\"11.3412\" x2=\"23.8339\" y2=\"43.2783\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_829_21446\" x1=\"10.8841\" y1=\"11.3412\" x2=\"23.8339\" y2=\"43.2783\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_829_21446\" x1=\"24\" y1=\"5.99219\" x2=\"24\" y2=\"43.211\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_829_21446\">\\n<rect width=\"48\" height=\"48\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hjghh0\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-el7lmj\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\" Retail and Wholesale\"})}),className:\"framer-1w6otxi\",\"data-framer-name\":\"Bank sektori\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-boqlxy\",\"data-framer-name\":\"Group 48096874\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qitga7\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21390)\">\\n<path d=\"M44.0317 10.5088C48.0332 5.23148 55.9668 5.23148 59.9683 10.5088L62.395 13.7091C64.5783 16.5886 68.1454 18.0661 71.7254 17.5739L75.7042 17.0268C82.2654 16.1247 87.8753 21.7346 86.9732 28.2958L86.4261 32.2746C85.9339 35.8546 87.4114 39.4217 90.2909 41.605L93.4912 44.0317C98.7685 48.0332 98.7685 55.9668 93.4912 59.9683L90.2909 62.395C87.4114 64.5783 85.9339 68.1454 86.4261 71.7254L86.9732 75.7042C87.8753 82.2654 82.2654 87.8753 75.7042 86.9732L71.7254 86.4261C68.1454 85.9339 64.5783 87.4114 62.395 90.2909L59.9683 93.4912C55.9668 98.7685 48.0332 98.7685 44.0317 93.4912L41.605 90.2909C39.4217 87.4114 35.8546 85.9339 32.2746 86.4261L28.2958 86.9732C21.7346 87.8753 16.1247 82.2654 17.0268 75.7042L17.5739 71.7254C18.0661 68.1454 16.5886 64.5783 13.7091 62.395L10.5088 59.9683C5.23148 55.9668 5.23148 48.0332 10.5088 44.0317L13.7091 41.605C16.5886 39.4217 18.0661 35.8546 17.5739 32.2746L17.0268 28.2958C16.1247 21.7346 21.7346 16.1247 28.2958 17.0268L32.2746 17.5739C35.8546 18.0661 39.4217 16.5886 41.605 13.7091L44.0317 10.5088Z\" fill=\"url(#paint0_linear_829_21390)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21390\" x=\"2.55078\" y=\"2.55078\" width=\"98.8984\" height=\"98.8984\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21390\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21390\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21390\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"18%\"})}),className:\"framer-1djy1w1\",\"data-framer-name\":\"17.5%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4cxg01\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hhjmg9\",\"data-framer-name\":\"Savdo sotiq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ucxhe\",\"data-framer-name\":\"Ellipse 515\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ac6tbn\",\"data-framer-name\":\"Ellipse 514\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-152qw9k\",\"data-framer-name\":\"Vector\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_bd_863_314)\">\\n<path d=\"M10.8526 33.8157C12.5113 33.8157 13.8703 35.2036 13.8703 36.9181C13.8703 38.6121 12.5113 40 10.8526 40C9.17393 40 7.81499 38.6121 7.81499 36.9181C7.81499 35.2036 9.17393 33.8157 10.8526 33.8157ZM33.3351 33.8157C34.9938 33.8157 36.3528 35.2036 36.3528 36.9181C36.3528 38.6121 34.9938 40 33.3351 40C31.6564 40 30.2975 38.6121 30.2975 36.9181C30.2975 35.2036 31.6564 33.8157 33.3351 33.8157ZM1.76011 0.0174766L6.5264 0.750202C7.20587 0.874704 7.70548 1.44415 7.76543 2.13809L8.14514 6.70997C8.20509 7.36514 8.72468 7.85499 9.36419 7.85499H36.3532C37.5722 7.85499 38.3716 8.2836 39.171 9.22247C39.9703 10.1613 40.1102 11.5084 39.9304 12.731L38.0318 26.1201C37.6721 28.6938 35.5138 30.5899 32.9758 30.5899H11.1728C8.51485 30.5899 6.31656 28.5101 6.09673 25.8159L4.25817 3.56681L1.24052 3.03614C0.441141 2.89327 -0.118423 2.09727 0.0214676 1.28087C0.161359 0.44609 0.940751 -0.107025 1.76011 0.0174766ZM29.7783 15.4047H24.2426C23.4032 15.4047 22.7438 16.0782 22.7438 16.9355C22.7438 17.7723 23.4032 18.4662 24.2426 18.4662H29.7783C30.6176 18.4662 31.2771 17.7723 31.2771 16.9355C31.2771 16.0782 30.6176 15.4047 29.7783 15.4047Z\" fill=\"url(#paint0_linear_863_314)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M7.64685 6.75136L7.64683 6.75136L7.64722 6.75554C7.72949 7.65464 8.45288 8.35499 9.36419 8.35499H36.3532C36.901 8.35499 37.3267 8.45057 37.6971 8.63448C38.0705 8.81993 38.4191 9.11072 38.7903 9.54661C39.4554 10.3278 39.6059 11.501 39.4357 12.6582L39.4353 12.6608L37.5368 26.0499L37.5367 26.0508C37.2106 28.3838 35.2582 30.0899 32.9758 30.0899H11.1728C8.78509 30.0899 6.79454 28.2199 6.59508 25.7753L6.59503 25.7748L4.75647 3.52563L4.7247 3.14118L4.34476 3.07436L1.32849 2.54394C1.32829 2.54391 1.3281 2.54387 1.3279 2.54384C0.80234 2.44956 0.420305 1.91378 0.514288 1.36531L0.514591 1.3635C0.608997 0.800156 1.13357 0.428228 1.68461 0.511743C1.68474 0.511763 1.68487 0.511783 1.685 0.511802L6.44263 1.2432C6.88767 1.3277 7.22571 1.70372 7.26722 2.18035C7.26724 2.18061 7.26727 2.18087 7.26729 2.18113L7.64685 6.75136ZM10.8526 34.3157C12.2232 34.3157 13.3703 35.4676 13.3703 36.9181C13.3703 38.346 12.2253 39.5 10.8526 39.5C9.45783 39.5 8.31499 38.3438 8.31499 36.9181C8.31499 35.4698 9.45996 34.3157 10.8526 34.3157ZM33.3351 34.3157C34.7057 34.3157 35.8528 35.4676 35.8528 36.9181C35.8528 38.346 34.7078 39.5 33.3351 39.5C31.9403 39.5 30.7975 38.3438 30.7975 36.9181C30.7975 35.4698 31.9424 34.3157 33.3351 34.3157ZM29.7783 14.9047H24.2426C23.1172 14.9047 22.2438 15.8121 22.2438 16.9355C22.2438 18.034 23.1129 18.9662 24.2426 18.9662H29.7783C30.9079 18.9662 31.7771 18.034 31.7771 16.9355C31.7771 15.8121 30.9037 14.9047 29.7783 14.9047Z\" stroke=\"url(#paint1_linear_863_314)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_863_314\" x=\"-11\" y=\"-11\" width=\"62\" height=\"62\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_863_314\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_863_314\" result=\"effect2_dropShadow_863_314\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_863_314\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_863_314\" x1=\"6.54784\" y1=\"5.74873\" x2=\"20.9323\" y2=\"39.6039\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_863_314\" x1=\"20\" y1=\"0\" x2=\"20\" y2=\"40\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bl6lnv\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ychx2w\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"Services\"})}),className:\"framer-wi64ey\",\"data-framer-name\":\"Medicine\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1orutiz\",\"data-framer-name\":\"Group 48096877\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wyrpiq\",\"data-framer-name\":\"Group 48096873\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21418)\">\\n<path d=\"M43.6856 16.1382C47.1679 9.37899 56.8321 9.37899 60.3144 16.1382C62.4069 20.1997 67.1274 22.155 71.479 20.7627C78.7208 18.4456 85.5544 25.2792 83.2373 32.521C81.845 36.8725 83.8003 41.5931 87.8618 43.6856C94.621 47.1679 94.621 56.8321 87.8618 60.3144C83.8003 62.4069 81.845 67.1274 83.2373 71.479C85.5544 78.7208 78.7208 85.5544 71.479 83.2373C67.1274 81.845 62.4069 83.8003 60.3144 87.8618C56.8321 94.621 47.1679 94.621 43.6856 87.8618C41.5931 83.8003 36.8725 81.845 32.521 83.2373C25.2792 85.5544 18.4456 78.7208 20.7627 71.479C22.155 67.1274 20.1997 62.4069 16.1382 60.3144C9.37899 56.8321 9.37899 47.1679 16.1382 43.6856C20.1997 41.5931 22.155 36.8725 20.7627 32.521C18.4456 25.2792 25.2792 18.4456 32.521 20.7627C36.8725 22.155 41.5931 20.1997 43.6856 16.1382Z\" fill=\"url(#paint0_linear_829_21418)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21418\" x=\"7.06836\" y=\"7.06836\" width=\"89.8633\" height=\"89.8633\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21418\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21418\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21418\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"15%\"})}),className:\"framer-1mbfh50\",\"data-framer-name\":\"9.6%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jm4eo7\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cqo112\",\"data-framer-name\":\"Cube Dash\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_829_21458)\">\\n<g filter=\"url(#filter0_bd_829_21458)\">\\n<circle cx=\"8.5\" cy=\"15.5\" r=\"8.5\" fill=\"url(#paint0_linear_829_21458)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_829_21458)\">\\n<circle cx=\"37.75\" cy=\"36.75\" r=\"4.75\" fill=\"url(#paint1_linear_829_21458)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_829_21458)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.6118 24.1013L25.8 26.8781C25.6142 26.9853 25.4998 27.1833 25.4998 27.3977V32.9533C25.4998 33.7813 24.8278 34.4533 23.9998 34.4533C23.1718 34.4533 22.4998 33.7813 22.4998 32.9533V27.3977C22.4998 27.1833 22.3854 26.9853 22.1998 26.8781L17.3878 24.1013C16.6698 23.6873 16.4258 22.7693 16.8398 22.0533C17.2538 21.3353 18.1718 21.0893 18.8878 21.5033L23.7 24.2803C23.8856 24.3873 24.1142 24.3873 24.2998 24.2803L29.1118 21.5033C29.8278 21.0873 30.7458 21.3333 31.1598 22.0533C31.5738 22.7713 31.3278 23.6873 30.6118 24.1013ZM36.7898 20.5313C36.5538 20.6673 36.2958 20.7313 36.0418 20.7313C35.5238 20.7313 35.0198 20.4633 34.7418 19.9813C34.3278 19.2653 34.5718 18.3473 35.2898 17.9333L39.0112 15.785C39.3446 15.5925 39.4147 15.1375 39.124 14.8853C38.8724 14.6668 38.6014 14.4691 38.3058 14.3013L26.9378 7.74131C25.1258 6.68131 22.8738 6.67931 21.0658 7.73931L9.69781 14.2973C9.39977 14.467 9.12671 14.6668 8.87333 14.8875C8.58351 15.1399 8.65403 15.5939 8.98687 15.7861L12.7058 17.9333C13.4238 18.3473 13.6698 19.2653 13.2558 19.9813C12.9778 20.4633 12.4738 20.7313 11.9558 20.7313C11.6998 20.7313 11.4438 20.6673 11.2058 20.5313L7.63495 18.4684C7.28607 18.2668 6.83623 18.4595 6.78965 18.8597C6.76947 19.0331 6.75781 19.2083 6.75781 19.3853V32.5053C6.75781 34.6093 7.88381 36.5593 9.69381 37.5893L21.0618 44.1473C21.288 44.2803 21.5212 44.3959 21.7594 44.4951C22.1238 44.6469 22.4998 44.3593 22.4998 43.9645V40.0933C22.4998 39.2653 23.1718 38.5933 23.9998 38.5933C24.8278 38.5933 25.4998 39.2653 25.4998 40.0933V43.9667C25.4998 44.3609 25.8746 44.6483 26.2384 44.4965C26.4756 44.3977 26.708 44.2821 26.9338 44.1493L38.2998 37.5933C40.1138 36.5593 41.2418 34.6093 41.2418 32.5053V19.3853C41.2418 19.208 41.2302 19.0324 41.2098 18.8585C41.1632 18.4581 40.713 18.2651 40.364 18.4667L36.7898 20.5313Z\" fill=\"url(#paint2_linear_829_21458)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M30.862 24.5342L30.8617 24.5344L26.0499 27.3112L26.0498 27.3112C26.0187 27.3292 25.9998 27.3621 25.9998 27.3977V32.9533C25.9998 34.0575 25.1039 34.9533 23.9998 34.9533C22.8956 34.9533 21.9998 34.0575 21.9998 32.9533V27.3977C21.9998 27.3621 21.9807 27.329 21.9497 27.3111L17.1381 24.5345C16.1801 23.9821 15.8551 22.7581 16.4067 21.8036C16.9584 20.8466 18.1822 20.518 19.1377 21.0703L30.862 24.5342ZM30.862 24.5342C31.8169 23.982 32.1447 22.7606 31.5929 21.8036C31.0412 20.8448 29.8172 20.5157 28.8612 21.0706C28.861 21.0707 28.8608 21.0709 28.8606 21.071L24.05 23.8471C24.019 23.865 23.9807 23.865 23.9497 23.8471L19.1381 21.0705L30.862 24.5342ZM37.0398 20.9643L37.0394 20.9645C36.7247 21.1459 36.3801 21.2313 36.0418 21.2313C35.353 21.2313 34.6801 20.8748 34.3089 20.2316C33.757 19.2771 34.0818 18.0528 35.0398 17.5003C35.0398 17.5002 35.0399 17.5002 35.04 17.5002L38.7612 15.3519L39.0112 15.785L38.7612 15.3519C38.7909 15.3348 38.8035 15.3098 38.8061 15.2906C38.8074 15.2815 38.806 15.2761 38.8053 15.274L38.8052 15.2739C38.8048 15.2729 38.8036 15.2692 38.7963 15.2629L38.7962 15.2628C38.566 15.063 38.3218 14.8854 38.0589 14.7362L38.0558 14.7344L26.6878 8.17438L26.6853 8.1729C25.0287 7.20383 22.97 7.20249 21.3186 8.17065L21.3156 8.17242L21.3156 8.17241L9.94766 14.7304L9.94517 14.7318L9.94517 14.7318C9.67986 14.8829 9.43367 15.0625 9.20172 15.2646C9.19453 15.2708 9.19327 15.2744 9.19291 15.2754L9.19288 15.2755C9.19215 15.2776 9.19081 15.2829 9.19204 15.292C9.19464 15.311 9.20726 15.336 9.23689 15.3531L12.9556 17.5002L12.9558 17.5003L12.7058 17.9333L37.0398 20.9643ZM37.0398 20.9643L40.614 18.8997L40.6141 18.8997C40.645 18.8818 40.6749 18.8837 40.6946 18.8926C40.7039 18.8968 40.7079 18.9012 40.7091 18.9028L40.7091 18.9028C40.7096 18.9034 40.7119 18.9063 40.7131 18.9163L40.7132 18.9168C40.7316 19.0738 40.7418 19.2298 40.7418 19.3853V32.5053C40.7418 34.4313 39.7087 36.2147 38.0521 37.1589L38.0499 37.1602L26.6839 43.7162L26.6803 43.7183C26.4744 43.8394 26.2625 43.9448 26.0461 44.035L26.0458 44.0351C26.0368 44.0388 26.035 44.0375 26.037 44.0378C26.0375 44.0379 26.0344 44.0376 26.0285 44.0333C26.0158 44.024 25.9998 44.0024 25.9998 43.9667V40.0933C25.9998 38.9892 25.1039 38.0933 23.9998 38.0933C22.8956 38.0933 21.9998 38.9892 21.9998 40.0933V43.9645C21.9998 44.0001 21.9837 44.0219 21.9706 44.0315C21.9676 44.0337 21.9651 44.035 21.9636 44.0356C21.9621 44.0362 21.9613 44.0363 21.9613 44.0363L21.9612 44.0364L21.9605 44.0363C21.9598 44.0362 21.957 44.0358 21.9516 44.0336L21.9516 44.0335C21.7337 43.9428 21.521 43.8373 21.3152 43.7163L21.3116 43.7142L9.94367 37.1562L9.94111 37.1548M37.0398 20.9643L9.94111 37.1548M9.94111 37.1548C8.28935 36.2148 7.25781 34.4319 7.25781 32.5053V19.3853C7.25781 19.2302 7.26803 19.0745 7.2863 18.9175L9.94111 37.1548Z\" stroke=\"url(#paint3_linear_829_21458)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_829_21458\" x=\"-17\" y=\"-10\" width=\"51\" height=\"51\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21458\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21458\" result=\"effect2_dropShadow_829_21458\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21458\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_829_21458\" x=\"16\" y=\"15\" width=\"43.5\" height=\"43.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21458\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21458\" result=\"effect2_dropShadow_829_21458\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21458\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_829_21458\" x=\"-4.24219\" y=\"-4.05469\" width=\"56.4844\" height=\"59.5928\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21458\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21458\" result=\"effect2_dropShadow_829_21458\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21458\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21458\" x1=\"8.5\" y1=\"7\" x2=\"8.5\" y2=\"24\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_829_21458\" x1=\"37.75\" y1=\"32\" x2=\"37.75\" y2=\"41.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_829_21458\" x1=\"12.4027\" y1=\"12.348\" x2=\"26.7273\" y2=\"43.2745\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_829_21458\" x1=\"23.9998\" y1=\"6.94531\" x2=\"23.9998\" y2=\"44.5378\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_829_21458\">\\n<rect width=\"48\" height=\"48\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b204x6\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zx808o\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\" Technology and IT\"})}),className:\"framer-hui5qo\",\"data-framer-name\":\"Cosmetics\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12a9j9m\",\"data-framer-name\":\"Group 48096883\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9eom8x\",\"data-framer-name\":\"Group 48096873\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21495)\">\\n<path d=\"M43.6856 16.1382C47.1679 9.37899 56.8321 9.37899 60.3144 16.1382C62.4069 20.1997 67.1274 22.155 71.479 20.7627C78.7208 18.4456 85.5544 25.2792 83.2373 32.521C81.845 36.8725 83.8003 41.5931 87.8618 43.6856C94.621 47.1679 94.621 56.8321 87.8618 60.3144C83.8003 62.4069 81.845 67.1274 83.2373 71.479C85.5544 78.7208 78.7208 85.5544 71.479 83.2373C67.1274 81.845 62.4069 83.8003 60.3144 87.8618C56.8321 94.621 47.1679 94.621 43.6856 87.8618C41.5931 83.8003 36.8725 81.845 32.521 83.2373C25.2792 85.5544 18.4456 78.7208 20.7627 71.479C22.155 67.1274 20.1997 62.4069 16.1382 60.3144C9.37899 56.8321 9.37899 47.1679 16.1382 43.6856C20.1997 41.5931 22.155 36.8725 20.7627 32.521C18.4456 25.2792 25.2792 18.4456 32.521 20.7627C36.8725 22.155 41.5931 20.1997 43.6856 16.1382Z\" fill=\"url(#paint0_linear_829_21495)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21495\" x=\"7.06836\" y=\"7.06836\" width=\"89.8633\" height=\"89.8633\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21495\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21495\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21495\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"10%\"})}),className:\"framer-1rrhced\",\"data-framer-name\":\"2.1%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fn358a\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bqhd7o\",\"data-framer-name\":\"Building office\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_829_21422)\">\\n<g filter=\"url(#filter0_bd_829_21422)\">\\n<circle cx=\"14.5\" cy=\"12.5\" r=\"8.5\" fill=\"url(#paint0_linear_829_21422)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_829_21422)\">\\n<circle cx=\"42.75\" cy=\"40.75\" r=\"4.75\" fill=\"url(#paint1_linear_829_21422)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_829_21422)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.8794 17.6016H34.7534C34.422 17.6016 34.1534 17.8702 34.1534 18.2016V43.0016C34.1534 43.333 34.422 43.6016 34.7534 43.6016H39.8794C41.8994 43.6016 43.5434 41.9596 43.5434 39.9416V21.2616C43.5434 19.2436 41.8994 17.6016 39.8794 17.6016Z\" fill=\"url(#paint2_linear_829_21422)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.2358 21.4956C23.1418 21.5136 23.0478 21.5216 22.9538 21.5216C22.2478 21.5216 21.6178 21.0216 21.4818 20.3016C21.3258 19.4896 21.8598 18.6936 22.6738 18.5376C23.4758 18.3816 24.2698 18.9056 24.4258 19.7216L24.4298 19.7416C24.5838 20.5556 24.0498 21.3396 23.2358 21.4956ZM21.4858 27.6356C21.3218 26.8236 21.8478 26.0236 22.6598 25.8616C23.4758 25.6996 24.2598 26.2156 24.4218 27.0276L24.4258 27.0476C24.5898 27.8596 24.0618 28.6496 23.2498 28.8116C23.1518 28.8316 23.0518 28.8416 22.9538 28.8416C22.2538 28.8416 21.6278 28.3476 21.4858 27.6356ZM23.2358 35.9956C23.1418 36.0136 23.0478 36.0216 22.9538 36.0216C22.2478 36.0216 21.6178 35.5216 21.4818 34.8016C21.3258 33.9896 21.8598 33.1936 22.6738 33.0376C23.4758 32.8756 24.2698 33.4076 24.4258 34.2216L24.4298 34.2416C24.5838 35.0556 24.0498 35.8396 23.2358 35.9956ZM15.2319 21.4956C15.1379 21.5136 15.0439 21.5216 14.9499 21.5216C14.2439 21.5216 13.6139 21.0216 13.4779 20.3016C13.3219 19.4896 13.8559 18.6936 14.6699 18.5376C15.4719 18.3816 16.2659 18.9056 16.4219 19.7216L16.4259 19.7416C16.5799 20.5556 16.0459 21.3396 15.2319 21.4956ZM13.4819 27.6356C13.3179 26.8236 13.8439 26.0236 14.6559 25.8616C15.4659 25.6996 16.2559 26.2156 16.4179 27.0276L16.4219 27.0476C16.5859 27.8596 16.0579 28.6496 15.2459 28.8116C15.1479 28.8316 15.0479 28.8416 14.9499 28.8416C14.2499 28.8416 13.6239 28.3476 13.4819 27.6356ZM15.2319 35.9956C15.1379 36.0136 15.0439 36.0216 14.9499 36.0216C14.2439 36.0216 13.6139 35.5216 13.4779 34.8016C13.3219 33.9896 13.8559 33.1936 14.6699 33.0376C15.4719 32.8756 16.2659 33.4076 16.4219 34.2216L16.4259 34.2416C16.5799 35.0556 16.0459 35.8396 15.2319 35.9956ZM31.5538 17.616C31.5538 17.6106 31.5518 17.6054 31.5478 17.6016C31.544 17.5977 31.5418 17.5925 31.5418 17.5871V9.26156C31.5418 7.24356 29.8998 5.60156 27.8798 5.60156H21.2058C19.1859 5.60156 17.5419 7.24356 17.5419 9.26156V10.8016C17.5419 11.1329 17.2733 11.4016 16.9419 11.4016H9.99989C7.97989 11.4016 6.33789 13.0436 6.33789 15.0616V39.9416C6.33789 41.9596 7.97989 43.6016 9.99989 43.6016H30.9538C31.2852 43.6016 31.5538 43.333 31.5538 43.0016V17.616Z\" fill=\"url(#paint3_linear_829_21422)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M14.5581 25.3713C15.6337 25.1563 16.691 25.8418 16.9082 26.9296C16.9082 26.9296 16.9082 26.9297 16.9082 26.9298L16.912 26.9486L14.5581 25.3713ZM14.5581 25.3713C13.4717 25.588 12.774 26.6544 12.9917 27.734M14.5581 25.3713L12.9917 27.734M12.9917 27.734C13.1814 28.6838 14.016 29.3416 14.9499 29.3416C15.0808 29.3416 15.2135 29.3284 15.3437 29.3019C16.4257 29.0861 17.1305 28.0333 16.9122 26.9496L12.9917 27.734ZM23.3298 21.9867L23.3299 21.9867C24.4142 21.7789 25.1264 20.734 24.9211 19.6486L24.9211 19.6486L24.9201 19.6435L24.9169 19.6277C24.9168 19.627 24.9166 19.6262 24.9165 19.6255C24.7069 18.5357 23.6485 17.8394 22.5797 18.0465C21.4922 18.2549 20.7835 19.3146 20.9906 20.3952C21.1726 21.3563 22.0132 22.0216 22.9538 22.0216C23.0763 22.0216 23.202 22.0112 23.3298 21.9867ZM22.5624 25.3712L22.562 25.3713C21.4756 25.588 20.7779 26.6544 20.9956 27.734C21.1853 28.6838 22.0199 29.3416 22.9538 29.3416C23.0847 29.3416 23.2174 29.3284 23.3476 29.3019C24.4299 29.086 25.1349 28.0327 24.9159 26.9486L24.9121 26.9298C24.6952 25.8424 23.6444 25.1564 22.5624 25.3712ZM23.3298 36.4867L23.3299 36.4867C24.4142 36.2789 25.1264 35.234 24.9211 34.1487L24.9211 34.1487L24.9201 34.1436L24.9169 34.1275C24.9167 34.1268 24.9166 34.1262 24.9165 34.1256C24.7078 33.0422 23.6523 32.3313 22.5774 32.547C21.4912 32.7564 20.7836 33.8153 20.9906 34.8952C21.1726 35.8563 22.0132 36.5216 22.9538 36.5216C23.0763 36.5216 23.202 36.5112 23.3298 36.4867ZM15.3259 21.9867L15.326 21.9867C16.4103 21.7789 17.1225 20.734 16.9172 19.6486L16.9172 19.6486L16.9162 19.6435L16.9126 19.6254C16.7029 18.5356 15.6445 17.8394 14.5758 18.0465C13.4883 18.2549 12.7796 19.3146 12.9867 20.3952C13.1686 21.3563 14.0092 22.0216 14.9499 22.0216C15.0724 22.0216 15.1981 22.0112 15.3259 21.9867ZM15.3259 36.4867L15.326 36.4867C16.4103 36.2789 17.1225 35.234 16.9172 34.1487L16.9172 34.1487L16.9162 34.1436L16.913 34.1275C16.9128 34.1268 16.9127 34.126 16.9125 34.1253C16.7037 33.0421 15.6483 32.3314 14.5735 32.547C13.4873 32.7564 12.7797 33.8153 12.9867 34.8952C13.1686 35.8563 14.0092 36.5216 14.9499 36.5216C15.0724 36.5216 15.1981 36.5112 15.3259 36.4867ZM31.0418 17.5871C31.0418 17.625 31.0459 17.6623 31.0538 17.6983V43.0016C31.0538 43.0569 31.0091 43.1016 30.9538 43.1016H9.99989C8.25586 43.1016 6.83789 41.6833 6.83789 39.9416V15.0616C6.83789 13.3199 8.25586 11.9016 9.99989 11.9016H16.9419C17.5494 11.9016 18.0419 11.4091 18.0419 10.8016V9.26156C18.0419 7.52023 19.4615 6.10156 21.2058 6.10156H27.8798C29.6238 6.10156 31.0418 7.51988 31.0418 9.26156V17.5871ZM34.7534 18.1016H39.8794C41.6238 18.1016 43.0434 19.5202 43.0434 21.2616V39.9416C43.0434 41.6829 41.6238 43.1016 39.8794 43.1016H34.7534C34.6982 43.1016 34.6534 43.0569 34.6534 43.0016V18.2016C34.6534 18.1463 34.6982 18.1016 34.7534 18.1016Z\" stroke=\"url(#paint4_linear_829_21422)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_829_21422\" x=\"-11\" y=\"-13\" width=\"51\" height=\"51\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21422\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21422\" result=\"effect2_dropShadow_829_21422\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21422\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_829_21422\" x=\"21\" y=\"19\" width=\"43.5\" height=\"43.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21422\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21422\" result=\"effect2_dropShadow_829_21422\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21422\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_829_21422\" x=\"-4.66211\" y=\"-5.39844\" width=\"59.2051\" height=\"60\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21422\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21422\" result=\"effect2_dropShadow_829_21422\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21422\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21422\" x1=\"14.5\" y1=\"4\" x2=\"14.5\" y2=\"21\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_829_21422\" x1=\"42.75\" y1=\"36\" x2=\"42.75\" y2=\"45.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_829_21422\" x1=\"12.4283\" y1=\"11.0629\" x2=\"26.2938\" y2=\"43.0144\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_829_21422\" x1=\"12.4283\" y1=\"11.0629\" x2=\"26.2938\" y2=\"43.0144\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_829_21422\" x1=\"24.9407\" y1=\"5.60156\" x2=\"24.9407\" y2=\"43.6016\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_829_21422\">\\n<rect width=\"48\" height=\"48\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5qpfnz\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yq6va6\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"Construction\"})}),className:\"framer-155ihgs\",\"data-framer-name\":\"Construction\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e5g0ib\",\"data-framer-name\":\"Group 48096878\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-atndm4\",\"data-framer-name\":\"Group 48096873\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21430)\">\\n<path d=\"M43.6856 16.1382C47.1679 9.37899 56.8321 9.37899 60.3144 16.1382C62.4069 20.1997 67.1274 22.155 71.479 20.7627C78.7208 18.4456 85.5544 25.2792 83.2373 32.521C81.845 36.8725 83.8003 41.5931 87.8618 43.6856C94.621 47.1679 94.621 56.8321 87.8618 60.3144C83.8003 62.4069 81.845 67.1274 83.2373 71.479C85.5544 78.7208 78.7208 85.5544 71.479 83.2373C67.1274 81.845 62.4069 83.8003 60.3144 87.8618C56.8321 94.621 47.1679 94.621 43.6856 87.8618C41.5931 83.8003 36.8725 81.845 32.521 83.2373C25.2792 85.5544 18.4456 78.7208 20.7627 71.479C22.155 67.1274 20.1997 62.4069 16.1382 60.3144C9.37899 56.8321 9.37899 47.1679 16.1382 43.6856C20.1997 41.5931 22.155 36.8725 20.7627 32.521C18.4456 25.2792 25.2792 18.4456 32.521 20.7627C36.8725 22.155 41.5931 20.1997 43.6856 16.1382Z\" fill=\"url(#paint0_linear_829_21430)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21430\" x=\"7.06836\" y=\"7.06836\" width=\"89.8633\" height=\"89.8633\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21430\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21430\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21430\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"10%\"})}),className:\"framer-1pql8ia\",\"data-framer-name\":\"8.6%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wp88qs\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jc5uhq\",\"data-framer-name\":\"Delivery Box 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_829_21393)\">\\n<g filter=\"url(#filter0_bd_829_21393)\">\\n<circle cx=\"28.75\" cy=\"42.75\" r=\"4.75\" fill=\"url(#paint0_linear_829_21393)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_829_21393)\">\\n<circle cx=\"14.5\" cy=\"12.5\" r=\"8.5\" fill=\"url(#paint1_linear_829_21393)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_829_21393)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.39 22.5519C25.576 22.6595 25.8054 22.6595 25.9914 22.5519L30.9942 19.6553C31.3888 19.4269 31.3946 18.8593 31.0046 18.623L16.6259 9.90764C16.4388 9.7943 16.205 9.79166 16.0155 9.90078L11.4007 12.5579C11.1088 12.7289 10.8404 12.9285 10.5905 13.1474C10.3013 13.4008 10.3711 13.8551 10.7039 14.0478L25.39 22.5519Z\" fill=\"url(#paint2_linear_829_21393)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.5264 17.2489C34.714 17.3625 34.9484 17.3648 35.1382 17.2549L40.6856 14.0411C41.0184 13.8483 41.088 13.3943 40.7984 13.1414C40.5494 12.9241 40.2816 12.7257 39.9906 12.5552L28.6366 6.01716C26.8246 4.95716 24.5706 4.95916 22.7646 6.01516L20.1708 7.50844C19.775 7.73624 19.7687 8.30492 20.159 8.54156L34.5264 17.2489Z\" fill=\"url(#paint3_linear_829_21393)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.6348 19.8548C36.4496 19.9621 36.3356 20.1601 36.3356 20.3741V25.1563C36.3356 25.9843 35.6636 26.6563 34.8356 26.6563C34.0076 26.6563 33.3356 25.9843 33.3356 25.1563V22.8071C33.3356 22.3449 32.8348 22.0561 32.4348 22.2879L27.5048 25.1429C27.3196 25.2501 27.2056 25.4481 27.2056 25.6621V42.2009C27.2056 42.5951 27.5808 42.8825 27.9446 42.7305C28.1792 42.6323 28.4088 42.5183 28.6316 42.3883L39.9956 35.8443C41.8016 34.7863 42.9236 32.8403 42.9236 30.7603V17.6422C42.9236 17.4633 42.9116 17.286 42.891 17.1103C42.8438 16.7107 42.3948 16.5194 42.0466 16.721L36.6348 19.8548Z\" fill=\"url(#paint4_linear_829_21393)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.2046 25.6777C24.2046 25.4635 24.0906 25.2657 23.9052 25.1585L9.35131 16.7314C9.00265 16.5295 8.55257 16.7217 8.50605 17.1219C8.48611 17.2934 8.47461 17.4667 8.47461 17.6417V30.7617C8.47461 32.8397 9.59661 34.7877 11.4086 35.8477L22.7606 42.3857C22.9896 42.5187 23.2256 42.6347 23.4668 42.7339C23.8308 42.8837 24.2046 42.5963 24.2046 42.2027V25.6777Z\" fill=\"url(#paint5_linear_829_21393)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M30.7437 19.2226L30.7437 19.2226C30.8096 19.1844 30.8104 19.0899 30.7455 19.0506L30.7454 19.0505L16.3667 10.3352C16.3667 10.3352 16.3667 10.3352 16.3667 10.3352C16.3355 10.3163 16.2965 10.3159 16.265 10.3341C16.265 10.3341 16.265 10.3341 16.265 10.3341L11.6519 12.9902C11.3917 13.1428 11.1493 13.3226 10.9201 13.5235L10.5942 13.1515L10.92 13.5235C10.9124 13.5302 10.911 13.5342 10.9105 13.5356L10.9105 13.5357C10.9095 13.5382 10.9082 13.544 10.9094 13.5534C10.9121 13.573 10.9249 13.598 10.9544 13.6151L25.6404 22.1191L30.7437 19.2226ZM30.7437 19.2226L25.741 22.1191M30.7437 19.2226L25.741 22.1191M40.435 13.6084L40.435 13.6084C40.4647 13.5912 40.4773 13.5663 40.4799 13.547C40.4811 13.5378 40.4798 13.5322 40.4789 13.5298L40.435 13.6084ZM40.435 13.6084L34.8876 16.8222M40.435 13.6084L34.8876 16.8222M28.3871 6.45045L28.3841 6.44874C26.7281 5.47998 24.6671 5.48193 23.017 6.44679L23.0141 6.44849L23.0141 6.44848L20.4203 7.94176L20.4202 7.94178C20.3542 7.97978 20.3532 8.07452 20.4182 8.11395C20.4182 8.11396 20.4182 8.11398 20.4182 8.11399L34.7855 16.8212L28.3871 6.45045ZM28.3871 6.45045L39.7378 12.9865C39.7383 12.9868 39.7388 12.9871 39.7393 12.9874C39.9992 13.1399 40.2413 13.3188 40.4696 13.5181L28.3871 6.45045ZM25.741 22.1191L25.7409 22.1192C25.7099 22.137 25.6716 22.137 25.6406 22.1192L25.741 22.1191ZM34.8876 16.8222C34.8559 16.8406 34.8169 16.8402 34.7856 16.8213L34.8876 16.8222ZM32.6854 22.7205L32.6855 22.7205C32.752 22.6819 32.8356 22.7299 32.8356 22.8071V25.1563C32.8356 26.2604 33.7315 27.1563 34.8356 27.1563C35.9398 27.1563 36.8356 26.2604 36.8356 25.1563V20.3741C36.8356 20.3383 36.8547 20.3053 36.8854 20.2875C36.8854 20.2875 36.8854 20.2875 36.8854 20.2875L42.2971 17.1537C42.3282 17.1357 42.3578 17.1377 42.3769 17.1463C42.3859 17.1504 42.3897 17.1546 42.3907 17.1559C42.3907 17.156 42.3932 17.1584 42.3944 17.1685C42.4131 17.328 42.4236 17.4856 42.4236 17.6422V30.7603C42.4236 32.6605 41.3978 34.4426 39.7443 35.412C39.7438 35.4123 39.7434 35.4125 39.7429 35.4128L28.3821 41.955L28.3796 41.9564C28.1761 42.0752 27.9662 42.1794 27.7515 42.2692C27.7429 42.2728 27.741 42.2715 27.743 42.2718C27.7435 42.2719 27.7403 42.2716 27.7343 42.2673C27.7216 42.2579 27.7056 42.2363 27.7056 42.2009V25.6621C27.7056 25.6262 27.7248 25.5933 27.7553 25.5756L27.7554 25.5755L32.6854 22.7205ZM23.6547 25.5912L23.6549 25.5913C23.6856 25.609 23.7046 25.6418 23.7046 25.6777V42.2027C23.7046 42.2382 23.6886 42.2599 23.6757 42.2694C23.6727 42.2716 23.6703 42.2729 23.6688 42.2735C23.6681 42.2738 23.6676 42.2739 23.6672 42.274C23.6668 42.2742 23.6666 42.2742 23.6666 42.2742L23.6665 42.2742L23.6659 42.2742C23.6652 42.2741 23.6624 42.2737 23.6571 42.2715L23.657 42.2714C23.4365 42.1808 23.2209 42.0748 23.0117 41.9533L23.0101 41.9524L11.6611 35.4161C11.6606 35.4158 11.66 35.4155 11.6595 35.4152C10.0002 34.4437 8.97461 32.6597 8.97461 30.7617V17.6417C8.97461 17.4885 8.98467 17.3348 9.0027 17.1797L8.5062 17.1219L9.0027 17.1796C9.00387 17.1696 9.00618 17.167 9.00646 17.1667L9.00648 17.1666C9.00751 17.1653 9.01134 17.161 9.02049 17.1569C9.03996 17.1481 9.06978 17.1462 9.10077 17.1641L23.6547 25.5912Z\" stroke=\"url(#paint6_linear_829_21393)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_829_21393\" x=\"7\" y=\"21\" width=\"43.5\" height=\"43.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21393\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21393\" result=\"effect2_dropShadow_829_21393\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21393\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_829_21393\" x=\"-11\" y=\"-13\" width=\"51\" height=\"51\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21393\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21393\" result=\"effect2_dropShadow_829_21393\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21393\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_829_21393\" x=\"-2.52539\" y=\"-5.77734\" width=\"56.4492\" height=\"59.5518\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21393\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21393\" result=\"effect2_dropShadow_829_21393\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21393\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21393\" x1=\"28.75\" y1=\"38\" x2=\"28.75\" y2=\"47.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_829_21393\" x1=\"14.5\" y1=\"4\" x2=\"14.5\" y2=\"21\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_829_21393\" x1=\"14.1138\" y1=\"10.6195\" x2=\"28.4221\" y2=\"41.5131\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_829_21393\" x1=\"14.1138\" y1=\"10.6195\" x2=\"28.4221\" y2=\"41.5131\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_829_21393\" x1=\"14.1138\" y1=\"10.6195\" x2=\"28.4221\" y2=\"41.5131\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_829_21393\" x1=\"14.1138\" y1=\"10.6195\" x2=\"28.4221\" y2=\"41.5131\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_829_21393\" x1=\"25.6991\" y1=\"5.22266\" x2=\"25.6991\" y2=\"42.7742\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_829_21393\">\\n<rect width=\"48\" height=\"48\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-preslm\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7k5lh\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"Food Production and Distribution\"})}),className:\"framer-3e06ei\",\"data-framer-name\":\"Trade\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kvqj39\",\"data-framer-name\":\"Group 48096881\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mralsb\",\"data-framer-name\":\"Group 48096873\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21466)\">\\n<path d=\"M43.6856 16.1382C47.1679 9.37899 56.8321 9.37899 60.3144 16.1382C62.4069 20.1997 67.1274 22.155 71.479 20.7627C78.7208 18.4456 85.5544 25.2792 83.2373 32.521C81.845 36.8725 83.8003 41.5931 87.8618 43.6856C94.621 47.1679 94.621 56.8321 87.8618 60.3144C83.8003 62.4069 81.845 67.1274 83.2373 71.479C85.5544 78.7208 78.7208 85.5544 71.479 83.2373C67.1274 81.845 62.4069 83.8003 60.3144 87.8618C56.8321 94.621 47.1679 94.621 43.6856 87.8618C41.5931 83.8003 36.8725 81.845 32.521 83.2373C25.2792 85.5544 18.4456 78.7208 20.7627 71.479C22.155 67.1274 20.1997 62.4069 16.1382 60.3144C9.37899 56.8321 9.37899 47.1679 16.1382 43.6856C20.1997 41.5931 22.155 36.8725 20.7627 32.521C18.4456 25.2792 25.2792 18.4456 32.521 20.7627C36.8725 22.155 41.5931 20.1997 43.6856 16.1382Z\" fill=\"url(#paint0_linear_829_21466)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21466\" x=\"7.06836\" y=\"7.06836\" width=\"89.8633\" height=\"89.8633\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21466\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21466\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21466\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"5%\"})}),className:\"framer-27ghj9\",\"data-framer-name\":\"7%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-in261l\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1v18l24\",\"data-framer-name\":\"Car\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_829_21434)\">\\n<g filter=\"url(#filter0_bd_829_21434)\">\\n<circle cx=\"32.5\" cy=\"17.5\" r=\"7.5\" fill=\"url(#paint0_linear_829_21434)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_829_21434)\">\\n<circle cx=\"5\" cy=\"36\" r=\"2\" fill=\"url(#paint1_linear_829_21434)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_829_21434)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.76 36.9986C34.44 36.9986 33.34 35.9186 33.34 34.5786C33.34 33.2386 34.44 32.1586 35.76 32.1586C37.1 32.1586 38.2 33.2386 38.2 34.5786C38.2 35.9186 37.1 36.9986 35.76 36.9986ZM26.96 22.0586V15.7786H31.68C31.84 15.7786 31.96 15.7986 32.1 15.8786C32.22 15.9586 32.32 16.0586 32.38 16.1786L35.52 22.0586H26.96ZM14 36.9986C12.66 36.9986 11.58 35.9186 11.58 34.5786C11.58 33.2386 12.66 32.1586 14 32.1586C15.34 32.1586 16.42 33.2386 16.42 34.5786C16.42 35.9186 15.34 36.9986 14 36.9986ZM44.32 23.7586C43.24 22.6786 41.82 22.0786 40.28 22.0586H38.92L35.02 14.7586C34.7 14.1586 34.22 13.6586 33.64 13.3186C33.06 12.9586 32.4 12.7786 31.7 12.7786H26.76C26.02 12.7786 25.3 13.0586 24.78 13.5986C24.26 14.1186 23.96 14.8186 23.96 15.5586L23.92 27.8786C23.88 29.9386 22.2 30.2986 21.56 30.2386L4.76 26.0986L4.78 26.1186C4.68 26.0986 4.6 26.0586 4.5 26.0586C3.68 26.0586 3 26.7386 3 27.5586V31.0586C3 32.5786 3.62 34.0586 4.68 35.0986C5.76 36.1986 7.2 36.7786 8.72 36.7786H9.2C9.54 37.6186 10.14 38.3586 10.88 38.9186C11.78 39.5786 12.9 39.9386 14.04 39.9386C15.18 39.9386 16.3 39.5786 17.2 38.9186C18.12 38.2386 18.78 37.2786 19.1 36.2186C19.12 36.1586 19.14 36.0986 19.14 36.0186H30.7C30.7 36.0386 30.72 36.0786 30.72 36.0986C31.02 37.1986 31.7 38.1786 32.62 38.8786C33.52 39.5586 34.66 39.9386 35.8 39.9386C36.94 39.9386 38.08 39.5586 39 38.8786C39.74 38.3186 40.3 37.5786 40.64 36.7586C42.04 36.6786 43.32 36.0986 44.32 35.0986C45.4 34.0186 46 32.5986 46 31.0586V27.7986C46 26.2786 45.4 24.8386 44.32 23.7586Z\" fill=\"url(#paint2_linear_829_21434)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16 24.2086L20.54 28.2086C20.64 28.2486 20.76 28.2486 20.88 28.2486C21.22 28.2486 21.54 28.1486 21.8 27.9266C22.16 27.6486 22.38 27.2086 22.38 26.7486V12.0166C22.38 11.4886 22.81 11.0586 23.338 11.0586H27.42C28.24 11.0586 28.92 10.3986 28.92 9.55859C28.92 8.73859 28.24 8.05859 27.42 8.05859H22.18C21.44 8.05859 20.72 8.35859 20.2 8.87859C19.68 9.41859 19.38 10.1186 19.38 10.8586V11.1786H6.38C5.88 11.1986 5.48 11.2586 5.08 11.4386C4.68 11.5986 4.3 11.8386 3.98 12.1586C3.66 12.4786 3.42 12.8586 3.24 13.2586C3.08 13.6786 3 14.1186 3 14.5386V22.7486C3 23.4486 3.48 24.0486 4.16 24.2086Z\" fill=\"url(#paint3_linear_829_21434)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M26.46 22.0586V22.5586H26.96H35.52H36.3538L35.9611 21.8231L32.8237 15.948C32.7142 15.7327 32.5455 15.5747 32.3773 15.4625L32.363 15.453L32.3481 15.4444C32.1099 15.3083 31.8966 15.2786 31.68 15.2786H26.96H26.46V15.7786V22.0586ZM4.99577 26.6717L21.4404 30.7241L21.4764 30.7329L21.5133 30.7364C21.9324 30.7757 22.631 30.6812 23.2442 30.2684C23.8882 29.8348 24.3968 29.0766 24.4199 27.8883L24.42 27.8883L24.42 27.8802L24.46 15.5602V15.5586C24.46 14.9553 24.7043 14.3813 25.1336 13.9521L25.1336 13.9522L25.1402 13.9454C25.5584 13.5111 26.1446 13.2786 26.76 13.2786H31.7C32.3122 13.2786 32.8799 13.4353 33.3763 13.7434L33.3762 13.7435L33.3871 13.7499C33.8869 14.0429 34.302 14.4748 34.5788 14.9938L34.579 14.9942L38.479 22.2942L38.6202 22.5586H38.92H40.2767C41.6855 22.5777 42.9796 23.1253 43.9664 24.1121C44.9535 25.0992 45.5 26.4123 45.5 27.7986V31.0586C45.5 32.4639 44.9542 33.7573 43.9664 34.745C43.0517 35.6597 41.8868 36.1865 40.6115 36.2594L40.2983 36.2773L40.1781 36.5671C39.8719 37.3057 39.3673 37.973 38.7005 38.4782C37.8658 39.0944 36.8306 39.4386 35.8 39.4386C34.7679 39.4386 33.7343 39.0936 32.9223 38.4803C32.093 37.8492 31.483 36.9712 31.2097 35.9937C31.2064 35.9767 31.2029 35.9623 31.2 35.9517V35.5186H30.7H19.14H18.64V36.0149C18.6398 36.0158 18.6395 36.017 18.639 36.0186C18.6385 36.0207 18.6377 36.0234 18.6366 36.0269C18.634 36.0354 18.631 36.0446 18.6257 36.0605L18.6234 36.0673L18.6213 36.0741C18.3319 37.0329 17.7346 37.9015 16.9035 38.516C16.0919 39.1109 15.0765 39.4386 14.04 39.4386C13.0045 39.4386 11.9899 39.1115 11.1787 38.5176C10.5031 38.0056 9.96516 37.3363 9.66347 36.591L9.53702 36.2786H9.2H8.72C7.32974 36.2786 6.01968 35.7494 5.03678 34.7483L5.03684 34.7482L5.03017 34.7417C4.06738 33.7971 3.5 32.4463 3.5 31.0586V27.5586C3.5 27.0181 3.95056 26.5642 4.48998 26.5586C4.49331 26.5594 4.49857 26.5607 4.50618 26.5629L4.53319 26.5706L4.57162 26.5818C4.60055 26.59 4.63851 26.6002 4.68194 26.6089L4.99577 26.6717ZM4.27861 23.7229L4.27862 23.7228L4.27452 23.7219C3.81829 23.6145 3.5 23.2144 3.5 22.7486V14.5386C3.5 14.1852 3.56673 13.8105 3.70207 13.4503C3.862 13.0983 4.06853 12.7772 4.33355 12.5121C4.60212 12.2436 4.92372 12.0396 5.2657 11.9028L5.27553 11.8989L5.28518 11.8946C5.59981 11.753 5.925 11.6978 6.39015 11.6786H19.38H19.88V11.1786V10.8586C19.88 10.2584 20.1223 9.68176 20.5569 9.22883C20.9831 8.80437 21.5746 8.55859 22.18 8.55859H27.42C27.9639 8.55859 28.42 9.01474 28.42 9.55859C28.42 10.1181 27.9682 10.5586 27.42 10.5586H23.338C22.5339 10.5586 21.88 11.2125 21.88 12.0166V26.7486C21.88 27.0518 21.7333 27.3464 21.4944 27.5309L21.4847 27.5384L21.4753 27.5463C21.3191 27.6798 21.1196 27.7486 20.88 27.7486C20.8157 27.7486 20.7779 27.7483 20.7458 27.7455C20.7315 27.7442 20.7235 27.7428 20.7203 27.7422L20.6929 27.7312L20.6586 27.7229L4.27861 23.7229ZM32.84 34.5786C32.84 36.1974 34.1665 37.4986 35.76 37.4986C37.3708 37.4986 38.7 36.2001 38.7 34.5786C38.7 32.9571 37.3708 31.6586 35.76 31.6586C34.1665 31.6586 32.84 32.9598 32.84 34.5786ZM11.08 34.5786C11.08 36.1947 12.3839 37.4986 14 37.4986C15.6161 37.4986 16.92 36.1947 16.92 34.5786C16.92 32.9625 15.6161 31.6586 14 31.6586C12.3839 31.6586 11.08 32.9625 11.08 34.5786Z\" stroke=\"url(#paint4_linear_829_21434)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_829_21434\" x=\"8\" y=\"-7\" width=\"49\" height=\"49\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21434\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21434\" result=\"effect2_dropShadow_829_21434\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21434\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_829_21434\" x=\"-14\" y=\"17\" width=\"38\" height=\"38\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21434\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21434\" result=\"effect2_dropShadow_829_21434\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21434\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_829_21434\" x=\"-8\" y=\"-2.94141\" width=\"65\" height=\"53.8799\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21434\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21434\" result=\"effect2_dropShadow_829_21434\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21434\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21434\" x1=\"32.5\" y1=\"10\" x2=\"32.5\" y2=\"25\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_829_21434\" x1=\"5\" y1=\"34\" x2=\"5\" y2=\"38\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_829_21434\" x1=\"10.0389\" y1=\"12.6403\" x2=\"19.1672\" y2=\"41.6185\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_829_21434\" x1=\"10.0389\" y1=\"12.6403\" x2=\"19.1672\" y2=\"41.6185\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_829_21434\" x1=\"24.5\" y1=\"8.05859\" x2=\"24.5\" y2=\"39.9386\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_829_21434\">\\n<rect width=\"48\" height=\"48\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16rykn6\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cwkpj5\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"Pharmaceuticals and Medical\"})}),className:\"framer-pbgoeo\",\"data-framer-name\":\"Logistics\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjbq29\",\"data-framer-name\":\"Group 48096875\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1o44bsj\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21401)\">\\n<path d=\"M43.6856 16.1382C47.1679 9.37899 56.8321 9.37899 60.3144 16.1382C62.4069 20.1997 67.1274 22.155 71.479 20.7627C78.7208 18.4456 85.5544 25.2792 83.2373 32.521C81.845 36.8725 83.8003 41.5931 87.8618 43.6856C94.621 47.1679 94.621 56.8321 87.8618 60.3144C83.8003 62.4069 81.845 67.1274 83.2373 71.479C85.5544 78.7208 78.7208 85.5544 71.479 83.2373C67.1274 81.845 62.4069 83.8003 60.3144 87.8618C56.8321 94.621 47.1679 94.621 43.6856 87.8618C41.5931 83.8003 36.8725 81.845 32.521 83.2373C25.2792 85.5544 18.4456 78.7208 20.7627 71.479C22.155 67.1274 20.1997 62.4069 16.1382 60.3144C9.37899 56.8321 9.37899 47.1679 16.1382 43.6856C20.1997 41.5931 22.155 36.8725 20.7627 32.521C18.4456 25.2792 25.2792 18.4456 32.521 20.7627C36.8725 22.155 41.5931 20.1997 43.6856 16.1382Z\" fill=\"url(#paint0_linear_829_21401)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21401\" x=\"7.06836\" y=\"7.06836\" width=\"89.8633\" height=\"89.8633\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21401\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21401\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21401\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\" 5%\"})}),className:\"framer-8j1gok\",\"data-framer-name\":\"14.4%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-182kwq9\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ti0bya\",\"data-framer-name\":\"Category\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_829_21487)\">\\n<g filter=\"url(#filter0_bd_829_21487)\">\\n<circle cx=\"7\" cy=\"40\" r=\"6\" fill=\"url(#paint0_linear_829_21487)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_829_21487)\">\\n<circle cx=\"42\" cy=\"8\" r=\"6\" fill=\"url(#paint1_linear_829_21487)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_829_21487)\">\\n<path d=\"M15.84 26.9394C18.66 26.9394 20.92 29.2214 20.92 32.0614V38.8794C20.92 41.6994 18.66 43.9994 15.84 43.9994H9.08C6.28 43.9994 4 41.6994 4 38.8794V32.0614C4 29.2214 6.28 26.9394 9.08 26.9394H15.84ZM38.9202 26.9394C41.7202 26.9394 44.0002 29.2214 44.0002 32.0614V38.8794C44.0002 41.6994 41.7202 43.9994 38.9202 43.9994H32.1602C29.3402 43.9994 27.0802 41.6994 27.0802 38.8794V32.0614C27.0802 29.2214 29.3402 26.9394 32.1602 26.9394H38.9202ZM15.84 4C18.66 4 20.92 6.3 20.92 9.122V15.94C20.92 18.78 18.66 21.06 15.84 21.06H9.08C6.28 21.06 4 18.78 4 15.94V9.122C4 6.3 6.28 4 9.08 4H15.84ZM38.9202 4C41.7202 4 44.0002 6.3 44.0002 9.122V15.94C44.0002 18.78 41.7202 21.06 38.9202 21.06H32.1602C29.3402 21.06 27.0802 18.78 27.0802 15.94V9.122C27.0802 6.3 29.3402 4 32.1602 4H38.9202Z\" fill=\"url(#paint2_linear_829_21487)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M15.84 27.4394C18.3798 27.4394 20.42 29.4934 20.42 32.0614V38.8794C20.42 41.4284 18.3788 43.4994 15.84 43.4994H9.08C6.55996 43.4994 4.5 41.4271 4.5 38.8794V32.0614C4.5 29.4947 6.55895 27.4394 9.08 27.4394H15.84ZM38.9202 27.4394C41.4412 27.4394 43.5002 29.4947 43.5002 32.0614V38.8794C43.5002 41.4271 41.4402 43.4994 38.9202 43.4994H32.1602C29.6214 43.4994 27.5802 41.4284 27.5802 38.8794V32.0614C27.5802 29.4934 29.6204 27.4394 32.1602 27.4394H38.9202ZM15.84 4.5C18.3786 4.5 20.42 6.57089 20.42 9.122V15.94C20.42 18.5077 18.38 20.56 15.84 20.56H9.08C6.55869 20.56 4.5 18.5064 4.5 15.94V9.122C4.5 6.57218 6.56009 4.5 9.08 4.5H15.84ZM38.9202 4.5C41.4401 4.5 43.5002 6.57218 43.5002 9.122V15.94C43.5002 18.5064 41.4415 20.56 38.9202 20.56H32.1602C29.6202 20.56 27.5802 18.5077 27.5802 15.94V9.122C27.5802 6.57089 29.6216 4.5 32.1602 4.5H38.9202Z\" stroke=\"url(#paint3_linear_829_21487)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_829_21487\" x=\"-16\" y=\"17\" width=\"46\" height=\"46\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21487\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21487\" result=\"effect2_dropShadow_829_21487\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21487\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_829_21487\" x=\"19\" y=\"-15\" width=\"46\" height=\"46\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21487\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21487\" result=\"effect2_dropShadow_829_21487\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21487\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_829_21487\" x=\"-7\" y=\"-7\" width=\"62\" height=\"61.999\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21487\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_829_21487\" result=\"effect2_dropShadow_829_21487\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_829_21487\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21487\" x1=\"7\" y1=\"34\" x2=\"7\" y2=\"46\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_829_21487\" x1=\"42\" y1=\"2\" x2=\"42\" y2=\"14\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_829_21487\" x1=\"10.5479\" y1=\"9.74865\" x2=\"24.9319\" y2=\"43.6035\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_829_21487\" x1=\"24.0001\" y1=\"4\" x2=\"24.0001\" y2=\"43.9994\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_829_21487\">\\n<rect width=\"48\" height=\"48\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-goavfy\",\"data-framer-name\":\"Line 1\",fill:'var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, rgb(39, 39, 41)) /* {\"name\":\"Stroke\"} */',intrinsicHeight:84,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"84\" viewBox=\"-1 -1 3 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499996\" y2=\"82\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gxp211\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-s0d4jp\",\"data-styles-preset\":\"F3iAbWiyP\",style:{\"--framer-text-color\":\"var(--token-28ebb49c-b680-4b23-9124-bbc0f24eda40, rgb(109, 104, 97))\"},children:\"Other\"})}),className:\"framer-1sqier6\",\"data-framer-name\":\"Other\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a3pzmw\",\"data-framer-name\":\"Group 48096884\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11zs9ba\",\"data-framer-name\":\"Group 48096873\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"104\" viewBox=\"0 0 104 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_829_21499)\">\\n<path d=\"M43.6856 16.1382C47.1679 9.37899 56.8321 9.37899 60.3144 16.1382C62.4069 20.1997 67.1274 22.155 71.479 20.7627C78.7208 18.4456 85.5544 25.2792 83.2373 32.521C81.845 36.8725 83.8003 41.5931 87.8618 43.6856C94.621 47.1679 94.621 56.8321 87.8618 60.3144C83.8003 62.4069 81.845 67.1274 83.2373 71.479C85.5544 78.7208 78.7208 85.5544 71.479 83.2373C67.1274 81.845 62.4069 83.8003 60.3144 87.8618C56.8321 94.621 47.1679 94.621 43.6856 87.8618C41.5931 83.8003 36.8725 81.845 32.521 83.2373C25.2792 85.5544 18.4456 78.7208 20.7627 71.479C22.155 67.1274 20.1997 62.4069 16.1382 60.3144C9.37899 56.8321 9.37899 47.1679 16.1382 43.6856C20.1997 41.5931 22.155 36.8725 20.7627 32.521C18.4456 25.2792 25.2792 18.4456 32.521 20.7627C36.8725 22.155 41.5931 20.1997 43.6856 16.1382Z\" fill=\"url(#paint0_linear_829_21499)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_829_21499\" x=\"7.06836\" y=\"7.06836\" width=\"89.8633\" height=\"89.8633\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_829_21499\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_829_21499\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_829_21499\" x1=\"52\" y1=\"0\" x2=\"52\" y2=\"104\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"5%\"})}),className:\"framer-1qe3q7q\",\"data-framer-name\":\"8.5%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19hrahg hidden-72rtr7 hidden-1wps2js hidden-amdf6v\",\"data-framer-name\":\"MO\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14mpr7w\",\"data-framer-name\":\"Group 48096874\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16gm4xl\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3002)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3002)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3002\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3002\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3002\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3002\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"17%\"})}),className:\"framer-1ezz4xz\",\"data-framer-name\":\"17.5%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nx5ruq\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wqysfw\",\"data-framer-name\":\"IT icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_2995)\">\\n<g filter=\"url(#filter0_bd_858_2995)\">\\n<circle cx=\"20.375\" cy=\"15.375\" r=\"2.375\" fill=\"url(#paint0_linear_858_2995)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_2995)\">\\n<circle cx=\"5.25\" cy=\"5.25\" r=\"5.25\" fill=\"url(#paint1_linear_858_2995)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_2995)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 16.8992C11.1657 16.8992 11.3 16.7649 11.3 16.5992V11.5982C11.3 9.28322 13.184 7.39922 15.5 7.39922H18.8C18.924 7.39922 19.0448 7.41106 19.1618 7.43327C19.3747 7.47368 19.6 7.32682 19.6 7.11012V6.69922C19.6 6.67022 19.597 6.64022 19.592 6.61222C19.249 4.66722 17.447 3.19922 15.401 3.19922H6.8C4.429 3.19922 2.5 5.12822 2.5 7.49922V12.5982C2.5 14.9692 4.429 16.8992 6.8 16.8992H8.243L7.862 19.2492H5.86C5.446 19.2492 5.11 19.5852 5.11 19.9992C5.11 20.4132 5.446 20.7492 5.86 20.7492H10.76C11.174 20.7492 11.51 20.4132 11.51 19.9992C11.51 19.5852 11.174 19.2492 10.76 19.2492H9.381L9.762 16.8992H11Z\" fill=\"url(#paint2_linear_858_2995)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.1914 18.4564C16.7714 18.4564 16.4304 18.1154 16.4304 17.6954C16.4304 17.2754 16.7714 16.9344 17.1914 16.9344C17.6114 16.9344 17.9524 17.2754 17.9524 17.6954C17.9524 18.1154 17.6114 18.4564 17.1914 18.4564ZM18.8004 8.90039H15.5004C14.0364 8.90039 12.8004 10.1364 12.8004 11.5994V18.0994C12.8004 19.5884 14.0114 20.7994 15.5004 20.7994H18.8004C20.2894 20.7994 21.5004 19.5884 21.5004 18.0994V11.5994C21.5004 10.1364 20.2644 8.90039 18.8004 8.90039Z\" fill=\"url(#paint3_linear_858_2995)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M19.0996 6.69905L19.0998 6.7001L19.1 6.69922V6.70006V6.91773C19.0018 6.90556 18.9018 6.89922 18.8 6.89922H15.5C12.9079 6.89922 10.8 9.007 10.8 11.5982V16.3992H9.762H9.33653L9.26844 16.8192L8.88744 19.1692L8.79341 19.7492H9.381H10.76C10.8978 19.7492 11.01 19.8613 11.01 19.9992C11.01 20.1371 10.8978 20.2492 10.76 20.2492H5.86C5.72214 20.2492 5.61 20.1371 5.61 19.9992C5.61 19.8613 5.72214 19.7492 5.86 19.7492H7.862H8.28747L8.35556 19.3292L8.73656 16.9792L8.83059 16.3992H8.243H6.8C4.70529 16.3992 3 14.6932 3 12.5982V7.49922C3 5.40436 4.70514 3.69922 6.8 3.69922H15.401C17.2172 3.69922 18.8009 5.00544 19.0996 6.69905ZM15.9304 17.6954C15.9304 18.3915 16.4952 18.9564 17.1914 18.9564C17.8875 18.9564 18.4524 18.3915 18.4524 17.6954C18.4524 16.9993 17.8875 16.4344 17.1914 16.4344C16.4952 16.4344 15.9304 16.9993 15.9304 17.6954ZM15.5004 9.40039H18.8004C19.9884 9.40039 21.0004 10.4127 21.0004 11.5994V18.0994C21.0004 19.3123 20.0132 20.2994 18.8004 20.2994H15.5004C14.2875 20.2994 13.3004 19.3123 13.3004 18.0994V11.5994C13.3004 10.4127 14.3124 9.40039 15.5004 9.40039Z\" stroke=\"url(#paint4_linear_858_2995)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_2995\" x=\"1\" y=\"-4\" width=\"38.75\" height=\"38.75\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_2995\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_2995\" result=\"effect2_dropShadow_858_2995\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_2995\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_2995\" x=\"-17\" y=\"-17\" width=\"44.5\" height=\"44.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_2995\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_2995\" result=\"effect2_dropShadow_858_2995\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_2995\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_2995\" x=\"-8.5\" y=\"-7.80078\" width=\"41\" height=\"39.6006\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_2995\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_2995\" result=\"effect2_dropShadow_858_2995\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_2995\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_2995\" x1=\"20.375\" y1=\"13\" x2=\"20.375\" y2=\"17.75\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_2995\" x1=\"5.25\" y1=\"0\" x2=\"5.25\" y2=\"10.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_2995\" x1=\"5.61028\" y1=\"5.72869\" x2=\"11.6032\" y2=\"20.9557\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_2995\" x1=\"5.61028\" y1=\"5.72869\" x2=\"11.6032\" y2=\"20.9557\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_858_2995\" x1=\"12.0002\" y1=\"3.19922\" x2=\"12.0002\" y2=\"20.7994\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_2995\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ujura5\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Manufacturing\"})}),className:\"framer-nqz71r\",\"data-framer-name\":\"IT texnologiyalari\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tdk36o\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-w18lab\",\"data-framer-name\":\"Delivery Box 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_3005)\">\\n<g filter=\"url(#filter0_bd_858_3005)\">\\n<circle cx=\"14.375\" cy=\"21.375\" r=\"2.375\" fill=\"url(#paint0_linear_858_3005)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_3005)\">\\n<circle cx=\"7.25\" cy=\"6.25\" r=\"4.25\" fill=\"url(#paint1_linear_858_3005)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_3005)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.694 11.2759C12.787 11.3297 12.9017 11.3297 12.9947 11.2759L15.4961 9.82766C15.6934 9.71344 15.6963 9.42963 15.5013 9.31148L8.31196 4.95382C8.21845 4.89715 8.10152 4.89583 8.00676 4.95039L5.69937 6.27895C5.55345 6.36444 5.41923 6.46424 5.2943 6.5737C5.14968 6.70041 5.18457 6.92755 5.35096 7.0239L12.694 11.2759Z\" fill=\"url(#paint2_linear_858_3005)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.2622 8.62444C17.356 8.68126 17.4732 8.68242 17.5681 8.62746L20.3418 7.02053C20.5082 6.92417 20.543 6.69713 20.3982 6.57072C20.2737 6.46205 20.1398 6.36287 19.9943 6.27758L14.3173 3.00858C13.4113 2.47858 12.2843 2.47958 11.3813 3.00758L10.0844 3.75422C9.88654 3.86812 9.88335 4.15246 10.0785 4.27078L17.2622 8.62444Z\" fill=\"url(#paint3_linear_858_3005)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.3164 9.92742C18.2238 9.98106 18.1668 10.08 18.1668 10.187V12.5781C18.1668 12.9921 17.8308 13.3281 17.4168 13.3281C17.0028 13.3281 16.6668 12.9921 16.6668 12.5781V11.4035C16.6668 11.1724 16.4164 11.028 16.2164 11.1439L13.7514 12.5714C13.6588 12.625 13.6018 12.724 13.6018 12.831V21.1004C13.6018 21.2975 13.7894 21.4412 13.9713 21.3652C14.0886 21.3161 14.2034 21.2591 14.3148 21.1941L19.9968 17.9221C20.8998 17.3931 21.4608 16.4201 21.4608 15.3801V8.82109C21.4608 8.73166 21.4548 8.64301 21.4445 8.55514C21.4209 8.35537 21.1964 8.25968 21.0223 8.36048L18.3164 9.92742Z\" fill=\"url(#paint4_linear_858_3005)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.1013 12.8388C12.1013 12.7317 12.0443 12.6328 11.9516 12.5792L4.67468 8.36571C4.50035 8.26477 4.27531 8.36086 4.25205 8.56096C4.24208 8.64672 4.23633 8.73333 4.23633 8.82085V15.3808C4.23633 16.4198 4.79733 17.3938 5.70333 17.9238L11.3793 21.1928C11.4938 21.2593 11.6118 21.3173 11.7324 21.3669C11.9144 21.4418 12.1013 21.2981 12.1013 21.1013V12.8388Z\" fill=\"url(#paint5_linear_858_3005)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M14.0649 3.44016L14.0649 3.44017L14.0678 3.44188L19.7431 6.70987C19.7655 6.72307 19.7878 6.73676 19.8098 6.75092L17.42 8.13541L10.6272 4.01866L11.6308 3.4409L11.6308 3.44091L11.6337 3.43921C12.3808 3.00235 13.3148 3.00141 14.0649 3.44016ZM10.3339 4.18754L10.3341 4.18742C10.334 4.18747 10.3339 4.18752 10.3338 4.18756L10.3339 4.18754ZM14.1018 20.7398V12.9463L16.1668 11.7504V12.5781C16.1668 13.2683 16.7267 13.8281 17.4168 13.8281C18.107 13.8281 18.6668 13.2683 18.6668 12.5781V10.3023L20.9608 8.97388V15.3801C20.9608 16.2403 20.496 17.0495 19.7456 17.4898C19.7451 17.4901 19.7446 17.4904 19.7441 17.4907L14.1018 20.7398ZM11.6013 12.9542V20.7437L5.9558 17.4923C5.95535 17.492 5.95491 17.4917 5.95446 17.4915C5.20102 17.0501 4.73633 16.2399 4.73633 15.3808V8.97917L11.6013 12.9542ZM14.9535 9.56409L12.8444 10.7852L5.88192 6.75358C5.90458 6.73895 5.92746 6.72484 5.95059 6.71126L8.15384 5.44266L14.9535 9.56409ZM15.2422 9.73907C15.2421 9.73903 15.2421 9.739 15.242 9.73897L15.2422 9.73907Z\" stroke=\"url(#paint6_linear_858_3005)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_3005\" x=\"-5\" y=\"2\" width=\"38.75\" height=\"38.75\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3005\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3005\" result=\"effect2_dropShadow_858_3005\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3005\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_3005\" x=\"-14\" y=\"-15\" width=\"42.5\" height=\"42.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3005\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3005\" result=\"effect2_dropShadow_858_3005\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3005\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_3005\" x=\"-6.76367\" y=\"-8.38867\" width=\"39.2246\" height=\"40.7754\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3005\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3005\" result=\"effect2_dropShadow_858_3005\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3005\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3005\" x1=\"14.375\" y1=\"19\" x2=\"14.375\" y2=\"23.75\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_3005\" x1=\"7.25\" y1=\"2\" x2=\"7.25\" y2=\"10.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_3005\" x1=\"7.05591\" y1=\"5.30975\" x2=\"14.2101\" y2=\"20.7565\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_3005\" x1=\"7.05591\" y1=\"5.30975\" x2=\"14.2101\" y2=\"20.7565\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_858_3005\" x1=\"7.05591\" y1=\"5.30975\" x2=\"14.2101\" y2=\"20.7565\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_858_3005\" x1=\"7.05591\" y1=\"5.30975\" x2=\"14.2101\" y2=\"20.7565\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_858_3005\" x1=\"12.8486\" y1=\"2.61133\" x2=\"12.8486\" y2=\"21.3871\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_3005\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rlnkdc\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Logistics \"})}),className:\"framer-ypavyk\",\"data-framer-name\":\"Savdo sotiq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uqjw25\",\"data-framer-name\":\"Group 48096875\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-134vi24\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3012)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3012)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3012\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3012\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3012\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3012\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"15%\"})}),className:\"framer-tevdqi\",\"data-framer-name\":\"14.4%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ctu2ei\",\"data-framer-name\":\"Group 48096876\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-x7obc8\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3022)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3022)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3022\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3022\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3022\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3022\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"18%\"})}),className:\"framer-13m59rh\",\"data-framer-name\":\"12.3%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-din3h7\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gefnnz\",\"data-framer-name\":\"Moliya icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_3015)\">\\n<g filter=\"url(#filter0_bd_858_3015)\">\\n<circle cx=\"7\" cy=\"18\" r=\"1.5\" fill=\"url(#paint0_linear_858_3015)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_3015)\">\\n<circle cx=\"17\" cy=\"8.5\" r=\"4.5\" fill=\"url(#paint1_linear_858_3015)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_3015)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.42383 5.16329V5.76029C6.42383 6.04829 6.58883 6.31029 6.84783 6.43629C6.95083 6.48629 7.06283 6.51029 7.17383 6.51029C7.33983 6.51029 7.50483 6.45429 7.63983 6.34829L9.37883 4.96829C9.55883 4.82529 9.66283 4.60929 9.66283 4.38029C9.66283 4.15229 9.55883 3.93529 9.37883 3.79229L7.63983 2.41229C7.41383 2.23429 7.10583 2.19929 6.84783 2.32429C6.58883 2.45029 6.42383 2.71229 6.42383 3.00029V3.66329C4.26183 3.83229 2.54883 5.62529 2.54883 7.83029C2.54883 8.24429 2.88483 8.58029 3.29883 8.58029C3.71283 8.58029 4.04883 8.24429 4.04883 7.83029C4.04883 6.45229 5.08883 5.32629 6.42383 5.16329Z\" fill=\"url(#paint2_linear_858_3015)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.4491 16.1707C21.4491 15.7567 21.1131 15.4207 20.6991 15.4207C20.2851 15.4207 19.9491 15.7567 19.9491 16.1707C19.9491 17.5677 18.8801 18.7067 17.5181 18.8437V18.2397C17.5181 17.9497 17.3511 17.6867 17.0891 17.5627C16.8301 17.4387 16.5181 17.4757 16.2921 17.6607L14.6111 19.0417C14.4381 19.1847 14.3381 19.3967 14.3381 19.6207C14.3381 19.8457 14.4381 20.0587 14.6121 20.2007L16.2931 21.5807C16.4291 21.6927 16.5981 21.7507 16.7681 21.7507C16.8781 21.7507 16.9871 21.7277 17.0891 21.6787C17.3511 21.5547 17.5181 21.2907 17.5181 21.0007V20.3437C19.7071 20.2017 21.4491 18.3947 21.4491 16.1707Z\" fill=\"url(#paint3_linear_858_3015)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.1914 16.6304C10.4314 16.6304 7.37344 13.5704 7.37344 9.81045C7.37344 9.66393 7.22732 9.56641 7.10146 9.64141C5.54598 10.5683 4.49244 12.2509 4.49244 14.1904C4.49244 17.1234 6.87844 19.5104 9.80944 19.5104C11.7494 19.5104 13.4312 18.4554 14.3583 16.8989C14.4323 16.7746 14.3361 16.6304 14.1914 16.6304Z\" fill=\"url(#paint4_linear_858_3015)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.1914 15.1305C17.1234 15.1305 19.5084 12.7435 19.5084 9.8105C19.5084 6.8765 17.1234 4.4895 14.1914 4.4895C11.2584 4.4895 8.87342 6.8765 8.87342 9.8105C8.87342 12.7435 11.2584 15.1305 14.1914 15.1305Z\" fill=\"url(#paint5_linear_858_3015)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M6.92383 4.59853V5.16329V5.76029C6.92383 5.85561 6.97842 5.94379 7.06656 5.98667L6.84786 6.43623L7.06618 5.98649C7.09758 6.00173 7.13442 6.01029 7.17383 6.01029C7.22768 6.01029 7.28359 5.992 7.33027 5.95563C7.33053 5.95543 7.33079 5.95523 7.33105 5.95503L9.06781 4.5768L6.92383 4.59853ZM6.92383 4.59853L6.36323 4.66697M6.92383 4.59853L6.36323 4.66697M6.36323 4.66697C4.7848 4.8597 3.54883 6.19218 3.54883 7.83029C3.54883 7.96815 3.43669 8.08029 3.29883 8.08029C3.16097 8.08029 3.04883 7.96815 3.04883 7.83029C3.04883 5.89247 4.55485 4.31091 6.46279 4.16177L6.92383 4.12573M6.36323 4.66697L6.92383 4.12573M6.92383 4.12573V3.66329M6.92383 4.12573V3.66329M6.92383 3.66329V3.00029C6.92383 2.9051 6.97827 2.81704 7.06618 2.77409C7.14931 2.73398 7.25236 2.74391 7.32992 2.80467C7.3301 2.80481 7.33028 2.80495 7.33046 2.80509L9.06781 4.18378C9.06785 4.18381 9.06788 4.18384 9.06792 4.18387C9.12811 4.23175 9.16283 4.30439 9.16283 4.38029C9.16283 4.45679 9.12843 4.52853 9.06802 4.57663L6.92383 3.66329ZM17.0181 18.8437V19.3965L17.5682 19.3412C19.1789 19.1792 20.4491 17.8312 20.4491 16.1707C20.4491 16.0328 20.5613 15.9207 20.6991 15.9207C20.837 15.9207 20.9491 16.0328 20.9491 16.1707C20.9491 18.1256 19.4173 19.7194 17.4858 19.8447L17.0181 19.8751V20.3437V21.0007C17.0181 21.0976 16.9623 21.1855 16.8752 21.2268L16.8726 21.228C16.8421 21.2427 16.8077 21.2507 16.7681 21.2507C16.7111 21.2507 16.6552 21.2311 16.611 21.1947L16.6104 21.1942L14.9294 19.8142L14.9283 19.8133C14.872 19.7674 14.8381 19.6973 14.8381 19.6207C14.8381 19.5465 14.871 19.4758 14.9291 19.4275C14.9293 19.4274 14.9295 19.4272 14.9297 19.4271L16.6088 18.0476C16.6089 18.0475 16.609 18.0474 16.6092 18.0473C16.6859 17.9847 16.7903 17.974 16.8732 18.0137L16.8752 18.0146C16.963 18.0562 17.0181 18.1435 17.0181 18.2397V18.8437ZM4.99244 14.1904C4.99244 12.6366 5.74029 11.2617 6.89558 10.3827C7.17354 13.962 10.036 16.8277 13.6148 17.1079C12.7356 18.2628 11.3622 19.0104 9.80944 19.0104C7.15483 19.0104 4.99244 16.8475 4.99244 14.1904ZM19.0084 9.8105C19.0084 12.4677 16.847 14.6305 14.1914 14.6305C11.5348 14.6305 9.37342 12.4676 9.37342 9.8105C9.37342 7.15234 11.5349 4.9895 14.1914 4.9895C16.8469 4.9895 19.0084 7.15227 19.0084 9.8105Z\" stroke=\"url(#paint6_linear_858_3015)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_3015\" x=\"-11.5\" y=\"-0.5\" width=\"37\" height=\"37\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3015\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3015\" result=\"effect2_dropShadow_858_3015\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3015\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_3015\" x=\"-4.5\" y=\"-13\" width=\"43\" height=\"43\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3015\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3015\" result=\"effect2_dropShadow_858_3015\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3015\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_3015\" x=\"-8.45117\" y=\"-8.75\" width=\"40.9004\" height=\"41.501\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3015\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3015\" result=\"effect2_dropShadow_858_3015\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3015\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3015\" x1=\"7\" y1=\"16.5\" x2=\"7\" y2=\"19.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_3015\" x1=\"17\" y1=\"4\" x2=\"17\" y2=\"13\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_3015\" x1=\"5.64273\" y1=\"5.05261\" x2=\"12.8075\" y2=\"21.3963\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_3015\" x1=\"5.64273\" y1=\"5.05261\" x2=\"12.8075\" y2=\"21.3963\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_858_3015\" x1=\"5.64273\" y1=\"5.05261\" x2=\"12.8075\" y2=\"21.3963\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_858_3015\" x1=\"5.64273\" y1=\"5.05261\" x2=\"12.8075\" y2=\"21.3963\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_858_3015\" x1=\"11.999\" y1=\"2.25\" x2=\"11.999\" y2=\"21.7507\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_3015\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16o214g\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Retail and Wholesale\"})}),className:\"framer-1xh26ic\",\"data-framer-name\":\"Moliya\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gdu1nw\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tuwxar\",\"data-framer-name\":\"Game icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_3025)\">\\n<g filter=\"url(#filter0_bd_858_3025)\">\\n<ellipse cx=\"22.75\" cy=\"21.2917\" rx=\"5.25\" ry=\"5.54167\" fill=\"url(#paint0_linear_858_3025)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_3025)\">\\n<circle cx=\"7\" cy=\"11.083\" r=\"3.5\" fill=\"url(#paint1_linear_858_3025)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_3025)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.7198 6.17298H11.7698C12.4231 6.17298 12.9948 6.69098 12.9948 7.28131V8.09798C12.9948 8.58098 13.3868 8.97298 13.8698 8.97298C14.3528 8.97298 14.7448 8.58098 14.7448 8.09798V7.28131C14.7448 5.73198 13.3821 4.42298 11.7698 4.42298H10.7198C10.5016 4.42298 10.3114 4.23165 10.3114 4.01465C10.3114 3.53165 9.91944 3.13965 9.43644 3.13965C8.95344 3.13965 8.56144 3.53165 8.56144 4.01465C8.56144 5.20465 9.52977 6.17298 10.7198 6.17298Z\" fill=\"url(#paint2_linear_858_3025)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.2517 16.8347C19.7733 16.8347 19.3767 16.4497 19.3767 15.9713C19.3767 15.493 19.7733 15.108 20.2517 15.108C20.73 15.108 21.115 15.493 21.115 15.9713C21.115 16.4497 20.73 16.8347 20.2517 16.8347ZM18.5483 18.538C18.07 18.538 17.6733 18.153 17.6733 17.6747C17.6733 17.1963 18.07 16.8113 18.5483 16.8113C19.0267 16.8113 19.4117 17.1963 19.4117 17.6747C19.4117 18.153 19.0267 18.538 18.5483 18.538ZM16.845 16.8347C16.3667 16.8347 15.97 16.4497 15.97 15.9713C15.97 15.493 16.3667 15.108 16.845 15.108C17.3233 15.108 17.7083 15.493 17.7083 15.9713C17.7083 16.4497 17.3233 16.8347 16.845 16.8347ZM18.5483 13.393C19.0267 13.393 19.4117 13.7897 19.4117 14.268C19.4117 14.7463 19.0267 15.1313 18.5483 15.1313C18.07 15.1313 17.6733 14.7463 17.6733 14.268C17.6733 13.7897 18.07 13.393 18.5483 13.393ZM10.8367 16.9047H10.0783V17.663C10.0783 18.1413 9.68166 18.538 9.20332 18.538C8.72499 18.538 8.32832 18.1413 8.32832 17.663V16.9047H7.45332C6.97499 16.9047 6.57833 16.508 6.57833 16.0297C6.57833 15.5397 6.97499 15.1547 7.45332 15.1547H8.32832V14.2797C8.32832 13.7897 8.72499 13.4047 9.20332 13.4047C9.68166 13.4047 10.0783 13.7897 10.0783 14.2797V15.1547H10.8367C11.315 15.1547 11.7117 15.5397 11.7117 16.0297C11.7117 16.508 11.315 16.9047 10.8367 16.9047ZM25.0817 20.183C25.0817 20.1013 24.9067 11.608 21.22 9.68297C21.22 9.68297 21.2083 9.6713 21.1967 9.6713L21.0683 9.61297C20.2867 9.2513 18.21 8.29464 15.8533 9.76464C14.185 10.803 13.73 10.7096 12.1433 9.75297C9.71666 8.31797 7.77999 9.2163 6.96333 9.6013L6.77666 9.68297C3.11333 11.5963 2.91499 20.0897 2.91499 20.148C2.90332 21.0113 2.83333 23.6247 5.07333 24.5347C5.65666 24.7563 6.23999 24.8613 6.79999 24.8613C7.63999 24.8613 8.42166 24.6163 9.06332 24.138C9.48332 23.8347 9.71666 23.508 9.92666 23.228C10.195 22.8547 10.4517 22.5047 11.1633 22.0963C12.3767 21.3963 15.7717 21.5013 16.845 22.0963C17.4517 22.4347 17.7083 22.7847 18.0233 23.1813C18.2683 23.4963 18.525 23.823 18.945 24.138C20.0067 24.9313 21.465 25.083 22.9467 24.5347C25.1633 23.6247 25.105 21.0113 25.0817 20.183Z\" fill=\"url(#paint3_linear_858_3025)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M24.5817 20.183H24.5815L24.5819 20.1971C24.5934 20.6081 24.6098 21.3979 24.375 22.1853C24.1446 22.9583 23.6865 23.6873 22.7648 24.0688C21.4133 24.5664 20.1434 24.409 19.2448 23.7378C18.8828 23.4663 18.661 23.1867 18.418 22.8744L18.418 22.8744L18.4149 22.8704C18.3964 22.8471 18.3779 22.8237 18.3593 22.8002C18.0627 22.4248 17.7492 22.0281 17.0885 21.6597L17.0874 21.659C16.7445 21.4689 16.2644 21.3395 15.7584 21.2539C15.241 21.1663 14.6517 21.1176 14.0625 21.1107C13.4734 21.1039 12.8732 21.1389 12.3346 21.2234C11.8062 21.3062 11.2961 21.4428 10.9145 21.6627C10.1187 22.1192 9.81189 22.5311 9.5236 22.9321C9.51507 22.9435 9.50657 22.9548 9.49809 22.9661C9.29522 23.2371 9.10497 23.4912 8.77058 23.7327L8.77055 23.7326L8.76449 23.7371C8.21601 24.146 7.54118 24.3613 6.79999 24.3613C6.3045 24.3613 5.78312 24.2688 5.25634 24.0693C4.32133 23.6875 3.86061 22.9575 3.62892 22.1809C3.39769 21.4058 3.40844 20.6264 3.41455 20.1838L3.41495 20.1548H3.41499V20.148C3.41499 20.1482 3.41502 20.1473 3.41507 20.1453C3.41616 20.1038 3.4297 19.5889 3.50117 18.8026C3.5758 17.9814 3.71266 16.8754 3.96099 15.7158C4.20997 14.5532 4.56716 13.3552 5.07491 12.3409C5.58211 11.3277 6.2154 10.5458 6.99348 10.1339L7.16373 10.0594L7.16381 10.0596L7.17653 10.0536C7.96065 9.68391 9.68774 8.88273 11.8871 10.1823C12.6612 10.649 13.2821 10.9898 13.9551 11.0068C14.6395 11.024 15.2845 10.7076 16.1175 10.1891L16.118 10.1889C18.239 8.86585 20.0932 9.71269 20.8584 10.0668L20.8614 10.0682L20.985 10.1243L20.9886 10.1262C21.7795 10.5392 22.4204 11.3271 22.9316 12.3481C23.4403 13.3641 23.7967 14.5636 24.0443 15.7282C24.2911 16.8898 24.4258 17.9981 24.4987 18.8226C24.535 19.2343 24.5558 19.5737 24.5676 19.8119C24.5794 20.0536 24.5817 20.1854 24.5817 20.183ZM11.7698 5.67298H10.7198C9.80591 5.67298 9.06144 4.92851 9.06144 4.01465C9.06144 3.80779 9.22958 3.63965 9.43644 3.63965C9.64329 3.63965 9.81144 3.80779 9.81144 4.01465C9.81144 4.50687 10.2245 4.92298 10.7198 4.92298H11.7698C13.125 4.92298 14.2448 6.02681 14.2448 7.28131V8.09798C14.2448 8.30484 14.0766 8.47298 13.8698 8.47298C13.6629 8.47298 13.4948 8.30484 13.4948 8.09798V7.28131C13.4948 6.36915 12.6512 5.67298 11.7698 5.67298ZM18.8767 15.9713C18.8767 16.1093 18.8972 16.242 18.9354 16.3668C18.8127 16.3307 18.6829 16.3113 18.5483 16.3113C18.4103 16.3113 18.2762 16.3319 18.1493 16.3703C18.1877 16.2442 18.2083 16.1102 18.2083 15.9713C18.2083 15.8324 18.1877 15.6985 18.1493 15.5724C18.2762 15.6108 18.4103 15.6313 18.5483 15.6313C18.6829 15.6313 18.8127 15.612 18.9354 15.5759C18.8972 15.7007 18.8767 15.8333 18.8767 15.9713ZM19.8527 17.2757C19.9795 17.3141 20.1136 17.3347 20.2517 17.3347C21.0061 17.3347 21.615 16.7258 21.615 15.9713C21.615 15.2169 21.0061 14.608 20.2517 14.608C20.1136 14.608 19.9795 14.6286 19.8527 14.667C19.891 14.5408 19.9117 14.4069 19.9117 14.268C19.9117 13.5223 19.3115 12.893 18.5483 12.893C17.7939 12.893 17.1733 13.5135 17.1733 14.268C17.1733 14.406 17.1939 14.5387 17.232 14.6634C17.1094 14.6274 16.9795 14.608 16.845 14.608C16.0993 14.608 15.47 15.2082 15.47 15.9713C15.47 16.7345 16.0993 17.3347 16.845 17.3347C16.9795 17.3347 17.1094 17.3153 17.232 17.2792C17.1939 17.404 17.1733 17.5367 17.1733 17.6747C17.1733 18.4378 17.8026 19.038 18.5483 19.038C19.3028 19.038 19.9117 18.4291 19.9117 17.6747C19.9117 17.5358 19.891 17.4018 19.8527 17.2757ZM10.5783 14.6547V14.2797C10.5783 13.5092 9.95345 12.9047 9.20332 12.9047C8.4532 12.9047 7.82832 13.5092 7.82832 14.2797V14.6547H7.45332C6.7032 14.6547 6.07833 15.2592 6.07833 16.0297C6.07833 16.7841 6.69885 17.4047 7.45332 17.4047H7.82832V17.663C7.82832 18.4175 8.44885 19.038 9.20332 19.038C9.9578 19.038 10.5783 18.4175 10.5783 17.663V17.4047H10.8367C11.5911 17.4047 12.2117 16.7842 12.2117 16.0297C12.2117 15.2592 11.5868 14.6547 10.8367 14.6547H10.5783Z\" stroke=\"url(#paint4_linear_858_3025)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_3025\" x=\"0.5\" y=\"-1.25\" width=\"44.5\" height=\"45.083\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3025\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3025\" result=\"effect2_dropShadow_858_3025\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3025\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_3025\" x=\"-13.5\" y=\"-9.41699\" width=\"41\" height=\"41\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3025\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3025\" result=\"effect2_dropShadow_858_3025\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3025\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_3025\" x=\"-8.08789\" y=\"-7.86035\" width=\"44.1758\" height=\"43.7217\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3025\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3025\" result=\"effect2_dropShadow_858_3025\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3025\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3025\" x1=\"22.75\" y1=\"15.75\" x2=\"22.75\" y2=\"26.8333\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_3025\" x1=\"7\" y1=\"7.58301\" x2=\"7\" y2=\"14.583\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_3025\" x1=\"6.54215\" y1=\"6.26145\" x2=\"14.2414\" y2=\"24.7608\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_3025\" x1=\"6.54215\" y1=\"6.26145\" x2=\"14.2414\" y2=\"24.7608\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_858_3025\" x1=\"13.9999\" y1=\"3.13965\" x2=\"13.9999\" y2=\"24.8613\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_3025\">\\n<rect width=\"28\" height=\"28\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-evmxil\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Services\"})}),className:\"framer-6wr02i\",\"data-framer-name\":\"O'yin industriyasi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c78vm9\",\"data-framer-name\":\"Group 48096877\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k4i617\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3032)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3032)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3032\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3032\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3032\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3032\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"15%\"})}),className:\"framer-1ycgydk\",\"data-framer-name\":\"9.6%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c57kx8\",\"data-framer-name\":\"Group 48096878\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gpxtzo\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3042)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3042)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3042\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3042\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3042\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3042\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"10%\"})}),className:\"framer-12qeggd\",\"data-framer-name\":\"8.6%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-faadh1\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ddy7ct\",\"data-framer-name\":\"Building office\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_3035)\">\\n<g filter=\"url(#filter0_bd_858_3035)\">\\n<circle cx=\"7.25\" cy=\"6.25\" r=\"4.25\" fill=\"url(#paint0_linear_858_3035)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_3035)\">\\n<circle cx=\"21.375\" cy=\"20.375\" r=\"2.375\" fill=\"url(#paint1_linear_858_3035)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_3035)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.9407 8.80078H17.3777C17.212 8.80078 17.0777 8.9351 17.0777 9.10078V21.5008C17.0777 21.6665 17.212 21.8008 17.3777 21.8008H19.9407C20.9507 21.8008 21.7727 20.9798 21.7727 19.9708V10.6308C21.7727 9.62178 20.9507 8.80078 19.9407 8.80078Z\" fill=\"url(#paint2_linear_858_3035)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.6189 10.7478C11.5719 10.7568 11.5249 10.7608 11.4779 10.7608C11.1249 10.7608 10.8099 10.5108 10.7419 10.1508C10.6639 9.74478 10.9309 9.34678 11.3379 9.26878C11.7389 9.19078 12.1359 9.45278 12.2139 9.86078L12.2159 9.87078C12.2929 10.2778 12.0259 10.6698 11.6189 10.7478ZM10.7439 13.8178C10.6619 13.4118 10.9249 13.0118 11.3309 12.9308C11.7389 12.8498 12.1309 13.1078 12.2119 13.5138L12.2139 13.5238C12.2959 13.9298 12.0319 14.3248 11.6259 14.4058C11.5769 14.4158 11.5269 14.4208 11.4779 14.4208C11.1279 14.4208 10.8149 14.1738 10.7439 13.8178ZM11.6189 17.9978C11.5719 18.0068 11.5249 18.0108 11.4779 18.0108C11.1249 18.0108 10.8099 17.7608 10.7419 17.4008C10.6639 16.9948 10.9309 16.5968 11.3379 16.5188C11.7389 16.4378 12.1359 16.7038 12.2139 17.1108L12.2159 17.1208C12.2929 17.5278 12.0259 17.9198 11.6189 17.9978ZM7.61692 10.7478C7.56992 10.7568 7.52292 10.7608 7.47592 10.7608C7.12292 10.7608 6.80792 10.5108 6.73992 10.1508C6.66192 9.74478 6.92892 9.34678 7.33592 9.26878C7.73692 9.19078 8.13392 9.45278 8.21192 9.86078L8.21392 9.87078C8.29092 10.2778 8.02392 10.6698 7.61692 10.7478ZM6.74192 13.8178C6.65992 13.4118 6.92292 13.0118 7.32892 12.9308C7.73392 12.8498 8.12892 13.1078 8.20992 13.5138L8.21192 13.5238C8.29392 13.9298 8.02992 14.3248 7.62392 14.4058C7.57492 14.4158 7.52492 14.4208 7.47592 14.4208C7.12592 14.4208 6.81292 14.1738 6.74192 13.8178ZM7.61692 17.9978C7.56992 18.0068 7.52292 18.0108 7.47592 18.0108C7.12292 18.0108 6.80792 17.7608 6.73992 17.4008C6.66192 16.9948 6.92892 16.5968 7.33592 16.5188C7.73692 16.4378 8.13392 16.7038 8.21192 17.1108L8.21392 17.1208C8.29092 17.5278 8.02392 17.9198 7.61692 17.9978ZM15.7779 8.80802C15.7779 8.80531 15.7769 8.8027 15.7749 8.80078C15.773 8.79886 15.7719 8.79626 15.7719 8.79354V4.63078C15.7719 3.62178 14.9509 2.80078 13.9409 2.80078H10.6039C9.59392 2.80078 8.77192 3.62178 8.77192 4.63078V5.40078C8.77192 5.56647 8.63761 5.70078 8.47192 5.70078H5.00092C3.99092 5.70078 3.16992 6.52178 3.16992 7.53078V19.9708C3.16992 20.9798 3.99092 21.8008 5.00092 21.8008H15.4779C15.6436 21.8008 15.7779 21.6665 15.7779 21.5008V8.80802Z\" fill=\"url(#paint3_linear_858_3035)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M11.2331 12.4405L11.2335 12.4404C11.9074 12.3066 12.5661 12.7345 12.7022 13.4158C12.7022 13.4158 12.7022 13.4159 12.7022 13.416L12.704 13.4248L12.7042 13.4258L12.2139 13.5238C12.2959 13.9298 12.0319 14.3248 11.6259 14.4058L11.2331 12.4405ZM11.2331 12.4405C10.5527 12.5762 10.1179 13.2426 10.2537 13.9162C10.3724 14.51 10.894 14.9208 11.4779 14.9208C11.5597 14.9208 11.6425 14.9126 11.7237 14.8961L11.2331 12.4405ZM6.2517 13.9162C6.116 13.2427 6.55061 12.5764 7.23086 12.4405L6.2517 13.9162ZM6.2517 13.9162C6.37041 14.51 6.89204 14.9208 7.47592 14.9208C7.55778 14.9208 7.64054 14.9126 7.72175 14.8961C8.39802 14.7612 8.83899 14.1029 8.70203 13.4248M6.2517 13.9162L7.2311 12.4405C7.90179 12.3065 8.56422 12.7341 8.70026 13.416L8.70203 13.4248M8.70203 13.4248L8.70221 13.4258L8.21192 13.5238L8.70203 13.4248ZM11.7129 11.2389L11.713 11.2389C12.3903 11.1091 12.8355 10.4562 12.7072 9.77784L12.7072 9.77783L12.7062 9.77273L12.7045 9.7645C12.5728 9.08252 11.911 8.64824 11.243 8.77787C10.563 8.90865 10.1216 9.57004 10.2507 10.2444C10.3646 10.8455 10.8902 11.2608 11.4779 11.2608C11.5534 11.2608 11.6321 11.2544 11.7129 11.2389ZM11.7129 18.4889L11.713 18.4889C12.3903 18.3591 12.8355 17.7062 12.7072 17.0279L12.7072 17.0279L12.7062 17.0228L12.7045 17.0144C12.5736 16.3382 11.9152 15.8935 11.2414 16.0282C10.5623 16.1597 10.1217 16.8206 10.2507 17.4944C10.3646 18.0955 10.8902 18.5108 11.4779 18.5108C11.5534 18.5108 11.6321 18.5044 11.7129 18.4889ZM7.71096 11.2389L7.71103 11.2389C8.38831 11.1091 8.83354 10.4562 8.70521 9.77784L8.70523 9.77783L8.70421 9.77273L8.70258 9.76457C8.57088 9.08254 7.90902 8.64824 7.241 8.77787C6.561 8.90865 6.11964 9.57004 6.24875 10.2444C6.36267 10.8454 6.88827 11.2608 7.47592 11.2608C7.55145 11.2608 7.63013 11.2544 7.71096 11.2389ZM7.71096 18.4889L7.71103 18.4889C8.3883 18.3591 8.83355 17.7062 8.70521 17.0279L8.70523 17.0279L8.70421 17.0228L8.70255 17.0144C8.5717 16.3383 7.91323 15.8935 7.2394 16.0282C6.56032 16.1597 6.11974 16.8206 6.24875 17.4944C6.36267 18.0955 6.88827 18.5108 7.47592 18.5108C7.55144 18.5108 7.63012 18.5044 7.71096 18.4889ZM15.2719 8.79354C15.2719 8.81999 15.2739 8.84609 15.2779 8.87164V21.3008H5.00092C4.26689 21.3008 3.66992 20.7035 3.66992 19.9708V7.53078C3.66992 6.7981 4.26689 6.20078 5.00092 6.20078H8.47192C8.91375 6.20078 9.27192 5.84261 9.27192 5.40078V4.63078C9.27192 3.89845 9.86954 3.30078 10.6039 3.30078H13.9409C14.6749 3.30078 15.2719 3.8981 15.2719 4.63078V8.79354ZM17.5777 21.3008V9.30078H19.9407C20.6751 9.30078 21.2727 9.89845 21.2727 10.6308V19.9708C21.2727 20.7031 20.6751 21.3008 19.9407 21.3008H17.5777Z\" stroke=\"url(#paint4_linear_858_3035)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_3035\" x=\"-14\" y=\"-15\" width=\"42.5\" height=\"42.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3035\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3035\" result=\"effect2_dropShadow_858_3035\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3035\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_3035\" x=\"2\" y=\"1\" width=\"38.75\" height=\"38.75\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3035\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3035\" result=\"effect2_dropShadow_858_3035\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3035\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_3035\" x=\"-7.83008\" y=\"-8.19922\" width=\"40.6035\" height=\"41\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3035\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3035\" result=\"effect2_dropShadow_858_3035\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3035\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3035\" x1=\"7.25\" y1=\"2\" x2=\"7.25\" y2=\"10.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_3035\" x1=\"21.375\" y1=\"18\" x2=\"21.375\" y2=\"22.75\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_3035\" x1=\"6.21512\" y1=\"5.53143\" x2=\"13.1479\" y2=\"21.5072\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_3035\" x1=\"6.21512\" y1=\"5.53143\" x2=\"13.1479\" y2=\"21.5072\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_858_3035\" x1=\"12.4713\" y1=\"2.80078\" x2=\"12.4713\" y2=\"21.8008\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_3035\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1f60yaf\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Technology and IT \"})}),className:\"framer-1vh3j41\",\"data-framer-name\":\"Qurilish\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gmiayz\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-98zkmv\",\"data-framer-name\":\"Car\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_3045)\">\\n<g filter=\"url(#filter0_bd_858_3045)\">\\n<circle cx=\"16.25\" cy=\"8.75\" r=\"3.75\" fill=\"url(#paint0_linear_858_3045)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_3045)\">\\n<circle cx=\"2.5\" cy=\"18\" r=\"1\" fill=\"url(#paint1_linear_858_3045)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_3045)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.88 18.4993C17.22 18.4993 16.67 17.9593 16.67 17.2893C16.67 16.6193 17.22 16.0793 17.88 16.0793C18.55 16.0793 19.1 16.6193 19.1 17.2893C19.1 17.9593 18.55 18.4993 17.88 18.4993ZM13.48 11.0293V7.88928H15.84C15.92 7.88928 15.98 7.89928 16.05 7.93928C16.11 7.97928 16.16 8.02928 16.19 8.08928L17.76 11.0293H13.48ZM7 18.4993C6.33 18.4993 5.79 17.9593 5.79 17.2893C5.79 16.6193 6.33 16.0793 7 16.0793C7.67 16.0793 8.21 16.6193 8.21 17.2893C8.21 17.9593 7.67 18.4993 7 18.4993ZM22.16 11.8793C21.62 11.3393 20.91 11.0393 20.14 11.0293H19.46L17.51 7.37928C17.35 7.07928 17.11 6.82928 16.82 6.65928C16.53 6.47928 16.2 6.38928 15.85 6.38928H13.38C13.01 6.38928 12.65 6.52928 12.39 6.79928C12.13 7.05928 11.98 7.40928 11.98 7.77928L11.96 13.9393C11.94 14.9693 11.1 15.1493 10.78 15.1193L2.38 13.0493L2.39 13.0593C2.34 13.0493 2.3 13.0293 2.25 13.0293C1.84 13.0293 1.5 13.3693 1.5 13.7793V15.5293C1.5 16.2893 1.81 17.0293 2.34 17.5493C2.88 18.0993 3.6 18.3893 4.36 18.3893H4.6C4.77 18.8093 5.07 19.1793 5.44 19.4593C5.89 19.7893 6.45 19.9693 7.02 19.9693C7.59 19.9693 8.15 19.7893 8.6 19.4593C9.06 19.1193 9.39 18.6393 9.55 18.1093C9.56 18.0793 9.57 18.0493 9.57 18.0093H15.35C15.35 18.0193 15.36 18.0393 15.36 18.0493C15.51 18.5993 15.85 19.0893 16.31 19.4393C16.76 19.7793 17.33 19.9693 17.9 19.9693C18.47 19.9693 19.04 19.7793 19.5 19.4393C19.87 19.1593 20.15 18.7893 20.32 18.3793C21.02 18.3393 21.66 18.0493 22.16 17.5493C22.7 17.0093 23 16.2993 23 15.5293V13.8993C23 13.1393 22.7 12.4193 22.16 11.8793Z\" fill=\"url(#paint2_linear_858_3045)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.08 12.1043L10.27 14.1043C10.32 14.1243 10.38 14.1243 10.44 14.1243C10.61 14.1243 10.77 14.0743 10.9 13.9633C11.08 13.8243 11.19 13.6043 11.19 13.3743V6.0083C11.19 5.7443 11.405 5.5293 11.669 5.5293H13.71C14.12 5.5293 14.46 5.1993 14.46 4.7793C14.46 4.3693 14.12 4.0293 13.71 4.0293H11.09C10.72 4.0293 10.36 4.1793 10.1 4.4393C9.84 4.7093 9.69 5.0593 9.69 5.4293V5.5893H3.19C2.94 5.5993 2.74 5.6293 2.54 5.7193C2.34 5.7993 2.15 5.9193 1.99 6.0793C1.83 6.2393 1.71 6.4293 1.62 6.6293C1.54 6.8393 1.5 7.0593 1.5 7.2693V11.3743C1.5 11.7243 1.74 12.0243 2.08 12.1043Z\" fill=\"url(#paint3_linear_858_3045)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M12.98 11.0293V11.5293H13.48H17.76H18.5938L18.2011 10.7938L16.6335 7.85829C16.5541 7.70343 16.4356 7.59543 16.3273 7.52325L16.313 7.5137L16.2981 7.50516C16.1299 7.40907 15.9766 7.38928 15.84 7.38928H13.48H12.98V7.88928V11.0293ZM2.44336 13.5799L10.6604 15.6048L10.6964 15.6137L10.7333 15.6171C10.9924 15.6414 11.401 15.5844 11.7617 15.3416C12.1532 15.078 12.4468 14.6223 12.4599 13.949L12.46 13.949L12.46 13.9409L12.48 7.7809V7.77928C12.48 7.54606 12.5743 7.32205 12.7436 7.15283L12.7436 7.15289L12.7502 7.1461C12.9084 6.98179 13.1346 6.88928 13.38 6.88928H15.85C16.1122 6.88928 16.3499 6.95598 16.5563 7.0841L16.5562 7.08423L16.5671 7.09063C16.7769 7.2136 16.952 7.3955 17.0688 7.61457L17.069 7.61488L19.019 11.2649L19.1602 11.5293H19.46H20.1366C20.7754 11.5384 21.3596 11.786 21.8064 12.2329C22.2535 12.6799 22.5 13.273 22.5 13.8993V15.5293C22.5 16.1646 22.2542 16.748 21.8064 17.1957C21.3917 17.6104 20.8668 17.8472 20.2915 17.8801L19.9783 17.898L19.8581 18.1878C19.7219 18.5164 19.4973 18.8137 19.2005 19.0389C18.8257 19.3151 18.3606 19.4693 17.9 19.4693C17.4378 19.4693 16.9742 19.3142 16.6121 19.0409C16.2432 18.76 15.9733 18.3724 15.85 17.9449V17.5093H15.35H9.57H9.07V17.9692C8.94004 18.3963 8.67331 18.7831 8.30351 19.0567C7.94191 19.3216 7.48646 19.4693 7.02 19.4693C6.55449 19.4693 6.09996 19.3222 5.73872 19.0583C5.43316 18.8263 5.19518 18.5271 5.06347 18.2017L4.93702 17.8893H4.6H4.36C3.72974 17.8893 3.13968 17.6501 2.69678 17.199L2.69684 17.1989L2.69017 17.1924C2.25738 16.7678 2 16.157 2 15.5293V13.7793C2 13.6562 2.09815 13.5482 2.21798 13.5315C2.23535 13.5364 2.26126 13.5435 2.29195 13.5496L2.44336 13.5799ZM2.18617 13.5223L2.18639 13.5224L2.18617 13.5223ZM15.8295 17.8717L15.8293 17.8712L15.8295 17.8717ZM2.19861 11.6186L2.19862 11.6186L2.19452 11.6176C2.07829 11.5902 2 11.4901 2 11.3743V7.2693C2 7.12577 2.02679 6.97102 2.08216 6.82085C2.15188 6.66935 2.23828 6.53812 2.34355 6.43285C2.45212 6.32429 2.58372 6.24032 2.7257 6.18353L2.73553 6.1796L2.74518 6.17526C2.8603 6.12345 2.98582 6.09845 3.20032 6.0893H9.69H10.19V5.5893V5.4293C10.19 5.199 10.2823 4.97243 10.4568 4.78958C10.6231 4.62509 10.8545 4.5293 11.09 4.5293H13.71C13.8439 4.5293 13.96 4.64544 13.96 4.7793C13.96 4.91882 13.8482 5.0293 13.71 5.0293H11.669C11.1289 5.0293 10.69 5.46815 10.69 6.0083V13.3743C10.69 13.4475 10.6533 13.5221 10.5944 13.5676L10.5847 13.5751L10.5753 13.583C10.5491 13.6055 10.5096 13.6243 10.44 13.6243L10.4201 13.6243L10.4115 13.6242L10.3886 13.6186L2.19861 11.6186ZM16.17 17.2893C16.17 18.2381 16.9465 18.9993 17.88 18.9993C18.8208 18.9993 19.6 18.2408 19.6 17.2893C19.6 16.3378 18.8208 15.5793 17.88 15.5793C16.9465 15.5793 16.17 16.3405 16.17 17.2893ZM5.29 17.2893C5.29 18.2354 6.05386 18.9993 7 18.9993C7.94614 18.9993 8.71 18.2354 8.71 17.2893C8.71 16.3432 7.94614 15.5793 7 15.5793C6.05386 15.5793 5.29 16.3432 5.29 17.2893Z\" stroke=\"url(#paint4_linear_858_3045)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_3045\" x=\"-4.5\" y=\"-12\" width=\"41.5\" height=\"41.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3045\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3045\" result=\"effect2_dropShadow_858_3045\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3045\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_3045\" x=\"-15.5\" y=\"0\" width=\"36\" height=\"36\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3045\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3045\" result=\"effect2_dropShadow_858_3045\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3045\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_3045\" x=\"-9.5\" y=\"-6.9707\" width=\"43.5\" height=\"37.9404\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3045\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3045\" result=\"effect2_dropShadow_858_3045\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3045\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3045\" x1=\"16.25\" y1=\"5\" x2=\"16.25\" y2=\"12.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_3045\" x1=\"2.5\" y1=\"17\" x2=\"2.5\" y2=\"19\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_3045\" x1=\"5.01946\" y1=\"6.32017\" x2=\"9.5836\" y2=\"20.8092\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_3045\" x1=\"5.01946\" y1=\"6.32017\" x2=\"9.5836\" y2=\"20.8092\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_858_3045\" x1=\"12.25\" y1=\"4.0293\" x2=\"12.25\" y2=\"19.9693\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_3045\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1svf3s\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Construction\"})}),className:\"framer-3hpa75\",\"data-framer-name\":\"Logistika\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8banby\",\"data-framer-name\":\"Group 48096879\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10rnb5e\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3052)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3052)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3052\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3052\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3052\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3052\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"10%\"})}),className:\"framer-v7j6lv\",\"data-framer-name\":\"8.4%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9eg9t3\",\"data-framer-name\":\"Group 48096880\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-785dj2\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3063)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3063)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3063\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3063\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3063\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3063\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"5%\"})}),className:\"framer-1sam6gv\",\"data-framer-name\":\"7.6%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-emkav8\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10p1p2a\",\"data-framer-name\":\"University\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_3055)\">\\n<g filter=\"url(#filter0_bd_858_3055)\">\\n<circle cx=\"17.5\" cy=\"5.5\" r=\"3\" fill=\"url(#paint0_linear_858_3055)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_3055)\">\\n<circle cx=\"3.5\" cy=\"20\" r=\"3\" fill=\"url(#paint1_linear_858_3055)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_3055)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.72 7.88109C9.72 7.47109 10.05 7.13109 10.47 7.13109H13.53C13.94 7.13109 14.28 7.47109 14.28 7.88109C14.28 8.30109 13.94 8.63109 13.53 8.63109H10.47C10.05 8.63109 9.72 8.30109 9.72 7.88109ZM3.68 11.3811H20.32C20.97 11.3811 21.5 10.8611 21.5 10.2011V9.54109C21.5 9.14109 21.29 8.76109 20.96 8.55109L12.65 3.19109C12.25 2.93109 11.75 2.93109 11.36 3.19109L3.04 8.55109C2.71 8.76109 2.5 9.14109 2.5 9.54109V10.2011C2.5 10.8611 3.03 11.3811 3.68 11.3811Z\" fill=\"url(#paint2_linear_858_3055)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 20.1055H3C2.586 20.1055 2.25 20.4415 2.25 20.8555C2.25 21.2695 2.586 21.6055 3 21.6055H21C21.414 21.6055 21.75 21.2695 21.75 20.8555C21.75 20.4415 21.414 20.1055 21 20.1055Z\" fill=\"url(#paint3_linear_858_3055)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.28 12.4414C15 12.4414 14.78 12.6614 14.78 12.9414V18.5414C14.78 18.8214 15 19.0414 15.28 19.0414H18.48C18.75 19.0414 18.98 18.8214 18.98 18.5414V12.9414C18.98 12.6614 18.75 12.4414 18.48 12.4414H15.28Z\" fill=\"url(#paint4_linear_858_3055)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.52002 12.4414C5.25002 12.4414 5.02002 12.6614 5.02002 12.9414V18.5414C5.02002 18.8214 5.25002 19.0414 5.52002 19.0414H8.72002C9.00002 19.0414 9.22002 18.8214 9.22002 18.5414V12.9414C9.22002 12.6614 9.00002 12.4414 8.72002 12.4414H5.52002Z\" fill=\"url(#paint5_linear_858_3055)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M20.689 8.97128L20.6916 8.97292C20.8766 9.09068 21 9.31117 21 9.54109V10.2011C21 10.5822 20.6966 10.8811 20.32 10.8811H3.68C3.30337 10.8811 3 10.5822 3 10.2011V9.54109C3 9.31117 3.1234 9.09068 3.30844 8.97292L3.30844 8.97293L3.31079 8.97142L11.6308 3.61142L11.6308 3.61147L11.6373 3.60712C11.8573 3.46048 12.1411 3.45663 12.3775 3.61032L12.379 3.61127L20.689 8.97128ZM10.47 6.63109C9.76952 6.63109 9.22 7.19931 9.22 7.88109C9.22 8.57724 9.77386 9.13109 10.47 9.13109H13.53C14.2118 9.13109 14.78 8.58157 14.78 7.88109C14.78 7.19495 14.2161 6.63109 13.53 6.63109H10.47ZM3 20.6055H21C21.1379 20.6055 21.25 20.7176 21.25 20.8555C21.25 20.9934 21.1379 21.1055 21 21.1055H3C2.86214 21.1055 2.75 20.9934 2.75 20.8555C2.75 20.7176 2.86214 20.6055 3 20.6055ZM15.28 18.5414V12.9414H18.48V18.5414H15.28ZM5.52002 18.5414V12.9414H8.72002V18.5414H5.52002Z\" stroke=\"url(#paint6_linear_858_3055)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_3055\" x=\"-2.5\" y=\"-14.5\" width=\"40\" height=\"40\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3055\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3055\" result=\"effect2_dropShadow_858_3055\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3055\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_3055\" x=\"-16.5\" y=\"0\" width=\"40\" height=\"40\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3055\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3055\" result=\"effect2_dropShadow_858_3055\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3055\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_3055\" x=\"-8.75\" y=\"-8.00391\" width=\"41.5\" height=\"40.6094\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3055\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3055\" result=\"effect2_dropShadow_858_3055\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3055\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3055\" x1=\"17.5\" y1=\"2.5\" x2=\"17.5\" y2=\"8.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_3055\" x1=\"3.5\" y1=\"17\" x2=\"3.5\" y2=\"23\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_3055\" x1=\"5.44207\" y1=\"5.67061\" x2=\"11.917\" y2=\"21.6392\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_3055\" x1=\"5.44207\" y1=\"5.67061\" x2=\"11.917\" y2=\"21.6392\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_858_3055\" x1=\"5.44207\" y1=\"5.67061\" x2=\"11.917\" y2=\"21.6392\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_858_3055\" x1=\"5.44207\" y1=\"5.67061\" x2=\"11.917\" y2=\"21.6392\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_858_3055\" x1=\"12\" y1=\"2.99609\" x2=\"12\" y2=\"21.6055\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_3055\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l8vxnr\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yh0bug\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Food Production and Distribution \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Food Production \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"and Distribution \"})]}),className:\"framer-ltayvv\",\"data-framer-name\":\"Bank sektori\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16szeak\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hd9q6\",\"data-framer-name\":\"Cube Dash\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_3066)\">\\n<g filter=\"url(#filter0_bd_858_3066)\">\\n<circle cx=\"4.25\" cy=\"7.75\" r=\"4.25\" fill=\"url(#paint0_linear_858_3066)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_3066)\">\\n<circle cx=\"18.875\" cy=\"18.375\" r=\"2.375\" fill=\"url(#paint1_linear_858_3066)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_3066)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.3059 12.0507L12.9 13.4391C12.8071 13.4927 12.7499 13.5917 12.7499 13.6989V16.4767C12.7499 16.8907 12.4139 17.2267 11.9999 17.2267C11.5859 17.2267 11.2499 16.8907 11.2499 16.4767V13.6989C11.2499 13.5917 11.1927 13.4927 11.0999 13.4391L8.69391 12.0507C8.33491 11.8437 8.21291 11.3847 8.41991 11.0267C8.62691 10.6677 9.08591 10.5447 9.44391 10.7517L11.85 12.1402C11.9428 12.1937 12.0571 12.1937 12.1499 12.1402L14.5559 10.7517C14.9139 10.5437 15.3729 10.6667 15.5799 11.0267C15.7869 11.3857 15.6639 11.8437 15.3059 12.0507ZM18.3949 10.2657C18.2769 10.3337 18.1479 10.3657 18.0209 10.3657C17.7619 10.3657 17.5099 10.2317 17.3709 9.99066C17.1639 9.63266 17.2859 9.17366 17.6449 8.96666L19.5056 7.89248C19.6723 7.79625 19.7074 7.56877 19.562 7.44263C19.4362 7.33342 19.3007 7.23455 19.1529 7.15066L13.4689 3.87066C12.5629 3.34066 11.4369 3.33966 10.5329 3.86966L4.84891 7.14866C4.69989 7.23349 4.56336 7.33342 4.43667 7.44376C4.29176 7.56997 4.32702 7.79695 4.49344 7.89304L6.35291 8.96666C6.71191 9.17366 6.83491 9.63266 6.62791 9.99066C6.48891 10.2317 6.23691 10.3657 5.97791 10.3657C5.84991 10.3657 5.72191 10.3337 5.60291 10.2657L3.81748 9.23419C3.64304 9.13342 3.41812 9.22974 3.39483 9.42984C3.38474 9.51656 3.37891 9.60415 3.37891 9.69266V16.2527C3.37891 17.3047 3.94191 18.2797 4.84691 18.7947L10.5309 22.0737C10.644 22.1402 10.7606 22.198 10.8797 22.2476C11.0619 22.3235 11.2499 22.1797 11.2499 21.9823V20.0467C11.2499 19.6327 11.5859 19.2967 11.9999 19.2967C12.4139 19.2967 12.7499 19.6327 12.7499 20.0467V21.9834C12.7499 22.1805 12.9373 22.3242 13.1192 22.2483C13.2378 22.1989 13.354 22.1411 13.4669 22.0747L19.1499 18.7967C20.0569 18.2797 20.6209 17.3047 20.6209 16.2527V9.69266C20.6209 9.60398 20.6151 9.51622 20.6049 9.42927C20.5816 9.22905 20.3565 9.13255 20.182 9.23337L18.3949 10.2657Z\" fill=\"url(#paint2_linear_858_3066)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M17.3709 9.99066L16.9378 10.2405C17.1699 10.6429 17.591 10.8657 18.0209 10.8657C18.2322 10.8657 18.4478 10.8122 18.6445 10.6989L18.645 10.6986L20.1209 9.84608V16.2527C20.1209 17.1266 19.6518 17.935 18.9023 18.3623L18.9001 18.3635L13.2499 21.6226V20.0467C13.2499 19.3565 12.69 18.7967 11.9999 18.7967C11.3097 18.7967 10.7499 19.3565 10.7499 20.0467V21.6228L5.09676 18.3616L5.09676 18.3616L5.0942 18.3601C4.34744 17.9351 3.87891 17.1272 3.87891 16.2527V9.84712L5.35279 10.6986L5.35279 10.6986L5.35484 10.6998C5.55113 10.8119 5.76493 10.8657 5.97791 10.8657C6.40772 10.8657 6.82875 10.643 7.0609 10.2407C7.4062 9.64319 7.20071 8.87852 6.60292 8.53365C6.60291 8.53364 6.6029 8.53364 6.60288 8.53363C6.60281 8.53359 6.60274 8.53355 6.60266 8.5335L5.02778 7.6242C5.05036 7.61 5.07318 7.59633 5.09626 7.58318L5.09627 7.58319L5.09876 7.58176L10.7827 4.30276L10.7827 4.30277L10.7858 4.30099C11.5331 3.86284 12.4659 3.86317 13.2164 4.30223L13.2164 4.30224L13.219 4.30372L18.903 7.58372L18.903 7.58373L18.9061 7.5855C18.9278 7.59784 18.9493 7.61066 18.9706 7.62396L17.3951 8.5335C17.395 8.53355 17.395 8.53359 17.3949 8.53363C16.796 8.87914 16.5931 9.64442 16.938 10.2409L17.3709 9.99066ZM17.3709 9.99066C17.1639 9.63266 17.2859 9.17366 17.6449 8.96666L18.3949 10.2657C18.2769 10.3337 18.1479 10.3657 18.0209 10.3657C17.7619 10.3657 17.5099 10.2317 17.3709 9.99066ZM15.5558 12.4837L15.5562 12.4835C16.1529 12.1385 16.3577 11.3753 16.0133 10.7774C15.6688 10.1782 14.9034 9.97187 14.3053 10.319C14.3051 10.3191 14.3049 10.3192 14.3047 10.3193L11.9999 11.6494L9.69419 10.3188C9.09674 9.97336 8.33205 10.1787 7.98705 10.7764C7.64213 11.3729 7.84502 12.1382 8.444 12.4837C8.44405 12.4838 8.4441 12.4838 8.44415 12.4838L10.7499 13.8144V16.4767C10.7499 17.1668 11.3097 17.7267 11.9999 17.7267C12.69 17.7267 13.2499 17.1668 13.2499 16.4767V13.8144L15.5558 12.4837ZM13.1499 13.8721L13.1499 13.8721L13.1499 13.8721ZM20.4321 9.6663C20.432 9.66638 20.4319 9.66645 20.4317 9.66653L20.4321 9.66633L20.4321 9.6663ZM11.0719 21.786L11.0719 21.786L11.0719 21.786Z\" stroke=\"url(#paint3_linear_858_3066)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_3066\" x=\"-17\" y=\"-13.5\" width=\"42.5\" height=\"42.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3066\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3066\" result=\"effect2_dropShadow_858_3066\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3066\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_3066\" x=\"-0.5\" y=\"-1\" width=\"38.75\" height=\"38.75\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3066\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3066\" result=\"effect2_dropShadow_858_3066\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3066\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_3066\" x=\"-7.62109\" y=\"-7.52734\" width=\"39.2422\" height=\"40.7959\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3066\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3066\" result=\"effect2_dropShadow_858_3066\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3066\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3066\" x1=\"4.25\" y1=\"3.5\" x2=\"4.25\" y2=\"12\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_3066\" x1=\"18.875\" y1=\"16\" x2=\"18.875\" y2=\"20.75\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_3066\" x1=\"6.20135\" y1=\"6.17402\" x2=\"13.3636\" y2=\"21.6372\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_3066\" x1=\"11.9999\" y1=\"3.47266\" x2=\"11.9999\" y2=\"22.2689\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_3066\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cepp20\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8r6r86\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Pharmaceuticals and Medical \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Pharmaceuticals \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"and Medical \"})]}),className:\"framer-1fnwn98\",\"data-framer-name\":\"Ishlab chiqarish\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13i2bem\",\"data-framer-name\":\"Group 48096881\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ry84gg\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3074)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3074)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3074\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3074\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3074\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3074\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"5%\"})}),className:\"framer-170w9qg\",\"data-framer-name\":\"7%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1985lsp\",\"data-framer-name\":\"Group 48096883\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pai6cd\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"64\" viewBox=\"0 0 64 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_858_3106)\">\\n<path d=\"M26.8835 9.93119C29.0264 5.77168 34.9736 5.77169 37.1165 9.93119C38.4042 12.4306 41.3092 13.6339 43.9871 12.7771C48.4436 11.3512 52.6488 15.5564 51.2229 20.0129C50.3661 22.6908 51.5694 25.5958 54.0688 26.8835C58.2283 29.0264 58.2283 34.9736 54.0688 37.1165C51.5694 38.4042 50.3661 41.3092 51.2229 43.9871C52.6488 48.4436 48.4436 52.6488 43.9871 51.2229C41.3092 50.3661 38.4042 51.5694 37.1165 54.0688C34.9736 58.2283 29.0264 58.2283 26.8835 54.0688C25.5958 51.5694 22.6908 50.3661 20.0129 51.2229C15.5564 52.6488 11.3512 48.4436 12.7771 43.9871C13.6339 41.3092 12.4306 38.4042 9.93119 37.1165C5.77168 34.9736 5.77169 29.0264 9.93119 26.8835C12.4306 25.5958 13.6339 22.6908 12.7771 20.0129C11.3512 15.5564 15.5564 11.3512 20.0129 12.7771C22.6908 13.6339 25.5958 12.4306 26.8835 9.93119Z\" fill=\"url(#paint0_linear_858_3106)\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_858_3106\" x=\"2.8125\" y=\"2.81152\" width=\"58.375\" height=\"58.377\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"2\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3106\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_858_3106\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3106\" x1=\"32\" y1=\"0\" x2=\"32\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DE9817\"/>\\n<stop offset=\"1\" stop-color=\"#9B6707\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"5%\"})}),className:\"framer-p4bncb\",\"data-framer-name\":\"2.1%\",fonts:[\"GF;Manrope-500\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tse6if\",\"data-border\":true,\"data-framer-name\":\"Businesses card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10bhg49\",\"data-framer-name\":\"Category\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"28\" viewBox=\"0 0 28 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_858_3098)\">\\n<g filter=\"url(#filter0_bd_858_3098)\">\\n<circle cx=\"4.08398\" cy=\"23.333\" r=\"3.5\" fill=\"url(#paint0_linear_858_3098)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter1_bd_858_3098)\">\\n<circle cx=\"24.5\" cy=\"4.66699\" r=\"3.5\" fill=\"url(#paint1_linear_858_3098)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n</g>\\n<g filter=\"url(#filter2_bd_858_3098)\">\\n<path d=\"M9.24065 15.7143C10.8857 15.7143 12.204 17.0455 12.204 18.7022V22.6793C12.204 24.3243 10.8857 25.666 9.24065 25.666H5.29732C3.66398 25.666 2.33398 24.3243 2.33398 22.6793V18.7022C2.33398 17.0455 3.66398 15.7143 5.29732 15.7143H9.24065ZM22.7041 15.7143C24.3374 15.7143 25.6674 17.0455 25.6674 18.7022V22.6793C25.6674 24.3243 24.3374 25.666 22.7041 25.666H18.7608C17.1158 25.666 15.7974 24.3243 15.7974 22.6793V18.7022C15.7974 17.0455 17.1158 15.7143 18.7608 15.7143H22.7041ZM9.24065 2.33301C10.8857 2.33301 12.204 3.67467 12.204 5.32084V9.29801C12.204 10.9547 10.8857 12.2847 9.24065 12.2847H5.29732C3.66398 12.2847 2.33398 10.9547 2.33398 9.29801V5.32084C2.33398 3.67467 3.66398 2.33301 5.29732 2.33301H9.24065ZM22.7041 2.33301C24.3374 2.33301 25.6674 3.67467 25.6674 5.32084V9.29801C25.6674 10.9547 24.3374 12.2847 22.7041 12.2847H18.7608C17.1158 12.2847 15.7974 10.9547 15.7974 9.29801V5.32084C15.7974 3.67467 17.1158 2.33301 18.7608 2.33301H22.7041Z\" fill=\"url(#paint2_linear_858_3098)\" fill-opacity=\"0.6\" shape-rendering=\"crispEdges\"/>\\n<path d=\"M9.24065 16.2143C10.6054 16.2143 11.704 17.3175 11.704 18.7022V22.6793C11.704 24.0533 10.6044 25.166 9.24065 25.166H5.29732C3.94395 25.166 2.83398 24.052 2.83398 22.6793V18.7022C2.83398 17.3188 3.94293 16.2143 5.29732 16.2143H9.24065ZM22.7041 16.2143C24.0585 16.2143 25.1674 17.3188 25.1674 18.7022V22.6793C25.1674 24.052 24.0575 25.166 22.7041 25.166H18.7608C17.397 25.166 16.2974 24.0533 16.2974 22.6793V18.7022C16.2974 17.3175 17.396 16.2143 18.7608 16.2143H22.7041ZM9.24065 2.83301C10.6043 2.83301 11.704 3.94557 11.704 5.32084V9.29801C11.704 10.6824 10.6057 11.7847 9.24065 11.7847H5.29732C3.94268 11.7847 2.83398 10.6811 2.83398 9.29801V5.32084C2.83398 3.94685 3.94407 2.83301 5.29732 2.83301H9.24065ZM22.7041 2.83301C24.0573 2.83301 25.1674 3.94685 25.1674 5.32084V9.29801C25.1674 10.6811 24.0587 11.7847 22.7041 11.7847H18.7608C17.3957 11.7847 16.2974 10.6824 16.2974 9.29801V5.32084C16.2974 3.94557 17.3971 2.83301 18.7608 2.83301H22.7041Z\" stroke=\"url(#paint3_linear_858_3098)\" stroke-opacity=\"0.05\" shape-rendering=\"crispEdges\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_bd_858_3098\" x=\"-16.416\" y=\"2.83301\" width=\"41\" height=\"41\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3098\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3098\" result=\"effect2_dropShadow_858_3098\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3098\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_bd_858_3098\" x=\"4\" y=\"-15.833\" width=\"41\" height=\"41\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"8.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3098\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.439216 0 0 0 0 0.278431 0 0 0 0 0.105882 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3098\" result=\"effect2_dropShadow_858_3098\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3098\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_bd_858_3098\" x=\"-8.66602\" y=\"-8.66699\" width=\"45.334\" height=\"45.333\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"5.5\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_858_3098\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"2\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.427451 0 0 0 0 0.407843 0 0 0 0 0.380392 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_backgroundBlur_858_3098\" result=\"effect2_dropShadow_858_3098\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_858_3098\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_858_3098\" x1=\"4.08398\" y1=\"19.833\" x2=\"4.08398\" y2=\"26.833\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_858_3098\" x1=\"24.5\" y1=\"1.16699\" x2=\"24.5\" y2=\"8.16699\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#BD7724\"/>\\n<stop offset=\"1\" stop-color=\"#A46418\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_858_3098\" x1=\"6.15357\" y1=\"5.68638\" x2=\"14.5443\" y2=\"25.4351\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#757471\"/>\\n<stop offset=\"1\" stop-color=\"#686766\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_858_3098\" x1=\"14.0007\" y1=\"2.33301\" x2=\"14.0007\" y2=\"25.666\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F8F8F8\"/>\\n<stop offset=\"1\" stop-color=\"#999999\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_858_3098\">\\n<rect width=\"28\" height=\"28\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xlqfl6\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"56\" viewBox=\"-1 -1 3 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"2.18557e-08\" x2=\"0.499998\" y2=\"54\" stroke=\"#272729\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qlrpe6\",\"data-framer-name\":\"Frame 19\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m9bca0\",\"data-styles-preset\":\"emvbyxX4u\",children:\"Others\"})}),className:\"framer-1mad73f\",\"data-framer-name\":\"Boshqa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1owqjs9\",\"data-framer-name\":\"Trips\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a46zun\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qkpt8a\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pld7sy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g97rq-container\",nodeId:\"yIUyWRZ1t\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"Ugbn3ciMZ\"},K4K2dkZC1:{variant:\"Ugbn3ciMZ\"},wbomxF4_O:{variant:\"Ugbn3ciMZ\"}},children:/*#__PURE__*/_jsx(Label,{a7hMzledn:\"TRIPS\",height:\"100%\",id:\"yIUyWRZ1t\",layoutId:\"yIUyWRZ1t\",variant:\"JAb5VmwjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",style:{\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"OUr trips\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",children:\"with club members\"})]}),className:\"framer-zprl4r\",\"data-framer-name\":\"get known with milliard business club\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x9eedl\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nqfml7-container hidden-amdf6v hidden-kdhxyc hidden-1ngglxw\",\"data-framer-name\":\"L\",isAuthoredByUser:true,isModuleExternal:true,name:\"L\",nodeId:\"ZFt_FMXFg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(2, 2, 2, 0.4)\",arrowPadding:20,arrowRadius:40,arrowSize:60,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:48,height:\"100%\",id:\"ZFt_FMXFg\",layoutId:\"ZFt_FMXFg\",name:\"L\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:48,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jib4le-container\",\"data-framer-name\":\"L -1\",inComponentSlot:true,name:\"L -1\",nodeId:\"ZKJJ67cj7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"ZKJJ67cj7\",layoutId:\"ZKJJ67cj7\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"L -1\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"Ma0GmVMxM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u7x1qg-container\",\"data-framer-name\":\"L - 2\",inComponentSlot:true,name:\"L - 2\",nodeId:\"JOvNkGK9N\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"JOvNkGK9N\",layoutId:\"JOvNkGK9N\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"L - 2\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"Ma0GmVMxM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ho25fw-container\",\"data-framer-name\":\"L - 3\",inComponentSlot:true,name:\"L - 3\",nodeId:\"LfbDW2iU1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"LfbDW2iU1\",layoutId:\"LfbDW2iU1\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"L - 3\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"Ma0GmVMxM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"700px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-105ebrc-container\",\"data-framer-name\":\"L - 4\",inComponentSlot:true,name:\"L - 4\",nodeId:\"dHjBhpxmQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"dHjBhpxmQ\",layoutId:\"dHjBhpxmQ\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"L - 4\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"Ma0GmVMxM\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nujv39-container hidden-72rtr7 hidden-1wps2js hidden-1ngglxw\",\"data-framer-name\":\"T\",isAuthoredByUser:true,isModuleExternal:true,name:\"T\",nodeId:\"hVrkatrNj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(2, 2, 2, 0.6)\",arrowPadding:20,arrowRadius:40,arrowSize:48,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:48,height:\"100%\",id:\"hVrkatrNj\",layoutId:\"hVrkatrNj\",name:\"T\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:48,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gco456-container\",\"data-framer-name\":\"T - 1\",inComponentSlot:true,name:\"T - 1\",nodeId:\"NqST0WUWm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"NqST0WUWm\",layoutId:\"NqST0WUWm\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"T - 1\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"RdwEi4eGa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"620px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tqcvvx-container\",\"data-framer-name\":\"T - 2\",inComponentSlot:true,name:\"T - 2\",nodeId:\"vqIwl95Xp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"vqIwl95Xp\",layoutId:\"vqIwl95Xp\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"T - 2\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"RdwEi4eGa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"620px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zattsy-container\",\"data-framer-name\":\"T - 3\",inComponentSlot:true,name:\"T - 3\",nodeId:\"bJK_cfQyE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"bJK_cfQyE\",layoutId:\"bJK_cfQyE\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"T - 3\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"RdwEi4eGa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"620px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b120cn-container\",\"data-framer-name\":\"T - 4\",inComponentSlot:true,name:\"T - 4\",nodeId:\"oj0m6K9TD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"oj0m6K9TD\",layoutId:\"oj0m6K9TD\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"T - 4\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"RdwEi4eGa\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rwjsk3-container hidden-72rtr7 hidden-1wps2js hidden-amdf6v hidden-kdhxyc\",\"data-framer-name\":\"M\",isAuthoredByUser:true,isModuleExternal:true,name:\"M\",nodeId:\"wusVN6Br3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:48,height:\"100%\",id:\"wusVN6Br3\",layoutId:\"wusVN6Br3\",name:\"M\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q4ag0q-container\",\"data-framer-name\":\"M - 1\",inComponentSlot:true,name:\"M - 1\",nodeId:\"R_Zj8xXiK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"R_Zj8xXiK\",layoutId:\"R_Zj8xXiK\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"M - 1\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"r9DxbHV6C\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yzptdf-container\",\"data-framer-name\":\"M - 2\",inComponentSlot:true,name:\"M - 2\",nodeId:\"QD5cTrepu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"QD5cTrepu\",layoutId:\"QD5cTrepu\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"M - 2\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"r9DxbHV6C\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xv2bsv-container\",\"data-framer-name\":\"M - 3\",inComponentSlot:true,name:\"M - 3\",nodeId:\"VwNjIgXAw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"VwNjIgXAw\",layoutId:\"VwNjIgXAw\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"M - 3\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"r9DxbHV6C\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:602,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wfhwwn-container\",\"data-framer-name\":\"M - 4\",inComponentSlot:true,name:\"M - 4\",nodeId:\"xfVR48_cZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card1,{height:\"100%\",id:\"xfVR48_cZ\",layoutId:\"xfVR48_cZ\",N30aMDjNq:\"Turkiyaga amalga oshirgan sayyohatimiz\",name:\"M - 4\",onHokEwMU:\"\uD83C\uDDF9\uD83C\uDDF7\",variant:\"r9DxbHV6C\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-108lzlz\",\"data-framer-name\":\"About club\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dybh4s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d2wk2j\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ufvqx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w4gi4e-container\",nodeId:\"beLSUGsia\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"Ugbn3ciMZ\"},K4K2dkZC1:{variant:\"Ugbn3ciMZ\"},wbomxF4_O:{variant:\"Ugbn3ciMZ\"}},children:/*#__PURE__*/_jsx(Label,{a7hMzledn:\"MEMBERS\",height:\"100%\",id:\"beLSUGsia\",layoutId:\"beLSUGsia\",variant:\"JAb5VmwjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"Permanent members of MILLIARD club\"})}),className:\"framer-ayn3rn\",\"data-framer-name\":\"get known with milliard business club\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kOGpxhfnF\"},implicitPathVariables:undefined},{href:{webPageId:\"kOGpxhfnF\"},implicitPathVariables:undefined},{href:{webPageId:\"kOGpxhfnF\"},implicitPathVariables:undefined},{href:{webPageId:\"kOGpxhfnF\"},implicitPathVariables:undefined},{href:{webPageId:\"kOGpxhfnF\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cd1b24-container\",nodeId:\"uHBUfGh_t\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{LvVOaeOIO:resolvedLinks1[3]},K4K2dkZC1:{LvVOaeOIO:resolvedLinks1[2],variant:\"F32E8Lppu\"},raHTYwqln:{LvVOaeOIO:resolvedLinks1[1],variant:\"F32E8Lppu\"},wbomxF4_O:{LvVOaeOIO:resolvedLinks1[4],variant:\"SasVmalzY\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{fpvQ0nc5X:\"ALL MEMBERS\",height:\"100%\",id:\"uHBUfGh_t\",layoutId:\"uHBUfGh_t\",LvVOaeOIO:resolvedLinks1[0],variant:\"jKNgT3dj4\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uo043n\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 32px) / 3, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 32px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 48px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:156,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ywtt6v-container\",nodeId:\"fCQE5Y9CA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fGsrMEpS5\"},K4K2dkZC1:{variant:\"uWEobrpNw\"},wbomxF4_O:{variant:\"fGsrMEpS5\"}},children:/*#__PURE__*/_jsx(Speaker,{height:\"100%\",i54KqoyGH:\"Murad Nazarov\",id:\"fCQE5Y9CA\",jfWeDSxpg:'Founder of\"Murad Buildings\" ',layoutId:\"fCQE5Y9CA\",style:{width:\"100%\"},variant:\"s4fSLNFA9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 32px) / 3, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 32px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 48px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:156,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9i740k-container\",nodeId:\"ORjoqBZyT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fGsrMEpS5\"},K4K2dkZC1:{variant:\"uWEobrpNw\"},wbomxF4_O:{variant:\"fGsrMEpS5\"}},children:/*#__PURE__*/_jsx(Speaker,{height:\"100%\",i54KqoyGH:\"Murad Nazarov\",id:\"ORjoqBZyT\",jfWeDSxpg:'Founder of\"Murad Buildings\" ',layoutId:\"ORjoqBZyT\",style:{width:\"100%\"},variant:\"s4fSLNFA9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 32px) / 3, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 32px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 48px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:156,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vj6kuc-container\",nodeId:\"bgWyM1Xsu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fGsrMEpS5\"},K4K2dkZC1:{variant:\"uWEobrpNw\"},wbomxF4_O:{variant:\"fGsrMEpS5\"}},children:/*#__PURE__*/_jsx(Speaker,{height:\"100%\",i54KqoyGH:\"Murad Nazarov\",id:\"bgWyM1Xsu\",jfWeDSxpg:'Founder of\"Murad Buildings\" ',layoutId:\"bgWyM1Xsu\",style:{width:\"100%\"},variant:\"s4fSLNFA9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 32px) / 3, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 32px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 48px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:156,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bk3n2k-container\",nodeId:\"Avw6hG8PG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fGsrMEpS5\"},K4K2dkZC1:{variant:\"uWEobrpNw\"},wbomxF4_O:{variant:\"fGsrMEpS5\"}},children:/*#__PURE__*/_jsx(Speaker,{height:\"100%\",i54KqoyGH:\"Murad Nazarov\",id:\"Avw6hG8PG\",jfWeDSxpg:'Founder of\"Murad Buildings\" ',layoutId:\"Avw6hG8PG\",style:{width:\"100%\"},variant:\"s4fSLNFA9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 32px) / 3, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 32px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 48px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:156,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12gbzth-container\",nodeId:\"X57_MuGRP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fGsrMEpS5\"},K4K2dkZC1:{variant:\"uWEobrpNw\"},wbomxF4_O:{variant:\"fGsrMEpS5\"}},children:/*#__PURE__*/_jsx(Speaker,{height:\"100%\",i54KqoyGH:\"Murad Nazarov\",id:\"X57_MuGRP\",jfWeDSxpg:'Founder of\"Murad Buildings\" ',layoutId:\"X57_MuGRP\",style:{width:\"100%\"},variant:\"s4fSLNFA9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1680px) - 32px) / 3, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 32px) / 3, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 48px) / 3, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1680px), 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:156,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 48px) / 3, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cphgln-container\",nodeId:\"grJMzMDa1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"fGsrMEpS5\"},K4K2dkZC1:{variant:\"uWEobrpNw\"},wbomxF4_O:{variant:\"fGsrMEpS5\"}},children:/*#__PURE__*/_jsx(Speaker,{height:\"100%\",i54KqoyGH:\"Murad Nazarov\",id:\"grJMzMDa1\",jfWeDSxpg:'Founder of\"Murad Buildings\" ',layoutId:\"grJMzMDa1\",style:{width:\"100%\"},variant:\"s4fSLNFA9\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1t36qjw\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xo6nr1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13xms6m\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-192pznz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18l0blh-container\",nodeId:\"NO6Klo8BC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"Ugbn3ciMZ\"},K4K2dkZC1:{variant:\"Ugbn3ciMZ\"},wbomxF4_O:{variant:\"Ugbn3ciMZ\"}},children:/*#__PURE__*/_jsx(Label,{a7hMzledn:\"TESTIMONIALS\",height:\"100%\",id:\"NO6Klo8BC\",layoutId:\"NO6Klo8BC\",variant:\"JAb5VmwjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:[\"GET TO KNOW THE OPINIONS \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e1c73824-65be-4b64-a6df-97db2d9d34ea, rgb(135, 135, 143))\"},children:\"OF OUR CLUB MEMBERS\"})]})}),className:\"framer-h2p7el\",\"data-framer-name\":\"get known with milliard business club\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rg5jjv\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1680px) - 84px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1680px) - 152px) / 4, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 72px) / 4, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1680px) - 32px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:714,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 96px) / 4, 50px)`,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-z8371p-container\",id:\"z8371p\",nodeId:\"veDs2zNOH\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"yZrWOLnel\"},K4K2dkZC1:{variant:\"yZrWOLnel\"},raHTYwqln:{variant:\"yZrWOLnel\"},wbomxF4_O:{variant:\"yZrWOLnel\"}},children:/*#__PURE__*/_jsx(Card2,{GpQRMzuKq:GpQRMzuKq3bnx0g({overlay:overlay2}),height:\"100%\",id:\"veDs2zNOH\",Jhf9oEju0:\"Founder of printing and souvenir manufacturing company\",layoutId:\"veDs2zNOH\",OKuHRsK0X:\"Founder of \\xabShuxrat print\\xbb \",style:{width:\"100%\"},variant:\"VhS6ixiJg\",width:\"100%\",ZiKSn__kA:\"Shuhrat Ergashev\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-agcdj\"),\"data-framer-portal-id\":\"z8371p\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"NubdQc4Xl\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wbomxF4_O:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-k9ecdn\"),\"data-framer-name\":\"Video stack\",\"data-framer-portal-id\":\"z8371p\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1juheh0\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay2}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v4cmrj\",\"data-framer-name\":\"Close remove 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.53033 5.46967C6.23744 5.17678 5.76256 5.17678 5.46967 5.46967C5.17678 5.76256 5.17678 6.23744 5.46967 6.53033L10.9393 12L5.46967 17.4697C5.17678 17.7626 5.17678 18.2374 5.46967 18.5303C5.76256 18.8232 6.23744 18.8232 6.53033 18.5303L12 13.0607L17.4697 18.5303C17.7626 18.8232 18.2374 18.8232 18.5303 18.5303C18.8232 18.2374 18.8232 17.7626 18.5303 17.4697L13.0607 12L18.5303 6.53033C18.8232 6.23744 18.8232 5.76256 18.5303 5.46967C18.2374 5.17678 17.7626 5.17678 17.4697 5.46967L12 10.9393L6.53033 5.46967Z\" fill=\"#E5E5E5\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q55t93\",\"data-framer-name\":\"Video area\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-27gtxh-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"psh8Zyf3B\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"psh8Zyf3B\",isMixedBorderRadius:false,isRed:true,layoutId:\"psh8Zyf3B\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:\"S0e1GHlSGe0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rekld2\",\"data-styles-preset\":\"q1Q6eEkMF\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"Shukhrat Ergashev\"})}),className:\"framer-1por4cv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1680px) - 84px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1680px) - 152px) / 4, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 72px) / 4, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1680px) - 32px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:714,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 96px) / 4, 50px)`,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-wdkmwe-container\",id:\"wdkmwe\",nodeId:\"LPAhPEHW4\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"yZrWOLnel\"},K4K2dkZC1:{variant:\"yZrWOLnel\"},raHTYwqln:{variant:\"yZrWOLnel\"},wbomxF4_O:{variant:\"yZrWOLnel\"}},children:/*#__PURE__*/_jsx(Card2,{GpQRMzuKq:GpQRMzuKq3bnx0g({overlay:overlay3}),height:\"100%\",id:\"LPAhPEHW4\",Jhf9oEju0:\"Founder of printing and souvenir manufacturing company\",layoutId:\"LPAhPEHW4\",OKuHRsK0X:\"Founder of \\xabShuxrat print\\xbb \",style:{width:\"100%\"},variant:\"VhS6ixiJg\",width:\"100%\",ZiKSn__kA:\"Shuhrat Ergashev\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-5t5j67\"),\"data-framer-portal-id\":\"wdkmwe\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"l30B4zGPC\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wbomxF4_O:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-cnl4po\"),\"data-framer-name\":\"Video stack\",\"data-framer-portal-id\":\"wdkmwe\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m71kyr\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay3}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4hxyc4\",\"data-framer-name\":\"Close remove 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.53033 5.46967C6.23744 5.17678 5.76256 5.17678 5.46967 5.46967C5.17678 5.76256 5.17678 6.23744 5.46967 6.53033L10.9393 12L5.46967 17.4697C5.17678 17.7626 5.17678 18.2374 5.46967 18.5303C5.76256 18.8232 6.23744 18.8232 6.53033 18.5303L12 13.0607L17.4697 18.5303C17.7626 18.8232 18.2374 18.8232 18.5303 18.5303C18.8232 18.2374 18.8232 17.7626 18.5303 17.4697L13.0607 12L18.5303 6.53033C18.8232 6.23744 18.8232 5.76256 18.5303 5.46967C18.2374 5.17678 17.7626 5.17678 17.4697 5.46967L12 10.9393L6.53033 5.46967Z\" fill=\"#E5E5E5\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-71v4df\",\"data-framer-name\":\"Video area\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1no5p2-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Z5hPwq1ul\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"Z5hPwq1ul\",isMixedBorderRadius:false,isRed:true,layoutId:\"Z5hPwq1ul\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:\"S0e1GHlSGe0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rekld2\",\"data-styles-preset\":\"q1Q6eEkMF\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"Shukhrat Ergashev\"})}),className:\"framer-o6ojro\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1680px) - 84px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1680px) - 152px) / 4, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 72px) / 4, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1680px) - 32px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:714,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 96px) / 4, 50px)`,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1f5i8ri-container\",id:\"1f5i8ri\",nodeId:\"gqSjyLeK8\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"yZrWOLnel\"},K4K2dkZC1:{variant:\"yZrWOLnel\"},raHTYwqln:{variant:\"yZrWOLnel\"},wbomxF4_O:{variant:\"yZrWOLnel\"}},children:/*#__PURE__*/_jsx(Card2,{GpQRMzuKq:GpQRMzuKq3bnx0g({overlay:overlay4}),height:\"100%\",id:\"gqSjyLeK8\",Jhf9oEju0:\"Founder of printing and souvenir manufacturing company\",layoutId:\"gqSjyLeK8\",OKuHRsK0X:\"Founder of \\xabShuxrat print\\xbb \",style:{width:\"100%\"},variant:\"VhS6ixiJg\",width:\"100%\",ZiKSn__kA:\"Shuhrat Ergashev\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-gr6f1n\"),\"data-framer-portal-id\":\"1f5i8ri\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"jtjzr2Kex\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wbomxF4_O:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-1lny8sx\"),\"data-framer-name\":\"Video stack\",\"data-framer-portal-id\":\"1f5i8ri\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ur7nt\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay4}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t1aufw\",\"data-framer-name\":\"Close remove 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.53033 5.46967C6.23744 5.17678 5.76256 5.17678 5.46967 5.46967C5.17678 5.76256 5.17678 6.23744 5.46967 6.53033L10.9393 12L5.46967 17.4697C5.17678 17.7626 5.17678 18.2374 5.46967 18.5303C5.76256 18.8232 6.23744 18.8232 6.53033 18.5303L12 13.0607L17.4697 18.5303C17.7626 18.8232 18.2374 18.8232 18.5303 18.5303C18.8232 18.2374 18.8232 17.7626 18.5303 17.4697L13.0607 12L18.5303 6.53033C18.8232 6.23744 18.8232 5.76256 18.5303 5.46967C18.2374 5.17678 17.7626 5.17678 17.4697 5.46967L12 10.9393L6.53033 5.46967Z\" fill=\"#E5E5E5\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fzggqh\",\"data-framer-name\":\"Video area\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7d38tc-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"x2q7hVBoZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"x2q7hVBoZ\",isMixedBorderRadius:false,isRed:true,layoutId:\"x2q7hVBoZ\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:\"S0e1GHlSGe0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rekld2\",\"data-styles-preset\":\"q1Q6eEkMF\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"Shukhrat Ergashev\"})}),className:\"framer-1wp87x4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1680px) - 84px) / 2, 50px)`},K4K2dkZC1:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1680px) - 152px) / 4, 50px)`},raHTYwqln:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1680px) - 72px) / 4, 50px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1680px) - 32px, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:714,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1680px) - 96px) / 4, 50px)`,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-lq6zlp-container\",id:\"lq6zlp\",nodeId:\"pt2Hcfcrk\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"yZrWOLnel\"},K4K2dkZC1:{variant:\"yZrWOLnel\"},raHTYwqln:{variant:\"yZrWOLnel\"},wbomxF4_O:{variant:\"yZrWOLnel\"}},children:/*#__PURE__*/_jsx(Card2,{GpQRMzuKq:GpQRMzuKq3bnx0g({overlay:overlay5}),height:\"100%\",id:\"pt2Hcfcrk\",Jhf9oEju0:\"Founder of printing and souvenir manufacturing company\",layoutId:\"pt2Hcfcrk\",OKuHRsK0X:\"Founder of \\xabShuxrat print\\xbb \",style:{width:\"100%\"},variant:\"VhS6ixiJg\",width:\"100%\",ZiKSn__kA:\"Shuhrat Ergashev\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1vohgs5\"),\"data-framer-portal-id\":\"lq6zlp\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"VMWiE_Rnm\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wbomxF4_O:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-ef87rr\"),\"data-framer-name\":\"Video stack\",\"data-framer-portal-id\":\"lq6zlp\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kot8vx\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay5}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nxi1r2\",\"data-framer-name\":\"Close remove 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.53033 5.46967C6.23744 5.17678 5.76256 5.17678 5.46967 5.46967C5.17678 5.76256 5.17678 6.23744 5.46967 6.53033L10.9393 12L5.46967 17.4697C5.17678 17.7626 5.17678 18.2374 5.46967 18.5303C5.76256 18.8232 6.23744 18.8232 6.53033 18.5303L12 13.0607L17.4697 18.5303C17.7626 18.8232 18.2374 18.8232 18.5303 18.5303C18.8232 18.2374 18.8232 17.7626 18.5303 17.4697L13.0607 12L18.5303 6.53033C18.8232 6.23744 18.8232 5.76256 18.5303 5.46967C18.2374 5.17678 17.7626 5.17678 17.4697 5.46967L12 10.9393L6.53033 5.46967Z\" fill=\"#E5E5E5\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4m3b3h\",\"data-framer-name\":\"Video area\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dlwepe-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"YE6BVrW8P\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"YE6BVrW8P\",isMixedBorderRadius:false,isRed:true,layoutId:\"YE6BVrW8P\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:\"S0e1GHlSGe0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rekld2\",\"data-styles-preset\":\"q1Q6eEkMF\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:\"Shukhrat Ergashev\"})}),className:\"framer-tzbzra\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),getContainer())})})]})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1mzei8q\",\"data-framer-name\":\"Partners\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d73dpn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19cwplj\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azpzgc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xwajz-container\",nodeId:\"khr6rhn7n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"Ugbn3ciMZ\"},K4K2dkZC1:{variant:\"Ugbn3ciMZ\"},wbomxF4_O:{variant:\"Ugbn3ciMZ\"}},children:/*#__PURE__*/_jsx(Label,{a7hMzledn:\"PARTNERS\",height:\"100%\",id:\"khr6rhn7n\",layoutId:\"khr6rhn7n\",variant:\"JAb5VmwjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wbomxF4_O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"OUR \"}),\"PARTners\"]})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",style:{\"--framer-text-color\":\"rgb(229, 229, 229)\"},children:\"OUR\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"rgb(109, 104, 97)\",\"--framer-text-transform\":\"uppercase\"},children:\"PARTners\"})]}),className:\"framer-14vbve0\",\"data-framer-name\":\"get known with milliard business club\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5kfj9z\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1muj1v-container hidden-amdf6v hidden-kdhxyc hidden-1ngglxw\",\"data-framer-name\":\"Up / desk\",isAuthoredByUser:true,isModuleExternal:true,name:\"Up / desk\",nodeId:\"FcBM_Co0E\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"FcBM_Co0E\",layoutId:\"FcBM_Co0E\",name:\"Up / desk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ftubb4\",\"data-framer-name\":\"up des\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fnfxv1\",\"data-border\":true,\"data-framer-name\":\"Logo 1 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:180,pixelWidth:180,src:\"https://framerusercontent.com/images/QH8hFySveR7PjZ9uXKLU8Duc.png\"},className:\"framer-ka0hjd\",\"data-framer-name\":\"image 27\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8labmr\",\"data-border\":true,\"data-framer-name\":\"Logo 2 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:444,src:\"https://framerusercontent.com/images/p1i8TPIP5wBQqtCKq7t1s6knaZs.png\"},className:\"framer-1spx5v5\",\"data-framer-name\":\"image 28\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-34sz5r\",\"data-border\":true,\"data-framer-name\":\"Logo 3 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/8WKksH4Fmy0igYt6l5GLn6OJHe8.png\"},className:\"framer-ckacbi\",\"data-framer-name\":\"image 29\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uaqmxj\",\"data-border\":true,\"data-framer-name\":\"Logo 4 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/0RYznY6YO7B1mEUp43XNOzi7E.png\"},className:\"framer-85uiv8\",\"data-framer-name\":\"image 30\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7m1u9t\",\"data-border\":true,\"data-framer-name\":\"Logo 5 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:148,pixelWidth:324,src:\"https://framerusercontent.com/images/v01kKmZuk7kfYZvoeMpuoAltzE.png\"},className:\"framer-qr6uv0\",\"data-framer-name\":\"image 31\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkh7u6\",\"data-border\":true,\"data-framer-name\":\"Logo 6 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:160,pixelWidth:344,src:\"https://framerusercontent.com/images/SaR1ByvjLOi6PD4sTongwRFEdg.png\"},className:\"framer-19dwolg\",\"data-framer-name\":\"image 32\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zjiwf9\",\"data-border\":true,\"data-framer-name\":\"Logo 7 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:370,src:\"https://framerusercontent.com/images/hQYE3nmhuJeMYFVcbNz4siy2w.png\"},className:\"framer-160obq2\",\"data-framer-name\":\"image 33\",transformTemplate:transformTemplate1})})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwtspx-container hidden-72rtr7 hidden-1wps2js\",\"data-framer-name\":\"Up / mob\",isAuthoredByUser:true,isModuleExternal:true,name:\"Up / mob\",nodeId:\"xmK2uFDdf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"xmK2uFDdf\",layoutId:\"xmK2uFDdf\",name:\"Up / mob\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gndr7b\",\"data-framer-name\":\"mob up\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jut8z\",\"data-border\":true,\"data-framer-name\":\"Logo 1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:180,pixelWidth:180,src:\"https://framerusercontent.com/images/QH8hFySveR7PjZ9uXKLU8Duc.png\"},className:\"framer-12ofnby\",\"data-framer-name\":\"image 27\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-147f32y\",\"data-border\":true,\"data-framer-name\":\"Logo 2\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:444,src:\"https://framerusercontent.com/images/p1i8TPIP5wBQqtCKq7t1s6knaZs.png\"},className:\"framer-5yfkpe\",\"data-framer-name\":\"image 28\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-srbnud\",\"data-border\":true,\"data-framer-name\":\"Logo 3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/8WKksH4Fmy0igYt6l5GLn6OJHe8.png\"},className:\"framer-1iuudoe\",\"data-framer-name\":\"image 29\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7lt00d\",\"data-border\":true,\"data-framer-name\":\"Logo 4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/0RYznY6YO7B1mEUp43XNOzi7E.png\"},className:\"framer-1v33lkd\",\"data-framer-name\":\"image 30\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h826t8\",\"data-border\":true,\"data-framer-name\":\"Logo 5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:148,pixelWidth:324,src:\"https://framerusercontent.com/images/v01kKmZuk7kfYZvoeMpuoAltzE.png\"},className:\"framer-1ygil8t\",\"data-framer-name\":\"image 31\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tyvtvw\",\"data-border\":true,\"data-framer-name\":\"Logo 6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:160,pixelWidth:344,src:\"https://framerusercontent.com/images/SaR1ByvjLOi6PD4sTongwRFEdg.png\"},className:\"framer-1io5tzx\",\"data-framer-name\":\"image 32\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17myc1t\",\"data-border\":true,\"data-framer-name\":\"Logo 7\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:370,src:\"https://framerusercontent.com/images/hQYE3nmhuJeMYFVcbNz4siy2w.png\"},className:\"framer-1fxzvcq\",\"data-framer-name\":\"image 33\",transformTemplate:transformTemplate1})})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k5gs8k-container hidden-amdf6v hidden-kdhxyc hidden-1ngglxw\",\"data-framer-name\":\"down / desk\",isAuthoredByUser:true,isModuleExternal:true,name:\"down / desk\",nodeId:\"jHnYHZwRX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"jHnYHZwRX\",layoutId:\"jHnYHZwRX\",name:\"down / desk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ymyls1\",\"data-framer-name\":\"down desc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18wo6lg\",\"data-border\":true,\"data-framer-name\":\"Logo 8 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:144,pixelWidth:208,src:\"https://framerusercontent.com/images/eVNXxvIQXvIbaFlzdAwkC7mkd8.png\"},className:\"framer-10fuul1\",\"data-framer-name\":\"image 34\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qz6ca9\",\"data-border\":true,\"data-framer-name\":\"Logo 9 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:148,pixelWidth:440,src:\"https://framerusercontent.com/images/dowNF3YmtVREa63YjMEzJVgxgHs.png\"},className:\"framer-xguhun\",\"data-framer-name\":\"image 35\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vn8xyz\",\"data-border\":true,\"data-framer-name\":\"Logo 10 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:84,pixelWidth:364,src:\"https://framerusercontent.com/images/nVvKa5400SKJBtw7I3wAoiNxMl0.png\"},className:\"framer-hklnk\",\"data-framer-name\":\"image 36\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-icqecl\",\"data-border\":true,\"data-framer-name\":\"Logo 11 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:136,pixelWidth:316,src:\"https://framerusercontent.com/images/Wg95NM0YEe0MOYwwmWctFVSHA.png\"},className:\"framer-ci4dy9\",\"data-framer-name\":\"image 37\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1avl6g1\",\"data-border\":true,\"data-framer-name\":\"Logo 12 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:352,pixelWidth:352,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3qHCsdpa9M4i6X5GuSQ5vOHbtI.png\"},className:\"framer-15ly524\",\"data-framer-name\":\"16\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-twg8t9\",\"data-border\":true,\"data-framer-name\":\"Logo 13 /  min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:300,pixelWidth:496,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QLlYWwnD38Tipu5INAosivvWg.png\"},className:\"framer-1urnoii\",\"data-framer-name\":\"14\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aa7901\",\"data-border\":true,\"data-framer-name\":\"Logo 14 / min\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:148,pixelWidth:326,src:\"https://framerusercontent.com/images/sNRowTY6j7vG0RAgvH8JoDOw.png\"},className:\"framer-1sxfj1t\",\"data-framer-name\":\"image 38\",transformTemplate:transformTemplate1})})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dmzccd-container hidden-72rtr7 hidden-1wps2js\",\"data-framer-name\":\"down / mob\",isAuthoredByUser:true,isModuleExternal:true,name:\"down / mob\",nodeId:\"uyln32yzo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"uyln32yzo\",layoutId:\"uyln32yzo\",name:\"down / mob\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t4hm2y\",\"data-framer-name\":\"mob down\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13tu3tv\",\"data-border\":true,\"data-framer-name\":\"Logo 8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:144,pixelWidth:208,src:\"https://framerusercontent.com/images/eVNXxvIQXvIbaFlzdAwkC7mkd8.png\"},className:\"framer-15sqor5\",\"data-framer-name\":\"image 34\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vw6629\",\"data-border\":true,\"data-framer-name\":\"Logo 9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:148,pixelWidth:440,src:\"https://framerusercontent.com/images/dowNF3YmtVREa63YjMEzJVgxgHs.png\"},className:\"framer-1xjfgsv\",\"data-framer-name\":\"image 35\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b6u96a\",\"data-border\":true,\"data-framer-name\":\"Logo 10\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:84,pixelWidth:364,src:\"https://framerusercontent.com/images/nVvKa5400SKJBtw7I3wAoiNxMl0.png\"},className:\"framer-o7x7po\",\"data-framer-name\":\"image 36\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8dxba8\",\"data-border\":true,\"data-framer-name\":\"Logo 11\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:136,pixelWidth:316,src:\"https://framerusercontent.com/images/Wg95NM0YEe0MOYwwmWctFVSHA.png\"},className:\"framer-1eimts4\",\"data-framer-name\":\"image 37\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ettbdu\",\"data-border\":true,\"data-framer-name\":\"Logo 12\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:352,pixelWidth:352,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3qHCsdpa9M4i6X5GuSQ5vOHbtI.png\"},className:\"framer-y697y7\",\"data-framer-name\":\"16\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6fyg3r\",\"data-border\":true,\"data-framer-name\":\"Logo 13\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:300,pixelWidth:496,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QLlYWwnD38Tipu5INAosivvWg.png\"},className:\"framer-2jlon0\",\"data-framer-name\":\"14\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bderzn\",\"data-border\":true,\"data-framer-name\":\"Logo 14\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:148,pixelWidth:326,src:\"https://framerusercontent.com/images/sNRowTY6j7vG0RAgvH8JoDOw.png\"},className:\"framer-1q2w2h3\",\"data-framer-name\":\"image 38\",transformTemplate:transformTemplate1})})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1gemwti\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlhfpw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5lzkkq\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9i0vf5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-31c4vp-container\",nodeId:\"t4bEon1hi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{variant:\"Ugbn3ciMZ\"},K4K2dkZC1:{variant:\"Ugbn3ciMZ\"},wbomxF4_O:{variant:\"Ugbn3ciMZ\"}},children:/*#__PURE__*/_jsx(Label,{a7hMzledn:\"FAQ\",height:\"100%\",id:\"t4bEon1hi\",layoutId:\"t4bEon1hi\",variant:\"JAb5VmwjY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-y65fc2\",\"data-styles-preset\":\"aRb4fWSwt\",style:{\"--framer-text-color\":\"var(--token-bf445d63-34e6-433b-8ca3-a5f7b0d7c466, rgb(229, 229, 229))\"},children:[\"frequently asked \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e1c73824-65be-4b64-a6df-97db2d9d34ea, rgb(135, 135, 143))\"},children:\"questions\"})]})}),className:\"framer-10rm4gq\",\"data-framer-name\":\"get known with milliard business club\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18t28oy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fACcXYkN9:{width:`max(min(${componentViewport?.width||\"100vw\"} - 64px, 1680px), 1px)`},K4K2dkZC1:{width:`max(min(${componentViewport?.width||\"100vw\"} - 120px, 1680px), 1px)`},raHTYwqln:{width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1680px), 1px)`},wbomxF4_O:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1680px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:566,width:`max(min(${componentViewport?.width||\"100vw\"} - 240px, 1680px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6szej4-container\",nodeId:\"K_IJtDe4J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQDesktop,{height:\"100%\",id:\"K_IJtDe4J\",layoutId:\"K_IJtDe4J\",style:{width:\"100%\"},variant:\"fABGko5St\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-98j43m-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CANUmp3ap\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"CANUmp3ap\",intensity:10,layoutId:\"CANUmp3ap\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8iN2o.framer-lux5qc, .framer-8iN2o .framer-lux5qc { display: block; }\",\".framer-8iN2o.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-16d0e22a-fd3d-497d-a34f-b7284afe17a9, #131212); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-8iN2o .framer-r7a9ds-container { flex: none; height: auto; left: 50%; position: absolute; top: 240px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-8iN2o .framer-1qqj7j1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-196ejvu { 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 120px 0px 120px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1668ny0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; max-width: 1680px; overflow: visible; padding: 200px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-8iN2o .framer-vhu7rk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-vgnnef { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 860px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iN2o .framer-1ddg7fo { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-hwc4iu, .framer-8iN2o .framer-gp2m58, .framer-8iN2o .framer-1yr2hp6, .framer-8iN2o .framer-1btflr2, .framer-8iN2o .framer-1ljozjl, .framer-8iN2o .framer-1natzrj, .framer-8iN2o .framer-ny6py, .framer-8iN2o .framer-nabef3, .framer-8iN2o .framer-oan1df, .framer-8iN2o .framer-ci7gjf, .framer-8iN2o .framer-1t26tre, .framer-8iN2o .framer-7k2e46, .framer-8iN2o .framer-zprl4r, .framer-8iN2o .framer-ayn3rn, .framer-8iN2o .framer-h2p7el, .framer-8iN2o .framer-14vbve0, .framer-8iN2o .framer-10rm4gq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8iN2o .framer-12vienm-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iN2o.framer-pmyhpj, .framer-8iN2o.framer-13rwedt { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-8iN2o.framer-ymplcj-container, .framer-8iN2o.framer-41ah3f-container { flex: none; height: 540px; left: calc(50.00000000000002% - 960px / 2); position: fixed; top: calc(50.00000000000002% - 540px / 2); width: 960px; }\",\".framer-8iN2o .framer-n8egnl { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 520px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 31%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iN2o .framer-c5s0qz { flex: none; height: 90%; overflow: visible; position: relative; width: 90%; }\",\".framer-8iN2o .framer-14aon5c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iN2o .framer-1ugc6jv-container, .framer-8iN2o .framer-1bc4agu-container, .framer-8iN2o .framer-1ejrc6f-container, .framer-8iN2o .framer-9zefqt-container, .framer-8iN2o .framer-5c8vwx-container, .framer-8iN2o .framer-6szej4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-8iN2o .framer-17eqoml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 360px; justify-content: center; overflow: visible; padding: 120px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-19ga03b-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-8iN2o .framer-d2i2s7 { background-color: rgba(30, 24, 18, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-8iN2o .framer-1gb5p87 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iN2o .framer-1vqw2xw-container { flex: none; height: 54px; position: relative; width: 365px; }\",\".framer-8iN2o .framer-vzb9y9, .framer-8iN2o .framer-o69ayu, .framer-8iN2o .framer-5bg2xb, .framer-8iN2o .framer-5pvfzm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8iN2o .framer-1wbmt6c, .framer-8iN2o .framer-8zwjwm, .framer-8iN2o .framer-13k2z41, .framer-8iN2o .framer-7bcsh5 { flex: none; height: 42px; position: relative; width: 42px; }\",\".framer-8iN2o .framer-xzk04u, .framer-8iN2o .framer-ocws3n, .framer-8iN2o .framer-n06k05, .framer-8iN2o .framer-7wfc3d, .framer-8iN2o .framer-ksgg1g, .framer-8iN2o .framer-o5kfq3, .framer-8iN2o .framer-6zes5a, .framer-8iN2o .framer-q51tch, .framer-8iN2o .framer-1uef554, .framer-8iN2o .framer-10b6idp, .framer-8iN2o .framer-nx7m4d, .framer-8iN2o .framer-1kwqgl2, .framer-8iN2o .framer-sd6g1z, .framer-8iN2o .framer-fjbkkj, .framer-8iN2o .framer-1w6otxi, .framer-8iN2o .framer-wi64ey, .framer-8iN2o .framer-hui5qo, .framer-8iN2o .framer-155ihgs, .framer-8iN2o .framer-3e06ei, .framer-8iN2o .framer-pbgoeo, .framer-8iN2o .framer-1sqier6, .framer-8iN2o .framer-nqz71r, .framer-8iN2o .framer-ypavyk, .framer-8iN2o .framer-1xh26ic, .framer-8iN2o .framer-6wr02i, .framer-8iN2o .framer-1vh3j41, .framer-8iN2o .framer-3hpa75, .framer-8iN2o .framer-ltayvv, .framer-8iN2o .framer-1fnwn98, .framer-8iN2o .framer-1mad73f { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8iN2o .framer-hfx2yg { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #e5e5e5; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 84px); justify-content: center; padding: 0px; position: relative; width: 84px; }\",\".framer-8iN2o .framer-1q2mt8c { flex: none; height: 43px; position: relative; width: 42px; }\",\".framer-8iN2o .framer-6ga20o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-4x2mmm, .framer-8iN2o .framer-8ujf17, .framer-8iN2o .framer-o1rh5l, .framer-8iN2o .framer-1t36qjw, .framer-8iN2o .framer-1gemwti { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 120px 160px 120px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-t4y3pj, .framer-8iN2o .framer-cvnrte, .framer-8iN2o .framer-1rpsrw, .framer-8iN2o .framer-1dybh4s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-a273u7, .framer-8iN2o .framer-martcg, .framer-8iN2o .framer-d2wk2j { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1mmj5c0, .framer-8iN2o .framer-1mmeovv, .framer-8iN2o .framer-19ufvqx { 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: center; max-width: 680px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iN2o .framer-3qifp5-container, .framer-8iN2o .framer-cy593r-container, .framer-8iN2o .framer-12vt75c-container, .framer-8iN2o .framer-1g97rq-container, .framer-8iN2o .framer-1w4gi4e-container, .framer-8iN2o .framer-1cd1b24-container, .framer-8iN2o .framer-18l0blh-container, .framer-8iN2o .framer-6xwajz-container, .framer-8iN2o .framer-31c4vp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8iN2o .framer-1ylzofv, .framer-8iN2o .framer-akf9ga { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 615px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8iN2o .framer-uavvlj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-irxsw5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-103w9sr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iN2o .framer-1csw1rl { aspect-ratio: 1.7898193760262726 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 609px); position: relative; width: 100%; }\",\".framer-8iN2o .framer-7r0b7d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1m5w4gd, .framer-8iN2o .framer-1ppjnp8 { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(11px); background: linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.14) 0%, rgba(135, 135, 142, 0.1) 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iN2o .framer-a0cx06, .framer-8iN2o .framer-1nq4xdt { 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: 100%; }\",\".framer-8iN2o .framer-57y6j2, .framer-8iN2o .framer-6rddkh { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0adaf858-783b-4d28-a00b-006810e1ce4a, #2a2a2a); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iN2o .framer-1i5fssw, .framer-8iN2o .framer-1fbx45x { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-8iN2o .framer-1hzb8yw { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: flex-start; align-items: flex-start; align-self: stretch; backdrop-filter: blur(11px); background: linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.11) 0%, rgba(135, 135, 142, 0.08) 100%); 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; height: auto; justify-content: space-between; padding: 48px 32px 48px 32px; position: relative; width: 34%; }\",\".framer-8iN2o .framer-1ng3w6o, .framer-8iN2o .framer-6506r0, .framer-8iN2o .framer-16tm9tu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-u48w17, .framer-8iN2o .framer-17ub5g5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 655px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8iN2o .framer-11yxnnq { flex: none; height: 64px; position: relative; width: 108px; }\",\".framer-8iN2o .framer-xcctv8 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-hmhe9e { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(11px); background: linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.11) 0%, rgba(135, 135, 142, 0.08) 100%); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; padding: 48px 32px 48px 32px; position: relative; width: 1px; }\",\".framer-8iN2o .framer-rvafpi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1furwlb, .framer-8iN2o .framer-ws1lxg, .framer-8iN2o .framer-1i8gk2v, .framer-8iN2o .framer-knfn2m, .framer-8iN2o .framer-1lzy85b, .framer-8iN2o .framer-h0bbqk { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: center; align-items: center; backdrop-filter: blur(11px); background-color: rgba(38, 38, 40, 0.4); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 24px 8px 10px; position: relative; width: min-content; }\",\".framer-8iN2o .framer-1e89jvk, .framer-8iN2o .framer-s609tb, .framer-8iN2o .framer-1bnv5yi, .framer-8iN2o .framer-10hx0ef, .framer-8iN2o .framer-g5mzgq, .framer-8iN2o .framer-1cudowl { --border-bottom-width: 1px; --border-color: #272729; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 42px; }\",\".framer-8iN2o .framer-c99jq7 { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iN2o .framer-spykpc-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-5rnoxx, .framer-8iN2o .framer-13x9z7g { --border-bottom-width: 1px; --border-color: #272729; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; height: 485px; position: relative; width: 540px; }\",\".framer-8iN2o .framer-12gxm7m { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(11px); background: linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.11) 0%, rgba(135, 135, 142, 0.08) 100%); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; padding: 48px 32px 48px 32px; position: relative; width: 34%; }\",\".framer-8iN2o .framer-44u8so { flex: none; height: 64px; position: relative; width: 240px; }\",\".framer-8iN2o .framer-u6md5p { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-mzt4ki-container, .framer-8iN2o .framer-axn7da-container, .framer-8iN2o .framer-10q12pq-container, .framer-8iN2o .framer-l4jdjo-container, .framer-8iN2o .framer-b8rbp-container, .framer-8iN2o .framer-1ywtt6v-container, .framer-8iN2o .framer-9i740k-container, .framer-8iN2o .framer-1vj6kuc-container, .framer-8iN2o .framer-1bk3n2k-container, .framer-8iN2o .framer-12gbzth-container, .framer-8iN2o .framer-cphgln-container, .framer-8iN2o .framer-z8371p-container, .framer-8iN2o .framer-wdkmwe-container, .framer-8iN2o .framer-1f5i8ri-container, .framer-8iN2o .framer-lq6zlp-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-8iN2o .framer-fkv499 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 320px; justify-content: center; justify-self: start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-q0osml { --border-bottom-width: 1px; --border-color: #272729; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: center; align-items: center; backdrop-filter: blur(11px); background: linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.14) 0%, rgba(135, 135, 142, 0.1) 100%); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iN2o .framer-360v6l-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8iN2o .framer-zbbrj6 { --border-bottom-width: 1px; --border-color: #272729; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(11px); background: linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.14) 0%, rgba(135, 135, 142, 0.1) 100%); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 64px 48px 64px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iN2o .framer-1mdnxql { 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: 100%; }\",\".framer-8iN2o .framer-1n6idtj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-zafbqs, .framer-8iN2o .framer-1hqlgve, .framer-8iN2o .framer-qaleqw, .framer-8iN2o .framer-4cxg01, .framer-8iN2o .framer-jm4eo7, .framer-8iN2o .framer-1fn358a, .framer-8iN2o .framer-wp88qs, .framer-8iN2o .framer-in261l, .framer-8iN2o .framer-182kwq9 { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: center; align-items: center; backdrop-filter: blur(11px); background-color: rgba(38, 38, 40, 0.4); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-8iN2o .framer-qhpwi3, .framer-8iN2o .framer-12cdrwd, .framer-8iN2o .framer-1hhjmg9 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; }\",\".framer-8iN2o .framer-y5w63a { -webkit-backdrop-filter: blur(8.5px); aspect-ratio: 1 / 1; backdrop-filter: blur(8.5px); background: linear-gradient(180deg, rgba(189, 118, 36, 0.6) 0%, rgba(164, 99, 24, 0.6) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: var(--framer-aspect-ratio-supported, 13px); box-shadow: 0px 4px 5px 0px rgba(112, 71, 27, 0.15); flex: none; height: 10px; left: 36px; position: absolute; right: 3px; top: 26px; }\",\".framer-8iN2o .framer-16p15nh { -webkit-backdrop-filter: blur(8.5px); backdrop-filter: blur(8.5px); background: linear-gradient(180deg, rgba(189, 118, 36, 0.6) 0%, rgba(164, 99, 24, 0.6) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 27px; box-shadow: 0px 4px 5px 0px rgba(112, 71, 27, 0.15); flex: none; left: 0px; position: absolute; right: 27px; top: 0px; }\",\".framer-8iN2o .framer-1o7cas5 { bottom: 7px; flex: none; left: 5px; position: absolute; right: 5px; top: 6px; }\",\".framer-8iN2o .framer-1clktv6, .framer-8iN2o .framer-1go56rn, .framer-8iN2o .framer-hjghh0, .framer-8iN2o .framer-1bl6lnv, .framer-8iN2o .framer-b204x6, .framer-8iN2o .framer-5qpfnz, .framer-8iN2o .framer-preslm, .framer-8iN2o .framer-16rykn6, .framer-8iN2o .framer-goavfy { flex: none; height: 84px; position: relative; width: 3px; }\",\".framer-8iN2o .framer-r7rs17, .framer-8iN2o .framer-19lynw0, .framer-8iN2o .framer-el7lmj, .framer-8iN2o .framer-1ychx2w, .framer-8iN2o .framer-zx808o, .framer-8iN2o .framer-yq6va6, .framer-8iN2o .framer-1x7k5lh, .framer-8iN2o .framer-cwkpj5, .framer-8iN2o .framer-1gxp211, .framer-8iN2o .framer-1yh0bug, .framer-8iN2o .framer-8r6r86, .framer-8iN2o .framer-qlrpe6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8iN2o .framer-5pabh7, .framer-8iN2o .framer-md05kn, .framer-8iN2o .framer-boqlxy, .framer-8iN2o .framer-1orutiz, .framer-8iN2o .framer-12a9j9m, .framer-8iN2o .framer-1e5g0ib, .framer-8iN2o .framer-1kvqj39, .framer-8iN2o .framer-yjbq29, .framer-8iN2o .framer-a3pzmw { flex: none; height: 104px; overflow: visible; position: relative; width: 104px; }\",\".framer-8iN2o .framer-ioxlqd, .framer-8iN2o .framer-qitga7, .framer-8iN2o .framer-wyrpiq, .framer-8iN2o .framer-9eom8x, .framer-8iN2o .framer-atndm4, .framer-8iN2o .framer-1mralsb, .framer-8iN2o .framer-1o44bsj, .framer-8iN2o .framer-11zs9ba { flex: none; height: 104px; left: 0px; position: absolute; top: 0px; width: 104px; }\",\".framer-8iN2o .framer-1i3gfvo, .framer-8iN2o .framer-1bsjpbl, .framer-8iN2o .framer-1djy1w1, .framer-8iN2o .framer-1mbfh50, .framer-8iN2o .framer-1rrhced { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 49%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-8iN2o .framer-1yy0cs4 { -webkit-backdrop-filter: blur(8.5px); backdrop-filter: blur(8.5px); background: linear-gradient(180deg, rgba(189, 118, 36, 0.6) 0%, rgba(164, 99, 24, 0.6) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 2px; box-shadow: 0px 4px 5px 0px rgba(112, 71, 27, 0.15); flex: none; left: 30px; position: absolute; right: 0px; top: 27px; }\",\".framer-8iN2o .framer-1riabvf { -webkit-backdrop-filter: blur(8.5px); aspect-ratio: 1 / 1; backdrop-filter: blur(8.5px); background: linear-gradient(180deg, rgba(189, 118, 36, 0.6) 0%, rgba(164, 99, 24, 0.6) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: var(--framer-aspect-ratio-supported, 23px); box-shadow: 0px 4px 5px 0px rgba(112, 71, 27, 0.15); flex: none; height: 12px; left: 6px; position: absolute; right: 30px; top: 13px; }\",\".framer-8iN2o .framer-clk81k { bottom: 6px; flex: none; left: 5px; position: absolute; right: 5px; top: 5px; }\",\".framer-8iN2o .framer-1ek7j5q { bottom: 0px; flex: none; left: -1px; position: absolute; top: 0px; width: 104px; }\",\".framer-8iN2o .framer-1c88nav, .framer-8iN2o .framer-cqo112, .framer-8iN2o .framer-1bqhd7o, .framer-8iN2o .framer-1jc5uhq, .framer-8iN2o .framer-1v18l24, .framer-8iN2o .framer-1ti0bya { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-8iN2o .framer-10ucxhe { -webkit-backdrop-filter: blur(8.5px); aspect-ratio: 1 / 1; backdrop-filter: blur(8.5px); background: linear-gradient(180deg, rgba(189, 118, 36, 0.6) 0%, rgba(164, 99, 24, 0.6) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: var(--framer-aspect-ratio-supported, 12px); box-shadow: 0px 4px 5px 0px rgba(112, 71, 27, 0.15); flex: none; height: 10px; left: 35px; position: absolute; right: 4px; top: 27px; }\",\".framer-8iN2o .framer-ac6tbn { -webkit-backdrop-filter: blur(8.5px); backdrop-filter: blur(8.5px); background: linear-gradient(180deg, rgba(189, 118, 36, 0.6) 0%, rgba(164, 99, 24, 0.6) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 24px; box-shadow: 0px 4px 5px 0px rgba(112, 71, 27, 0.15); flex: none; left: 12px; position: absolute; right: 19px; top: 7px; }\",\".framer-8iN2o .framer-152qw9k { bottom: 4px; flex: none; left: 4px; position: absolute; right: 4px; top: 4px; }\",\".framer-8iN2o .framer-1pql8ia { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 51%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-8iN2o .framer-27ghj9, .framer-8iN2o .framer-8j1gok, .framer-8iN2o .framer-1qe3q7q { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-8iN2o .framer-19hrahg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 294px; }\",\".framer-8iN2o .framer-14mpr7w, .framer-8iN2o .framer-1uqjw25, .framer-8iN2o .framer-1ctu2ei, .framer-8iN2o .framer-1c78vm9, .framer-8iN2o .framer-1c57kx8, .framer-8iN2o .framer-8banby, .framer-8iN2o .framer-9eg9t3, .framer-8iN2o .framer-13i2bem, .framer-8iN2o .framer-1985lsp { flex: none; height: 64px; overflow: visible; position: relative; width: 64px; }\",\".framer-8iN2o .framer-16gm4xl, .framer-8iN2o .framer-134vi24, .framer-8iN2o .framer-x7obc8, .framer-8iN2o .framer-10rnb5e, .framer-8iN2o .framer-ry84gg, .framer-8iN2o .framer-pai6cd { flex: none; height: 64px; left: 0px; position: absolute; top: 0px; width: 64px; }\",\".framer-8iN2o .framer-1ezz4xz, .framer-8iN2o .framer-1sam6gv { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-8iN2o .framer-nx5ruq, .framer-8iN2o .framer-tdk36o, .framer-8iN2o .framer-gdu1nw, .framer-8iN2o .framer-1gmiayz, .framer-8iN2o .framer-emkav8, .framer-8iN2o .framer-16szeak, .framer-8iN2o .framer-tse6if { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: center; align-items: center; backdrop-filter: blur(11px); background-color: rgba(38, 38, 40, 0.4); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: min-content; }\",\".framer-8iN2o .framer-wqysfw, .framer-8iN2o .framer-w18lab, .framer-8iN2o .framer-gefnnz, .framer-8iN2o .framer-ddy7ct, .framer-8iN2o .framer-98zkmv, .framer-8iN2o .framer-10p1p2a, .framer-8iN2o .framer-hd9q6 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-8iN2o .framer-ujura5, .framer-8iN2o .framer-rlnkdc, .framer-8iN2o .framer-16o214g, .framer-8iN2o .framer-evmxil, .framer-8iN2o .framer-1f60yaf, .framer-8iN2o .framer-1svf3s, .framer-8iN2o .framer-l8vxnr, .framer-8iN2o .framer-1cepp20, .framer-8iN2o .framer-1xlqfl6 { flex: none; height: 56px; position: relative; width: 3px; }\",\".framer-8iN2o .framer-tevdqi, .framer-8iN2o .framer-13m59rh, .framer-8iN2o .framer-1ycgydk, .framer-8iN2o .framer-12qeggd, .framer-8iN2o .framer-v7j6lv, .framer-8iN2o .framer-170w9qg, .framer-8iN2o .framer-p4bncb { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 51%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-8iN2o .framer-din3h7, .framer-8iN2o .framer-faadh1 { --border-bottom-width: 1px; --border-color: var(--token-cf0d6343-fcd2-4cc3-9652-5f7145ad82af, #272729); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); align-content: center; align-items: center; backdrop-filter: blur(11px); background-color: rgba(38, 38, 40, 0.4); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: min-content; }\",\".framer-8iN2o .framer-1tuwxar, .framer-8iN2o .framer-10bhg49 { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-8iN2o .framer-1k4i617, .framer-8iN2o .framer-gpxtzo, .framer-8iN2o .framer-785dj2 { bottom: 0px; flex: none; left: -1px; position: absolute; top: 0px; width: 64px; }\",\".framer-8iN2o .framer-1owqjs9, .framer-8iN2o .framer-1mzei8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1a46zun, .framer-8iN2o .framer-d73dpn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1qkpt8a, .framer-8iN2o .framer-19cwplj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1920px; overflow: hidden; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1pld7sy { 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: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iN2o .framer-1x9eedl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 120px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1nqfml7-container { flex: none; height: 620px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-jib4le-container, .framer-8iN2o .framer-1u7x1qg-container, .framer-8iN2o .framer-1ho25fw-container, .framer-8iN2o .framer-105ebrc-container, .framer-8iN2o .framer-1gco456-container, .framer-8iN2o .framer-tqcvvx-container, .framer-8iN2o .framer-zattsy-container, .framer-8iN2o .framer-b120cn-container, .framer-8iN2o .framer-q4ag0q-container, .framer-8iN2o .framer-1yzptdf-container, .framer-8iN2o .framer-1xv2bsv-container, .framer-8iN2o .framer-1wfhwwn-container { height: auto; position: relative; width: auto; }\",\".framer-8iN2o .framer-nujv39-container { flex: none; height: 530px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-rwjsk3-container { flex: none; height: 460px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-108lzlz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 240px 120px 160px 120px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-uo043n { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1xo6nr1, .framer-8iN2o .framer-rlhfpw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-13xms6m, .framer-8iN2o .framer-5lzkkq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1920px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-192pznz, .framer-8iN2o .framer-azpzgc, .framer-8iN2o .framer-9i0vf5 { 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: center; max-width: 750px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8iN2o .framer-rg5jjv { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o.framer-agcdj, .framer-8iN2o.framer-5t5j67, .framer-8iN2o.framer-gr6f1n, .framer-8iN2o.framer-1vohgs5 { background-color: rgba(0, 0, 0, 0.6); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-8iN2o.framer-k9ecdn, .framer-8iN2o.framer-cnl4po, .framer-8iN2o.framer-1lny8sx, .framer-8iN2o.framer-ef87rr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 10; }\",\".framer-8iN2o .framer-1juheh0, .framer-8iN2o .framer-1m71kyr, .framer-8iN2o .framer-1ur7nt, .framer-8iN2o .framer-1kot8vx { background-color: #9a783a; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; cursor: pointer; flex: none; height: 42px; overflow: hidden; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iN2o .framer-1v4cmrj, .framer-8iN2o .framer-4hxyc4, .framer-8iN2o .framer-t1aufw, .framer-8iN2o .framer-1nxi1r2 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-8iN2o .framer-1q55t93, .framer-8iN2o .framer-71v4df, .framer-8iN2o .framer-fzggqh, .framer-8iN2o .framer-4m3b3h { -webkit-backdrop-filter: blur(35px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(35px); background-color: rgba(149, 149, 150, 0.69); 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: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iN2o .framer-27gtxh-container, .framer-8iN2o .framer-1no5p2-container, .framer-8iN2o .framer-7d38tc-container, .framer-8iN2o .framer-1dlwepe-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 360px); position: relative; width: 640px; z-index: 1; }\",\".framer-8iN2o .framer-1por4cv, .framer-8iN2o .framer-o6ojro, .framer-8iN2o .framer-1wp87x4, .framer-8iN2o .framer-tzbzra { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-8iN2o .framer-5kfj9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1muj1v-container, .framer-8iN2o .framer-1k5gs8k-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-1ftubb4, .framer-8iN2o .framer-ymyls1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8iN2o .framer-1fnfxv1, .framer-8iN2o .framer-8labmr, .framer-8iN2o .framer-34sz5r, .framer-8iN2o .framer-uaqmxj, .framer-8iN2o .framer-7m1u9t, .framer-8iN2o .framer-bkh7u6, .framer-8iN2o .framer-zjiwf9, .framer-8iN2o .framer-18wo6lg, .framer-8iN2o .framer-1qz6ca9, .framer-8iN2o .framer-1vn8xyz, .framer-8iN2o .framer-icqecl, .framer-8iN2o .framer-1avl6g1, .framer-8iN2o .framer-twg8t9, .framer-8iN2o .framer-1aa7901 { --border-bottom-width: 1px; --border-color: #272729; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); backdrop-filter: blur(11px); background: linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.14) 0%, rgba(135, 135, 142, 0.1) 100%); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; gap: 0px; height: 120px; overflow: hidden; position: relative; width: 296px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8iN2o .framer-ka0hjd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); left: 103px; position: absolute; top: 15px; width: 30%; }\",\".framer-8iN2o .framer-1spx5v5 { aspect-ratio: 3.46875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 75%; }\",\".framer-8iN2o .framer-ckacbi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); left: 100px; position: absolute; top: 12px; width: 32%; }\",\".framer-8iN2o .framer-85uiv8 { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 41%; }\",\".framer-8iN2o .framer-qr6uv0 { aspect-ratio: 2.189189189189189 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 55%; }\",\".framer-8iN2o .framer-19dwolg { aspect-ratio: 2.15 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 58%; }\",\".framer-8iN2o .framer-160obq2 { aspect-ratio: 2.890625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 63%; }\",\".framer-8iN2o .framer-1uwtspx-container, .framer-8iN2o .framer-dmzccd-container { flex: none; height: 96px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-gndr7b, .framer-8iN2o .framer-t4hm2y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8iN2o .framer-1jut8z, .framer-8iN2o .framer-147f32y, .framer-8iN2o .framer-srbnud, .framer-8iN2o .framer-7lt00d, .framer-8iN2o .framer-1h826t8, .framer-8iN2o .framer-tyvtvw, .framer-8iN2o .framer-17myc1t, .framer-8iN2o .framer-13tu3tv, .framer-8iN2o .framer-vw6629, .framer-8iN2o .framer-b6u96a, .framer-8iN2o .framer-8dxba8, .framer-8iN2o .framer-1ettbdu, .framer-8iN2o .framer-6fyg3r, .framer-8iN2o .framer-bderzn { --border-bottom-width: 1px; --border-color: #272729; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(11px); aspect-ratio: 2.466666666666667 / 1; backdrop-filter: blur(11px); background: linear-gradient(107.09450272895074deg, rgba(38, 38, 40, 0.14) 0%, rgba(135, 135, 142, 0.1) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; gap: 0px; height: 96px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 237px); will-change: var(--framer-will-change-override, transform); }\",\".framer-8iN2o .framer-12ofnby { aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 30%; }\",\".framer-8iN2o .framer-5yfkpe { aspect-ratio: 3.46875 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 51px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 75%; }\",\".framer-8iN2o .framer-1iuudoe { aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 27%; }\",\".framer-8iN2o .framer-1v33lkd { aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 77px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 32%; }\",\".framer-8iN2o .framer-1ygil8t { aspect-ratio: 2.189189189189189 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 50%; }\",\".framer-8iN2o .framer-1io5tzx { aspect-ratio: 2.15 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 49%; }\",\".framer-8iN2o .framer-1fxzvcq { aspect-ratio: 2.890625 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 51px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 63%; }\",\".framer-8iN2o .framer-10fuul1 { aspect-ratio: 1.4444444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 50%; position: absolute; top: 24px; transform: translateX(-50%); width: 35%; }\",\".framer-8iN2o .framer-xguhun { aspect-ratio: 2.972972972972973 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 74%; }\",\".framer-8iN2o .framer-hklnk { aspect-ratio: 4.333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 61%; }\",\".framer-8iN2o .framer-ci4dy9 { aspect-ratio: 2.323529411764706 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 53%; }\",\".framer-8iN2o .framer-15ly524 { flex: none; height: 93px; left: calc(50.00000000000002% - 31.41891891891892% / 2); position: absolute; top: calc(50.00000000000002% - 93px / 2); width: 31%; }\",\".framer-8iN2o .framer-1urnoii { flex: none; height: 75px; left: calc(50% - 41.891891891891895% / 2); position: absolute; top: calc(52.083333333333336% - 75px / 2); width: 42%; }\",\".framer-8iN2o .framer-1sxfj1t { aspect-ratio: 2.2027027027027026 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 55%; }\",\".framer-8iN2o .framer-15sqor5 { aspect-ratio: 1.4444444444444444 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 50%; position: absolute; top: 24px; transform: translateX(-50%); width: 35%; }\",\".framer-8iN2o .framer-1xjfgsv { aspect-ratio: 2.972972972972973 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 59px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 74%; }\",\".framer-8iN2o .framer-o7x7po { aspect-ratio: 4.333333333333333 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 34px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 61%; }\",\".framer-8iN2o .framer-1eimts4 { aspect-ratio: 2.323529411764706 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 53%; }\",\".framer-8iN2o .framer-y697y7 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 64px; left: calc(50% - 29.72972972972973% / 2); position: absolute; top: calc(50% - 64px / 2); width: 30%; }\",\".framer-8iN2o .framer-2jlon0 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 75px; left: calc(50% - 41.891891891891895% / 2); position: absolute; top: calc(52.083333333333336% - 75px / 2); width: 42%; }\",\".framer-8iN2o .framer-1q2w2h3 { aspect-ratio: 2.2027027027027026 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 59px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 55%; }\",\".framer-8iN2o .framer-18t28oy { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8iN2o .framer-98j43m-container { flex: none; height: auto; left: 50%; position: absolute; top: 13088px; transform: translateX(-50%); width: auto; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-8iN2o[data-border=\"true\"]::after, .framer-8iN2o [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: 1600px) and (max-width: 1919px) { .framer-8iN2o.framer-72rtr7 { width: 1600px; } .framer-8iN2o .framer-196ejvu, .framer-8iN2o .framer-1qkpt8a, .framer-8iN2o .framer-19cwplj { padding: 0px 80px 0px 80px; } .framer-8iN2o .framer-vgnnef { max-width: 750px; } .framer-8iN2o.framer-ymplcj-container, .framer-8iN2o.framer-41ah3f-container { height: 440px; left: calc(50.00000000000002% - 782px / 2); top: calc(50.00000000000002% - 440px / 2); width: 782px; } .framer-8iN2o .framer-n8egnl { height: var(--framer-aspect-ratio-supported, 446px); } .framer-8iN2o .framer-14aon5c, .framer-8iN2o .framer-7r0b7d { gap: 16px; } .framer-8iN2o .framer-17eqoml { height: 320px; padding: 60px; } .framer-8iN2o .framer-1vqw2xw-container { width: 257px; } .framer-8iN2o .framer-4x2mmm, .framer-8iN2o .framer-8ujf17, .framer-8iN2o .framer-o1rh5l, .framer-8iN2o .framer-1gemwti { padding: 120px 80px 120px 80px; } .framer-8iN2o .framer-1mmj5c0, .framer-8iN2o .framer-1mmeovv, .framer-8iN2o .framer-19ufvqx, .framer-8iN2o .framer-azpzgc, .framer-8iN2o .framer-9i0vf5 { max-width: 540px; } .framer-8iN2o .framer-uavvlj { gap: 32px; } .framer-8iN2o .framer-irxsw5, .framer-8iN2o .framer-103w9sr, .framer-8iN2o .framer-xcctv8 { gap: 20px; } .framer-8iN2o .framer-1csw1rl { height: var(--framer-aspect-ratio-supported, 523px); } .framer-8iN2o .framer-1m5w4gd, .framer-8iN2o .framer-1ppjnp8 { gap: 8px; padding: 20px; } .framer-8iN2o .framer-57y6j2, .framer-8iN2o .framer-6rddkh { height: 36px; width: 36px; } .framer-8iN2o .framer-1i5fssw, .framer-8iN2o .framer-1fbx45x { height: var(--framer-aspect-ratio-supported, 16px); width: 16px; } .framer-8iN2o .framer-1hzb8yw { padding: 42px 24px 42px 24px; } .framer-8iN2o .framer-11yxnnq { aspect-ratio: 1.6875 / 1; height: var(--framer-aspect-ratio-supported, 54px); width: 91px; } .framer-8iN2o .framer-hmhe9e, .framer-8iN2o .framer-12gxm7m { gap: 32px; padding: 24px; } .framer-8iN2o .framer-rvafpi { gap: 12px; } .framer-8iN2o .framer-1e89jvk, .framer-8iN2o .framer-s609tb, .framer-8iN2o .framer-1bnv5yi, .framer-8iN2o .framer-10hx0ef, .framer-8iN2o .framer-g5mzgq, .framer-8iN2o .framer-1cudowl { height: var(--framer-aspect-ratio-supported, 36px); width: 36px; } .framer-8iN2o .framer-44u8so { aspect-ratio: 3.75 / 1; height: var(--framer-aspect-ratio-supported, 44px); width: 165px; } .framer-8iN2o .framer-1owqjs9, .framer-8iN2o .framer-1mzei8q { padding: 120px 0px 120px 0px; } .framer-8iN2o .framer-1pld7sy { max-width: 590px; } .framer-8iN2o .framer-1x9eedl { gap: 24px; padding: 0px 0px 0px 80px; } .framer-8iN2o .framer-108lzlz { padding: 180px 80px 120px 80px; } .framer-8iN2o .framer-1t36qjw { padding: 160px 80px 120px 80px; } .framer-8iN2o .framer-192pznz { max-width: 650px; } .framer-8iN2o .framer-rg5jjv, .framer-8iN2o .framer-5kfj9z { gap: 24px; } .framer-8iN2o .framer-27gtxh-container, .framer-8iN2o .framer-1no5p2-container, .framer-8iN2o .framer-7d38tc-container, .framer-8iN2o .framer-1dlwepe-container { height: var(--framer-aspect-ratio-supported, 320px); width: 569px; }}\",\"@media (min-width: 1200px) and (max-width: 1599px) { .framer-8iN2o.framer-72rtr7 { width: 1200px; } .framer-8iN2o .framer-196ejvu, .framer-8iN2o .framer-1qkpt8a, .framer-8iN2o .framer-13xms6m, .framer-8iN2o .framer-19cwplj { padding: 0px 40px 0px 40px; } .framer-8iN2o .framer-1668ny0 { padding: 160px 0px 40px 0px; } .framer-8iN2o .framer-vgnnef { max-width: 600px; } .framer-8iN2o.framer-ymplcj-container, .framer-8iN2o.framer-41ah3f-container { height: 440px; left: calc(50.00000000000002% - 783px / 2); top: calc(50.00000000000002% - 440px / 2); width: 783px; } .framer-8iN2o .framer-n8egnl { height: var(--framer-aspect-ratio-supported, 347px); } .framer-8iN2o .framer-14aon5c, .framer-8iN2o .framer-uo043n { gap: 16px; } .framer-8iN2o .framer-17eqoml { height: 280px; padding: 60px; } .framer-8iN2o .framer-1vqw2xw-container { height: 42px; width: 229px; } .framer-8iN2o .framer-hfx2yg { height: var(--framer-aspect-ratio-supported, 72px); width: 72px; } .framer-8iN2o .framer-1q2mt8c { height: 36px; width: 36px; } .framer-8iN2o .framer-4x2mmm, .framer-8iN2o .framer-8ujf17, .framer-8iN2o .framer-o1rh5l { padding: 120px 40px 120px 40px; } .framer-8iN2o .framer-1mmj5c0, .framer-8iN2o .framer-1mmeovv, .framer-8iN2o .framer-1pld7sy, .framer-8iN2o .framer-192pznz, .framer-8iN2o .framer-azpzgc, .framer-8iN2o .framer-9i0vf5 { max-width: 540px; } .framer-8iN2o .framer-1ylzofv, .framer-8iN2o .framer-akf9ga { max-width: 480px; } .framer-8iN2o .framer-uavvlj, .framer-8iN2o .framer-u6md5p, .framer-8iN2o .framer-5kfj9z { gap: 24px; } .framer-8iN2o .framer-irxsw5, .framer-8iN2o .framer-103w9sr, .framer-8iN2o .framer-7r0b7d, .framer-8iN2o .framer-xcctv8, .framer-8iN2o .framer-rvafpi { gap: 12px; } .framer-8iN2o .framer-1csw1rl { aspect-ratio: 2.0376569037656904 / 1; height: var(--framer-aspect-ratio-supported, 359px); } .framer-8iN2o .framer-1hzb8yw, .framer-8iN2o .framer-hmhe9e, .framer-8iN2o .framer-12gxm7m { padding: 32px 24px 32px 24px; } .framer-8iN2o .framer-11yxnnq { aspect-ratio: 1.6875 / 1; height: var(--framer-aspect-ratio-supported, 42px); width: 71px; } .framer-8iN2o .framer-1furwlb, .framer-8iN2o .framer-ws1lxg, .framer-8iN2o .framer-1i8gk2v, .framer-8iN2o .framer-knfn2m, .framer-8iN2o .framer-1lzy85b, .framer-8iN2o .framer-h0bbqk { gap: 10px; padding: 4px 20px 4px 4px; } .framer-8iN2o .framer-1e89jvk, .framer-8iN2o .framer-s609tb, .framer-8iN2o .framer-1bnv5yi, .framer-8iN2o .framer-10hx0ef, .framer-8iN2o .framer-g5mzgq, .framer-8iN2o .framer-1cudowl { height: var(--framer-aspect-ratio-supported, 32px); width: 32px; } .framer-8iN2o .framer-44u8so { aspect-ratio: 3.75 / 1; height: var(--framer-aspect-ratio-supported, 36px); width: 135px; } .framer-8iN2o .framer-1owqjs9, .framer-8iN2o .framer-1t36qjw, .framer-8iN2o .framer-1mzei8q { padding: 120px 0px 120px 0px; } .framer-8iN2o .framer-1x9eedl, .framer-8iN2o .framer-rg5jjv { gap: 24px; padding: 0px 40px 0px 40px; } .framer-8iN2o .framer-108lzlz { padding: 160px 40px 120px 40px; } .framer-8iN2o .framer-19ufvqx { max-width: 500px; } .framer-8iN2o .framer-27gtxh-container, .framer-8iN2o .framer-1no5p2-container, .framer-8iN2o .framer-7d38tc-container, .framer-8iN2o .framer-1dlwepe-container { height: var(--framer-aspect-ratio-supported, 300px); width: 533px; } .framer-8iN2o .framer-1gemwti { padding: 120px 60px 120px 60px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-8iN2o.framer-72rtr7 { width: 810px; } .framer-8iN2o .framer-196ejvu { padding: 0px 32px 0px 32px; } .framer-8iN2o .framer-1668ny0 { gap: 64px; height: min-content; justify-content: center; padding: 160px 0px 40px 0px; } .framer-8iN2o.framer-ymplcj-container, .framer-8iN2o.framer-41ah3f-container { height: 363px; left: calc(49.876543209876566% - 645px / 2); top: calc(49.907407407407426% - 363px / 2); width: 645px; } .framer-8iN2o .framer-14aon5c { flex-wrap: wrap; gap: 16px; } .framer-8iN2o .framer-1ugc6jv-container, .framer-8iN2o .framer-1ejrc6f-container { flex: none; width: 48%; } .framer-8iN2o .framer-1bc4agu-container, .framer-8iN2o .framer-9zefqt-container { flex: none; width: 49%; } .framer-8iN2o .framer-17eqoml { height: 200px; padding: 32px; } .framer-8iN2o .framer-1vqw2xw-container { height: 42px; width: 179px; } .framer-8iN2o .framer-hfx2yg { height: var(--framer-aspect-ratio-supported, 54px); width: 54px; } .framer-8iN2o .framer-1q2mt8c { height: 24px; width: 24px; } .framer-8iN2o .framer-4x2mmm, .framer-8iN2o .framer-8ujf17, .framer-8iN2o .framer-o1rh5l, .framer-8iN2o .framer-1gemwti { padding: 100px 32px 100px 32px; } .framer-8iN2o .framer-a273u7, .framer-8iN2o .framer-martcg, .framer-8iN2o .framer-d2wk2j { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: center; } .framer-8iN2o .framer-1mmj5c0, .framer-8iN2o .framer-1mmeovv, .framer-8iN2o .framer-1pld7sy, .framer-8iN2o .framer-19ufvqx, .framer-8iN2o .framer-192pznz, .framer-8iN2o .framer-azpzgc, .framer-8iN2o .framer-9i0vf5 { flex: none; max-width: 100%; width: 100%; } .framer-8iN2o .framer-1yr2hp6, .framer-8iN2o .framer-7k2e46 { max-width: 540px; } .framer-8iN2o .framer-1ylzofv, .framer-8iN2o .framer-103w9sr, .framer-8iN2o .framer-akf9ga { flex: none; width: 100%; } .framer-8iN2o .framer-uavvlj { gap: 24px; } .framer-8iN2o .framer-irxsw5, .framer-8iN2o .framer-xcctv8 { flex-direction: column; } .framer-8iN2o .framer-1csw1rl { height: var(--framer-aspect-ratio-supported, 417px); } .framer-8iN2o .framer-1hzb8yw { align-self: unset; gap: 48px; height: min-content; justify-content: center; padding: 24px; width: 100%; } .framer-8iN2o .framer-11yxnnq { aspect-ratio: 1.6875 / 1; height: var(--framer-aspect-ratio-supported, 42px); width: 71px; } .framer-8iN2o .framer-hmhe9e { flex: none; gap: 32px; padding: 24px; width: 100%; } .framer-8iN2o .framer-1e89jvk, .framer-8iN2o .framer-s609tb, .framer-8iN2o .framer-1bnv5yi, .framer-8iN2o .framer-10hx0ef, .framer-8iN2o .framer-g5mzgq, .framer-8iN2o .framer-1cudowl { height: var(--framer-aspect-ratio-supported, 32px); width: 32px; } .framer-8iN2o .framer-c99jq7 { align-self: unset; flex: none; height: 420px; width: 100%; } .framer-8iN2o .framer-12gxm7m, .framer-8iN2o .framer-19hrahg { width: 100%; } .framer-8iN2o .framer-ci7gjf, .framer-8iN2o .framer-1mdnxql, .framer-8iN2o .framer-zprl4r, .framer-8iN2o .framer-h2p7el, .framer-8iN2o .framer-14vbve0, .framer-8iN2o .framer-10rm4gq { max-width: 100%; } .framer-8iN2o .framer-u6md5p { gap: 16px; grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-8iN2o .framer-fkv499 { height: 300px; padding: 0px; } .framer-8iN2o .framer-14mpr7w { order: 0; } .framer-8iN2o .framer-nx5ruq { order: 1; } .framer-8iN2o .framer-tdk36o { order: 3; } .framer-8iN2o .framer-1uqjw25 { order: 2; } .framer-8iN2o .framer-1ctu2ei { order: 4; } .framer-8iN2o .framer-din3h7 { order: 5; } .framer-8iN2o .framer-gdu1nw { order: 7; } .framer-8iN2o .framer-1c78vm9 { order: 6; } .framer-8iN2o .framer-1c57kx8 { order: 8; } .framer-8iN2o .framer-faadh1 { order: 9; } .framer-8iN2o .framer-1gmiayz { order: 11; } .framer-8iN2o .framer-8banby { order: 10; } .framer-8iN2o .framer-9eg9t3 { order: 12; } .framer-8iN2o .framer-emkav8 { order: 13; } .framer-8iN2o .framer-16szeak { order: 15; } .framer-8iN2o .framer-13i2bem { order: 14; } .framer-8iN2o .framer-1985lsp { order: 16; } .framer-8iN2o .framer-tse6if { order: 17; } .framer-8iN2o .framer-1owqjs9, .framer-8iN2o .framer-1t36qjw, .framer-8iN2o .framer-1mzei8q { padding: 100px 0px 100px 0px; } .framer-8iN2o .framer-1a46zun, .framer-8iN2o .framer-1xo6nr1, .framer-8iN2o .framer-d73dpn, .framer-8iN2o .framer-rlhfpw { gap: 32px; } .framer-8iN2o .framer-1qkpt8a, .framer-8iN2o .framer-13xms6m, .framer-8iN2o .framer-19cwplj { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: center; padding: 0px 32px 0px 32px; } .framer-8iN2o .framer-1x9eedl { gap: 20px; padding: 0px 32px 0px 32px; } .framer-8iN2o .framer-108lzlz { padding: 140px 32px 100px 32px; } .framer-8iN2o .framer-1dybh4s { gap: 48px; } .framer-8iN2o .framer-ayn3rn { max-width: 390px; } .framer-8iN2o .framer-uo043n { gap: 16px; } .framer-8iN2o .framer-rg5jjv { gap: 20px; grid-template-columns: repeat(2, minmax(50px, 1fr)); padding: 0px 32px 0px 32px; } .framer-8iN2o .framer-1q55t93, .framer-8iN2o .framer-71v4df, .framer-8iN2o .framer-fzggqh, .framer-8iN2o .framer-4m3b3h { padding: 16px; } .framer-8iN2o .framer-27gtxh-container, .framer-8iN2o .framer-1no5p2-container, .framer-8iN2o .framer-7d38tc-container, .framer-8iN2o .framer-1dlwepe-container { height: var(--framer-aspect-ratio-supported, 280px); width: 498px; } .framer-8iN2o .framer-5kfj9z { gap: 20px; } .framer-8iN2o .framer-5lzkkq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: center; }}\",\"@media (max-width: 809px) { .framer-8iN2o.framer-72rtr7 { width: 400px; } .framer-8iN2o .framer-1qqj7j1 { gap: 30px; padding: 160px 0px 0px 0px; } .framer-8iN2o .framer-196ejvu { padding: 0px 16px 0px 16px; } .framer-8iN2o .framer-1668ny0 { gap: 48px; height: min-content; justify-content: center; padding: 0px 0px 40px 0px; } .framer-8iN2o.framer-ymplcj-container, .framer-8iN2o.framer-41ah3f-container { left: 20px; right: 20px; width: unset; } .framer-8iN2o .framer-14aon5c, .framer-8iN2o .framer-irxsw5, .framer-8iN2o .framer-7r0b7d, .framer-8iN2o .framer-xcctv8 { flex-direction: column; gap: 16px; } .framer-8iN2o .framer-1ugc6jv-container, .framer-8iN2o .framer-1bc4agu-container, .framer-8iN2o .framer-1ejrc6f-container, .framer-8iN2o .framer-9zefqt-container, .framer-8iN2o .framer-5c8vwx-container, .framer-8iN2o .framer-1ylzofv, .framer-8iN2o .framer-103w9sr, .framer-8iN2o .framer-akf9ga { flex: none; width: 100%; } .framer-8iN2o .framer-17eqoml { height: 250px; padding: 16px; } .framer-8iN2o .framer-1vqw2xw-container { height: 45px; width: 175px; } .framer-8iN2o .framer-hfx2yg { height: var(--framer-aspect-ratio-supported, 54px); width: 54px; } .framer-8iN2o .framer-1q2mt8c { height: 32px; width: 32px; } .framer-8iN2o .framer-4x2mmm, .framer-8iN2o .framer-8ujf17, .framer-8iN2o .framer-o1rh5l, .framer-8iN2o .framer-1gemwti { gap: 42px; padding: 80px 16px 80px 16px; } .framer-8iN2o .framer-t4y3pj, .framer-8iN2o .framer-1rpsrw, .framer-8iN2o .framer-1a46zun, .framer-8iN2o .framer-1dybh4s, .framer-8iN2o .framer-1xo6nr1, .framer-8iN2o .framer-d73dpn, .framer-8iN2o .framer-rlhfpw { gap: 32px; } .framer-8iN2o .framer-a273u7, .framer-8iN2o .framer-martcg, .framer-8iN2o .framer-d2wk2j { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-8iN2o .framer-1mmj5c0, .framer-8iN2o .framer-1mmeovv, .framer-8iN2o .framer-1pld7sy, .framer-8iN2o .framer-19ufvqx, .framer-8iN2o .framer-192pznz, .framer-8iN2o .framer-azpzgc, .framer-8iN2o .framer-9i0vf5 { flex: none; gap: 16px; width: 100%; } .framer-8iN2o .framer-uavvlj, .framer-8iN2o .framer-1mdnxql, .framer-8iN2o .framer-5kfj9z { gap: 16px; } .framer-8iN2o .framer-1csw1rl { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 206px); } .framer-8iN2o .framer-1m5w4gd, .framer-8iN2o .framer-1ppjnp8 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; width: 100%; } .framer-8iN2o .framer-1hzb8yw { align-self: unset; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; gap: 24px; height: min-content; justify-content: center; padding: 24px; width: 100%; } .framer-8iN2o .framer-11yxnnq { aspect-ratio: 1.6875 / 1; height: var(--framer-aspect-ratio-supported, 36px); width: 61px; } .framer-8iN2o .framer-hmhe9e { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 24px; padding: 24px; width: 100%; } .framer-8iN2o .framer-rvafpi { gap: 12px; } .framer-8iN2o .framer-1e89jvk, .framer-8iN2o .framer-s609tb, .framer-8iN2o .framer-1bnv5yi, .framer-8iN2o .framer-10hx0ef, .framer-8iN2o .framer-g5mzgq, .framer-8iN2o .framer-1cudowl { height: var(--framer-aspect-ratio-supported, 32px); width: 32px; } .framer-8iN2o .framer-1i8gk2v, .framer-8iN2o .framer-knfn2m, .framer-8iN2o .framer-1lzy85b, .framer-8iN2o .framer-h0bbqk { padding: 4px 20px 4px 4px; } .framer-8iN2o .framer-c99jq7 { align-self: unset; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 320px; width: 100%; } .framer-8iN2o .framer-12gxm7m { gap: 24px; padding: 24px; width: 100%; } .framer-8iN2o .framer-44u8so { aspect-ratio: 3.75 / 1; height: var(--framer-aspect-ratio-supported, 42px); width: 158px; } .framer-8iN2o .framer-u6md5p, .framer-8iN2o .framer-uo043n { gap: 16px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-8iN2o .framer-fkv499 { height: min-content; padding: 0px; } .framer-8iN2o .framer-q0osml { flex: none; gap: 32px; height: min-content; justify-content: center; padding: 24px; } .framer-8iN2o .framer-zbbrj6 { gap: 32px; padding: 32px; } .framer-8iN2o .framer-1owqjs9, .framer-8iN2o .framer-1t36qjw, .framer-8iN2o .framer-1mzei8q { gap: 42px; padding: 80px 0px 80px 0px; } .framer-8iN2o .framer-1qkpt8a, .framer-8iN2o .framer-13xms6m, .framer-8iN2o .framer-19cwplj, .framer-8iN2o .framer-5lzkkq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; padding: 0px 16px 0px 16px; } .framer-8iN2o .framer-1x9eedl { gap: 16px; padding: 0px 16px 0px 16px; } .framer-8iN2o .framer-108lzlz { gap: 42px; padding: 140px 24px 80px 24px; } .framer-8iN2o .framer-rg5jjv { gap: 16px; grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px 16px 0px 16px; } .framer-8iN2o.framer-k9ecdn, .framer-8iN2o.framer-cnl4po, .framer-8iN2o.framer-1lny8sx, .framer-8iN2o.framer-ef87rr { left: 20px; right: 20px; transform: translateY(-50%); width: unset; } .framer-8iN2o .framer-1q55t93, .framer-8iN2o .framer-71v4df, .framer-8iN2o .framer-fzggqh, .framer-8iN2o .framer-4m3b3h { padding: 12px; width: 100%; } .framer-8iN2o .framer-27gtxh-container, .framer-8iN2o .framer-1no5p2-container, .framer-8iN2o .framer-7d38tc-container, .framer-8iN2o .framer-1dlwepe-container { aspect-ratio: 1.7747747747747749 / 1; height: var(--framer-aspect-ratio-supported, 113px); width: 100%; } .framer-8iN2o .framer-1por4cv, .framer-8iN2o .framer-o6ojro, .framer-8iN2o .framer-1wp87x4, .framer-8iN2o .framer-tzbzra { align-self: unset; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12442\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"raHTYwqln\":{\"layout\":[\"fixed\",\"auto\"]},\"K4K2dkZC1\":{\"layout\":[\"fixed\",\"auto\"]},\"fACcXYkN9\":{\"layout\":[\"fixed\",\"auto\"]},\"wbomxF4_O\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"bw7xk6mh5\":{\"pattern\":\":bw7xk6mh5\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8iN2o\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12442,width:1920};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]},...CustomSelectionFonts,...PrimaryButtonFonts,...YouTubeFonts,...StaticsFonts,...VideoFonts,...TickerFonts,...LabelFonts,...SlideshowFonts,...CardFonts,...TextButtonFonts,...Card1Fonts,...CarouselFonts,...SpeakerFonts,...Card2Fonts,...FAQDesktopFonts,...SmoothScrollFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"bw7xk6mh5\\\":{\\\"pattern\\\":\\\":bw7xk6mh5\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"raHTYwqln\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K4K2dkZC1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fACcXYkN9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wbomxF4_O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"12442\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "clamp", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "Z", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "sZN7747of", "Oc3zkESis", "GBOMGORaN", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "ComponentPresetsProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerOqy0xeTjy", "withCSS", "Oqy0xeTjy_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "flag", "height", "id", "image", "link", "popUp", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "onHokEwMU", "N30aMDjNq", "Y0u5oDt8f", "Gm7IFwCw8", "Sci5m6l7M", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1bm6je6", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerPVkG3ERE9", "withCSS", "PVkG3ERE9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "LiEtQcKXg", "DmiuHW0SG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerXuV8FYcJg", "withCSS", "XuV8FYcJg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CustomSelectionFonts", "getFonts", "CustomSelection", "PrimaryButtonFonts", "notrXqCHh_default", "YouTubeFonts", "Youtube", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithOptimizedAppearEffect", "motion", "StaticsFonts", "Qe5dqoili_default", "VideoFonts", "Video", "TickerFonts", "Ticker", "LabelFonts", "NNmbV2kDk_default", "MotionDivWithFX", "withFX", "SlideshowFonts", "Slideshow", "CardFonts", "Oqy0xeTjy_default", "TextButtonFonts", "XuV8FYcJg_default", "Card1Fonts", "PVkG3ERE9_default", "CarouselFonts", "Carousel", "SpeakerFonts", "evrepHcTq_default", "Card2Fonts", "vvGBZik4V_default", "FAQDesktopFonts", "a4Ss4juhh_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "transition2", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation3", "animation4", "animation5", "transition3", "transition4", "animation6", "transition5", "animation7", "animation8", "animation9", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "AmLlLuymX3bnx0g", "overlay", "loadMore", "args", "onTap3bnx0g", "GpQRMzuKq3bnx0g", "onTap1wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "RichText2", "x", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "Image2", "SVG", "overlay1", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "overlay2", "overlay3", "overlay4", "overlay5", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
