{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/MyKk1tHxvlIa8smNVFEK/XAerPvarBu5oP5kFUFCA/GJ3TWxt70-0.js", "ssg:https://framerusercontent.com/modules/MyKk1tHxvlIa8smNVFEK/XAerPvarBu5oP5kFUFCA/GJ3TWxt70.js", "ssg:https://framerusercontent.com/modules/38Ccf80xxnbnUu2GLjDw/NrEeGNT9ozYokX1YGwLB/liKpMZG_q.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{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={}));// 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 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;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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\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!==null&&volume!==void 0?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!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"Our company was founded in 1975 in Ankara and meets all the salt needs of all our provinces, primarily in Ankara and Istanbul.\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62)))\"},children:\"Our aim\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Our aim\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Our products\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62)))\"},children:\"Our products\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"About us\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62)))\"},children:\"About us\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"Purification Salts\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"\u25CF The purification salt must be refined and should not have any loss. It should be dried well with a high moisture content.\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"Food Industry Salts\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"\u25CF The salts that reach the user directly from the factory. They should be produced away from moisture.\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"Our aim is to support the continuously growing and developing Turkish economy.\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:[\"Turkey's Salt Brand\",/*#__PURE__*/_jsx(motion.br,{}),\"KarTuz\"]})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"In today's world, where constantly evolving and productive societies play a more active role in determining their own destinies, we at Kartuz have set it as our goal to contribute more to our country by improving our production technologies.\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"Industrial Salts\"})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u25CF The pioneer of quality in salt.\"})});export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u25CF Production without manual contact.\"})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u25CF High production capacity.\"})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",children:\"\u25CF The pioneer of quality in salt.\"})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",children:\"\u25CF Production without manual contact.\"})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",children:\"\u25CF High production capacity.\"})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"\u25CF Production and distribution of high-quality industrial salt.\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f5febb9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/q1Vgru2DSHKMK5Tm6ov6/bIMJ6BnGligqU70OXoJg/qaoULVCyn.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/cSvPizzh98400o5o5AoD/o0FkkaXVBfLoeQI9deP9/rgd3b9S4n.js\";import*as localizedValues from\"./GJ3TWxt70-0.js\";const cycleOrder=[\"KsbWg4fMp\",\"GY7SxZL1J\",\"NaseewTuf\",\"qHQu006Gd\",\"A9aOPFBB5\",\"LvRqz470A\",\"qHLcL7JBz\",\"HMgAzh1iz\",\"ouLlxhDHu\",\"JLN7fctSf\"];const serializationHash=\"framer-CCcTh\";const variantClassNames={A9aOPFBB5:\"framer-v-jlsvag\",GY7SxZL1J:\"framer-v-ge32ia\",HMgAzh1iz:\"framer-v-1pne4d0\",JLN7fctSf:\"framer-v-1ke5l1f\",KsbWg4fMp:\"framer-v-fsjkc8\",LvRqz470A:\"framer-v-1f26xss\",NaseewTuf:\"framer-v-1ie0409\",ouLlxhDHu:\"framer-v-e8l7y8\",qHLcL7JBz:\"framer-v-5ilabk\",qHQu006Gd:\"framer-v-62s4m0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={iSi26FS6c:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"T/M 1\":\"LvRqz470A\",\"T/M 2\":\"qHLcL7JBz\",\"T/M 3\":\"HMgAzh1iz\",\"T/M 4\":\"ouLlxhDHu\",\"T/M 5\":\"JLN7fctSf\",\"Variant 1\":\"KsbWg4fMp\",\"Variant 2\":\"GY7SxZL1J\",\"Variant 3\":\"NaseewTuf\",\"Variant 4\":\"qHQu006Gd\",\"Variant 5\":\"A9aOPFBB5\"};const getProps=({height,id,visible,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,IG_Y6Oj55:(_ref=visible!==null&&visible!==void 0?visible:props.IG_Y6Oj55)!==null&&_ref!==void 0?_ref:true,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"KsbWg4fMp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,IG_Y6Oj55,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KsbWg4fMp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapxso2yv=activeVariantCallback(async(...args)=>{setVariant(\"KsbWg4fMp\");});const onTap1b2wbzy=activeVariantCallback(async(...args)=>{setVariant(\"LvRqz470A\");});const onTap1rwazx2=activeVariantCallback(async(...args)=>{setVariant(\"GY7SxZL1J\");});const onTap7rkq4a=activeVariantCallback(async(...args)=>{setVariant(\"qHLcL7JBz\");});const onTap14vry2a=activeVariantCallback(async(...args)=>{setVariant(\"NaseewTuf\");});const onTapc0x2xs=activeVariantCallback(async(...args)=>{setVariant(\"HMgAzh1iz\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"NaseewTuf\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"GY7SxZL1J\")return true;return false;};const isDisplayed2=()=>{if([\"GY7SxZL1J\",\"HMgAzh1iz\",\"ouLlxhDHu\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"NaseewTuf\",\"HMgAzh1iz\",\"ouLlxhDHu\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"HMgAzh1iz\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"ouLlxhDHu\")return true;return false;};const isDisplayed6=()=>{if([\"LvRqz470A\",\"qHLcL7JBz\",\"HMgAzh1iz\",\"ouLlxhDHu\",\"JLN7fctSf\"].includes(baseVariant))return false;return true;};const isDisplayed7=value=>{if([\"LvRqz470A\",\"qHLcL7JBz\"].includes(baseVariant))return value;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-fsjkc8\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KsbWg4fMp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({A9aOPFBB5:{\"data-framer-name\":\"Variant 5\"},GY7SxZL1J:{\"data-framer-name\":\"Variant 2\"},HMgAzh1iz:{\"data-framer-name\":\"T/M 3\"},JLN7fctSf:{\"data-framer-name\":\"T/M 5\"},LvRqz470A:{\"data-framer-name\":\"T/M 1\"},NaseewTuf:{\"data-framer-name\":\"Variant 3\"},ouLlxhDHu:{\"data-framer-name\":\"T/M 4\"},qHLcL7JBz:{\"data-framer-name\":\"T/M 2\"},qHQu006Gd:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qao00o\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"gCOiYxoGT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mjco2o\",\"data-framer-name\":\"tabs+text\",layoutDependency:layoutDependency,layoutId:\"oUQvTvmYe\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"Firmam\u0131z 1975 y\u0131l\u0131nda Ankara merkezli kurulmu\u015F olup, ba\u015Fta Ankara ve \u0130stanbul olmak \\xfczere b\\xfct\\xfcn illerimizin t\\xfcm tuz ihtiyac\u0131n\u0131 kar\u015F\u0131lamaktad\u0131r.\"})}),className:\"framer-n3hyf7\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MnzLsTwcf\",style:{\"--extracted-r6o4lv\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g750go\",\"data-border\":true,\"data-framer-name\":\"tabs\",layoutDependency:layoutDependency,layoutId:\"D0dpsowji\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(226, 226, 226)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s0aibp\",\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cRxf7EfXf\",onTap:onTapxso2yv,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({HMgAzh1iz:{onTap:onTap1b2wbzy},JLN7fctSf:{onTap:onTap1b2wbzy},LvRqz470A:{onTap:onTap1b2wbzy},ouLlxhDHu:{onTap:onTap1b2wbzy},qHLcL7JBz:{onTap:onTap1b2wbzy}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62)))\"},children:\"Amac\u0131m\u0131z\"})}),className:\"framer-930gq0\",\"data-framer-name\":\"Babies\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"lZwiDFYnD\",style:{\"--extracted-r6o4lv\":\"var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{A9aOPFBB5:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\"},GY7SxZL1J:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\"},HMgAzh1iz:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\"},JLN7fctSf:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\"},NaseewTuf:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\"},ouLlxhDHu:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\"},qHLcL7JBz:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\"},qHQu006Gd:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A9aOPFBB5:{children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Amac\u0131m\u0131z\"})}),fonts:[\"GF;DM Sans-regular\"]},GY7SxZL1J:{children:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Amac\u0131m\u0131z\"})}),fonts:[\"GF;DM Sans-regular\"]},HMgAzh1iz:{children:(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Amac\u0131m\u0131z\"})}),fonts:[\"GF;DM Sans-regular\"]},JLN7fctSf:{children:(_getLocalizedValue5=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Amac\u0131m\u0131z\"})}),fonts:[\"GF;DM Sans-regular\"]},NaseewTuf:{children:(_getLocalizedValue6=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Amac\u0131m\u0131z\"})}),fonts:[\"GF;DM Sans-regular\"]},ouLlxhDHu:{children:(_getLocalizedValue7=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Amac\u0131m\u0131z\"})}),fonts:[\"GF;DM Sans-regular\"]},qHLcL7JBz:{children:(_getLocalizedValue8=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Amac\u0131m\u0131z\"})}),fonts:[\"GF;DM Sans-regular\"]},qHQu006Gd:{children:(_getLocalizedValue9=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Amac\u0131m\u0131z\"})}),fonts:[\"GF;DM Sans-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ac3jm6\",\"data-framer-name\":\"Rectangle 4\",layoutDependency:layoutDependency,layoutId:\"uoHldHVbn\",style:{backgroundColor:\"var(--token-1d9820e9-7665-4c7e-8ab2-e1dfe4b4165d, rgb(60, 152, 225))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99,opacity:1},variants:{A9aOPFBB5:{opacity:0},GY7SxZL1J:{opacity:0},HMgAzh1iz:{opacity:0},JLN7fctSf:{opacity:0},NaseewTuf:{opacity:0},ouLlxhDHu:{opacity:0},qHLcL7JBz:{opacity:0},qHQu006Gd:{opacity:0}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3hmf4d\",\"data-framer-name\":\"2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gxdqdwu9V\",onTap:onTap1rwazx2,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({HMgAzh1iz:{onTap:onTap7rkq4a},LvRqz470A:{onTap:onTap7rkq4a},qHLcL7JBz:{onTap:onTap7rkq4a}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"\\xdcr\\xfcnlerimiz\"})}),className:\"framer-1t78bvs\",\"data-framer-name\":\"Children\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"zawwSTmoX\",style:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{GY7SxZL1J:{\"--extracted-r6o4lv\":\"var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62))\"},qHLcL7JBz:{\"--extracted-r6o4lv\":\"var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GY7SxZL1J:{children:(_getLocalizedValue11=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62)))\"},children:\"\\xdcr\\xfcnlerimiz\"})}),fonts:[\"GF;DM Sans-600\"]},qHLcL7JBz:{children:(_getLocalizedValue12=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62)))\"},children:\"\\xdcr\\xfcnlerimiz\"})}),fonts:[\"GF;DM Sans-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tcqj45\",\"data-framer-name\":\"Rectangle 4\",layoutDependency:layoutDependency,layoutId:\"UGYOaeFtf\",style:{backgroundColor:\"var(--token-fe509093-34f4-4a48-b43d-bf23b759daf7, rgb(241, 122, 137))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99,opacity:0},variants:{GY7SxZL1J:{backgroundColor:\"var(--token-1d9820e9-7665-4c7e-8ab2-e1dfe4b4165d, rgb(60, 152, 225))\",opacity:1},qHLcL7JBz:{backgroundColor:\"var(--token-1d9820e9-7665-4c7e-8ab2-e1dfe4b4165d, rgb(60, 152, 225))\",opacity:1}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g1oxk5\",\"data-framer-name\":\"3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OG6eR0c0g\",onTap:onTap14vry2a,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({HMgAzh1iz:{onTap:onTapc0x2xs},JLN7fctSf:{onTap:onTapc0x2xs},LvRqz470A:{onTap:onTapc0x2xs},ouLlxhDHu:{onTap:onTapc0x2xs},qHLcL7JBz:{onTap:onTapc0x2xs}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue13=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177)))\"},children:\"Hakk\u0131m\u0131zda\"})}),className:\"framer-ab31tj\",\"data-framer-name\":\"Teens\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"tZ0EMKMad\",style:{\"--extracted-r6o4lv\":\"var(--token-88c3c023-f399-47d2-9969-37bcee72235f, rgb(153, 165, 177))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{HMgAzh1iz:{\"--extracted-r6o4lv\":\"var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62))\"},NaseewTuf:{\"--extracted-r6o4lv\":\"var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HMgAzh1iz:{children:(_getLocalizedValue14=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62)))\"},children:\"Hakk\u0131m\u0131zda\"})}),fonts:[\"GF;DM Sans-600\"]},NaseewTuf:{children:(_getLocalizedValue15=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2661584d-eee5-4000-b3a0-7d589f742c82, rgb(27, 42, 62)))\"},children:\"Hakk\u0131m\u0131zda\"})}),fonts:[\"GF;DM Sans-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lvcuuh\",\"data-framer-name\":\"Rectangle 4\",layoutDependency:layoutDependency,layoutId:\"qXCQaJ63G\",style:{backgroundColor:\"var(--token-fe509093-34f4-4a48-b43d-bf23b759daf7, rgb(241, 122, 137))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99,opacity:0},variants:{HMgAzh1iz:{backgroundColor:\"var(--token-1d9820e9-7665-4c7e-8ab2-e1dfe4b4165d, rgb(60, 152, 225))\",opacity:1},NaseewTuf:{backgroundColor:\"var(--token-1d9820e9-7665-4c7e-8ab2-e1dfe4b4165d, rgb(60, 152, 225))\",opacity:1},ouLlxhDHu:{backgroundColor:\"var(--token-1d9820e9-7665-4c7e-8ab2-e1dfe4b4165d, rgb(60, 152, 225))\"}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue16=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"Ar\u0131tma Tuzlar\u0131\"})}),className:\"framer-qc0wjq\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lIi1JLgV4\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"\u25CF Ar\u0131tma tuzu rafine olmal\u0131 ve fire vermemelidir. Nem oran\u0131 y\\xfcksek iyi kurutulmal\u0131d\u0131r.\"})}),className:\"framer-10xfu04\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UDp7RNi6b\",style:{\"--extracted-r6o4lv\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"G\u0131da Sanayi Tuzlar\u0131\"})}),className:\"framer-oztnsv\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zkMoPFkcI\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue19=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"\u25CF Fabrikadan kullan\u0131c\u0131ya direkt ula\u015Fan tuzlard\u0131r. Nemden uzakta \\xfcretilmelidir.\"})}),className:\"framer-knvmqd\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gVoekGItA\",style:{\"--extracted-r6o4lv\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"Amac\u0131m\u0131z devaml\u0131 b\\xfcy\\xfcyen ve geli\u015Fen T\\xfcrk ekonomisine destek olmak.\"})}),className:\"framer-q60ud7\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L9cc6EBEU\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NaseewTuf:{children:(_getLocalizedValue21=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:[\"T\\xfcrkiye'nin Tuz Markas\u0131\",/*#__PURE__*/_jsx(motion.br,{}),\"KarTuz\"]})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue22=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"Devaml\u0131 geli\u015Fen ve \\xfcreten toplumlar\u0131n kendi kaderlerini belirlemede daha etkin rol ald\u0131\u011F\u0131 g\\xfcn\\xfcm\\xfczde. Kartuz olarak, \\xfcretim teknolojilerimizi geli\u015Ftirerek \\xfclkemize daha \\xe7ok katk\u0131da bulunmay\u0131 kendimize ama\\xe7 olarak belirledik.\"})}),className:\"framer-1gmcutw\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"HLQvbhL22\",style:{\"--extracted-r6o4lv\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GY7SxZL1J:{children:(_getLocalizedValue23=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"Sanayi Tuzlar\u0131\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue24=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u25CF Tuzda kalitenin \\xf6nc\\xfcs\\xfc.\"})}),className:\"framer-1jlehdo\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x92hl10cS\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue25=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u25CF El de\u011Fmeden \\xfcretim.\"})}),className:\"framer-y4kh0d\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aXZ4uuytq\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue26=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u25CF Y\\xfcksek \\xfcretim kapasitesi.\"})}),className:\"framer-8dyv7s\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"K9GpHXb9D\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue27=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"Firmam\u0131z 1975 y\u0131l\u0131nda Ankara merkezli kurulmu\u015F olup, ba\u015Fta Ankara ve \u0130stanbul olmak \\xfczere b\\xfct\\xfcn illerimizin t\\xfcm tuz ihtiyac\u0131n\u0131 kar\u015F\u0131lamaktad\u0131r.\"})}),className:\"framer-h0bxvo\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XBcUdosLV\",style:{\"--extracted-r6o4lv\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue28=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:[\"T\\xfcrkiye'nin Tuz Markas\u0131\",/*#__PURE__*/_jsx(motion.br,{}),\"KarTuz\"]})}),className:\"framer-1h2bjcd\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RN1AsE7Rp\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue29=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"Devaml\u0131 geli\u015Fen ve \\xfcreten toplumlar\u0131n kendi kaderlerini belirlemede daha etkin rol ald\u0131\u011F\u0131 g\\xfcn\\xfcm\\xfczde. Kartuz olarak, \\xfcretim teknolojilerimizi geli\u015Ftirerek \\xfclkemize daha \\xe7ok katk\u0131da bulunmay\u0131 kendimize ama\\xe7 olarak belirledik.\"})}),className:\"framer-muw34\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"uafIGgG1t\",style:{\"--extracted-r6o4lv\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue30=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",children:\"Amac\u0131m\u0131z devaml\u0131 b\\xfcy\\xfcyen ve geli\u015Fen T\\xfcrk ekonomisine destek olmak.\"})}),className:\"framer-3fcnhc\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LrJvwUnF7\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue31=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",children:\"\u25CF Tuzda kalitenin \\xf6nc\\xfcs\\xfc.\"})}),className:\"framer-1j4xb5n\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mkvrmIizB\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue32=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",children:\"\u25CF El de\u011Fmeden \\xfcretim.\"})}),className:\"framer-dikzli\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QK_Cb3ocK\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue33=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",children:\"\u25CF Y\\xfcksek \\xfcretim kapasitesi.\"})}),className:\"framer-1z00s4z\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bnr5IjFPr\",style:{\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue34=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5)))\"},children:\"\u25CF Y\\xfcksek kaliteli sanayi tuzu \\xfcretimi ve da\u011F\u0131t\u0131m\u0131.\"})}),className:\"framer-nx382o\",\"data-framer-name\":\"Our visual emphasis on cardiovascular well-being goes beyond the surface.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wxUxhnlLk\",style:{\"--extracted-r6o4lv\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-y3e7rr\",\"data-framer-name\":\"key scientists\",layoutDependency:layoutDependency,layoutId:\"yqZJTS90E\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-126wpgq\",\"data-framer-name\":\"scientists\",layoutDependency:layoutDependency,layoutId:\"oVJaB0pGD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mnwfzo\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"FXXGQLgIK\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5170zr\",\"data-framer-name\":\"name+job\",layoutDependency:layoutDependency,layoutId:\"RAk7vdbvo\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yg16en\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"lXYNAMDHf\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7kqn98\",\"data-framer-name\":\"name+job\",layoutDependency:layoutDependency,layoutId:\"wWVcgLmCa\"})})]})})]}),isDisplayed7(IG_Y6Oj55)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"},className:\"framer-oymdbc\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"J87pJOfUT\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({A9aOPFBB5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3217,intrinsicWidth:4825,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"}},GY7SxZL1J:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"}},HMgAzh1iz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-919.1999999999999)/2+347.19999999999993+40)),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"}},JLN7fctSf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3217,intrinsicWidth:4825,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-756)/2+184+40)),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"}},LvRqz470A:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4160,intrinsicWidth:6240,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-756)/2+184+40)),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"}},ouLlxhDHu:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3393,intrinsicWidth:5090,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-756)/2+184+40)),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"}},qHLcL7JBz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-756)/2+184+40)),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"}},qHQu006Gd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3393,intrinsicWidth:5090,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:1166,pixelWidth:1900,src:\"https://framerusercontent.com/images/fTtRVOtqAVtqO8CEOKyPxMvU.jpg\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CCcTh.framer-mf4zwl, .framer-CCcTh .framer-mf4zwl { display: block; }\",\".framer-CCcTh.framer-fsjkc8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 532px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1408px; }\",\".framer-CCcTh .framer-1qao00o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CCcTh .framer-mjco2o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CCcTh .framer-n3hyf7, .framer-CCcTh .framer-qc0wjq, .framer-CCcTh .framer-10xfu04, .framer-CCcTh .framer-oztnsv, .framer-CCcTh .framer-knvmqd, .framer-CCcTh .framer-1j4xb5n, .framer-CCcTh .framer-dikzli, .framer-CCcTh .framer-1z00s4z { flex: none; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CCcTh .framer-1g750go { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CCcTh .framer-1s0aibp { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-CCcTh .framer-930gq0, .framer-CCcTh .framer-1t78bvs, .framer-CCcTh .framer-ab31tj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CCcTh .framer-1ac3jm6 { bottom: 0px; flex: none; height: 2px; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-CCcTh .framer-3hmf4d, .framer-CCcTh .framer-g1oxk5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-CCcTh .framer-tcqj45 { bottom: 0px; flex: none; height: 2px; left: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-CCcTh .framer-lvcuuh { bottom: 0px; flex: none; height: 2px; left: calc(49.12280701754388% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-CCcTh .framer-q60ud7, .framer-CCcTh .framer-1gmcutw, .framer-CCcTh .framer-nx382o { flex: none; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: 540px; word-break: break-word; word-wrap: break-word; }\",\".framer-CCcTh .framer-1jlehdo, .framer-CCcTh .framer-y4kh0d, .framer-CCcTh .framer-8dyv7s, .framer-CCcTh .framer-h0bxvo, .framer-CCcTh .framer-1h2bjcd, .framer-CCcTh .framer-muw34, .framer-CCcTh .framer-3fcnhc { flex: none; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-CCcTh .framer-y3e7rr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CCcTh .framer-126wpgq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CCcTh .framer-mnwfzo, .framer-CCcTh .framer-1yg16en { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CCcTh .framer-5170zr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 27px; min-width: 149px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CCcTh .framer-7kqn98 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 24px; min-width: 225px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CCcTh .framer-oymdbc { flex: 1 0 0px; height: 532px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CCcTh.framer-fsjkc8, .framer-CCcTh .framer-mjco2o, .framer-CCcTh .framer-1g750go, .framer-CCcTh .framer-1s0aibp, .framer-CCcTh .framer-3hmf4d, .framer-CCcTh .framer-g1oxk5, .framer-CCcTh .framer-y3e7rr, .framer-CCcTh .framer-126wpgq, .framer-CCcTh .framer-mnwfzo, .framer-CCcTh .framer-5170zr, .framer-CCcTh .framer-1yg16en, .framer-CCcTh .framer-7kqn98 { gap: 0px; } .framer-CCcTh.framer-fsjkc8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-CCcTh.framer-fsjkc8 > :first-child, .framer-CCcTh .framer-1g750go > :first-child, .framer-CCcTh .framer-126wpgq > :first-child, .framer-CCcTh .framer-mnwfzo > :first-child, .framer-CCcTh .framer-1yg16en > :first-child { margin-left: 0px; } .framer-CCcTh.framer-fsjkc8 > :last-child, .framer-CCcTh .framer-1g750go > :last-child, .framer-CCcTh .framer-126wpgq > :last-child, .framer-CCcTh .framer-mnwfzo > :last-child, .framer-CCcTh .framer-1yg16en > :last-child { margin-right: 0px; } .framer-CCcTh .framer-mjco2o > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-CCcTh .framer-mjco2o > :first-child, .framer-CCcTh .framer-1s0aibp > :first-child, .framer-CCcTh .framer-3hmf4d > :first-child, .framer-CCcTh .framer-g1oxk5 > :first-child, .framer-CCcTh .framer-y3e7rr > :first-child, .framer-CCcTh .framer-5170zr > :first-child, .framer-CCcTh .framer-7kqn98 > :first-child { margin-top: 0px; } .framer-CCcTh .framer-mjco2o > :last-child, .framer-CCcTh .framer-1s0aibp > :last-child, .framer-CCcTh .framer-3hmf4d > :last-child, .framer-CCcTh .framer-g1oxk5 > :last-child, .framer-CCcTh .framer-y3e7rr > :last-child, .framer-CCcTh .framer-5170zr > :last-child, .framer-CCcTh .framer-7kqn98 > :last-child { margin-bottom: 0px; } .framer-CCcTh .framer-1g750go > *, .framer-CCcTh .framer-126wpgq > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-CCcTh .framer-1s0aibp > *, .framer-CCcTh .framer-3hmf4d > *, .framer-CCcTh .framer-g1oxk5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CCcTh .framer-y3e7rr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-CCcTh .framer-mnwfzo > *, .framer-CCcTh .framer-1yg16en > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-CCcTh .framer-5170zr > *, .framer-CCcTh .framer-7kqn98 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-CCcTh.framer-v-ge32ia .framer-mjco2o { gap: 13px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CCcTh.framer-v-ge32ia .framer-mjco2o { gap: 0px; } .framer-CCcTh.framer-v-ge32ia .framer-mjco2o > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-CCcTh.framer-v-ge32ia .framer-mjco2o > :first-child { margin-top: 0px; } .framer-CCcTh.framer-v-ge32ia .framer-mjco2o > :last-child { margin-bottom: 0px; } }\",\".framer-CCcTh.framer-v-1ie0409 .framer-mjco2o { gap: 25px; }\",\".framer-CCcTh.framer-v-1ie0409 .framer-n3hyf7 { order: 7; }\",\".framer-CCcTh.framer-v-1ie0409 .framer-1g750go { order: 0; }\",\".framer-CCcTh.framer-v-1ie0409 .framer-q60ud7 { order: 6; }\",\".framer-CCcTh.framer-v-1ie0409 .framer-1j4xb5n { order: 15; }\",\".framer-CCcTh.framer-v-1ie0409 .framer-dikzli { order: 16; }\",\".framer-CCcTh.framer-v-1ie0409 .framer-1z00s4z { order: 17; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CCcTh.framer-v-1ie0409 .framer-mjco2o { gap: 0px; } .framer-CCcTh.framer-v-1ie0409 .framer-mjco2o > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-CCcTh.framer-v-1ie0409 .framer-mjco2o > :first-child { margin-top: 0px; } .framer-CCcTh.framer-v-1ie0409 .framer-mjco2o > :last-child { margin-bottom: 0px; } }\",\".framer-CCcTh.framer-v-1f26xss.framer-fsjkc8, .framer-CCcTh.framer-v-5ilabk.framer-fsjkc8, .framer-CCcTh.framer-v-1pne4d0.framer-fsjkc8, .framer-CCcTh.framer-v-e8l7y8.framer-fsjkc8, .framer-CCcTh.framer-v-1ke5l1f.framer-fsjkc8 { flex-direction: column; gap: 40px; height: min-content; width: 768px; }\",\".framer-CCcTh.framer-v-1f26xss .framer-1qao00o { flex: none; gap: 64px; height: min-content; justify-content: flex-start; order: 0; width: 100%; }\",\".framer-CCcTh.framer-v-1f26xss .framer-mjco2o { align-content: center; align-items: center; }\",\".framer-CCcTh.framer-v-1f26xss .framer-q60ud7, .framer-CCcTh.framer-v-1f26xss .framer-1gmcutw, .framer-CCcTh.framer-v-5ilabk .framer-q60ud7, .framer-CCcTh.framer-v-5ilabk .framer-1gmcutw, .framer-CCcTh.framer-v-1ke5l1f .framer-q60ud7, .framer-CCcTh.framer-v-1ke5l1f .framer-1gmcutw { width: auto; }\",\".framer-CCcTh.framer-v-1f26xss .framer-oymdbc { aspect-ratio: 1.443609022556391 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 139px); order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CCcTh.framer-v-1f26xss.framer-fsjkc8, .framer-CCcTh.framer-v-1f26xss .framer-1qao00o { gap: 0px; } .framer-CCcTh.framer-v-1f26xss.framer-fsjkc8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CCcTh.framer-v-1f26xss.framer-fsjkc8 > :first-child, .framer-CCcTh.framer-v-1f26xss .framer-1qao00o > :first-child { margin-top: 0px; } .framer-CCcTh.framer-v-1f26xss.framer-fsjkc8 > :last-child, .framer-CCcTh.framer-v-1f26xss .framer-1qao00o > :last-child { margin-bottom: 0px; } .framer-CCcTh.framer-v-1f26xss .framer-1qao00o > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\".framer-CCcTh.framer-v-5ilabk .framer-1qao00o, .framer-CCcTh.framer-v-1pne4d0 .framer-1qao00o, .framer-CCcTh.framer-v-e8l7y8 .framer-1qao00o, .framer-CCcTh.framer-v-1ke5l1f .framer-1qao00o { flex: none; gap: 64px; height: min-content; justify-content: flex-start; max-width: unset; width: 100%; }\",\".framer-CCcTh.framer-v-5ilabk .framer-mjco2o, .framer-CCcTh.framer-v-1pne4d0 .framer-mjco2o, .framer-CCcTh.framer-v-e8l7y8 .framer-mjco2o, .framer-CCcTh.framer-v-1ke5l1f .framer-mjco2o { align-content: center; align-items: center; width: min-content; }\",\".framer-CCcTh.framer-v-5ilabk .framer-oymdbc, .framer-CCcTh.framer-v-1pne4d0 .framer-oymdbc, .framer-CCcTh.framer-v-e8l7y8 .framer-oymdbc, .framer-CCcTh.framer-v-1ke5l1f .framer-oymdbc { aspect-ratio: 1.443609022556391 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 139px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CCcTh.framer-v-5ilabk.framer-fsjkc8, .framer-CCcTh.framer-v-5ilabk .framer-1qao00o { gap: 0px; } .framer-CCcTh.framer-v-5ilabk.framer-fsjkc8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CCcTh.framer-v-5ilabk.framer-fsjkc8 > :first-child, .framer-CCcTh.framer-v-5ilabk .framer-1qao00o > :first-child { margin-top: 0px; } .framer-CCcTh.framer-v-5ilabk.framer-fsjkc8 > :last-child, .framer-CCcTh.framer-v-5ilabk .framer-1qao00o > :last-child { margin-bottom: 0px; } .framer-CCcTh.framer-v-5ilabk .framer-1qao00o > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\".framer-CCcTh.framer-v-1pne4d0 .framer-1g750go, .framer-CCcTh.framer-v-e8l7y8 .framer-1g750go { order: 1; }\",\".framer-CCcTh.framer-v-1pne4d0 .framer-1jlehdo { order: 10; }\",\".framer-CCcTh.framer-v-1pne4d0 .framer-y4kh0d { order: 11; }\",\".framer-CCcTh.framer-v-1pne4d0 .framer-8dyv7s { order: 12; }\",\".framer-CCcTh.framer-v-1pne4d0 .framer-h0bxvo { order: 9; }\",\".framer-CCcTh.framer-v-1pne4d0 .framer-1h2bjcd { order: 8; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CCcTh.framer-v-1pne4d0.framer-fsjkc8, .framer-CCcTh.framer-v-1pne4d0 .framer-1qao00o { gap: 0px; } .framer-CCcTh.framer-v-1pne4d0.framer-fsjkc8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CCcTh.framer-v-1pne4d0.framer-fsjkc8 > :first-child, .framer-CCcTh.framer-v-1pne4d0 .framer-1qao00o > :first-child { margin-top: 0px; } .framer-CCcTh.framer-v-1pne4d0.framer-fsjkc8 > :last-child, .framer-CCcTh.framer-v-1pne4d0 .framer-1qao00o > :last-child { margin-bottom: 0px; } .framer-CCcTh.framer-v-1pne4d0 .framer-1qao00o > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\".framer-CCcTh.framer-v-e8l7y8 .framer-muw34 { order: 14; }\",\".framer-CCcTh.framer-v-e8l7y8 .framer-3fcnhc { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CCcTh.framer-v-e8l7y8.framer-fsjkc8, .framer-CCcTh.framer-v-e8l7y8 .framer-1qao00o { gap: 0px; } .framer-CCcTh.framer-v-e8l7y8.framer-fsjkc8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CCcTh.framer-v-e8l7y8.framer-fsjkc8 > :first-child, .framer-CCcTh.framer-v-e8l7y8 .framer-1qao00o > :first-child { margin-top: 0px; } .framer-CCcTh.framer-v-e8l7y8.framer-fsjkc8 > :last-child, .framer-CCcTh.framer-v-e8l7y8 .framer-1qao00o > :last-child { margin-bottom: 0px; } .framer-CCcTh.framer-v-e8l7y8 .framer-1qao00o > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CCcTh.framer-v-1ke5l1f.framer-fsjkc8, .framer-CCcTh.framer-v-1ke5l1f .framer-1qao00o { gap: 0px; } .framer-CCcTh.framer-v-1ke5l1f.framer-fsjkc8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CCcTh.framer-v-1ke5l1f.framer-fsjkc8 > :first-child, .framer-CCcTh.framer-v-1ke5l1f .framer-1qao00o > :first-child { margin-top: 0px; } .framer-CCcTh.framer-v-1ke5l1f.framer-fsjkc8 > :last-child, .framer-CCcTh.framer-v-1ke5l1f .framer-1qao00o > :last-child { margin-bottom: 0px; } .framer-CCcTh.framer-v-1ke5l1f .framer-1qao00o > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-CCcTh[data-border=\"true\"]::after, .framer-CCcTh [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 532\n * @framerIntrinsicWidth 1408\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GY7SxZL1J\":{\"layout\":[\"fixed\",\"fixed\"]},\"NaseewTuf\":{\"layout\":[\"fixed\",\"fixed\"]},\"qHQu006Gd\":{\"layout\":[\"fixed\",\"fixed\"]},\"A9aOPFBB5\":{\"layout\":[\"fixed\",\"fixed\"]},\"LvRqz470A\":{\"layout\":[\"fixed\",\"auto\"]},\"qHLcL7JBz\":{\"layout\":[\"fixed\",\"auto\"]},\"HMgAzh1iz\":{\"layout\":[\"fixed\",\"auto\"]},\"ouLlxhDHu\":{\"layout\":[\"fixed\",\"auto\"]},\"JLN7fctSf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IG_Y6Oj55\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGJ3TWxt70=withCSS(Component,css,\"framer-CCcTh\");export default FramerGJ3TWxt70;FramerGJ3TWxt70.displayName=\"Home Tabs\";FramerGJ3TWxt70.defaultProps={height:532,width:1408};addPropertyControls(FramerGJ3TWxt70,{variant:{options:[\"KsbWg4fMp\",\"GY7SxZL1J\",\"NaseewTuf\",\"qHQu006Gd\",\"A9aOPFBB5\",\"LvRqz470A\",\"qHLcL7JBz\",\"HMgAzh1iz\",\"ouLlxhDHu\",\"JLN7fctSf\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"T/M 1\",\"T/M 2\",\"T/M 3\",\"T/M 4\",\"T/M 5\"],title:\"Variant\",type:ControlType.Enum},IG_Y6Oj55:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerGJ3TWxt70,[{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:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGJ3TWxt70\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"532\",\"framerIntrinsicWidth\":\"1408\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GY7SxZL1J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NaseewTuf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qHQu006Gd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A9aOPFBB5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LvRqz470A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qHLcL7JBz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HMgAzh1iz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ouLlxhDHu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JLN7fctSf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"IG_Y6Oj55\\\":\\\"visible\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GJ3TWxt70.map", "// Generated by Framer (101bcc7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,LazyValue,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import Button from\"#framer/local/canvasComponent/AJw8tC9hw/AJw8tC9hw.js\";import HomeTabs from\"#framer/local/canvasComponent/GJ3TWxt70/GJ3TWxt70.js\";import SectionHeaderCopy from\"#framer/local/canvasComponent/NGDBUexpe/NGDBUexpe.js\";import SectionFooter from\"#framer/local/canvasComponent/zReXY2H00/zReXY2H00.js\";import*as sharedStyle1 from\"#framer/local/css/qaoULVCyn/qaoULVCyn.js\";import*as sharedStyle from\"#framer/local/css/rgd3b9S4n/rgd3b9S4n.js\";import metadataProvider from\"#framer/local/webPageMetadata/liKpMZG_q/liKpMZG_q.js\";const SectionHeaderCopyFonts=getFonts(SectionHeaderCopy);const VideoFonts=getFonts(Video);const HomeTabsFonts=getFonts(HomeTabs);const ButtonFonts=getFonts(Button);const GoogleMapsFonts=getFonts(GoogleMaps);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={ahiIuWzwM:\"(min-width: 1200px)\",UrLIqPrd6:\"(min-width: 810px) and (max-width: 1199px)\",xOfbYWg62:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fVgGE\";const variantClassNames={ahiIuWzwM:\"framer-v-115azv\",UrLIqPrd6:\"framer-v-zobovz\",xOfbYWg62:\"framer-v-14orbyf\"};const valuesByLocaleId={iSi26FS6c:new LazyValue(()=>import(\"./liKpMZG_q-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"ahiIuWzwM\",Phone:\"xOfbYWg62\",Tablet:\"UrLIqPrd6\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ahiIuWzwM\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-fVgGE`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-fVgGE`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xOfbYWg62\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"UrLIqPrd6\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"UrLIqPrd6\",\"xOfbYWg62\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35,_getLocalizedValue36,_getLocalizedValue37,_getLocalizedValue38;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ahiIuWzwM\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-115azv\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:109,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-95gfl9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{variant:\"q1DOuSPS6\"},xOfbYWg62:{variant:\"AteOGGBNN\"}},children:/*#__PURE__*/_jsx(SectionHeaderCopy,{height:\"100%\",id:\"xEBtF7rAC\",layoutId:\"xEBtF7rAC\",style:{width:\"100%\"},variant:\"nyKu27aHx\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gg7on8\",\"data-framer-name\":\"Spacing\",name:\"Spacing\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17yvtps-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Ds0zsThrn\",isMixedBorderRadius:false,layoutId:\"Ds0zsThrn\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/oRZZnziIHbgI2kppCzZnmL8HPc.mp4\",srcType:\"Upload\",srcUrl:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"https://www.youtube.com/watch?v=HP49A0X1qDA\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:0,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1whly96\",\"data-framer-name\":\"Services\",name:\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i7okze\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Kartuz, ileri teknoloji \\xfcretim g\\xfcc\\xfc ve kalite odakl\u0131 yakla\u015F\u0131m\u0131yla sekt\\xf6rdeki liderli\u011Fini s\\xfcrd\\xfcr\\xfcyor.\"})})},xOfbYWg62:{children:(_getLocalizedValue2=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Kartuz, ileri teknoloji \\xfcretim g\\xfcc\\xfc ve kalite odakl\u0131 yakla\u015F\u0131m\u0131yla sekt\\xf6rdeki liderli\u011Fini s\\xfcrd\\xfcr\\xfcyor.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Kartuz, ileri teknoloji \\xfcretim g\\xfcc\\xfc ve kalite odakl\u0131 yakla\u015F\u0131m\u0131yla sekt\\xf6rdeki liderli\u011Fini s\\xfcrd\\xfcr\\xfcyor.\"})}),className:\"framer-1063omx\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ka5q7q\",\"data-framer-name\":\"List\",name:\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bthic3\",\"data-framer-name\":\"Service Card\",name:\"Service Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:136.36363340803422,intrinsicWidth:191.81817766063477,pixelHeight:150,pixelWidth:211,src:\"https://framerusercontent.com/images/UxfAvSUERX9xhUWIpYCsaCnYPcQ.png\"},className:\"framer-1bg5rm6\",\"data-framer-name\":\"Icon\",name:\"Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wme3j8\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{children:(_getLocalizedValue4=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"El De\u011Fmeden \\xdcretim\"})})},xOfbYWg62:{children:(_getLocalizedValue5=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"El De\u011Fmeden \\xdcretim\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"El De\u011Fmeden \\xdcretim\"})}),className:\"framer-3ru929\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\"},children:\"\\xdcretimin ilk an\u0131ndan son an\u0131na kadar kalite ve hijyen kurallar\u0131 \\xe7er\\xe7evesinde \\xfcretimi el de\u011Fmeden son teknoloji \\xfcretim makinelerimizle yapmaktay\u0131z.\"})}),className:\"framer-5k61ef\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v308e1\",\"data-framer-name\":\"Service Card\",name:\"Service Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:136.36363340803422,intrinsicWidth:168.18181453657553,pixelHeight:150,pixelWidth:185,src:\"https://framerusercontent.com/images/s4I2FajZHLYLks804Jk7qcxhpQ.png\"},className:\"framer-1nzl10t\",\"data-framer-name\":\"Icon\",name:\"Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17uixil\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{children:(_getLocalizedValue8=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Sekt\\xf6r\\xfcnde Lider\"})})},xOfbYWg62:{children:(_getLocalizedValue9=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Sekt\\xf6r\\xfcnde Lider\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Sekt\\xf6r\\xfcnde Lider\"})}),className:\"framer-185ycgs\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\"},children:\"KarTuz sahip oldu\u011Fu \\xfcretim kapasitesi, uzman kadrosu ve y\u0131llara dayana tecr\\xfcbesiyle tuz sekt\\xf6r\\xfcnde \\xf6nc\\xfc firmalardan biridir.\"})}),className:\"framer-1pjmql4\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hto6p7\",\"data-framer-name\":\"Service Card\",name:\"Service Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:137.2727242974211,intrinsicWidth:119.9999973990701,pixelHeight:151,pixelWidth:132,src:\"https://framerusercontent.com/images/mNk1jspljQh5XziX5GGp1DgL0aw.png\"},className:\"framer-1wylyol\",\"data-framer-name\":\"Icon\",name:\"Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6sthdu\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{children:(_getLocalizedValue12=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Tuzda Kalitenin \\xd6nc\\xfcs\\xfc\"})})},xOfbYWg62:{children:(_getLocalizedValue13=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Tuzda Kalitenin \\xd6nc\\xfcs\\xfc\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue14=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"Tuzda Kalitenin \\xd6nc\\xfcs\\xfc\"})}),className:\"framer-1okfn4\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue15=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1l1e4gv\",\"data-styles-preset\":\"rgd3b9S4n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-76aaf203-a76b-4d02-8c69-50eba91b5248, rgba(24, 33, 45, 0.5))\"},children:\"Kuruldu\u011Fu y\u0131ldan g\\xfcn\\xfcm\\xfcze sekt\\xf6r\\xfcn \\xf6nc\\xfc firmalar\u0131ndan biri olan KarTuz piyasadaki tecr\\xfcbesi ve kalitesi ile T\\xfcrkiye\u2019nin en kaliteli tuzunu \\xfcretmeyi hedeflemektedir.\"})}),className:\"framer-1ohnc4a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{children:(_getLocalizedValue16=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"\\xdcr\\xfcnlerimiz\"})})},xOfbYWg62:{children:(_getLocalizedValue17=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"\\xdcr\\xfcnlerimiz\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"\\xdcr\\xfcnlerimiz\"})}),className:\"framer-xmbf6q\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1htc73d hidden-115azv hidden-zobovz\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a_speetkg\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"187px\",...(_getLocalizedValue19=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:{src:\"https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg\",srcSet:\"https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg 1400w\"}},className:\"framer-ck34s6 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iecIwgfPl\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"187px\",...(_getLocalizedValue20=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:{src:\"https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg\",srcSet:\"https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg 1400w\"}},className:\"framer-pb17tf framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CO0yca4MT\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"187px\",...(_getLocalizedValue21=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:{src:\"https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg\",srcSet:\"https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg 1400w\"}},className:\"framer-1k520s9 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"knLj75NGd\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"187px\",...(_getLocalizedValue22=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:{src:\"https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg\",srcSet:\"https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg 1400w\"}},className:\"framer-1v6eyya framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BdYBm7tHO\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"187px\",...(_getLocalizedValue23=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:{src:\"https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg\",srcSet:\"https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg 1400w\"}},className:\"framer-8f9gjp framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b9htxvlVR\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"187px\",...(_getLocalizedValue24=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:{src:\"https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg\",srcSet:\"https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg 1400w\"}},className:\"framer-12tai8s framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",transformTemplate:transformTemplate1})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dhrm31 hidden-115azv hidden-14orbyf\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a_speetkg\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue25=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:{src:\"https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg\",srcSet:\"https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg 1400w\"}},className:\"framer-ccc7x6 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iecIwgfPl\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue26=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:{src:\"https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg\",srcSet:\"https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg 1400w\"}},className:\"framer-1kfpg6u framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CO0yca4MT\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue27=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:{src:\"https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg\",srcSet:\"https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg 1400w\"}},className:\"framer-w3x3w1 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"knLj75NGd\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue28=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:{src:\"https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg\",srcSet:\"https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg 1400w\"}},className:\"framer-1jg3ae6 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BdYBm7tHO\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue29=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:{src:\"https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg\",srcSet:\"https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg 1400w\"}},className:\"framer-c5n1v7 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b9htxvlVR\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue30=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:{src:\"https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg\",srcSet:\"https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg 1400w\"}},className:\"framer-1nu0yg4 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",transformTemplate:transformTemplate1})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fxyyxp hidden-zobovz hidden-14orbyf\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a_speetkg\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue31=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:{src:\"https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg\",srcSet:\"https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Qevu67uN5yHratAmdARN160VWF4.jpeg 1400w\"}},className:\"framer-122bflt framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iecIwgfPl\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue32=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:{src:\"https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg\",srcSet:\"https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9jqq79x0gb5NaG2QfFBpKeH4FfM.jpeg 1400w\"}},className:\"framer-d2sbf4 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CO0yca4MT\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue33=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:{src:\"https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg\",srcSet:\"https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eDyl7uIB9uyQl4NeXwDmjLvlozk.jpeg 1400w\"}},className:\"framer-145c4h9 framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"knLj75NGd\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue34=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:{src:\"https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg\",srcSet:\"https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmtoxWPMRB0dasgSAZ0J8AzzU.jpeg 1400w\"}},className:\"framer-zo9s8f framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BdYBm7tHO\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue35=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:{src:\"https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg\",srcSet:\"https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OvEkjgsiRi0bRmwk3mG5UY1po.jpeg 1400w\"}},className:\"framer-1t24pix framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b9htxvlVR\"},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1400,pixelHeight:800,pixelWidth:1400,sizes:\"370px\",...(_getLocalizedValue36=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue36!==void 0?_getLocalizedValue36:{src:\"https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg\",srcSet:\"https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YBElRPEcZCNNYd5buEet3C92eyo.jpeg 1400w\"}},className:\"framer-1dlf2nn framer-ggvais\",\"data-framer-name\":\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\",name:\"Artboard-1-(1920x1080)-66f4772885ab7a1fc22e19a2-@2x\"})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ptrc8m\",\"data-framer-name\":\"container\",name:\"container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{width:\"calc(min(100vw, 1440px) - 120px)\"},xOfbYWg62:{width:\"calc(100vw - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:532,width:\"calc(min(100vw, 1440px) - 64px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o0713l-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{variant:\"LvRqz470A\"},xOfbYWg62:{variant:\"LvRqz470A\"}},children:/*#__PURE__*/_jsx(HomeTabs,{height:\"100%\",id:\"IaW9_0EBa\",IG_Y6Oj55:true,layoutId:\"IaW9_0EBa\",style:{width:\"100%\"},variant:\"KsbWg4fMp\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oqf8eu\",\"data-framer-name\":\"Contact\",name:\"Contact\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue37=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue37!==void 0?_getLocalizedValue37:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-tyf0cm\",\"data-styles-preset\":\"qaoULVCyn\",style:{\"--framer-text-color\":\"var(--token-88ba5591-a1d2-4dd4-b44c-709f654f28f8, rgb(24, 33, 45))\"},children:\"\u0130leti\u015Fime Ge\\xe7\"})}),className:\"framer-12bdhbs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nisqei\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/_jsx(FormContainer,{className:\"framer-csnond\",children:formState=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7;return _jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5ef8e\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-w6gmig\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"\u0130sminiz\"})}),className:\"framer-1d5hyb5\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1qcc1c0\",inputName:\"Name\",placeholder:(_getLocalizedValue1=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"\u0130sim ve Soyisminiz\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-6h7z85\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Telefon Numaran\u0131z\"})}),className:\"framer-1jlbg1b\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-5soygo\",inputName:\"Telefon Numaras\u0131\",placeholder:(_getLocalizedValue3=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"+90\",required:true,type:\"tel\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-7ufz88\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Email\"})}),className:\"framer-1s93xtr\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1tqr4dk\",inputName:\"Email\",placeholder:(_getLocalizedValue5=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"mail@adresiniz.com\",required:true,type:\"email\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1i7e999\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Mesaj\u0131n\u0131z\"})}),className:\"framer-x6rfg7\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-hu5y8b\",inputName:\"Message\",placeholder:(_getLocalizedValue7=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Mesaj\u0131n\u0131z\u0131 girin\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{width:\"min(100vw - 80px, 400px)\"},xOfbYWg62:{width:\"min(100vw - 80px, 400px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"calc(min(100vw - 80px, 400px) * 2)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v31sfz-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ryn5WFgqu\",layoutId:\"ryn5WFgqu\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"Y9X9fJtOs\",success:\"SOQa5f77d\"},\"eIzoi_MEa\"),width:\"100%\"})})})})]});}})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r7r5hz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{zoom:22}},children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:(_getLocalizedValue38=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue38!==void 0?_getLocalizedValue38:\"39.97737213355159, 32.776997286270245\",height:\"100%\",id:\"IJAReIrBo\",isMixedBorderRadius:false,layoutId:\"IJAReIrBo\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:24})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:591,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b8o8gy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UrLIqPrd6:{variant:\"NmwnHhkpF\"},xOfbYWg62:{variant:\"pPfxMwkyP\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"FGtYJR2Dr\",layoutId:\"FGtYJR2Dr\",style:{width:\"100%\"},SUmp2uPvC:true,variant:\"vZlMjtPVj\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-fVgGE { background: var(--token-2fffd217-b9c0-4b7d-98aa-e3ed06d5706f, rgb(250, 250, 250)); }`,\".framer-fVgGE.framer-ggvais, .framer-fVgGE .framer-ggvais { display: block; }\",\".framer-fVgGE.framer-115azv { align-content: center; align-items: center; background-color: var(--token-2fffd217-b9c0-4b7d-98aa-e3ed06d5706f, #fafafa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-fVgGE .framer-95gfl9-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 6; }\",\".framer-fVgGE .framer-gg7on8 { flex: none; height: 90px; overflow: hidden; position: relative; width: 100%; }\",\".framer-fVgGE .framer-17yvtps-container { flex: none; height: 629px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-1whly96 { 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: 60px 40px 89px 40px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-i7okze { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-fVgGE .framer-1063omx, .framer-fVgGE .framer-xmbf6q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 891px; word-break: break-word; word-wrap: break-word; }\",\".framer-fVgGE .framer-ka5q7q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-1bthic3, .framer-fVgGE .framer-1v308e1, .framer-fVgGE .framer-1hto6p7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-fVgGE .framer-1bg5rm6 { align-content: center; align-items: center; aspect-ratio: 1.4066666666666665 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 79px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 111px; }\",\".framer-fVgGE .framer-wme3j8, .framer-fVgGE .framer-17uixil, .framer-fVgGE .framer-6sthdu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-3ru929, .framer-fVgGE .framer-5k61ef, .framer-fVgGE .framer-185ycgs, .framer-fVgGE .framer-1pjmql4, .framer-fVgGE .framer-1okfn4, .framer-fVgGE .framer-1ohnc4a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fVgGE .framer-1nzl10t { aspect-ratio: 1.2333333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 79px); overflow: visible; position: relative; width: 97px; }\",\".framer-fVgGE .framer-1wylyol { aspect-ratio: 0.8741721854304636 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); overflow: visible; position: relative; width: 68px; }\",\".framer-fVgGE .framer-1htc73d { flex: none; height: 331px; overflow: hidden; position: relative; width: 378px; }\",\".framer-fVgGE .framer-ck34s6 { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); overflow: visible; position: absolute; right: 0px; text-decoration: none; top: 50%; transform: translateY(-50%); width: 187px; }\",\".framer-fVgGE .framer-pb17tf { aspect-ratio: 1.75 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 107px); left: 0px; overflow: visible; position: absolute; text-decoration: none; width: 187px; }\",\".framer-fVgGE .framer-1k520s9 { aspect-ratio: 1.75 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 107px); overflow: visible; position: absolute; right: 0px; text-decoration: none; width: 187px; }\",\".framer-fVgGE .framer-1v6eyya { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); left: 0px; overflow: visible; position: absolute; text-decoration: none; top: 0px; width: 187px; }\",\".framer-fVgGE .framer-8f9gjp { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); overflow: visible; position: absolute; right: 0px; text-decoration: none; top: 0px; width: 187px; }\",\".framer-fVgGE .framer-12tai8s { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); left: 0px; overflow: visible; position: absolute; text-decoration: none; top: 50%; transform: translateY(-50%); width: 187px; }\",\".framer-fVgGE .framer-dhrm31 { flex: none; height: 657px; overflow: hidden; position: relative; width: 748px; }\",\".framer-fVgGE .framer-ccc7x6 { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 211px); overflow: visible; position: absolute; right: 0px; text-decoration: none; top: 50%; transform: translateY(-50%); width: 370px; }\",\".framer-fVgGE .framer-1kfpg6u { aspect-ratio: 1.75 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 211px); left: 0px; overflow: visible; position: absolute; text-decoration: none; width: 370px; }\",\".framer-fVgGE .framer-w3x3w1 { aspect-ratio: 1.75 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 211px); overflow: visible; position: absolute; right: 0px; text-decoration: none; width: 370px; }\",\".framer-fVgGE .framer-1jg3ae6, .framer-fVgGE .framer-zo9s8f { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 211px); left: 0px; overflow: visible; position: absolute; text-decoration: none; top: 0px; width: 370px; }\",\".framer-fVgGE .framer-c5n1v7, .framer-fVgGE .framer-1dlf2nn { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 211px); overflow: visible; position: absolute; right: 0px; text-decoration: none; top: 0px; width: 370px; }\",\".framer-fVgGE .framer-1nu0yg4 { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 211px); left: 0px; overflow: visible; position: absolute; text-decoration: none; top: 50%; transform: translateY(-50%); width: 370px; }\",\".framer-fVgGE .framer-fxyyxp { flex: none; height: 434px; overflow: hidden; position: relative; width: 1126px; }\",\".framer-fVgGE .framer-122bflt { aspect-ratio: 1.75 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 212px); left: 0px; overflow: visible; position: absolute; text-decoration: none; width: 370px; }\",\".framer-fVgGE .framer-d2sbf4 { aspect-ratio: 1.75 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 212px); left: 50%; overflow: visible; position: absolute; text-decoration: none; transform: translateX(-50%); width: 370px; }\",\".framer-fVgGE .framer-145c4h9 { aspect-ratio: 1.75 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 212px); overflow: visible; position: absolute; right: 0px; text-decoration: none; width: 370px; }\",\".framer-fVgGE .framer-1t24pix { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 211px); left: 50%; overflow: visible; position: absolute; text-decoration: none; top: 0px; transform: translateX(-50%); width: 370px; }\",\".framer-fVgGE .framer-ptrc8m { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 110px 32px 50px 32px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-1o0713l-container, .framer-fVgGE .framer-1b8o8gy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-fVgGE .framer-oqf8eu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 40px 35px 40px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-12bdhbs, .framer-fVgGE .framer-1d5hyb5, .framer-fVgGE .framer-1jlbg1b, .framer-fVgGE .framer-1s93xtr, .framer-fVgGE .framer-x6rfg7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-fVgGE .framer-1nisqei { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-csnond { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 200%; }\",\".framer-fVgGE .framer-1f5ef8e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-w6gmig, .framer-fVgGE .framer-6h7z85, .framer-fVgGE .framer-7ufz88 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-fVgGE .framer-1qcc1c0, .framer-fVgGE .framer-5soygo, .framer-fVgGE .framer-1tqr4dk { --framer-input-background: #f2f2f2; --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #333333; --framer-input-font-family: \"DM Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-fVgGE .framer-1i7e999 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-fVgGE .framer-hu5y8b { --framer-input-background: #f2f2f2; --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #333333; --framer-input-font-family: \"DM Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-fVgGE .framer-1v31sfz-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-fVgGE .framer-1r7r5hz-container { flex: none; height: 400px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fVgGE.framer-115azv, .framer-fVgGE .framer-1whly96, .framer-fVgGE .framer-i7okze, .framer-fVgGE .framer-ka5q7q, .framer-fVgGE .framer-1bthic3, .framer-fVgGE .framer-1bg5rm6, .framer-fVgGE .framer-wme3j8, .framer-fVgGE .framer-1v308e1, .framer-fVgGE .framer-17uixil, .framer-fVgGE .framer-1hto6p7, .framer-fVgGE .framer-6sthdu, .framer-fVgGE .framer-ptrc8m, .framer-fVgGE .framer-oqf8eu, .framer-fVgGE .framer-1nisqei, .framer-fVgGE .framer-csnond, .framer-fVgGE .framer-1f5ef8e, .framer-fVgGE .framer-w6gmig, .framer-fVgGE .framer-6h7z85, .framer-fVgGE .framer-7ufz88, .framer-fVgGE .framer-1i7e999 { gap: 0px; } .framer-fVgGE.framer-115azv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fVgGE.framer-115azv > :first-child, .framer-fVgGE .framer-i7okze > :first-child, .framer-fVgGE .framer-1bthic3 > :first-child, .framer-fVgGE .framer-wme3j8 > :first-child, .framer-fVgGE .framer-1v308e1 > :first-child, .framer-fVgGE .framer-17uixil > :first-child, .framer-fVgGE .framer-1hto6p7 > :first-child, .framer-fVgGE .framer-6sthdu > :first-child, .framer-fVgGE .framer-ptrc8m > :first-child, .framer-fVgGE .framer-oqf8eu > :first-child, .framer-fVgGE .framer-1nisqei > :first-child, .framer-fVgGE .framer-csnond > :first-child, .framer-fVgGE .framer-w6gmig > :first-child, .framer-fVgGE .framer-6h7z85 > :first-child, .framer-fVgGE .framer-7ufz88 > :first-child, .framer-fVgGE .framer-1i7e999 > :first-child { margin-top: 0px; } .framer-fVgGE.framer-115azv > :last-child, .framer-fVgGE .framer-i7okze > :last-child, .framer-fVgGE .framer-1bthic3 > :last-child, .framer-fVgGE .framer-wme3j8 > :last-child, .framer-fVgGE .framer-1v308e1 > :last-child, .framer-fVgGE .framer-17uixil > :last-child, .framer-fVgGE .framer-1hto6p7 > :last-child, .framer-fVgGE .framer-6sthdu > :last-child, .framer-fVgGE .framer-ptrc8m > :last-child, .framer-fVgGE .framer-oqf8eu > :last-child, .framer-fVgGE .framer-1nisqei > :last-child, .framer-fVgGE .framer-csnond > :last-child, .framer-fVgGE .framer-w6gmig > :last-child, .framer-fVgGE .framer-6h7z85 > :last-child, .framer-fVgGE .framer-7ufz88 > :last-child, .framer-fVgGE .framer-1i7e999 > :last-child { margin-bottom: 0px; } .framer-fVgGE .framer-1whly96 > *, .framer-fVgGE .framer-1bg5rm6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fVgGE .framer-1whly96 > :first-child, .framer-fVgGE .framer-ka5q7q > :first-child, .framer-fVgGE .framer-1bg5rm6 > :first-child, .framer-fVgGE .framer-1f5ef8e > :first-child { margin-left: 0px; } .framer-fVgGE .framer-1whly96 > :last-child, .framer-fVgGE .framer-ka5q7q > :last-child, .framer-fVgGE .framer-1bg5rm6 > :last-child, .framer-fVgGE .framer-1f5ef8e > :last-child { margin-right: 0px; } .framer-fVgGE .framer-i7okze > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-fVgGE .framer-ka5q7q > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-fVgGE .framer-1bthic3 > *, .framer-fVgGE .framer-1v308e1 > *, .framer-fVgGE .framer-1hto6p7 > *, .framer-fVgGE .framer-csnond > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-fVgGE .framer-wme3j8 > *, .framer-fVgGE .framer-17uixil > *, .framer-fVgGE .framer-6sthdu > *, .framer-fVgGE .framer-1nisqei > *, .framer-fVgGE .framer-w6gmig > *, .framer-fVgGE .framer-6h7z85 > *, .framer-fVgGE .framer-7ufz88 > *, .framer-fVgGE .framer-1i7e999 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fVgGE .framer-ptrc8m > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-fVgGE .framer-oqf8eu > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-fVgGE .framer-1f5ef8e > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-fVgGE { background: var(--token-2fffd217-b9c0-4b7d-98aa-e3ed06d5706f, rgb(250, 250, 250)); } .framer-fVgGE.framer-115azv { width: 810px; } .framer-fVgGE .framer-95gfl9-container { order: 0; width: auto; } .framer-fVgGE .framer-gg7on8 { order: 1; } .framer-fVgGE .framer-17yvtps-container { height: 504px; order: 2; } .framer-fVgGE .framer-1whly96 { order: 4; padding: 0px 30px 0px 30px; } .framer-fVgGE .framer-i7okze { padding: 17px 0px 50px 0px; } .framer-fVgGE .framer-1063omx, .framer-fVgGE .framer-xmbf6q { width: 550px; } .framer-fVgGE .framer-ccc7x6, .framer-fVgGE .framer-1jg3ae6, .framer-fVgGE .framer-c5n1v7, .framer-fVgGE .framer-1nu0yg4 { height: var(--framer-aspect-ratio-supported, 212px); } .framer-fVgGE .framer-ptrc8m { gap: 48px; justify-content: center; order: 7; padding: 50px 60px 12px 60px; } .framer-fVgGE .framer-oqf8eu { order: 8; padding: 20px 40px 50px 40px; } .framer-fVgGE .framer-csnond { width: 100%; } .framer-fVgGE .framer-1r7r5hz-container { order: 9; } .framer-fVgGE .framer-1b8o8gy-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fVgGE .framer-ptrc8m { gap: 0px; } .framer-fVgGE .framer-ptrc8m > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-fVgGE .framer-ptrc8m > :first-child { margin-top: 0px; } .framer-fVgGE .framer-ptrc8m > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-fVgGE { background: var(--token-2fffd217-b9c0-4b7d-98aa-e3ed06d5706f, rgb(250, 250, 250)); } .framer-fVgGE.framer-115azv { width: 390px; } .framer-fVgGE .framer-95gfl9-container { order: 0; } .framer-fVgGE .framer-gg7on8 { height: 70px; order: 1; } .framer-fVgGE .framer-17yvtps-container { height: 273px; order: 2; } .framer-fVgGE .framer-1whly96 { order: 4; padding: 30px 20px 30px 20px; } .framer-fVgGE .framer-i7okze { gap: 40px; } .framer-fVgGE .framer-1063omx { order: 0; width: 100%; } .framer-fVgGE .framer-ka5q7q { flex-direction: column; order: 1; } .framer-fVgGE .framer-1bthic3, .framer-fVgGE .framer-1v308e1, .framer-fVgGE .framer-1hto6p7, .framer-fVgGE .framer-w6gmig, .framer-fVgGE .framer-6h7z85, .framer-fVgGE .framer-7ufz88 { flex: none; width: 100%; } .framer-fVgGE .framer-1nzl10t { height: var(--framer-aspect-ratio-supported, 78px); } .framer-fVgGE .framer-1wylyol { height: var(--framer-aspect-ratio-supported, 77px); } .framer-fVgGE .framer-xmbf6q { order: 2; width: 100%; } .framer-fVgGE .framer-1htc73d { order: 3; } .framer-fVgGE .framer-ck34s6, .framer-fVgGE .framer-1v6eyya, .framer-fVgGE .framer-8f9gjp, .framer-fVgGE .framer-12tai8s { height: var(--framer-aspect-ratio-supported, 106px); } .framer-fVgGE .framer-ptrc8m { gap: 48px; max-width: unset; order: 7; padding: 30px 20px 20px 20px; } .framer-fVgGE .framer-oqf8eu { gap: 9px; order: 8; padding: 2px 40px 50px 40px; } .framer-fVgGE .framer-csnond { width: 100%; } .framer-fVgGE .framer-1f5ef8e { flex-direction: column; } .framer-fVgGE .framer-1r7r5hz-container { height: 390px; order: 9; } .framer-fVgGE .framer-1b8o8gy-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fVgGE .framer-i7okze, .framer-fVgGE .framer-ka5q7q, .framer-fVgGE .framer-ptrc8m, .framer-fVgGE .framer-oqf8eu, .framer-fVgGE .framer-1f5ef8e { gap: 0px; } .framer-fVgGE .framer-i7okze > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-fVgGE .framer-i7okze > :first-child, .framer-fVgGE .framer-ka5q7q > :first-child, .framer-fVgGE .framer-ptrc8m > :first-child, .framer-fVgGE .framer-oqf8eu > :first-child, .framer-fVgGE .framer-1f5ef8e > :first-child { margin-top: 0px; } .framer-fVgGE .framer-i7okze > :last-child, .framer-fVgGE .framer-ka5q7q > :last-child, .framer-fVgGE .framer-ptrc8m > :last-child, .framer-fVgGE .framer-oqf8eu > :last-child, .framer-fVgGE .framer-1f5ef8e > :last-child { margin-bottom: 0px; } .framer-fVgGE .framer-ka5q7q > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-fVgGE .framer-ptrc8m > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-fVgGE .framer-oqf8eu > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-fVgGE .framer-1f5ef8e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3928\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UrLIqPrd6\":{\"layout\":[\"fixed\",\"auto\"]},\"xOfbYWg62\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerliKpMZG_q=withCSS(Component,css,\"framer-fVgGE\");export default FramerliKpMZG_q;FramerliKpMZG_q.displayName=\"Page\";FramerliKpMZG_q.defaultProps={height:3928,width:1200};addFonts(FramerliKpMZG_q,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{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\"}]},...SectionHeaderCopyFonts,...VideoFonts,...HomeTabsFonts,...ButtonFonts,...GoogleMapsFonts,...SectionFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerliKpMZG_q\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"3928\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UrLIqPrd6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xOfbYWg62\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "GJ3TWxt70_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v21", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "u", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v20", "v21", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "GJ3TWxt70_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "visible", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IG_Y6Oj55", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapxso2yv", "args", "onTap1b2wbzy", "onTap1rwazx2", "onTap7rkq4a", "onTap14vry2a", "onTapc0x2xs", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "LayoutGroup", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerGJ3TWxt70", "withCSS", "GJ3TWxt70_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SectionHeaderCopyFonts", "getFonts", "NGDBUexpe_default", "VideoFonts", "Video", "HomeTabsFonts", "GJ3TWxt70_default", "ButtonFonts", "AJw8tC9hw_default", "GoogleMapsFonts", "GoogleMaps", "SectionFooterFonts", "zReXY2H00_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "transformTemplate1", "_", "t", "transformTemplate2", "formVariants", "form", "variants", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "preloadPromise", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "_getLocalizedValue36", "_getLocalizedValue37", "_getLocalizedValue38", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText2", "Image2", "Link", "FormContainer", "formState", "l", "FormPlainTextInput2", "css", "FramerliKpMZG_q", "withCSS", "liKpMZG_q_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
